diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.yml b/.github/ISSUE_TEMPLATE/1-bug-report.yml index c40644bfc6d9ba..496d06d3ad70b8 100644 --- a/.github/ISSUE_TEMPLATE/1-bug-report.yml +++ b/.github/ISSUE_TEMPLATE/1-bug-report.yml @@ -33,7 +33,7 @@ body: label: How often does it reproduce? Is there a required condition? - type: textarea attributes: - label: What is the expected behavior? + label: What is the expected behavior? Why is that the expected behavior? description: If possible please provide textual output instead of screenshots. - type: textarea attributes: diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index 840d4afe942f1e..4cb5d49fe77324 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ env.NODE_VERSION }} diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml index 12d5e2794091cd..235a48fa5343c9 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information @@ -57,7 +57,7 @@ jobs: mkdir tarballs mv *.tar.gz tarballs - name: Upload tarball artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 with: name: tarballs path: tarballs @@ -65,17 +65,17 @@ jobs: needs: build-tarball runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information run: npx envinfo - name: Download tarball - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 with: name: tarballs path: tarballs diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 64eb7ddad23988..32025677b7f112 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install deps diff --git a/.github/workflows/close-stale-feature-requests.yml b/.github/workflows/close-stale-feature-requests.yml index f8eef7ce35d84e..ac792a84e4e410 100644 --- a/.github/workflows/close-stale-feature-requests.yml +++ b/.github/workflows/close-stale-feature-requests.yml @@ -39,7 +39,7 @@ jobs: if: github.repository == 'nodejs/node' runs-on: ubuntu-latest steps: - - uses: actions/stale@v7 + - uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: 180 diff --git a/.github/workflows/close-stalled.yml b/.github/workflows/close-stalled.yml index 6eadfae6dd2481..8fec9f1d6c417b 100644 --- a/.github/workflows/close-stalled.yml +++ b/.github/workflows/close-stalled.yml @@ -20,7 +20,7 @@ jobs: if: github.repository == 'nodejs/node' runs-on: ubuntu-latest steps: - - uses: actions/stale@v7 + - uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-close: 30 diff --git a/.github/workflows/comment-labeled.yml b/.github/workflows/comment-labeled.yml index 5f59a48bb5a6d0..228875e0cba30a 100644 --- a/.github/workflows/comment-labeled.yml +++ b/.github/workflows/comment-labeled.yml @@ -10,6 +10,10 @@ env: This issue/PR was marked as stalled, it will be automatically closed in 30 days. If it should remain open, please leave a comment explaining why it should remain open. FAST_TRACK_MESSAGE: Fast-track has been requested by @${{ github.actor }}. Please 👍 to approve. + 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. permissions: contents: read @@ -38,3 +42,14 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: gh pr comment ${{ github.event.pull_request.number }} --repo ${{ github.repository }} --body "$FAST_TRACK_MESSAGE" + + notable-change: + permissions: + pull-requests: write + if: github.repository == 'nodejs/node' && github.event_name == 'pull_request_target' && github.event.label.name == 'notable-change' + runs-on: ubuntu-latest + steps: + - name: Add notable change description + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: gh pr comment ${{ github.event.pull_request.number }} --repo ${{ github.repository }} --body "$NOTABLE_CHANGE_MESSAGE" diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 617e434e40404d..1dcc459b24687b 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 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@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.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 59ab3d2ce64263..c469c8810daada 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 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@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.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 f718c5c7773026..88c1338028a4f3 100644 --- a/.github/workflows/coverage-linux-without-intl.yml +++ b/.github/workflows/coverage-linux-without-intl.yml @@ -37,11 +37,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information @@ -64,6 +64,6 @@ jobs: - name: Clean tmp run: rm -rf coverage/tmp && rm -rf out - name: Upload - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1 with: directory: ./coverage diff --git a/.github/workflows/coverage-windows.yml b/.github/workflows/coverage-windows.yml index 3dd8d01565c8cb..04ff310d2f0216 100644 --- a/.github/workflows/coverage-windows.yml +++ b/.github/workflows/coverage-windows.yml @@ -39,11 +39,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: windows-2022 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install deps @@ -65,6 +65,6 @@ jobs: - name: Clean tmp run: npx rimraf ./coverage/tmp - name: Upload - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1 with: directory: ./coverage diff --git a/.github/workflows/daily-wpt-fyi.yml b/.github/workflows/daily-wpt-fyi.yml index 14a6e984c5ad84..0e2c3df9fcbacb 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@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 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@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.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@v3 + uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 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@v3 + uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: repository: web-platform-tests/wpt persist-credentials: false @@ -121,7 +121,7 @@ jobs: run: cp wptreport.json wptreport-${{ steps.setup-node.outputs.node-version }}.json - name: Upload GitHub Actions artifact if: ${{ env.WPT_REPORT != '' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 with: path: out/wpt/wptreport-*.json name: WPT Reports @@ -135,6 +135,8 @@ jobs: run: | gzip wptreport.json echo "## Node.js ${{ steps.setup-node.outputs.node-version }}" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "WPT Revision: [\`${WPT_REVISION:0:7}\`](https://github.com/web-platform-tests/wpt/commits/$WPT_REVISION)" >> $GITHUB_STEP_SUMMARY for WPT_FYI_ENDPOINT in "https://wpt.fyi/api/results/upload" "https://staging.wpt.fyi/api/results/upload" do response=$(curl -sS \ @@ -148,7 +150,7 @@ jobs: origin=${WPT_FYI_ENDPOINT%/api/results/upload} echo "" >> $GITHUB_STEP_SUMMARY - echo "Run ID [$run_id]($origin/api/runs/$run_id) added to the processor queue at $origin" >> $GITHUB_STEP_SUMMARY + echo "Run ID [\`$run_id\`]($origin/api/runs/$run_id) added to the processor queue at ${origin:8}" >> $GITHUB_STEP_SUMMARY echo "- [View on the ${origin:8} dashboard]($origin/results?run_id=$run_id)" >> $GITHUB_STEP_SUMMARY fi done diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index f14bde4c7fb629..0c23505bf0ac07 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ env.NODE_VERSION }} - name: Environment Information diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 76660343ca2f46..0c24159658c620 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -24,18 +24,18 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ env.NODE_VERSION }} - name: Environment Information run: npx envinfo - name: Build run: NODE=$(command -v node) make doc-only - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 with: name: docs path: out/doc diff --git a/.github/workflows/find-inactive-collaborators.yml b/.github/workflows/find-inactive-collaborators.yml index 33b63389934f5e..d03e994c2a487f 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: fetch-depth: 0 persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ env.NODE_VERSION }} diff --git a/.github/workflows/find-inactive-tsc.yml b/.github/workflows/find-inactive-tsc.yml index 452a428959cef1..15ccfd5dd82c84 100644 --- a/.github/workflows/find-inactive-tsc.yml +++ b/.github/workflows/find-inactive-tsc.yml @@ -1,4 +1,4 @@ -name: Find inactive TSC members +name: Find inactive TSC voting members on: schedule: @@ -20,13 +20,13 @@ jobs: steps: - name: Checkout the repo - uses: actions/checkout@v3 + uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: fetch-depth: 0 persist-credentials: false - name: Clone nodejs/TSC repository - uses: actions/checkout@v3 + uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: fetch-depth: 0 path: .tmp @@ -34,11 +34,11 @@ jobs: repository: nodejs/TSC - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ env.NODE_VERSION }} - - name: Find inactive TSC members + - name: Find inactive TSC voting members run: tools/find-inactive-tsc.mjs >> $GITHUB_ENV - name: Open pull request @@ -56,6 +56,6 @@ jobs: @nodejs/tsc ${{ env.INACTIVE_TSC_HANDLES }} ${{ env.DETAILS_FOR_COMMIT_BODY }} - commit-message: 'meta: move one or more TSC members to emeritus' + commit-message: 'meta: move TSC voting member(s) to regular member(s)' labels: meta - title: 'meta: move one or more TSC members to emeritus' + title: 'meta: move TSC voting member(s) to regular member(s)' diff --git a/.github/workflows/label-pr.yml b/.github/workflows/label-pr.yml index 922a9359f5ed20..95fdd42a4c700a 100644 --- a/.github/workflows/label-pr.yml +++ b/.github/workflows/label-pr.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: nodejs/node-pr-labeler@v1 + - uses: nodejs/node-pr-labeler@d4cf1b8b9f23189c37917000e5e17e796c770a6b # v1 with: repo-token: ${{ secrets.GH_USER_TOKEN }} configuration-path: .github/label-pr-config.yml diff --git a/.github/workflows/license-builder.yml b/.github/workflows/license-builder.yml index a6732b149c01f5..830865ac3d0e85 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 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 c9b8f08f99e4a4..96eb4604a20b70 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: fetch-depth: 0 persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ env.NODE_VERSION }} - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Use Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: fetch-depth: 2 persist-credentials: false diff --git a/.github/workflows/notify-force-push.yml b/.github/workflows/notify-force-push.yml deleted file mode 100644 index 69aacc8524fd93..00000000000000 --- a/.github/workflows/notify-force-push.yml +++ /dev/null @@ -1,28 +0,0 @@ -on: - push: - branches: - - main - -name: Notify on Force Push -permissions: - contents: read - -jobs: - slackNotification: - name: Slack Notification - if: github.repository == 'nodejs/node' && github.event.forced - runs-on: ubuntu-latest - steps: - - name: Slack Notification - uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7 - env: - SLACK_COLOR: '#DE512A' - SLACK_ICON: https://github.com/nodejs.png?size=48 - SLACK_TITLE: ${{ github.actor }} force-pushed to ${{ github.ref }} - SLACK_MESSAGE: | - A commit was force-pushed to by - - Before: - After: - SLACK_USERNAME: nodejs-bot - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} diff --git a/.github/workflows/notify-on-push.yml b/.github/workflows/notify-on-push.yml new file mode 100644 index 00000000000000..d1899984527ba4 --- /dev/null +++ b/.github/workflows/notify-on-push.yml @@ -0,0 +1,70 @@ +on: + push: + branches: + - main + +name: Notify on Push +permissions: + contents: read + +jobs: + notifyOnForcePush: + name: Notify on Force Push on `main` + if: github.repository == 'nodejs/node' && github.event.forced + runs-on: ubuntu-latest + steps: + - name: Slack Notification + uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7 + env: + SLACK_COLOR: '#DE512A' + SLACK_ICON: https://github.com/nodejs.png?size=48 + SLACK_TITLE: ${{ github.actor }} force-pushed to ${{ github.ref }} + SLACK_MESSAGE: | + @here A commit was force-pushed to by + + Before: + After: + SLACK_USERNAME: nodejs-bot + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + + notifyOnMissingMetadata: + name: Notify on Push on `main` that lacks metadata + if: github.repository == 'nodejs/node' + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - uses: actions/checkout@v3 + with: + persist-credentials: false + - name: Check commit message + run: npx -q core-validate-commit ${{ github.event.after }} || echo "INVALID_COMMIT_MESSAGE=1" >> $GITHUB_ENV + - name: Retrieve PR number if possible + if: env.INVALID_COMMIT_MESSAGE + run: | + COMMIT_TITLE=$(git --no-pager log --oneline -1 --no-color) node <<'EOF' >> $GITHUB_ENV || true + const invalidCommitMessageMatch = /\s\(\#(\d+)\)$/.exec(process.env.COMMIT_TITLE); + if (invalidCommitMessageMatch == null) process.exit(1) + console.log(`PR_ID=${invalidCommitMessageMatch[1]}`) + EOF + - name: Comment on the Pull Request + if: ${{ env.PR_ID }} + run: | + gh pr comment ${{ env.PR_ID }} --repo "${{ github.repository }}" \ + --body "A commit referencing this Pull Request was pushed to `main` by @${{ github.actor }} without the expected commit metadata added to its message." + env: + GH_TOKEN: ${{ github.token }} + - name: Slack Notification + if: ${{ env.INVALID_COMMIT_MESSAGE }} + uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7 + env: + SLACK_COLOR: '#DE512A' + SLACK_ICON: https://github.com/nodejs.png?size=48 + SLACK_TITLE: Invalid commit was pushed to ${{ github.repository.default_branch }} + SLACK_MESSAGE: | + @here A commit lacking the expected metadata was pushed to by . + + Before: + After: + SLACK_USERNAME: nodejs-bot + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml new file mode 100644 index 00000000000000..27ca97808cd52a --- /dev/null +++ b/.github/workflows/scorecard.yml @@ -0,0 +1,78 @@ +# This workflow uses actions that are not certified by GitHub. They are provided +# by a third-party and are governed by separate terms of service, privacy +# policy, and support documentation. + +name: Scorecard supply-chain security +on: + # For Branch-Protection check. Only the default branch is supported. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection + branch_protection_rule: + # To guarantee Maintained check is occasionally updated. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained + schedule: + - cron: 16 21 * * 1 + push: + branches: [main] + workflow_dispatch: + +# Declare default permissions as read only. +permissions: read-all + +jobs: + analysis: + name: Scorecard analysis + runs-on: ubuntu-latest + permissions: + # Needed to upload the results to code-scanning dashboard. + security-events: write + # Needed to publish results and get a badge (see publish_results below). + id-token: write + # Uncomment the permissions below if installing in a private repository. + # contents: read + # actions: read + + steps: + - name: Harden Runner + uses: step-security/harden-runner@1f99358870fe1c846a3ccba386cc2b2246836776 # v2.2.1 + with: + egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs + + - name: Checkout code + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 + with: + persist-credentials: false + + - name: Run analysis + uses: ossf/scorecard-action@e38b1902ae4f44df626f11ba0734b14fb91f8f86 # v2.1.2 + with: + results_file: results.sarif + results_format: sarif + # (Optional) "write" PAT token. Uncomment the `repo_token` line below if: + # - you want to enable the Branch-Protection check on a *public* repository, or + # - you are installing Scorecard on a *private* repository + # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat. + # repo_token: ${{ secrets.SCORECARD_TOKEN }} + + # Public repositories: + # - Publish results to OpenSSF REST API for easy access by consumers + # - Allows the repository to include the Scorecard badge. + # - See https://github.com/ossf/scorecard-action#publishing-results. + # For private repositories: + # - `publish_results` will always be set to `false`, regardless + # of the value entered here. + publish_results: true + + # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF + # format to the repository Actions tab. + - name: Upload artifact + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 + with: + name: SARIF file + path: results.sarif + retention-days: 5 + + # Upload the results to GitHub's code scanning dashboard. + - name: Upload to code-scanning + uses: github/codeql-action/upload-sarif@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9 + with: + sarif_file: results.sarif diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml index fc8d38945dd397..892bcff481a52f 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/test-internet.yml b/.github/workflows/test-internet.yml index 236d76741be40b..3ecbc5442547da 100644 --- a/.github/workflows/test-internet.yml +++ b/.github/workflows/test-internet.yml @@ -32,11 +32,11 @@ jobs: if: github.repository == 'nodejs/node' || github.event_name != 'schedule' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 2a1614e7e8cba1..4c8c0787bf4b0f 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index c09004cbe422c7..9e9bb3e1b45475 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@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v4 + uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/timezone-update.yml b/.github/workflows/timezone-update.yml index a28434f2d9be74..0c6b6f5fafd92c 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@v3 + uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - name: Checkout unicode-org/icu-data - uses: actions/checkout@v3 + uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: path: icu-data persist-credentials: false diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 8d4e5ae028253c..0ee2cfc758f757 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -87,13 +87,10 @@ jobs: subsystem: deps label: dependencies run: | - NEW_VERSION=$(gh api repos/aklomp/base64/releases/latest -q '.tag_name|ltrimstr("v")') - CURRENT_VERSION=$(grep "base64 LANGUAGES C VERSION" ./deps/base64/base64/CMakeLists.txt | \ - sed -n "s/^.*VERSION \(.*\))/\1/p") - if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then - echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV - ./tools/update-base64.sh "$NEW_VERSION" - fi + ./tools/dep_updaters/update-base64.sh > temp-output + cat temp-output + tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true + rm temp-output - id: acorn subsystem: deps label: dependencies @@ -134,35 +131,26 @@ jobs: subsystem: deps label: dependencies run: | - NEW_VERSION=$(gh api repos/ada-url/ada/releases/latest -q '.tag_name|ltrimstr("v")') - CURRENT_VERSION=$(grep "#define ADA_VERSION" ./deps/ada/ada.h | sed -n "s/^.*VERSION \(.*\)/\1/p") - if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then - echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV - ./tools/dep_updaters/update-ada.sh "$NEW_VERSION" - fi + ./tools/dep_updaters/update-ada.sh > temp-output + cat temp-output + tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true + rm temp-output - id: nghttp2 subsystem: deps label: dependencies run: | - NEW_VERSION=$(gh api repos/nghttp2/nghttp2/releases/latest -q '.tag_name|ltrimstr("v")') - CURRENT_VERSION=$(grep "#define NGHTTP2_VERSION" ./deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h | sed -n "s/^.*VERSION \(.*\)/\1/p") - if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then - echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV - ./tools/update-nghttp2.sh "$NEW_VERSION" - fi + ./tools/dep_updaters/update-nghttp2.sh > temp-output + cat temp-output + tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true + rm temp-output - id: llhttp subsystem: deps label: dependencies run: | - NEW_VERSION=$(gh api repos/nodejs/llhttp/releases/latest -q '.tag_name|ltrimstr("release/v")') - CURRENT_MAJOR_VERSION=$(grep "#define LLHTTP_VERSION_MAJOR" ./deps/llhttp/include/llhttp.h | sed -n "s/^.*MAJOR \(.*\)/\1/p") - CURRENT_MINOR_VERSION=$(grep "#define LLHTTP_VERSION_MINOR" ./deps/llhttp/include/llhttp.h | sed -n "s/^.*MINOR \(.*\)/\1/p") - CURRENT_PATCH_VERSION=$(grep "#define LLHTTP_VERSION_PATCH" ./deps/llhttp/include/llhttp.h | sed -n "s/^.*PATCH \(.*\)/\1/p") - CURRENT_VERSION="$CURRENT_MAJOR_VERSION.$CURRENT_MINOR_VERSION.$CURRENT_PATCH_VERSION" - if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then - echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV - ./tools/update-llhttp.sh "$NEW_VERSION" - fi + ./tools/dep_updaters/update-llhttp.sh > temp-output + cat temp-output + tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true + rm temp-output - id: c-ares subsystem: deps label: dependencies @@ -171,8 +159,16 @@ jobs: cat temp-output tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true rm temp-output + - id: brotli + subsystem: deps + label: dependencies + run: | + ./tools/dep_updaters/update-brotli.sh > temp-output + cat temp-output + tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true + rm temp-output steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 with: persist-credentials: false - run: ${{ matrix.run }} diff --git a/.github/workflows/update-openssl.yml b/.github/workflows/update-openssl.yml index c2f919c60f6dcb..f79ea550b42818 100644 --- a/.github/workflows/update-openssl.yml +++ b/.github/workflows/update-openssl.yml @@ -28,7 +28,8 @@ jobs: NEW_VERSION=$(gh api repos/quictls/openssl/releases -q '.[].tag_name|select(contains("openssl-3"))|ltrimstr("openssl-")' | head -n1) NEW_VERSION_NO_RELEASE_1=$(case $NEW_VERSION in *quic1) echo ${NEW_VERSION%1};; *) echo $NEW_VERSION;; esac) VERSION_H="./deps/openssl/config/archs/linux-x86_64/asm/include/openssl/opensslv.h" - CURRENT_VERSION=$(grep "OPENSSL_FULL_VERSION_STR" $VERSION_H | sed -n "s/^.*VERSION_STR \"\(.*\)\"/\1/p") + CURRENT_VERSION=$(grep "OPENSSL_FULL_VERSION_STR" $VERSION_H | sed -n "s/^.*VERSION_STR \"\(.*\)\"/\1/p" | sed 's/+/-/g') + echo "comparing current version: $CURRENT_VERSION with $NEW_VERSION_NO_RELEASE_1" if [ "$NEW_VERSION_NO_RELEASE_1" != "$CURRENT_VERSION" ]; then echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV echo "HAS_UPDATE=true" >> $GITHUB_ENV diff --git a/.gitignore b/.gitignore index 9881176886826b..b3399fa0df2655 100644 --- a/.gitignore +++ b/.gitignore @@ -65,12 +65,12 @@ _UpgradeReport_Files/ /tools/msvs/genfiles/ /npm.wxs /corepack.wxs -/tools/msvs/msi/Release/ -/tools/msvs/msi/obj/ -/tools/msvs/msi/x64/ +/tools/msvs/msi/**/Release/ +/tools/msvs/msi/**/obj/ +/tools/msvs/msi/**/x64/ # Exclude MSVS files used for .msi file generation -!tools/msvs/msi/custom_actions.vcxproj -!tools/msvs/msi/nodemsi.sln +!tools/msvs/msi/**/custom_actions.vcxproj +!tools/msvs/msi/**/nodemsi.sln # === Rules for GYP artifacts === *-nodegyp* diff --git a/BUILDING.md b/BUILDING.md index a3ddd42fd91149..e1b48644de96af 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -113,7 +113,7 @@ platforms. This is true regardless of entries in the table below. | Windows | x64, x86 (WoW64) | >= Windows 10/Server 2016 | Tier 1 | [^2],[^3] | | Windows | x86 (native) | >= Windows 10/Server 2016 | Tier 1 (running) / Experimental (compiling)[^4] | | | Windows | x64, x86 | Windows 8.1/Server 2012 | Experimental | | -| Windows | arm64 | >= Windows 10 | Tier 2 (compiling) / Experimental (running) | | +| Windows | arm64 | >= Windows 10 | Tier 2 | | | macOS | x64 | >= 10.15 | Tier 1 | For notes about compilation see [^5] | | macOS | arm64 | >= 11 | Tier 1 | | | SmartOS | x64 | >= 18 | Tier 2 | | @@ -586,10 +586,7 @@ to run it again before invoking `make -j4`. Optional requirements to build the MSI installer package: -* The [WiX Toolset v3.11](https://wixtoolset.org/releases/) and the - [Wix Toolset Visual Studio 2019 Extension](https://marketplace.visualstudio.com/items?itemName=WixToolset.WixToolsetVisualStudio2019Extension) -* The [WiX Toolset v3.14](https://wixtoolset.org/releases/) if - building for Windows 10 on ARM (ARM64) +* The .NET SDK component from [Visual Studio 2019](https://visualstudio.microsoft.com/vs/older-downloads/#visual-studio-2019-and-other-products) Optional requirements for compiling for Windows 10 on ARM (ARM64): diff --git a/CHANGELOG.md b/CHANGELOG.md index ff56426bb7e66e..7f2ced9d6182b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,8 @@ release. -19.8.1
+19.9.0
+19.8.1
19.8.0
19.7.0
19.6.1
diff --git a/GOVERNANCE.md b/GOVERNANCE.md index f5f3ffa015ced7..6ba1ef2daf2c3d 100644 --- a/GOVERNANCE.md +++ b/GOVERNANCE.md @@ -118,8 +118,8 @@ the issue tracker is: * A TSC member opens an issue explaining the proposal/issue and @-mentions @nodejs/tsc. -* The proposal passes if, after 72 hours, there are two or more TSC approvals - and no TSC opposition. +* The proposal passes if, after 72 hours, there are two or more TSC voting + member approvals and no TSC voting member opposition. * If there is an extended impasse, a TSC member may make a motion for a vote. ## Collaborator nominations @@ -177,6 +177,6 @@ The TSC follows a [Consensus Seeking][] decision-making model per the [Consensus Seeking]: https://en.wikipedia.org/wiki/Consensus-seeking_decision-making [TSC Charter]: https://github.com/nodejs/TSC/blob/HEAD/TSC-Charter.md -[collaborators discussion page]: https://github.com/orgs/nodejs/teams/collaborators/discussions +[collaborators discussion page]: https://github.com/nodejs/collaborators/discussions/categories/collaborator-nominations [nodejs/help]: https://github.com/nodejs/help [nodejs/node]: https://github.com/nodejs/node diff --git a/Makefile b/Makefile index 0be0659d372d2d..1fa35574ed84d4 100644 --- a/Makefile +++ b/Makefile @@ -602,7 +602,8 @@ test-wpt: all test-wpt-report: $(RM) -r out/wpt mkdir -p out/wpt - WPT_REPORT=1 $(PYTHON) tools/test.py --shell $(NODE) $(PARALLEL_ARGS) wpt + -WPT_REPORT=1 $(PYTHON) tools/test.py --shell $(NODE) $(PARALLEL_ARGS) wpt + $(NODE) "$$PWD/tools/merge-wpt-reports.mjs" .PHONY: test-simple test-simple: | cctest # Depends on 'all'. @@ -1518,8 +1519,8 @@ cpplint: lint-cpp # Try with '--system' if it fails without; the system may have set '--user' lint-py-build: $(info Pip installing flake8 linter on $(shell $(PYTHON) --version)...) - $(PYTHON) -m pip install --no-user --upgrade -t tools/pip/site-packages flake8 || \ - $(PYTHON) -m pip install --no-user --upgrade --system -t tools/pip/site-packages flake8 + $(PYTHON) -m pip install --upgrade -t tools/pip/site-packages flake8 || \ + $(PYTHON) -m pip install --upgrade --system -t tools/pip/site-packages flake8 .PHONY: lint-py ifneq ("","$(wildcard tools/pip/site-packages/flake8)") @@ -1538,8 +1539,8 @@ endif # Try with '--system' if it fails without; the system may have set '--user' lint-yaml-build: $(info Pip installing yamllint on $(shell $(PYTHON) --version)...) - $(PYTHON) -m pip install --no-user --upgrade -t tools/pip/site-packages yamllint || \ - $(PYTHON) -m pip install --no-user --upgrade --system -t tools/pip/site-packages yamllint + $(PYTHON) -m pip install --upgrade -t tools/pip/site-packages yamllint || \ + $(PYTHON) -m pip install --upgrade --system -t tools/pip/site-packages yamllint .PHONY: lint-yaml # Lints the YAML files with yamllint. diff --git a/README.md b/README.md index 73dc15bc66bc35..e3539ef01dfc46 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,8 @@ For information about the governance of the Node.js project, see ### TSC (Technical Steering Committee) +#### TSC voting members + * [aduh95](https://github.com/aduh95) - @@ -168,14 +170,10 @@ For information about the governance of the Node.js project, see **Beth Griggs** <> (she/her) * [BridgeAR](https://github.com/BridgeAR) - **Ruben Bridgewater** <> (he/him) -* [ChALkeR](https://github.com/ChALkeR) - - **Сковорода Никита Андреевич** <> (he/him) * [cjihrig](https://github.com/cjihrig) - **Colin Ihrig** <> (he/him) * [danielleadams](https://github.com/danielleadams) - **Danielle Adams** <> (she/her) -* [fhinkel](https://github.com/fhinkel) - - **Franziska Hinkelmann** <> (she/her) * [GeoffreyBooth](https://github.com/geoffreybooth) - **Geoffrey Booth** <> (he/him) * [gireeshpunathil](https://github.com/gireeshpunathil) - @@ -205,28 +203,43 @@ For information about the governance of the Node.js project, see * [Trott](https://github.com/Trott) - **Rich Trott** <> (he/him) -
- -Emeriti - -### TSC emeriti +#### TSC regular members * [addaleax](https://github.com/addaleax) - **Anna Henningsen** <> (she/her) * [bnoordhuis](https://github.com/bnoordhuis) - **Ben Noordhuis** <> -* [chrisdickinson](https://github.com/chrisdickinson) - - **Chris Dickinson** <> +* [ChALkeR](https://github.com/ChALkeR) - + **Сковорода Никита Андреевич** <> (he/him) * [codebytere](https://github.com/codebytere) - **Shelley Vohr** <> (she/her) * [danbev](https://github.com/danbev) - **Daniel Bevenius** <> (he/him) +* [fhinkel](https://github.com/fhinkel) - + **Franziska Hinkelmann** <> (she/her) +* [gabrielschulhof](https://github.com/gabrielschulhof) - + **Gabriel Schulhof** <> +* [mscdex](https://github.com/mscdex) - + **Brian White** <> +* [MylesBorins](https://github.com/MylesBorins) - + **Myles Borins** <> (he/him) +* [rvagg](https://github.com/rvagg) - + **Rod Vagg** <> +* [TimothyGu](https://github.com/TimothyGu) - + **Tiancheng "Timothy" Gu** <> (he/him) + +
+ +TSC emeriti members + +#### TSC emeriti members + +* [chrisdickinson](https://github.com/chrisdickinson) - + **Chris Dickinson** <> * [evanlucas](https://github.com/evanlucas) - **Evan Lucas** <> (he/him) * [Fishrock123](https://github.com/Fishrock123) - **Jeremiah Senkpiel** <> (he/they) -* [gabrielschulhof](https://github.com/gabrielschulhof) - - **Gabriel Schulhof** <> * [gibfahn](https://github.com/gibfahn) - **Gibson Fahnestock** <> (he/him) * [indutny](https://github.com/indutny) - @@ -237,10 +250,6 @@ For information about the governance of the Node.js project, see **Josh Gavant** <> * [mmarchini](https://github.com/mmarchini) - **Mary Marchini** <> (she/her) -* [mscdex](https://github.com/mscdex) - - **Brian White** <> -* [MylesBorins](https://github.com/MylesBorins) - - **Myles Borins** <> (he/him) * [nebrius](https://github.com/nebrius) - **Bryan Hughes** <> * [ofrobots](https://github.com/ofrobots) - @@ -249,16 +258,12 @@ For information about the governance of the Node.js project, see **Alexis Campailla** <> * [piscisaureus](https://github.com/piscisaureus) - **Bert Belder** <> -* [rvagg](https://github.com/rvagg) - - **Rod Vagg** <> * [sam-github](https://github.com/sam-github) - **Sam Roberts** <> * [shigeki](https://github.com/shigeki) - **Shigeki Ohtsu** <> (he/him) * [thefourtheye](https://github.com/thefourtheye) - **Sakthipriyan Vairamani** <> (he/him) -* [TimothyGu](https://github.com/TimothyGu) - - **Tiancheng "Timothy" Gu** <> (he/him) * [trevnorris](https://github.com/trevnorris) - **Trevor Norris** <> @@ -801,8 +806,6 @@ releases on a rotation basis as outlined in the * Datadog * [bengl](https://github.com/bengl) - **Bryan English** <> (he/him) - * [vdeturckheim](https://github.com/vdeturckheim) - - **Vladimir de Turckheim** <> (he/him) * NearForm * [RafaelGSS](https://github.com/RafaelGSS) - **Rafael Gonzaga** <> (he/him) diff --git a/SECURITY.md b/SECURITY.md index 450335951b64cc..02c9f83aa32c1a 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -31,11 +31,12 @@ maintainers. Here is the security disclosure policy for Node.js * The security report is received and is assigned a primary handler. This - person will coordinate the fix and release process. The problem is confirmed - and a list of all affected versions is determined. Code is audited to find - any potential similar problems. Fixes are prepared for all releases which are - still under maintenance. These fixes are not committed to the public - repository but rather held locally pending the announcement. + person will coordinate the fix and release process. The problem is validated + against all supported Node.js versions. Once confirmed, a list of all affected + versions is determined. Code is audited to find any potential similar + problems. Fixes are prepared for all supported releases. + These fixes are not committed to the public repository but rather held locally + pending the announcement. * A suggested embargo date for this vulnerability is chosen and a CVE (Common Vulnerabilities and Exposures (CVE®)) is requested for the vulnerability. @@ -116,7 +117,8 @@ lead to a loss of confidentiality, integrity, or availability. npm registry. The code run inherits all the privileges of the execution user. 4. Inputs provided to it by the code it is asked to run, as it is the - responsibility of the application to perform the required input validations. + responsibility of the application to perform the required input validations, + e.g. the input to `JSON.parse()`. 5. Any connection used for inspector (debugger protocol) regardless of being opened by command line options or Node.js APIs, and regardless of the remote end being on the local machine or remote. @@ -124,7 +126,8 @@ lead to a loss of confidentiality, integrity, or availability. See . Any unexpected behavior from the data manipulation from Node.js Internal -functions are considered a vulnerability. +functions may be considered a vulnerability if they are expoitable via +untrusted resources. In addition to addressing vulnerabilities based on the above, the project works to avoid APIs and internal implementations that make it "easy" for application @@ -193,7 +196,7 @@ the community they pose. * If Node.js is asked to connect to a remote site and return an artifact, it is not considered a vulnerability if the size of - that artifact is large enough to impact performance and or + that artifact is large enough to impact performance or cause the runtime to run out of resources. ## Receiving security updates diff --git a/benchmark/_http-benchmarkers.js b/benchmark/_http-benchmarkers.js index 3c8997e73a8d2d..ae5429fa721750 100644 --- a/benchmark/_http-benchmarkers.js +++ b/benchmark/_http-benchmarkers.js @@ -5,7 +5,7 @@ const path = require('path'); const fs = require('fs'); const requirementsURL = - 'https://github.com/nodejs/node/blob/HEAD/benchmark/writing-and-running-benchmarks.md#http-benchmark-requirements'; + 'https://github.com/nodejs/node/blob/HEAD/doc/contributing/writing-and-running-benchmarks.md#http-benchmark-requirements'; // The port used by servers and wrk exports.PORT = Number(process.env.PORT) || 12346; diff --git a/benchmark/url/whatwgurl-canParse.js b/benchmark/url/whatwgurl-canParse.js new file mode 100644 index 00000000000000..3896d78578f2e3 --- /dev/null +++ b/benchmark/url/whatwgurl-canParse.js @@ -0,0 +1,14 @@ +'use strict'; +const common = require('../common.js'); + +const bench = common.createBenchmark(main, { + type: Object.keys(common.urls), + n: [1e6], +}); + +function main({ type, n }) { + bench.start(); + for (let i = 0; i < n; i += 1) + URL.canParse(common.urls[type]); + bench.end(n); +} diff --git a/codecov.yml b/codecov.yml index 462fb1e79f8b5b..80ee32b360abce 100644 --- a/codecov.yml +++ b/codecov.yml @@ -8,6 +8,12 @@ comment: false # require_changes: true codecov: + branch: main notify: # Wait for all coverage builds: after_n_builds: 2 + +coverage: + status: + project: off + patch: off diff --git a/common.gypi b/common.gypi index b1d87780db54c3..407aaa577d14a4 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.12', + 'v8_embedder_string': '-node.16', ##### V8 defaults for Node.js ##### diff --git a/configure.py b/configure.py index d7765ef6bd9487..b0a0a7e0345533 100755 --- a/configure.py +++ b/configure.py @@ -5,7 +5,6 @@ import errno import argparse import os -import pipes import pprint import re import shlex @@ -2074,7 +2073,7 @@ def make_bin_override(): pprint.pformat(output, indent=2, width=1024) + '\n') write('config.status', '#!/bin/sh\nset -x\nexec ./configure ' + - ' '.join([pipes.quote(arg) for arg in original_argv]) + '\n') + ' '.join([shlex.quote(arg) for arg in original_argv]) + '\n') os.chmod('config.status', 0o775) diff --git a/deps/corepack/CHANGELOG.md b/deps/corepack/CHANGELOG.md index 71167e79cd6461..cb381271d05e56 100644 --- a/deps/corepack/CHANGELOG.md +++ b/deps/corepack/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.17.1](https://github.com/nodejs/corepack/compare/v0.17.0...v0.17.1) (2023-03-17) + + +### Features + +* update package manager versions ([#245](https://github.com/nodejs/corepack/issues/245)) ([673f3b7](https://github.com/nodejs/corepack/commit/673f3b7f18421a49da1e2c55656666a74ce94474)) + ## [0.17.0](https://github.com/nodejs/corepack/compare/v0.16.0...v0.17.0) (2023-02-24) diff --git a/deps/corepack/README.md b/deps/corepack/README.md index 8d76baea4bbf8d..a68555daf5f318 100644 --- a/deps/corepack/README.md +++ b/deps/corepack/README.md @@ -1,21 +1,30 @@ # corepack -Corepack is a zero-runtime-dependency Node.js script that acts as a bridge between Node.js projects and the package managers they are intended to be used with during development. 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. +Corepack is a zero-runtime-dependency Node.js script that acts as a bridge +between Node.js projects and the package managers they are intended to be used +with during development. 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. -**Important:** At the moment, Corepack only covers Yarn and pnpm. Given that we have little control on the npm project, we prefer to focus on the Yarn and pnpm use cases. As a result, Corepack doesn't have any effect at all on the way you use npm. +**Important:** At the moment, Corepack only covers Yarn and pnpm. Given that we +have little control on the npm project, we prefer to focus on the Yarn and pnpm +use cases. As a result, Corepack doesn't have any effect at all on the way you +use npm. ## How to Install ### Default Installs -Corepack is distributed by default with Node.js 14.19.0 and 16.9.0, but is opt-in for the time being. Run `corepack enable` to install the required shims. +Corepack is distributed by default with Node.js 14.19.0 and 16.9.0, but is +opt-in for the time being. Run `corepack enable` to install the required shims. ### Manual Installs
Click here to see how to install Corepack using npm -First uninstall your global Yarn and pnpm binaries (just leave npm). In general, you'd do this by running the following command: +First uninstall your global Yarn and pnpm binaries (just leave npm). In general, +you'd do this by running the following command: ```shell npm uninstall -g yarn pnpm @@ -30,7 +39,9 @@ Then install Corepack: npm install -g corepack ``` -We do acknowledge the irony and overhead of using npm to install Corepack, which is at least part of why the preferred option is to use the Corepack version that is distributed along with Node.js itself. +We do acknowledge the irony and overhead of using npm to install Corepack, which +is at least part of why the preferred option is to use the Corepack version that +is distributed along with Node.js itself.
@@ -38,13 +49,21 @@ We do acknowledge the irony and overhead of using npm to install Corepack, which ### When Building Packages -Just use your package managers as you usually would. Run `yarn install` in Yarn projects, `pnpm install` in pnpm projects, and `npm` in npm projects. Corepack will catch these calls, and depending on the situation: +Just use your package managers as you usually would. Run `yarn install` in Yarn +projects, `pnpm install` in pnpm projects, and `npm` in npm projects. Corepack +will catch these calls, and depending on the situation: -- **If the local project is configured for the package manager you're using**, Corepack will silently download and cache the latest compatible version. +- **If the local project is configured for the package manager you're using**, + Corepack will silently download and cache the latest compatible version. -- **If the local project is configured for a different package manager**, Corepack will request you to run the command again using the right package manager - thus avoiding corruptions of your install artifacts. +- **If the local project is configured for a different package manager**, + Corepack will request you to run the command again using the right package + manager - thus avoiding corruptions of your install artifacts. -- **If the local project isn't configured for any package manager**, Corepack will assume that you know what you're doing, and will use whatever package manager version has been pinned as "known good release". Check the relevant section for more details. +- **If the local project isn't configured for any package manager**, Corepack + will assume that you know what you're doing, and will use whatever package + manager version has been pinned as "known good release". Check the relevant + section for more details. ### When Authoring Packages @@ -56,13 +75,18 @@ Set your package's manager with the `packageManager` field in `package.json`: } ``` -Here, `yarn` is the name of the package manager, specified at version `3.2.3`, along with the SHA-224 hash of this version for validation. `packageManager@x.y.z` is required. The hash is optional but strongly recommended as a security practice. Permitted values for the package manager are `yarn`, `npm`, and `pnpm`. +Here, `yarn` is the name of the package manager, specified at version `3.2.3`, +along with the SHA-224 hash of this version for validation. +`packageManager@x.y.z` is required. The hash is optional but strongly +recommended as a security practice. Permitted values for the package manager are +`yarn`, `npm`, and `pnpm`. ## Known Good Releases When running Corepack within projects that don't list a supported package manager, it will default to a set of Known Good Releases. In a way, you can -compare this to Node.js, where each version ships with a specific version of npm. +compare this to Node.js, where each version ships with a specific version of +npm. If there is no Known Good Release for the requested package manager, Corepack looks up the npm registry for the latest available version and cache it for @@ -75,53 +99,76 @@ from the `corepack prepare` and `corepack hydrate` commands. The utility commands detailed in the next section. -- Either you can use the network while building your container image, in which case you'll simply run `corepack prepare` to make sure that your image includes the Last Known Good release for the specified package manager. +- Either you can use the network while building your container image, in which + case you'll simply run `corepack prepare` to make sure that your image + includes the Last Known Good release for the specified package manager. - - If you want to have *all* Last Known Good releases for all package managers, just use the `--all` flag which will do just that. + - If you want to have _all_ Last Known Good releases for all package managers, + just use the `--all` flag which will do just that. -- Or you're publishing your project to a system where the network is unavailable, in which case you'll preemptively generate a package manager archive from your local computer (using `corepack prepare -o`) before storing it somewhere your container will be able to access (for example within your repository). After that it'll just be a matter of running `corepack hydrate ` to setup the cache. +- Or you're publishing your project to a system where the network is + unavailable, in which case you'll preemptively generate a package manager + archive from your local computer (using `corepack prepare -o`) before storing + it somewhere your container will be able to access (for example within your + repository). After that it'll just be a matter of running + `corepack hydrate ` to setup the cache. ## Utility Commands ### `corepack [@] [... args]` -This meta-command runs the specified package manager in the local folder. You can use it to force an install to run with a given version, which can be useful when looking for regressions. +This meta-command runs the specified package manager in the local folder. You +can use it to force an install to run with a given version, which can be useful +when looking for regressions. -Note that those commands still check whether the local project is configured for the given package manager (ie you won't be able to run `corepack yarn install` on a project where the `packageManager` field references `pnpm`). +Note that those commands still check whether the local project is configured for +the given package manager (ie you won't be able to run `corepack yarn install` +on a project where the `packageManager` field references `pnpm`). ### `corepack enable [... name]` -| Option | Description | -| --- | --- | +| Option | Description | +| --------------------- | --------------------------------------- | | `--install-directory` | Add the shims to the specified location | -This command will detect where Node.js is installed and will create shims next to it for each of the specified package managers (or all of them if the command is called without parameters). Note that the npm shims will not be installed unless explicitly requested, as npm is currently distributed with Node.js through other means. +This command will detect where Node.js is installed and will create shims next +to it for each of the specified package managers (or all of them if the command +is called without parameters). Note that the npm shims will not be installed +unless explicitly requested, as npm is currently distributed with Node.js +through other means. ### `corepack disable [... name]` -| Option | Description | -| --- | --- | +| Option | Description | +| --------------------- | ------------------------------------------ | | `--install-directory` | Remove the shims to the specified location | -This command will detect where Node.js is installed and will remove the shims from there. +This command will detect where Node.js is installed and will remove the shims +from there. ### `corepack prepare [... name@version]` -| Option | Description | -| --- | --- | -| `--all` | Prepare the "Last Known Good" version of all supported package managers | -| `-o,--output` | Also generate an archive containing the package managers | -| `--activate` | Also update the "Last Known Good" release | +| Option | Description | +| ------------- | ----------------------------------------------------------------------- | +| `--all` | Prepare the "Last Known Good" version of all supported package managers | +| `-o,--output` | Also generate an archive containing the package managers | +| `--activate` | Also update the "Last Known Good" release | -This command will download the given package managers (or the one configured for the local project if no argument is passed in parameter) and store it within the Corepack cache. If the `-o,--output` flag is set (optionally with a path as parameter), an archive will also be generated that can be used by the `corepack hydrate` command. +This command will download the given package managers (or the one configured for +the local project if no argument is passed in parameter) and store it within the +Corepack cache. If the `-o,--output` flag is set (optionally with a path as +parameter), an archive will also be generated that can be used by the +`corepack hydrate` command. ### `corepack hydrate ` -| Option | Description | -| --- | --- | +| Option | Description | +| ------------ | ----------------------------------------- | | `--activate` | Also update the "Last Known Good" release | -This command will retrieve the given package manager from the specified archive and will install it within the Corepack cache, ready to be used without further network interaction. +This command will retrieve the given package manager from the specified archive +and will install it within the Corepack cache, ready to be used without further +network interaction. ## Environment Variables @@ -134,31 +181,41 @@ This command will retrieve the given package manager from the specified archive manager versions that will be required for the projects you'll run, using `corepack hydrate`). -- `COREPACK_ENABLE_STRICT` can be set to `0` to prevent Corepack from throwing error - if the package manager does not correspond to the one defined for the current project. - This means that if a user is using the package manager specified in the current project, - it will use the version specified by the project's `packageManager` field. - But if the user is using other package manager different from the one specified - for the current project, it will use the system-wide package manager version. +- `COREPACK_ENABLE_STRICT` can be set to `0` to prevent Corepack from throwing + error if the package manager does not correspond to the one defined for the + current project. This means that if a user is using the package manager + specified in the current project, it will use the version specified by the + project's `packageManager` field. But if the user is using other package + manager different from the one specified for the current project, it will use + the system-wide package manager version. -- `COREPACK_ENABLE_PROJECT_SPEC` can be set to `0` to prevent Corepack from checking - if the package manager corresponds to the one defined for the current project. - This means that it will always use the system-wide package manager regardless of - what is being specified in the project's `packageManager` field. +- `COREPACK_ENABLE_PROJECT_SPEC` can be set to `0` to prevent Corepack from + checking if the package manager corresponds to the one defined for the current + project. This means that it will always use the system-wide package manager + regardless of what is being specified in the project's `packageManager` field. - `COREPACK_HOME` can be set in order to define where Corepack should install the package managers. By default it is set to `%LOCALAPPDATA%\node\corepack` on Windows, and to `$HOME/.cache/node/corepack` everywhere else. -- `COREPACK_ROOT` has no functional impact on Corepack itself; it's automatically being set in your environment by Corepack when it shells out to the underlying package managers, so that they can feature-detect its presence (useful for commands like `yarn init`). +- `COREPACK_ROOT` has no functional impact on Corepack itself; it's + automatically being set in your environment by Corepack when it shells out to + the underlying package managers, so that they can feature-detect its presence + (useful for commands like `yarn init`). -- `COREPACK_NPM_REGISTRY` sets the registry base url used when retrieving package managers from npm. Default value is `https://registry.npmjs.org` +- `COREPACK_NPM_REGISTRY` sets the registry base url used when retrieving + package managers from npm. Default value is `https://registry.npmjs.org` -- `COREPACK_NPM_TOKEN` sets a Bearer token authorization header when connecting to a npm type registry. +- `COREPACK_NPM_TOKEN` sets a Bearer token authorization header when connecting + to a npm type registry. -- `COREPACK_NPM_USERNAME` and `COREPACK_NPM_PASSWORD` to set a Basic authorization header when connecting to a npm type registry. Note that both environment variables are required and as plain text. If you want to send an empty password, explicitly set `COREPACK_NPM_PASSWORD` to an empty string. +- `COREPACK_NPM_USERNAME` and `COREPACK_NPM_PASSWORD` to set a Basic + authorization header when connecting to a npm type registry. Note that both + environment variables are required and as plain text. If you want to send an + empty password, explicitly set `COREPACK_NPM_PASSWORD` to an empty string. -- `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` are supported through [`node-proxy-agent`](https://github.com/TooTallNate/node-proxy-agent). +- `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` are supported through + [`node-proxy-agent`](https://github.com/TooTallNate/node-proxy-agent). ## Contributing diff --git a/deps/corepack/dist/corepack.js b/deps/corepack/dist/corepack.js index 79d93830e8278c..e87b6958323623 100755 --- a/deps/corepack/dist/corepack.js +++ b/deps/corepack/dist/corepack.js @@ -43737,7 +43737,7 @@ function String2(descriptor, ...args) { } // package.json -var version = "0.17.0"; +var version = "0.17.1"; // sources/Engine.ts var import_fs3 = __toESM(require("fs")); @@ -43749,7 +43749,7 @@ var import_semver3 = __toESM(require_semver2()); var config_default = { definitions: { npm: { - default: "9.5.1+sha1.dc74eb85d07d78e24fadc674968a1ea16b18108c", + default: "9.6.2+sha1.b7858ab694c4335778c6d91e2310a61f2e369dac", fetchLatestFrom: { type: "npm", package: "npm" @@ -43780,7 +43780,7 @@ var config_default = { } }, pnpm: { - default: "7.27.1+sha1.75c15a7a16389531192dab282e45aacdac1ed4c0", + default: "7.29.3+sha1.700f102ef6d5e57e01093ede3bfe5028d18cc52b", fetchLatestFrom: { type: "npm", package: "pnpm" @@ -43832,7 +43832,7 @@ var config_default = { package: "yarn" }, transparent: { - default: "3.4.1+sha224.cca891d4a8671d4898aba3426674bb734dbbf88cef82dd4dacd71c9f", + default: "3.5.0+sha224.8f42459cf3e9d5e6b89b7f432466d6b4017c6d948798ba16725e047f", commands: [ [ "yarn", diff --git a/deps/corepack/package.json b/deps/corepack/package.json index bf81b36b4dc6e6..2445e510c10a41 100644 --- a/deps/corepack/package.json +++ b/deps/corepack/package.json @@ -1,6 +1,6 @@ { "name": "corepack", - "version": "0.17.0", + "version": "0.17.1", "homepage": "https://github.com/nodejs/corepack#readme", "bugs": { "url": "https://github.com/nodejs/corepack/issues" diff --git a/deps/histogram/src/hdr_atomic.h b/deps/histogram/src/hdr_atomic.h index ae1056a83612af..11b0cbd3facfdc 100644 --- a/deps/histogram/src/hdr_atomic.h +++ b/deps/histogram/src/hdr_atomic.h @@ -8,7 +8,7 @@ #define HDR_ATOMIC_H__ -#if defined(_MSC_VER) +#if defined(_MSC_VER) && !(defined(__clang__) && (defined(_M_ARM) || defined(_M_ARM64))) #include #include diff --git a/deps/histogram/src/hdr_histogram.c b/deps/histogram/src/hdr_histogram.c index 4bcfbeb049bf59..0132cbeba7c84e 100644 --- a/deps/histogram/src/hdr_histogram.c +++ b/deps/histogram/src/hdr_histogram.c @@ -127,7 +127,7 @@ static int64_t power(int64_t base, int64_t exp) return result; } -#if defined(_MSC_VER) +#if defined(_MSC_VER) && !(defined(__clang__) && (defined(_M_ARM) || defined(_M_ARM64))) # if defined(_WIN64) # pragma intrinsic(_BitScanReverse64) # else @@ -137,7 +137,7 @@ static int64_t power(int64_t base, int64_t exp) static int32_t count_leading_zeros_64(int64_t value) { -#if defined(_MSC_VER) +#if defined(_MSC_VER) && !(defined(__clang__) && (defined(_M_ARM) || defined(_M_ARM64))) uint32_t leading_zero = 0; #if defined(_WIN64) _BitScanReverse64(&leading_zero, value); diff --git a/deps/icu-small/source/data/in/icudt72l.dat.bz2 b/deps/icu-small/source/data/in/icudt72l.dat.bz2 index 1fc12b4e8cd277..eb26b48458649d 100644 Binary files a/deps/icu-small/source/data/in/icudt72l.dat.bz2 and b/deps/icu-small/source/data/in/icudt72l.dat.bz2 differ diff --git a/deps/ngtcp2/nghttp3/lib/nghttp3_ringbuf.c b/deps/ngtcp2/nghttp3/lib/nghttp3_ringbuf.c index 9ea91c81c8a1b9..5e7775f1a5a597 100644 --- a/deps/ngtcp2/nghttp3/lib/nghttp3_ringbuf.c +++ b/deps/ngtcp2/nghttp3/lib/nghttp3_ringbuf.c @@ -33,7 +33,7 @@ #include "nghttp3_macro.h" -#if defined(_MSC_VER) && defined(_M_ARM64) +#if defined(_MSC_VER) && !defined(__clang__) && (defined(_M_ARM) || defined(_M_ARM64)) unsigned int __popcnt(unsigned int x) { unsigned int c = 0; for (; x; ++c) { diff --git a/deps/ngtcp2/ngtcp2/lib/ngtcp2_ringbuf.c b/deps/ngtcp2/ngtcp2/lib/ngtcp2_ringbuf.c index a6b3f73e73339c..74e488bce76f24 100644 --- a/deps/ngtcp2/ngtcp2/lib/ngtcp2_ringbuf.c +++ b/deps/ngtcp2/ngtcp2/lib/ngtcp2_ringbuf.c @@ -31,7 +31,7 @@ #include "ngtcp2_macro.h" -#if defined(_MSC_VER) && defined(_M_ARM64) +#if defined(_MSC_VER) && !defined(__clang__) && (defined(_M_ARM) || defined(_M_ARM64)) unsigned int __popcnt(unsigned int x) { unsigned int c = 0; for (; x; ++c) { diff --git a/deps/npm/README.md b/deps/npm/README.md index b88882fadfee09..5665c7a26a98e9 100644 --- a/deps/npm/README.md +++ b/deps/npm/README.md @@ -27,17 +27,7 @@ curl -qL https://www.npmjs.com/install.sh | sh #### Node Version Managers -If you're looking to manage multiple versions of **`node`** &/or **`npm`**, consider using a "Node Version Manager" such as: - -* [**`nvm`**](https://github.com/nvm-sh/nvm) -* [**`nvs`**](https://github.com/jasongin/nvs) -* [**`nave`**](https://github.com/isaacs/nave) -* [**`n`**](https://github.com/tj/n) -* [**`volta`**](https://github.com/volta-cli/volta) -* [**`nodenv`**](https://github.com/nodenv/nodenv) -* [**`asdf-nodejs`**](https://github.com/asdf-vm/asdf-nodejs) -* [**`nvm-windows`**](https://github.com/coreybutler/nvm-windows) -* [**`fnm`**](https://github.com/Schniz/fnm) +If you're looking to manage multiple versions of **`Node.js`** &/or **`npm`**, consider using a [node version manager](https://github.com/search?q=node%20version%20manager&type=repositories) ### Usage diff --git a/deps/npm/docs/content/commands/npm-install-ci-test.md b/deps/npm/docs/content/commands/npm-install-ci-test.md index f4db7ee0c54dca..5a8095787a1708 100644 --- a/deps/npm/docs/content/commands/npm-install-ci-test.md +++ b/deps/npm/docs/content/commands/npm-install-ci-test.md @@ -9,7 +9,7 @@ description: Install a project with a clean slate and run tests ```bash npm install-ci-test -alias: cit +aliases: cit, clean-install-test, sit ``` ### Description diff --git a/deps/npm/docs/content/commands/npm-ls.md b/deps/npm/docs/content/commands/npm-ls.md index 139e6ec56e3f87..e6f962aee5bac4 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@9.5.1 /path/to/npm +npm@9.6.3 /path/to/npm └─┬ init-package-json@0.0.4 └── promzard@0.1.5 ``` diff --git a/deps/npm/docs/content/commands/npm-prefix.md b/deps/npm/docs/content/commands/npm-prefix.md index 2711501625db0b..e17a26d346b875 100644 --- a/deps/npm/docs/content/commands/npm-prefix.md +++ b/deps/npm/docs/content/commands/npm-prefix.md @@ -52,7 +52,6 @@ folder instead of the current working directory. See ### See Also * [npm root](/commands/npm-root) -* [npm bin](/commands/npm-bin) * [npm folders](/configuring-npm/folders) * [npm config](/commands/npm-config) * [npmrc](/configuring-npm/npmrc) diff --git a/deps/npm/docs/content/commands/npm-root.md b/deps/npm/docs/content/commands/npm-root.md index b34321eb961394..41777d30255620 100644 --- a/deps/npm/docs/content/commands/npm-root.md +++ b/deps/npm/docs/content/commands/npm-root.md @@ -44,7 +44,6 @@ folder instead of the current working directory. See ### See Also * [npm prefix](/commands/npm-prefix) -* [npm bin](/commands/npm-bin) * [npm folders](/configuring-npm/folders) * [npm config](/commands/npm-config) * [npmrc](/configuring-npm/npmrc) diff --git a/deps/npm/docs/content/commands/npm.md b/deps/npm/docs/content/commands/npm.md index 6d6f5771e3b0c6..9cc201603fa223 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 -9.5.1 +9.6.3 ### Description diff --git a/deps/npm/docs/content/configuring-npm/install.md b/deps/npm/docs/content/configuring-npm/install.md index 18b4421687ba9a..8286c52c87db4b 100644 --- a/deps/npm/docs/content/configuring-npm/install.md +++ b/deps/npm/docs/content/configuring-npm/install.md @@ -38,17 +38,8 @@ npm -v Node version managers allow you to install and switch between multiple versions of Node.js and npm on your system so you can test your applications on multiple versions of npm to ensure they work for users on -different versions. - -#### OSX or Linux Node version managers - -* [nvm](https://github.com/creationix/nvm) -* [n](https://github.com/tj/n) - -#### Windows Node version managers - -* [nodist](https://github.com/marcelklehr/nodist) -* [nvm-windows](https://github.com/coreybutler/nvm-windows) +different versions. You can +[search for them on GitHub](https://github.com/search?q=node%20version%20manager&type=repositories). ### Using a Node installer to install Node.js and npm 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 61766dea355b36..8904f308870982 100644 --- a/deps/npm/docs/content/configuring-npm/package-lock-json.md +++ b/deps/npm/docs/content/configuring-npm/package-lock-json.md @@ -112,12 +112,9 @@ the npm registry. Lockfiles generated by npm v7 will contain * No version provided: an "ancient" shrinkwrap file from a version of npm prior to npm v5. * `1`: The lockfile version used by npm v5 and v6. -* `2`: The lockfile version used by npm v7, which is backwards compatible - to v1 lockfiles. -* `3`: The lockfile version used by npm v7, _without_ backwards - compatibility affordances. This is used for the hidden lockfile at - `node_modules/.package-lock.json`, and will likely be used in a future - version of npm, once support for npm v6 is no longer relevant. +* `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. 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/commands/npm-install-ci-test.html b/deps/npm/docs/output/commands/npm-install-ci-test.html index b2f6a3affbbafa..20b001f4e856b6 100644 --- a/deps/npm/docs/output/commands/npm-install-ci-test.html +++ b/deps/npm/docs/output/commands/npm-install-ci-test.html @@ -148,7 +148,7 @@

Table of contents

Synopsis

npm install-ci-test
 
-alias: cit
+aliases: cit, clean-install-test, sit
 

Description

This command runs npm ci followed immediately by npm test.

diff --git a/deps/npm/docs/output/commands/npm-ls.html b/deps/npm/docs/output/commands/npm-ls.html index 26d3dce7718e76..3f75fcf70f4615 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@9.5.1 /path/to/npm
+
npm@9.6.3 /path/to/npm
 └─┬ init-package-json@0.0.4
   └── promzard@0.1.5
 
diff --git a/deps/npm/docs/output/commands/npm-prefix.html b/deps/npm/docs/output/commands/npm-prefix.html index ef6dc0fd9de88a..41789e3e315088 100644 --- a/deps/npm/docs/output/commands/npm-prefix.html +++ b/deps/npm/docs/output/commands/npm-prefix.html @@ -180,7 +180,6 @@

global

See Also

  • npm root
  • -
  • npm bin
  • npm folders
  • npm config
  • npmrc
  • diff --git a/deps/npm/docs/output/commands/npm-root.html b/deps/npm/docs/output/commands/npm-root.html index 24436056c97676..d300a0caaf8fb6 100644 --- a/deps/npm/docs/output/commands/npm-root.html +++ b/deps/npm/docs/output/commands/npm-root.html @@ -175,7 +175,6 @@

    global

    See Also

    • npm prefix
    • -
    • npm bin
    • npm folders
    • npm config
    • npmrc
    • diff --git a/deps/npm/docs/output/commands/npm.html b/deps/npm/docs/output/commands/npm.html index d16a1cec6c69e8..6d72ebe116ce6d 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

-

9.5.1

+

9.6.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/install.html b/deps/npm/docs/output/configuring-npm/install.html index 7acebd7fda9950..fc4b047bc7b1ef 100644 --- a/deps/npm/docs/output/configuring-npm/install.html +++ b/deps/npm/docs/output/configuring-npm/install.html @@ -142,7 +142,7 @@

install

Table of contents

- +

Description

@@ -172,17 +172,8 @@

Using a Node ver

Node version managers allow you to install and switch between multiple versions of Node.js and npm on your system so you can test your applications on multiple versions of npm to ensure they work for users on -different versions.

-

OSX or Linux Node version managers

- -

Windows Node version managers

- +different versions. You can +search for them on GitHub.

Using a Node installer to install Node.js and npm

If you are unable to use a Node version manager, you can use a Node installer to install both Node.js and npm on your system.

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 59b757568f016c..7587b4ad6056a8 100644 --- a/deps/npm/docs/output/configuring-npm/package-lock-json.html +++ b/deps/npm/docs/output/configuring-npm/package-lock-json.html @@ -239,12 +239,9 @@

lockfileVersion

  • No version provided: an "ancient" shrinkwrap file from a version of npm prior to npm v5.
  • 1: The lockfile version used by npm v5 and v6.
  • -
  • 2: The lockfile version used by npm v7, which is backwards compatible -to v1 lockfiles.
  • -
  • 3: The lockfile version used by npm v7, without backwards -compatibility affordances. This is used for the hidden lockfile at -node_modules/.package-lock.json, and will likely be used in a future -version of npm, once support for npm v6 is no longer relevant.
  • +
  • 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.
  • 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/lib/cli.js b/deps/npm/lib/cli.js index 007778aa4b9866..a393626f08291f 100644 --- a/deps/npm/lib/cli.js +++ b/deps/npm/lib/cli.js @@ -1,41 +1,28 @@ -// This is separate to indicate that it should contain code we expect to work in -// all conceivably runnable versions of node. This is a best effort to catch -// syntax errors to give users a good error message if they are using a node -// version that doesn't allow syntax we are using such as private properties, etc -const createEnginesValidation = () => { - const node = process.version.replace(/-.*$/, '') +/* eslint-disable max-len */ +// Code in this file should work in all conceivably runnable versions of node. +// A best effort is made to catch syntax errors to give users a good error message if they are using a node version that doesn't allow syntax we are using in other files such as private properties, etc + +// Separated out for easier unit testing +module.exports = async process => { + // set it here so that regardless of what happens later, we don't + // leak any private CLI configs to other programs + process.title = 'npm' + + // if npm is called as "npmg" or "npm_g", then run in global mode. + if (process.argv[1][process.argv[1].length - 1] === 'g') { + process.argv.splice(1, 1, 'npm', '-g') + } + + const nodeVersion = process.version.replace(/-.*$/, '') const pkg = require('../package.json') const engines = pkg.engines.node - const npm = `v${pkg.version}` - - const cols = Math.min(Math.max(20, process.stdout.columns) || 80, 80) - const wrap = (lines) => lines - .join(' ') - .split(/[ \n]+/) - .reduce((left, right) => { - const last = left.split('\n').pop() - const join = last.length && last.length + right.length > cols ? '\n' : ' ' - return left + join + right - }) - .trim() - - const unsupportedMessage = wrap([ - `npm ${npm} does not support Node.js ${node}.`, - `You should probably upgrade to a newer version of node as we can't make any`, - `promises that npm will work with this version.`, - `This version of npm supports the following node versions: \`${engines}\`.`, - 'You can find the latest version at https://nodejs.org/.', - ]) - - const brokenMessage = wrap([ - `ERROR: npm ${npm} is known not to run on Node.js ${node}.`, - `You'll need to upgrade to a newer Node.js version in order to use this version of npm.`, - `This version of npm supports the following node versions: \`${engines}\`.`, - 'You can find the latest version at https://nodejs.org/.', - ]) - - // coverage ignored because this is only hit in very unsupported node versions - // and it's a best effort attempt to show something nice in those cases + const npmVersion = `v${pkg.version}` + + const unsupportedMessage = `npm ${npmVersion} does not support Node.js ${nodeVersion}. This version of npm supports the following node versions: \`${engines}\`. You can find the latest version at https://nodejs.org/.` + + const brokenMessage = `ERROR: npm ${npmVersion} is known not to run on Node.js ${nodeVersion}. This version of npm supports the following node versions: \`${engines}\`. You can find the latest version at https://nodejs.org/.` + + // Coverage ignored because this is only hit in very unsupported node versions and it's a best effort attempt to show something nice in those cases /* istanbul ignore next */ const syntaxErrorHandler = (err) => { if (err instanceof SyntaxError) { @@ -51,74 +38,42 @@ const createEnginesValidation = () => { process.on('uncaughtException', syntaxErrorHandler) process.on('unhandledRejection', syntaxErrorHandler) - return { - node, - engines, - unsupportedMessage, - off: () => { - process.off('uncaughtException', syntaxErrorHandler) - process.off('unhandledRejection', syntaxErrorHandler) - }, - } -} - -// Separated out for easier unit testing -module.exports = async process => { - // set it here so that regardless of what happens later, we don't - // leak any private CLI configs to other programs - process.title = 'npm' - - // if npm is called as "npmg" or "npm_g", then run in global mode. - if (process.argv[1][process.argv[1].length - 1] === 'g') { - process.argv.splice(1, 1, 'npm', '-g') - } - - // Nothing should happen before this line if we can't guarantee it will - // not have syntax errors in some version of node - const validateEngines = createEnginesValidation() - const satisfies = require('semver/functions/satisfies') const exitHandler = require('./utils/exit-handler.js') const Npm = require('./npm.js') const npm = new Npm() exitHandler.setNpm(npm) - // only log node and npm paths in argv initially since argv can contain - // sensitive info. a cleaned version will be logged later + // only log node and npm paths in argv initially since argv can contain sensitive info. a cleaned version will be logged later const log = require('./utils/log-shim.js') log.verbose('cli', process.argv.slice(0, 2).join(' ')) log.info('using', 'npm@%s', npm.version) log.info('using', 'node@%s', process.version) - // At this point we've required a few files and can be pretty sure - // we dont contain invalid syntax for this version of node. It's - // possible a lazy require would, but that's unlikely enough that - // it's not worth catching anymore and we attach the more important - // exit handlers. - validateEngines.off() + // At this point we've required a few files and can be pretty sure we dont contain invalid syntax for this version of node. It's possible a lazy require would, but that's unlikely enough that it's not worth catching anymore and we attach the more important exit handlers. + process.off('uncaughtException', syntaxErrorHandler) + process.off('unhandledRejection', syntaxErrorHandler) process.on('uncaughtException', exitHandler) process.on('unhandledRejection', exitHandler) - // It is now safe to log a warning if they are using a version of node - // that is not going to fail on syntax errors but is still unsupported - // and untested and might not work reliably. This is safe to use the logger - // now which we want since this will show up in the error log too. - if (!satisfies(validateEngines.node, validateEngines.engines)) { - log.warn('cli', validateEngines.unsupportedMessage) + // It is now safe to log a warning if they are using a version of node that is not going to fail on syntax errors but is still unsupported and untested and might not work reliably. This is safe to use the logger now which we want since this will show up in the error log too. + if (!satisfies(nodeVersion, engines)) { + log.warn('cli', unsupportedMessage) } let cmd - // now actually fire up npm and run the command. - // this is how to use npm programmatically: + // Now actually fire up npm and run the command. + // This is how to use npm programmatically: try { await npm.load() + // npm -v if (npm.config.get('version', 'cli')) { npm.output(npm.version) return exitHandler() } - // npm --versions=cli + // npm --versions if (npm.config.get('versions', 'cli')) { npm.argv = ['version'] npm.config.set('usage', false, 'cli') diff --git a/deps/npm/lib/commands/access.js b/deps/npm/lib/commands/access.js index 23e51f071b1124..318151fc81e2c0 100644 --- a/deps/npm/lib/commands/access.js +++ b/deps/npm/lib/commands/access.js @@ -53,20 +53,22 @@ class Access extends BaseCommand { return commands } - switch (argv[2]) { - case 'grant': - return ['read-only', 'read-write'] - case 'revoke': - return [] - case 'list': - case 'ls': - return ['packages', 'collaborators'] - case 'get': - return ['status'] - case 'set': - return setCommands - default: - throw new Error(argv[2] + ' not recognized') + if (argv.length === 3) { + switch (argv[2]) { + case 'grant': + return ['read-only', 'read-write'] + case 'revoke': + return [] + case 'list': + case 'ls': + return ['packages', 'collaborators'] + case 'get': + return ['status'] + case 'set': + return setCommands + default: + throw new Error(argv[2] + ' not recognized') + } } } @@ -116,11 +118,11 @@ class Access extends BaseCommand { } async #grant (permissions, scope, pkg) { - await libnpmaccess.setPermissions(scope, pkg, permissions) + await libnpmaccess.setPermissions(scope, pkg, permissions, this.npm.flatOptions) } async #revoke (scope, pkg) { - await libnpmaccess.removePermissions(scope, pkg) + await libnpmaccess.removePermissions(scope, pkg, this.npm.flatOptions) } async #listPackages (owner, pkg) { diff --git a/deps/npm/lib/commands/audit.js b/deps/npm/lib/commands/audit.js index 05830fff69c2ea..dab871669eba59 100644 --- a/deps/npm/lib/commands/audit.js +++ b/deps/npm/lib/commands/audit.js @@ -389,11 +389,12 @@ class Audit extends ArboristWorkspaceCmd { const argv = opts.conf.argv.remain if (argv.length === 2) { - return ['fix'] + return ['fix', 'signatures'] } switch (argv[2]) { case 'fix': + case 'signatures': return [] default: throw Object.assign(new Error(argv[2] + ' not recognized'), { diff --git a/deps/npm/lib/commands/completion.js b/deps/npm/lib/commands/completion.js index f5604e099f9a27..efbad9d61001b5 100644 --- a/deps/npm/lib/commands/completion.js +++ b/deps/npm/lib/commands/completion.js @@ -34,9 +34,7 @@ const nopt = require('nopt') const { resolve } = require('path') const { definitions, shorthands } = require('../utils/config/index.js') -const { aliases, commands, plumbing } = require('../utils/cmd-list.js') -const aliasNames = Object.keys(aliases) -const fullList = commands.concat(aliasNames).filter(c => !plumbing.includes(c)) +const { commands, aliases } = require('../utils/cmd-list.js') const configNames = Object.keys(definitions) const shorthandNames = Object.keys(shorthands) const allConfs = configNames.concat(shorthandNames) @@ -79,12 +77,10 @@ class Completion extends BaseCommand { }) } - const { COMP_CWORD, COMP_LINE, COMP_POINT } = process.env + const { COMP_CWORD, COMP_LINE, COMP_POINT, COMP_FISH } = process.env // if the COMP_* isn't in the env, then just dump the script. - if (COMP_CWORD === undefined || - COMP_LINE === undefined || - COMP_POINT === undefined) { + if (COMP_CWORD === undefined || COMP_LINE === undefined || COMP_POINT === undefined) { return dumpScript(resolve(this.npm.npmRoot, 'lib', 'utils', 'completion.sh')) } @@ -111,6 +107,7 @@ class Completion extends BaseCommand { partialWords.push(partialWord) const opts = { + isFish: COMP_FISH === 'true', words, w, word, @@ -264,7 +261,8 @@ const isFlag = word => { // complete against the npm commands // if they all resolve to the same thing, just return the thing it already is const cmdCompl = (opts, npm) => { - const matches = fullList.filter(c => c.startsWith(opts.partialWord)) + const allCommands = commands.concat(Object.keys(aliases)) + const matches = allCommands.filter(c => c.startsWith(opts.partialWord)) if (!matches.length) { return matches } @@ -274,7 +272,7 @@ const cmdCompl = (opts, npm) => { return [...derefs] } - return fullList + return allCommands } module.exports = Completion diff --git a/deps/npm/lib/commands/explain.js b/deps/npm/lib/commands/explain.js index a06ad24152a1e4..44c32c0e5663a1 100644 --- a/deps/npm/lib/commands/explain.js +++ b/deps/npm/lib/commands/explain.js @@ -78,7 +78,7 @@ class Explain extends ArboristWorkspaceCmd { this.npm.output(JSON.stringify(expls, null, 2)) } else { this.npm.output(expls.map(expl => { - return explainNode(expl, Infinity, this.npm.color) + return explainNode(expl, Infinity, this.npm.chalk) }).join('\n\n')) } } diff --git a/deps/npm/lib/commands/fund.js b/deps/npm/lib/commands/fund.js index 12762533c123e6..479ff487ec8b01 100644 --- a/deps/npm/lib/commands/fund.js +++ b/deps/npm/lib/commands/fund.js @@ -1,6 +1,5 @@ const archy = require('archy') const Arborist = require('@npmcli/arborist') -const chalk = require('chalk') const pacote = require('pacote') const semver = require('semver') const npa = require('npm-package-arg') @@ -96,7 +95,6 @@ class Fund extends ArboristWorkspaceCmd { } printHuman (fundingInfo) { - const color = this.npm.color const unicode = this.npm.config.get('unicode') const seenUrls = new Map() @@ -117,7 +115,7 @@ class Fund extends ArboristWorkspaceCmd { if (url) { item.label = tree({ - label: color ? chalk.bgBlack.white(url) : url, + label: this.npm.chalk.bgBlack.white(url), nodes: [pkgRef], }).trim() @@ -154,7 +152,7 @@ class Fund extends ArboristWorkspaceCmd { }) const res = tree(result) - return color ? chalk.reset(res) : res + return this.npm.chalk.reset(res) } async openFundingUrl ({ path, tree, spec, fundingSourceNumber }) { diff --git a/deps/npm/lib/commands/help-search.js b/deps/npm/lib/commands/help-search.js index afb82bfaca9eea..0a706be70a0675 100644 --- a/deps/npm/lib/commands/help-search.js +++ b/deps/npm/lib/commands/help-search.js @@ -1,9 +1,6 @@ -const fs = require('fs') +const { readFile } = require('fs/promises') const path = require('path') -const chalk = require('chalk') -const { promisify } = require('util') -const glob = promisify(require('glob')) -const readFile = promisify(fs.readFile) +const glob = require('glob') const BaseCommand = require('../base-command.js') const globify = pattern => pattern.split('\\').join('/') @@ -20,7 +17,9 @@ class HelpSearch extends BaseCommand { } const docPath = path.resolve(this.npm.npmRoot, 'docs/content') - const files = await glob(`${globify(docPath)}/*/*.md`) + let files = await glob(`${globify(docPath)}/*/*.md`) + // preserve glob@8 behavior + files = files.sort((a, b) => a.localeCompare(b, 'en')) const data = await this.readFiles(files) const results = await this.searchFiles(args, data, files) const formatted = this.formatResults(args, results) @@ -163,10 +162,6 @@ class HelpSearch extends BaseCommand { return } - if (!this.npm.color) { - out.push(line + '\n') - return - } const hilitLine = [] for (const arg of args) { const finder = line.toLowerCase().split(arg.toLowerCase()) @@ -174,7 +169,7 @@ class HelpSearch extends BaseCommand { for (const f of finder) { hilitLine.push(line.slice(p, p + f.length)) const word = line.slice(p + f.length, p + f.length + arg.length) - const hilit = chalk.bgBlack.red(word) + const hilit = this.npm.chalk.bgBlack.red(word) hilitLine.push(hilit) p += f.length + arg.length } diff --git a/deps/npm/lib/commands/help.js b/deps/npm/lib/commands/help.js index 28f18e7edcef70..d89f3f64363480 100644 --- a/deps/npm/lib/commands/help.js +++ b/deps/npm/lib/commands/help.js @@ -1,8 +1,7 @@ const spawn = require('@npmcli/promise-spawn') const path = require('path') const openUrl = require('../utils/open-url.js') -const { promisify } = require('util') -const glob = promisify(require('glob')) +const glob = require('glob') const localeCompare = require('@isaacs/string-locale-compare')('en') const globify = pattern => pattern.split('\\').join('/') @@ -12,8 +11,6 @@ const BaseCommand = require('../base-command.js') // We don't currently compress our man pages but if we ever did this would // seamlessly continue supporting it const manNumberRegex = /\.(\d+)(\.[^/\\]*)?$/ -// Searches for the "npm-" prefix in page names, to prefer those. -const manNpmPrefixRegex = /\/npm-/ // hardcoded names for mansections // XXX: these are used in the docs workspace and should be exported // from npm so section names can changed more easily @@ -34,7 +31,9 @@ class Help extends BaseCommand { return [] } const g = path.resolve(this.npm.npmRoot, 'man/man[0-9]/*.[0-9]') - const files = await glob(globify(g)) + let files = await glob(globify(g)) + // preserve glob@8 behavior + files = files.sort((a, b) => a.localeCompare(b, 'en')) return Object.keys(files.reduce(function (acc, file) { file = path.basename(file).replace(/\.[0-9]+$/, '') @@ -65,31 +64,13 @@ class Help extends BaseCommand { const f = globify(path.resolve(this.npm.npmRoot, `man/${manSearch}/?(npm-)${arg}.[0-9]*`)) const [man] = await glob(f).then(r => r.sort((a, b) => { - // Prefer the page with an npm prefix, if there's only one. - const aHasPrefix = manNpmPrefixRegex.test(a) - const bHasPrefix = manNpmPrefixRegex.test(b) - if (aHasPrefix !== bHasPrefix) { - /* istanbul ignore next */ - return aHasPrefix ? -1 : 1 - } - // Because the glob is (subtly) different from manNumberRegex, // we can't rely on it passing. - const aManNumberMatch = a.match(manNumberRegex) - const bManNumberMatch = b.match(manNumberRegex) - if (aManNumberMatch) { - /* istanbul ignore next */ - if (!bManNumberMatch) { - return -1 - } - // man number sort first so that 1 aka commands are preferred - if (aManNumberMatch[1] !== bManNumberMatch[1]) { - return aManNumberMatch[1] - bManNumberMatch[1] - } - } else if (bManNumberMatch) { - return 1 + const aManNumberMatch = a.match(manNumberRegex)?.[1] || 999 + const bManNumberMatch = b.match(manNumberRegex)?.[1] || 999 + if (aManNumberMatch !== bManNumberMatch) { + return aManNumberMatch - bManNumberMatch } - return localeCompare(a, b) })) diff --git a/deps/npm/lib/commands/ls.js b/deps/npm/lib/commands/ls.js index 2213e7937407a9..a737f44b73b29f 100644 --- a/deps/npm/lib/commands/ls.js +++ b/deps/npm/lib/commands/ls.js @@ -3,7 +3,6 @@ const relativePrefix = `.${sep}` const { EOL } = require('os') const archy = require('archy') -const chalk = require('chalk') const Arborist = require('@npmcli/arborist') const { breadth } = require('treeverse') const npa = require('npm-package-arg') @@ -50,7 +49,7 @@ class LS extends ArboristWorkspaceCmd { async exec (args) { const all = this.npm.config.get('all') - const color = this.npm.color + const chalk = this.npm.chalk const depth = this.npm.config.get('depth') const global = this.npm.global const json = this.npm.config.get('json') @@ -157,7 +156,7 @@ class LS extends ArboristWorkspaceCmd { ? getJsonOutputItem(node, { global, long }) : parseable ? null - : getHumanOutputItem(node, { args, color, global, long }) + : getHumanOutputItem(node, { args, chalk, global, long }) // loop through list of node problems to add them to global list if (node[_include]) { @@ -180,7 +179,7 @@ class LS extends ArboristWorkspaceCmd { this.npm.outputBuffer( json ? jsonOutput({ path, problems, result, rootError, seenItems }) : parseable ? parseableOutput({ seenNodes, global, long }) : - humanOutput({ color, result, seenItems, unicode }) + humanOutput({ chalk, result, seenItems, unicode }) ) // if filtering items, should exit with error code on no results @@ -278,9 +277,9 @@ const augmentItemWithIncludeMetadata = (node, item) => { return item } -const getHumanOutputItem = (node, { args, color, global, long }) => { +const getHumanOutputItem = (node, { args, chalk, global, long }) => { const { pkgid, path } = node - const workspacePkgId = color ? chalk.green(pkgid) : pkgid + const workspacePkgId = chalk.green(pkgid) let printable = node.isWorkspace ? workspacePkgId : pkgid // special formatting for top-level package name @@ -293,8 +292,7 @@ const getHumanOutputItem = (node, { args, color, global, long }) => { } } - const highlightDepName = - color && args.length && node[_filteredBy] + const highlightDepName = args.length && node[_filteredBy] const missingColor = isOptional(node) ? chalk.yellow.bgBlack : chalk.red.bgBlack @@ -308,28 +306,28 @@ const getHumanOutputItem = (node, { args, color, global, long }) => { const label = ( node[_missing] - ? (color ? missingColor(missingMsg) : missingMsg) + ' ' + ? missingColor(missingMsg) + ' ' : '' ) + `${highlightDepName ? chalk.yellow.bgBlack(printable) : printable}` + ( node[_dedupe] - ? ' ' + (color ? chalk.gray('deduped') : 'deduped') + ? ' ' + chalk.gray('deduped') : '' ) + ( invalid - ? ' ' + (color ? chalk.red.bgBlack(invalid) : invalid) + ? ' ' + chalk.red.bgBlack(invalid) : '' ) + ( isExtraneous(node, { global }) - ? ' ' + (color ? chalk.green.bgBlack('extraneous') : 'extraneous') + ? ' ' + chalk.green.bgBlack('extraneous') : '' ) + ( node.overridden - ? ' ' + (color ? chalk.gray('overridden') : 'overridden') + ? ' ' + chalk.gray('overridden') : '' ) + (isGitNode(node) ? ` (${node.resolved})` : '') + @@ -504,7 +502,7 @@ const augmentNodesWithMetadata = ({ const sortAlphabetically = ({ pkgid: a }, { pkgid: b }) => localeCompare(a, b) -const humanOutput = ({ color, result, seenItems, unicode }) => { +const humanOutput = ({ chalk, result, seenItems, unicode }) => { // we need to traverse the entire tree in order to determine which items // should be included (since a nested transitive included dep will make it // so that all its ancestors should be displayed) @@ -520,7 +518,7 @@ const humanOutput = ({ color, result, seenItems, unicode }) => { } const archyOutput = archy(result, '', { unicode }) - return color ? chalk.reset(archyOutput) : archyOutput + return chalk.reset(archyOutput) } const jsonOutput = ({ path, problems, result, rootError, seenItems }) => { diff --git a/deps/npm/lib/commands/outdated.js b/deps/npm/lib/commands/outdated.js index 5e8a4e0d2168c5..49626ebd5e20ed 100644 --- a/deps/npm/lib/commands/outdated.js +++ b/deps/npm/lib/commands/outdated.js @@ -2,7 +2,6 @@ const os = require('os') const { resolve } = require('path') const pacote = require('pacote') const table = require('text-table') -const chalk = require('chalk') const npa = require('npm-package-arg') const pickManifest = require('npm-pick-manifest') const localeCompare = require('@isaacs/string-locale-compare')('en') @@ -104,9 +103,7 @@ class Outdated extends ArboristWorkspaceCmd { } const outTable = [outHead].concat(outList) - if (this.npm.color) { - outTable[0] = outTable[0].map(heading => chalk.underline(heading)) - } + outTable[0] = outTable[0].map(heading => this.npm.chalk.underline(heading)) const tableOpts = { align: ['l', 'r', 'r', 'r', 'l'], @@ -281,8 +278,8 @@ class Outdated extends ArboristWorkspaceCmd { ? node.pkgid : node.name - return this.npm.color && humanOutput - ? chalk.green(workspaceName) + return humanOutput + ? this.npm.chalk.green(workspaceName) : workspaceName } @@ -306,11 +303,9 @@ class Outdated extends ArboristWorkspaceCmd { columns[7] = homepage } - if (this.npm.color) { - columns[0] = chalk[current === wanted ? 'yellow' : 'red'](columns[0]) // current - columns[2] = chalk.green(columns[2]) // wanted - columns[3] = chalk.magenta(columns[3]) // latest - } + columns[0] = this.npm.chalk[current === wanted ? 'yellow' : 'red'](columns[0]) // current + columns[2] = this.npm.chalk.green(columns[2]) // wanted + columns[3] = this.npm.chalk.magenta(columns[3]) // latest return columns } diff --git a/deps/npm/lib/commands/profile.js b/deps/npm/lib/commands/profile.js index e42ebb276d202e..4fba1209e03350 100644 --- a/deps/npm/lib/commands/profile.js +++ b/deps/npm/lib/commands/profile.js @@ -1,6 +1,5 @@ const inspect = require('util').inspect const { URL } = require('url') -const chalk = require('chalk') const log = require('../utils/log-shim.js') const npmProfile = require('npm-profile') const qrcodeTerminal = require('qrcode-terminal') @@ -161,7 +160,7 @@ class Profile extends BaseCommand { } else { const table = new Table() for (const key of Object.keys(cleaned)) { - table.push({ [chalk.bold(key)]: cleaned[key] }) + table.push({ [this.npm.chalk.bold(key)]: cleaned[key] }) } this.npm.output(table.toString()) diff --git a/deps/npm/lib/commands/run-script.js b/deps/npm/lib/commands/run-script.js index 51746c5e5285d9..e1bce0e52a5132 100644 --- a/deps/npm/lib/commands/run-script.js +++ b/deps/npm/lib/commands/run-script.js @@ -1,5 +1,4 @@ const { resolve } = require('path') -const chalk = require('chalk') const runScript = require('@npmcli/run-script') const { isServerPackage } = runScript const rpj = require('read-package-json-fast') @@ -18,14 +17,6 @@ const cmdList = [ 'version', ].reduce((l, p) => l.concat(['pre' + p, p, 'post' + p]), []) -const nocolor = { - reset: s => s, - bold: s => s, - dim: s => s, - blue: s => s, - green: s => s, -} - const BaseCommand = require('../base-command.js') class RunScript extends BaseCommand { static description = 'Run arbitrary package scripts' @@ -51,6 +42,9 @@ class RunScript extends BaseCommand { // find the script name const json = resolve(this.npm.localPrefix, 'package.json') const { scripts = {} } = await rpj(json).catch(er => ({})) + if (opts.isFish) { + return Object.keys(scripts).map(s => `${s}\t${scripts[s].slice(0, 30)}`) + } return Object.keys(scripts) } } @@ -135,7 +129,6 @@ class RunScript extends BaseCommand { path = path || this.npm.localPrefix const { scripts, name, _id } = await rpj(`${path}/package.json`) const pkgid = _id || name - const color = this.npm.color if (!scripts) { return [] @@ -167,7 +160,7 @@ class RunScript extends BaseCommand { const list = cmdList.includes(script) ? cmds : runScripts list.push(script) } - const colorize = color ? chalk : nocolor + const colorize = this.npm.chalk if (cmds.length) { this.npm.output( diff --git a/deps/npm/lib/commands/token.js b/deps/npm/lib/commands/token.js index 8da83118757144..bc2e4f3796364d 100644 --- a/deps/npm/lib/commands/token.js +++ b/deps/npm/lib/commands/token.js @@ -1,5 +1,4 @@ const Table = require('cli-table3') -const chalk = require('chalk') const { v4: isCidrV4, v6: isCidrV6 } = require('is-cidr') const log = require('../utils/log-shim.js') const profile = require('npm-profile') @@ -152,7 +151,7 @@ class Token extends BaseCommand { } else { const table = new Table() for (const k of Object.keys(result)) { - table.push({ [chalk.bold(k)]: String(result[k]) }) + table.push({ [this.npm.chalk.bold(k)]: String(result[k]) }) } this.npm.output(table.toString()) } diff --git a/deps/npm/lib/commands/view.js b/deps/npm/lib/commands/view.js index 855b37b81d42f9..bbe7dcdd18bbf7 100644 --- a/deps/npm/lib/commands/view.js +++ b/deps/npm/lib/commands/view.js @@ -1,4 +1,3 @@ -const chalk = require('chalk') const columns = require('cli-columns') const fs = require('fs') const jsonParse = require('json-parse-even-better-errors') @@ -315,6 +314,7 @@ class View extends BaseCommand { prettyView (packu, manifest) { // More modern, pretty printing of default view const unicode = this.npm.config.get('unicode') + const chalk = this.npm.chalk const tags = [] Object.keys(packu['dist-tags']).forEach((t) => { diff --git a/deps/npm/lib/npm.js b/deps/npm/lib/npm.js index 841d145ddcbad7..5a347a2fd69e8f 100644 --- a/deps/npm/lib/npm.js +++ b/deps/npm/lib/npm.js @@ -5,6 +5,7 @@ const Config = require('@npmcli/config') const chalk = require('chalk') const which = require('which') const fs = require('fs/promises') +const abbrev = require('abbrev') // Patch the global fs module here at the app level require('graceful-fs').gracefulify(require('fs')) @@ -18,7 +19,7 @@ const log = require('./utils/log-shim') const replaceInfo = require('./utils/replace-info.js') const updateNotifier = require('./utils/update-notifier.js') const pkg = require('../package.json') -const cmdList = require('./utils/cmd-list.js') +const { commands, aliases } = require('./utils/cmd-list.js') class Npm extends EventEmitter { static get version () { @@ -36,6 +37,8 @@ class Npm extends EventEmitter { #title = 'npm' #argvClean = [] #chalk = null + #logChalk = null + #noColorChalk = new chalk.Instance({ level: 0 }) #npmRoot = null #warnedNonDashArg = false @@ -84,18 +87,30 @@ class Npm extends EventEmitter { if (!c) { return } + + // Translate camelCase to snake-case (i.e. installTest to install-test) if (c.match(/[A-Z]/)) { c = c.replace(/([A-Z])/g, m => '-' + m.toLowerCase()) } - if (cmdList.plumbing.indexOf(c) !== -1) { + + // if they asked for something exactly we are done + if (commands.includes(c)) { return c } + + // if they asked for a direct alias + if (aliases[c]) { + return aliases[c] + } + + const abbrevs = abbrev(commands.concat(Object.keys(aliases))) + // first deref the abbrev, if there is one // then resolve any aliases // so `npm install-cl` will resolve to `install-clean` then to `ci` - let a = cmdList.abbrevs[c] - while (cmdList.aliases[a]) { - a = cmdList.aliases[a] + let a = abbrevs[c] + while (aliases[a]) { + a = aliases[a] } return a } @@ -248,6 +263,7 @@ class Npm extends EventEmitter { this.#display.load({ // Use logColor since that is based on stderr color: this.logColor, + chalk: this.logChalk, progress: this.flatOptions.progress, silent: this.silent, timing: this.config.get('timing'), @@ -317,17 +333,28 @@ class Npm extends EventEmitter { return this.flatOptions.logColor } + get noColorChalk () { + return this.#noColorChalk + } + get chalk () { if (!this.#chalk) { - let level = chalk.level - if (!this.color) { - level = 0 - } - this.#chalk = new chalk.Instance({ level }) + this.#chalk = new chalk.Instance({ + level: this.color ? chalk.level : 0, + }) } return this.#chalk } + get logChalk () { + if (!this.#logChalk) { + this.#logChalk = new chalk.Instance({ + level: this.logColor ? chalk.stderr.level : 0, + }) + } + return this.#logChalk + } + get global () { return this.config.get('global') || this.config.get('location') === 'global' } diff --git a/deps/npm/lib/utils/audit-error.js b/deps/npm/lib/utils/audit-error.js index 7feccc739b6a9f..aaf35566fc0304 100644 --- a/deps/npm/lib/utils/audit-error.js +++ b/deps/npm/lib/utils/audit-error.js @@ -1,4 +1,5 @@ const log = require('./log-shim') +const replaceInfo = require('./replace-info.js') // print an error or just nothing if the audit report has an error // this is called by the audit command, and by the reify-output util @@ -24,7 +25,7 @@ const auditError = (npm, report) => { npm.output(JSON.stringify({ message: error.message, method: error.method, - uri: error.uri, + uri: replaceInfo(error.uri), headers: error.headers, statusCode: error.statusCode, body, diff --git a/deps/npm/lib/utils/cmd-list.js b/deps/npm/lib/utils/cmd-list.js index 03fe8ed07c930e..e5479139033d57 100644 --- a/deps/npm/lib/utils/cmd-list.js +++ b/deps/npm/lib/utils/cmd-list.js @@ -1,74 +1,5 @@ -const abbrev = require('abbrev') -const localeCompare = require('@isaacs/string-locale-compare')('en') - -// plumbing should not have any aliases -const aliases = { - - // aliases - author: 'owner', - home: 'docs', - issues: 'bugs', - info: 'view', - show: 'view', - find: 'search', - add: 'install', - unlink: 'uninstall', - remove: 'uninstall', - rm: 'uninstall', - r: 'uninstall', - - // short names for common things - un: 'uninstall', - rb: 'rebuild', - list: 'ls', - ln: 'link', - create: 'init', - i: 'install', - it: 'install-test', - cit: 'install-ci-test', - up: 'update', - c: 'config', - s: 'search', - se: 'search', - tst: 'test', - t: 'test', - ddp: 'dedupe', - v: 'view', - run: 'run-script', - 'clean-install': 'ci', - 'clean-install-test': 'cit', - x: 'exec', - why: 'explain', - la: 'll', - verison: 'version', - ic: 'ci', - - // typos - innit: 'init', - // manually abbrev so that install-test doesn't make insta stop working - in: 'install', - ins: 'install', - inst: 'install', - insta: 'install', - instal: 'install', - isnt: 'install', - isnta: 'install', - isntal: 'install', - isntall: 'install', - 'install-clean': 'ci', - 'isntall-clean': 'ci', - hlep: 'help', - 'dist-tags': 'dist-tag', - upgrade: 'update', - udpate: 'update', - rum: 'run-script', - sit: 'cit', - urn: 'run-script', - ogr: 'org', - 'add-user': 'adduser', -} - -// these are filenames in . +// These correspond to filenames in lib/commands +// Please keep this list sorted alphabetically const commands = [ 'access', 'adduser', @@ -92,6 +23,7 @@ const commands = [ 'fund', 'get', 'help', + 'help-search', 'hook', 'init', 'install', @@ -99,7 +31,7 @@ const commands = [ 'install-test', 'link', 'll', - 'login', // This is an alias for `adduser` but it can be confusing + 'login', 'logout', 'ls', 'org', @@ -135,16 +67,76 @@ const commands = [ 'version', 'view', 'whoami', -].sort(localeCompare) +] + +// These must resolve to an entry in commands +const aliases = { + + // aliases + author: 'owner', + home: 'docs', + issues: 'bugs', + info: 'view', + show: 'view', + find: 'search', + add: 'install', + unlink: 'uninstall', + remove: 'uninstall', + rm: 'uninstall', + r: 'uninstall', + + // short names for common things + un: 'uninstall', + rb: 'rebuild', + list: 'ls', + ln: 'link', + create: 'init', + i: 'install', + it: 'install-test', + cit: 'install-ci-test', + up: 'update', + c: 'config', + s: 'search', + se: 'search', + tst: 'test', + t: 'test', + ddp: 'dedupe', + v: 'view', + run: 'run-script', + 'clean-install': 'ci', + 'clean-install-test': 'install-ci-test', + x: 'exec', + why: 'explain', + la: 'll', + verison: 'version', + ic: 'ci', -const plumbing = ['help-search'] -const allCommands = [...commands, ...plumbing].sort(localeCompare) -const abbrevs = abbrev(commands.concat(Object.keys(aliases))) + // typos + innit: 'init', + // manually abbrev so that install-test doesn't make insta stop working + in: 'install', + ins: 'install', + inst: 'install', + insta: 'install', + instal: 'install', + isnt: 'install', + isnta: 'install', + isntal: 'install', + isntall: 'install', + 'install-clean': 'ci', + 'isntall-clean': 'ci', + hlep: 'help', + 'dist-tags': 'dist-tag', + upgrade: 'update', + udpate: 'update', + rum: 'run-script', + sit: 'install-ci-test', + urn: 'run-script', + ogr: 'org', + 'add-user': 'adduser', +} module.exports = { - abbrevs, aliases, commands, - plumbing, - allCommands, } diff --git a/deps/npm/lib/utils/completion.fish b/deps/npm/lib/utils/completion.fish new file mode 100644 index 00000000000000..5e274ad77e5fd0 --- /dev/null +++ b/deps/npm/lib/utils/completion.fish @@ -0,0 +1,40 @@ +# npm completions for Fish shell +# This script is a work in progress and does not fall under the normal semver contract as the rest of npm. + +# __fish_npm_needs_command taken from: +# https://stackoverflow.com/questions/16657803/creating-autocomplete-script-with-sub-commands +function __fish_npm_needs_command + set -l cmd (commandline -opc) + + if test (count $cmd) -eq 1 + return 0 + end + + return 1 +end + +# Taken from https://github.com/fish-shell/fish-shell/blob/HEAD/share/completions/npm.fish +function __fish_complete_npm -d "Complete the commandline using npm's 'completion' tool" + # tell npm we are fish shell + set -lx COMP_FISH true + if command -sq npm + # npm completion is bash-centric, so we need to translate fish's "commandline" stuff to bash's $COMP_* stuff + # COMP_LINE is an array with the words in the commandline + set -lx COMP_LINE (commandline -opc) + # COMP_CWORD is the index of the current word in COMP_LINE + # bash starts arrays with 0, so subtract 1 + set -lx COMP_CWORD (math (count $COMP_LINE) - 1) + # COMP_POINT is the index of point/cursor when the commandline is viewed as a string + set -lx COMP_POINT (commandline -C) + # If the cursor is after the last word, the empty token will disappear in the expansion + # Readd it + if test (commandline -ct) = "" + set COMP_CWORD (math $COMP_CWORD + 1) + set COMP_LINE $COMP_LINE "" + end + command npm completion -- $COMP_LINE 2>/dev/null + end +end + +# flush out what ships with fish +complete -e npm diff --git a/deps/npm/lib/utils/display.js b/deps/npm/lib/utils/display.js index 35d221c09cae89..a41bf903e9a8fa 100644 --- a/deps/npm/lib/utils/display.js +++ b/deps/npm/lib/utils/display.js @@ -4,6 +4,8 @@ const log = require('./log-shim.js') const { explain } = require('./explain-eresolve.js') class Display { + #chalk = null + constructor () { // pause by default until config is loaded this.on() @@ -26,6 +28,7 @@ class Display { load (config) { const { color, + chalk, timing, loglevel, unicode, @@ -34,6 +37,8 @@ class Display { heading = 'npm', } = config + this.#chalk = chalk + // npmlog is still going away someday, so this is a hack to dynamically // set the loglevel of timing based on the timing flag, instead of making // a breaking change to npmlog. The result is that timing logs are never @@ -111,7 +116,7 @@ class Display { expl && typeof expl === 'object' ) { this.#npmlog(level, heading, message) - this.#npmlog(level, '', explain(expl, log.useColor(), 2)) + this.#npmlog(level, '', explain(expl, this.#chalk, 2)) // Return true to short circuit other log in chain return true } diff --git a/deps/npm/lib/utils/error-message.js b/deps/npm/lib/utils/error-message.js index 72c7b9fe4553fd..a2cdb0aa48068c 100644 --- a/deps/npm/lib/utils/error-message.js +++ b/deps/npm/lib/utils/error-message.js @@ -38,7 +38,7 @@ const errorMessage = (er, npm) => { // XXX(display): error messages are logged so we use the logColor since that is based // on stderr. This should be handled solely by the display layer so it could also be // printed to stdout if necessary. - const { explanation, file } = report(er, !!npm.logColor) + const { explanation, file } = report(er, npm.logChalk, npm.noColorChalk) detail.push(['', explanation]) files.push(['eresolve-report.txt', file]) break @@ -247,16 +247,34 @@ const errorMessage = (er, npm) => { break case 'EBADPLATFORM': { - const validOs = - er.required && er.required.os && er.required.os.join - ? er.required.os.join(',') - : er.required.os - const validArch = - er.required && er.required.cpu && er.required.cpu.join - ? er.required.cpu.join(',') - : er.required.cpu - const expected = { os: validOs, arch: validArch } - const actual = { os: process.platform, arch: process.arch } + const actual = er.current + const expected = { ...er.required } + const checkedKeys = [] + for (const key in expected) { + if (Array.isArray(expected[key]) && expected[key].length > 0) { + expected[key] = expected[key].join(',') + checkedKeys.push(key) + } else if (expected[key] === undefined || + Array.isArray(expected[key]) && expected[key].length === 0) { + delete expected[key] + delete actual[key] + } else { + checkedKeys.push(key) + } + } + + const longestKey = Math.max(...checkedKeys.map((key) => key.length)) + const detailEntry = [] + for (const key of checkedKeys) { + const padding = key.length === longestKey + ? 1 + : 1 + (longestKey - key.length) + + // padding + 1 because 'actual' is longer than 'valid' + detailEntry.push(`Valid ${key}:${' '.repeat(padding + 1)}${expected[key]}`) + detailEntry.push(`Actual ${key}:${' '.repeat(padding)}${actual[key]}`) + } + short.push([ 'notsup', [ @@ -270,12 +288,7 @@ const errorMessage = (er, npm) => { ]) detail.push([ 'notsup', - [ - 'Valid OS: ' + validOs, - 'Valid Arch: ' + validArch, - 'Actual OS: ' + process.platform, - 'Actual Arch: ' + process.arch, - ].join('\n'), + detailEntry.join('\n'), ]) break } diff --git a/deps/npm/lib/utils/exit-handler.js b/deps/npm/lib/utils/exit-handler.js index b5fc7042bd0209..b5d6cd030fb5c3 100644 --- a/deps/npm/lib/utils/exit-handler.js +++ b/deps/npm/lib/utils/exit-handler.js @@ -5,8 +5,6 @@ const log = require('./log-shim.js') const errorMessage = require('./error-message.js') const replaceInfo = require('./replace-info.js') -const indent = (val) => Array.isArray(val) ? val.map(v => indent(v)) : ` ${val}` - let npm = null // set by the cli let exitHandlerCalled = false let showLogFileError = false @@ -73,7 +71,7 @@ process.on('exit', code => { const message = [] if (timingFile) { - message.push('Timing info written to:', indent(timingFile)) + message.push(`Timing info written to: ${timingFile}`) } else if (timing) { message.push( `The timing file was not written due to an error writing to the directory: ${timingDir}` @@ -81,7 +79,7 @@ process.on('exit', code => { } if (logFiles.length) { - message.push('A complete log of this run can be found in:', ...indent(logFiles)) + message.push(`A complete log of this run can be found in: ${logFiles}`) } else if (logsMax <= 0) { // user specified no log file message.push(`Log files were not written due to the config logs-max=${logsMax}`) diff --git a/deps/npm/lib/utils/explain-dep.js b/deps/npm/lib/utils/explain-dep.js index 58258026491dc1..86660d5d3ad4b0 100644 --- a/deps/npm/lib/utils/explain-dep.js +++ b/deps/npm/lib/utils/explain-dep.js @@ -1,25 +1,12 @@ -const chalk = require('chalk') -const nocolor = { - bold: s => s, - dim: s => s, - red: s => s, - yellow: s => s, - cyan: s => s, - magenta: s => s, - blue: s => s, - green: s => s, - gray: s => s, -} - const { relative } = require('path') -const explainNode = (node, depth, color) => - printNode(node, color) + - explainDependents(node, depth, color) + - explainLinksIn(node, depth, color) +const explainNode = (node, depth, chalk) => + printNode(node, chalk) + + explainDependents(node, depth, chalk) + + explainLinksIn(node, depth, chalk) -const colorType = (type, color) => { - const { red, yellow, cyan, magenta, blue, green, gray } = color ? chalk : nocolor +const colorType = (type, chalk) => { + const { red, yellow, cyan, magenta, blue, green, gray } = chalk const style = type === 'extraneous' ? red : type === 'dev' ? yellow : type === 'optional' ? cyan @@ -31,7 +18,7 @@ const colorType = (type, color) => { return style(type) } -const printNode = (node, color) => { +const printNode = (node, chalk) => { const { name, version, @@ -44,30 +31,30 @@ const printNode = (node, color) => { isWorkspace, overridden, } = node - const { bold, dim, green } = color ? chalk : nocolor + const { bold, dim, green } = chalk const extra = [] if (extraneous) { - extra.push(' ' + bold(colorType('extraneous', color))) + extra.push(' ' + bold(colorType('extraneous', chalk))) } if (dev) { - extra.push(' ' + bold(colorType('dev', color))) + extra.push(' ' + bold(colorType('dev', chalk))) } if (optional) { - extra.push(' ' + bold(colorType('optional', color))) + extra.push(' ' + bold(colorType('optional', chalk))) } if (peer) { - extra.push(' ' + bold(colorType('peer', color))) + extra.push(' ' + bold(colorType('peer', chalk))) } if (bundled) { - extra.push(' ' + bold(colorType('bundled', color))) + extra.push(' ' + bold(colorType('bundled', chalk))) } if (overridden) { - extra.push(' ' + bold(colorType('overridden', color))) + extra.push(' ' + bold(colorType('overridden', chalk))) } const pkgid = isWorkspace @@ -78,24 +65,24 @@ const printNode = (node, color) => { (location ? dim(`\n${location}`) : '') } -const explainLinksIn = ({ linksIn }, depth, color) => { +const explainLinksIn = ({ linksIn }, depth, chalk) => { if (!linksIn || !linksIn.length || depth <= 0) { return '' } - const messages = linksIn.map(link => explainNode(link, depth - 1, color)) + const messages = linksIn.map(link => explainNode(link, depth - 1, chalk)) const str = '\n' + messages.join('\n') return str.split('\n').join('\n ') } -const explainDependents = ({ name, dependents }, depth, color) => { +const explainDependents = ({ name, dependents }, depth, chalk) => { if (!dependents || !dependents.length || depth <= 0) { return '' } const max = Math.ceil(depth / 2) const messages = dependents.slice(0, max) - .map(edge => explainEdge(edge, depth, color)) + .map(edge => explainEdge(edge, depth, chalk)) // show just the names of the first 5 deps that overflowed the list if (dependents.length > max) { @@ -119,30 +106,30 @@ const explainDependents = ({ name, dependents }, depth, color) => { return str.split('\n').join('\n ') } -const explainEdge = ({ name, type, bundled, from, spec, rawSpec, overridden }, depth, color) => { - const { bold } = color ? chalk : nocolor +const explainEdge = ({ name, type, bundled, from, spec, rawSpec, overridden }, depth, chalk) => { + const { bold } = chalk let dep = type === 'workspace' ? bold(relative(from.location, spec.slice('file:'.length))) : `${bold(name)}@"${bold(spec)}"` if (overridden) { - dep = `${colorType('overridden', color)} ${dep} (was "${rawSpec}")` + dep = `${colorType('overridden', chalk)} ${dep} (was "${rawSpec}")` } - const fromMsg = ` from ${explainFrom(from, depth, color)}` + const fromMsg = ` from ${explainFrom(from, depth, chalk)}` - return (type === 'prod' ? '' : `${colorType(type, color)} `) + - (bundled ? `${colorType('bundled', color)} ` : '') + + return (type === 'prod' ? '' : `${colorType(type, chalk)} `) + + (bundled ? `${colorType('bundled', chalk)} ` : '') + `${dep}${fromMsg}` } -const explainFrom = (from, depth, color) => { +const explainFrom = (from, depth, chalk) => { if (!from.name && !from.version) { return 'the root project' } - return printNode(from, color) + - explainDependents(from, depth - 1, color) + - explainLinksIn(from, depth - 1, color) + return printNode(from, chalk) + + explainDependents(from, depth - 1, chalk) + + explainLinksIn(from, depth - 1, chalk) } module.exports = { explainNode, printNode, explainEdge } diff --git a/deps/npm/lib/utils/explain-eresolve.js b/deps/npm/lib/utils/explain-eresolve.js index 480cd8e5cd4e66..ba46f3480adb36 100644 --- a/deps/npm/lib/utils/explain-eresolve.js +++ b/deps/npm/lib/utils/explain-eresolve.js @@ -7,7 +7,7 @@ const { explainEdge, explainNode, printNode } = require('./explain-dep.js') // Depth is how far we want to want to descend into the object making a report. // The full report (ie, depth=Infinity) is always written to the cache folder // at ${cache}/eresolve-report.txt along with full json. -const explain = (expl, color, depth) => { +const explain = (expl, chalk, depth) => { const { edge, dep, current, peerConflict, currentEdge } = expl const out = [] @@ -15,28 +15,28 @@ const explain = (expl, color, depth) => { current && current.whileInstalling || edge && edge.from && edge.from.whileInstalling if (whileInstalling) { - out.push('While resolving: ' + printNode(whileInstalling, color)) + out.push('While resolving: ' + printNode(whileInstalling, chalk)) } // it "should" be impossible for an ERESOLVE explanation to lack both // current and currentEdge, but better to have a less helpful error // than a crashing failure. if (current) { - out.push('Found: ' + explainNode(current, depth, color)) + out.push('Found: ' + explainNode(current, depth, chalk)) } else if (peerConflict && peerConflict.current) { - out.push('Found: ' + explainNode(peerConflict.current, depth, color)) + out.push('Found: ' + explainNode(peerConflict.current, depth, chalk)) } else if (currentEdge) { - out.push('Found: ' + explainEdge(currentEdge, depth, color)) + out.push('Found: ' + explainEdge(currentEdge, depth, chalk)) } else /* istanbul ignore else - should always have one */ if (edge) { - out.push('Found: ' + explainEdge(edge, depth, color)) + out.push('Found: ' + explainEdge(edge, depth, chalk)) } out.push('\nCould not resolve dependency:\n' + - explainEdge(edge, depth, color)) + explainEdge(edge, depth, chalk)) if (peerConflict) { const heading = '\nConflicting peer dependency:' - const pc = explainNode(peerConflict.peer, depth, color) + const pc = explainNode(peerConflict.peer, depth, chalk) out.push(heading + ' ' + pc) } @@ -44,7 +44,7 @@ const explain = (expl, color, depth) => { } // generate a full verbose report and tell the user how to fix it -const report = (expl, color) => { +const report = (expl, chalk, noColor) => { const flags = [ expl.strictPeerDeps ? '--no-strict-peer-deps' : '', '--force', @@ -60,8 +60,8 @@ this command with ${or(flags)} to accept an incorrect (and potentially broken) dependency resolution.` return { - explanation: `${explain(expl, color, 4)}\n\n${fix}`, - file: `# npm resolution error report\n\n${explain(expl, false, Infinity)}\n\n${fix}`, + explanation: `${explain(expl, chalk, 4)}\n\n${fix}`, + file: `# npm resolution error report\n\n${explain(expl, noColor, Infinity)}\n\n${fix}`, } } diff --git a/deps/npm/lib/utils/log-file.js b/deps/npm/lib/utils/log-file.js index f663997308ed6b..93114e94301f53 100644 --- a/deps/npm/lib/utils/log-file.js +++ b/deps/npm/lib/utils/log-file.js @@ -1,7 +1,7 @@ const os = require('os') const { join, dirname, basename } = require('path') -const { format, promisify } = require('util') -const glob = promisify(require('glob')) +const { format } = require('util') +const glob = require('glob') const MiniPass = require('minipass') const fsMiniPass = require('fs-minipass') const fs = require('fs/promises') @@ -223,7 +223,10 @@ class LogFiles { } } } catch (e) { - log.warn('logfile', 'error cleaning log files', e) + // Disable cleanup failure warnings when log writing is disabled + if (this.#logsMax > 0) { + log.warn('logfile', 'error cleaning log files', e) + } } finally { log.silly('logfile', 'done cleaning log files') } diff --git a/deps/npm/lib/utils/update-notifier.js b/deps/npm/lib/utils/update-notifier.js index a7eaaca64747fe..cb9184bcdb41d4 100644 --- a/deps/npm/lib/utils/update-notifier.js +++ b/deps/npm/lib/utils/update-notifier.js @@ -5,10 +5,7 @@ const pacote = require('pacote') const ciInfo = require('ci-info') const semver = require('semver') -const chalk = require('chalk') -const { promisify } = require('util') -const stat = promisify(require('fs').stat) -const writeFile = promisify(require('fs').writeFile) +const { stat, writeFile } = require('fs/promises') const { resolve } = require('path') const SKIP = Symbol('SKIP') @@ -61,10 +58,6 @@ const updateNotifier = async (npm, spec = 'latest') => { return null } - // if they're currently using a prerelease, nudge to the next prerelease - // otherwise, nudge to latest. - const useColor = npm.logColor - const mani = await pacote.manifest(`npm@${spec}`, { // always prefer latest, even if doing --tag=whatever on the cmd defaultTag: 'latest', @@ -91,6 +84,9 @@ const updateNotifier = async (npm, spec = 'latest') => { return null } + const useColor = npm.logColor + const chalk = npm.logChalk + // ok! notify the user about this update they should get. // The message is saved for printing at process exit so it will not get // lost in any other messages being printed as part of the command. @@ -99,12 +95,11 @@ const updateNotifier = async (npm, spec = 'latest') => { : update.minor !== current.minor ? 'minor' : update.patch !== current.patch ? 'patch' : 'prerelease' - const typec = !useColor ? type - : type === 'major' ? chalk.red(type) + const typec = type === 'major' ? chalk.red(type) : type === 'minor' ? chalk.yellow(type) : chalk.green(type) - const oldc = !useColor ? current : chalk.red(current) - const latestc = !useColor ? latest : chalk.green(latest) + const oldc = chalk.red(current) + const latestc = chalk.green(latest) const changelog = `https://github.com/npm/cli/releases/tag/v${latest}` const changelogc = !useColor ? `<${changelog}>` : chalk.cyan(changelog) const cmd = `npm install -g npm@${latest}` diff --git a/deps/npm/man/man1/npm-access.1 b/deps/npm/man/man1/npm-access.1 index 732813c2b8642f..8d87e40f24508a 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" "February 2023" "" "" +.TH "NPM-ACCESS" "1" "March 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 5a4ee97566cc08..d123f80979af44 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" "February 2023" "" "" +.TH "NPM-ADDUSER" "1" "March 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 f0c8475937f7fa..084ca0973316c7 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" "February 2023" "" "" +.TH "NPM-AUDIT" "1" "March 2023" "" "" .SH "NAME" \fBnpm-audit\fR - Run a security audit .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-bugs.1 b/deps/npm/man/man1/npm-bugs.1 index 1f2ee1642dab02..a48dd27ebd4a14 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" "February 2023" "" "" +.TH "NPM-BUGS" "1" "March 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 5559b3be352bfb..d28a915c1b64a9 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" "February 2023" "" "" +.TH "NPM-CACHE" "1" "March 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 66b688f9717612..cc1a7b24717bb8 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" "February 2023" "" "" +.TH "NPM-CI" "1" "March 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 b82899fd35db14..9a8653259752be 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" "February 2023" "" "" +.TH "NPM-COMPLETION" "1" "March 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 0cf96143ff8e3b..d8a23d49c65eb4 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" "February 2023" "" "" +.TH "NPM-CONFIG" "1" "March 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 302d63b3c2c107..7e9b6c1ed17a44 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" "February 2023" "" "" +.TH "NPM-DEDUPE" "1" "March 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 d525e703e841d9..0a5b8e497b3c4d 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" "February 2023" "" "" +.TH "NPM-DEPRECATE" "1" "March 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 5d2c240f839f95..360b202a6045ee 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" "February 2023" "" "" +.TH "NPM-DIFF" "1" "March 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 bd700f0fefe5ed..ab0b91e90d0e85 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" "February 2023" "" "" +.TH "NPM-DIST-TAG" "1" "March 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 6ee27d9348b7b1..b62d222cd3d3bb 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" "February 2023" "" "" +.TH "NPM-DOCS" "1" "March 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 d1b5a4165452af..1cb73f9c5bd446 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" "February 2023" "" "" +.TH "NPM-DOCTOR" "1" "March 2023" "" "" .SH "NAME" \fBnpm-doctor\fR - Check your npm environment .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-edit.1 b/deps/npm/man/man1/npm-edit.1 index de723dfabe983b..5e56a2fc90e35a 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" "February 2023" "" "" +.TH "NPM-EDIT" "1" "March 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 10d06ae263408f..d2627715dd8490 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" "February 2023" "" "" +.TH "NPM-EXEC" "1" "March 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 a8f5e0e2b63487..4623c49f5a1a01 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" "February 2023" "" "" +.TH "NPM-EXPLAIN" "1" "March 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 82452e0cba6eaa..cfa05d1b5ea04c 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" "February 2023" "" "" +.TH "NPM-EXPLORE" "1" "March 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 4834f54df6abd3..cd808c61bc0bec 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" "February 2023" "" "" +.TH "NPM-FIND-DUPES" "1" "March 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 a0a31eebd445ac..896eb052c051bd 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" "February 2023" "" "" +.TH "NPM-FUND" "1" "March 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 846f507f51e4d7..51c948d072a7b2 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" "February 2023" "" "" +.TH "NPM-HELP-SEARCH" "1" "March 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 cffb33d49f91ef..90cd1c1f2c721d 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" "February 2023" "" "" +.TH "NPM-HELP" "1" "March 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 0cd0935d9498a9..9ae87f10bb1932 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" "February 2023" "" "" +.TH "NPM-HOOK" "1" "March 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 763e2914fa1e67..09c5305b2ca5c1 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" "February 2023" "" "" +.TH "NPM-INIT" "1" "March 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 fbe641322dac4b..ba98387c83d435 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" "February 2023" "" "" +.TH "NPM-INSTALL-CI-TEST" "1" "March 2023" "" "" .SH "NAME" \fBnpm-install-ci-test\fR - Install a project with a clean slate and run tests .SS "Synopsis" @@ -7,7 +7,7 @@ .nf npm install-ci-test -alias: cit +aliases: cit, clean-install-test, sit .fi .RE .SS "Description" diff --git a/deps/npm/man/man1/npm-install-test.1 b/deps/npm/man/man1/npm-install-test.1 index 528ec9b75adf02..73ff246c9e0bfb 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" "February 2023" "" "" +.TH "NPM-INSTALL-TEST" "1" "March 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 4eb982a825f3e3..1cbf4a6523498f 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" "February 2023" "" "" +.TH "NPM-INSTALL" "1" "March 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 84c3e7fd7ccc3c..efd5925f87a7db 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" "February 2023" "" "" +.TH "NPM-LINK" "1" "March 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 83535a93440fa7..dc154a2cd630d0 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" "February 2023" "" "" +.TH "NPM-LOGIN" "1" "March 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 945b6ef8e02003..c55de1b109a86f 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" "February 2023" "" "" +.TH "NPM-LOGOUT" "1" "March 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 ac59cba39a3f50..ec61923700b5e1 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" "February 2023" "" "" +.TH "NPM-LS" "1" "March 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@9.5.1 /path/to/npm +npm@9.6.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 2e952687b307ac..0c54d854a9436e 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" "February 2023" "" "" +.TH "NPM-ORG" "1" "March 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 683321321f6876..6fce766932bac7 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" "February 2023" "" "" +.TH "NPM-OUTDATED" "1" "March 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 bf73df68cdf48b..adb0168df44fc4 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" "February 2023" "" "" +.TH "NPM-OWNER" "1" "March 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 e6b19f2eb061c6..18c1a786c54db8 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" "February 2023" "" "" +.TH "NPM-PACK" "1" "March 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 4ae24a8cd6eb46..166edeb7691496 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" "February 2023" "" "" +.TH "NPM-PING" "1" "March 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 d67f473563af1a..9c18b6dd6df68c 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" "February 2023" "" "" +.TH "NPM-PKG" "1" "March 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 a14aec7c6b3043..d507a427dc73b0 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" "February 2023" "" "" +.TH "NPM-PREFIX" "1" "March 2023" "" "" .SH "NAME" \fBnpm-prefix\fR - Display prefix .SS "Synopsis" @@ -55,8 +55,6 @@ man pages are linked to \fB{prefix}/share/man\fR .IP \(bu 4 npm help root .IP \(bu 4 -npm help bin -.IP \(bu 4 npm help folders .IP \(bu 4 npm help config diff --git a/deps/npm/man/man1/npm-profile.1 b/deps/npm/man/man1/npm-profile.1 index 40bc3df8e842a7..0d24f9d05b0245 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" "February 2023" "" "" +.TH "NPM-PROFILE" "1" "March 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 86546ac112f1cd..d0afcb49aa5c20 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" "February 2023" "" "" +.TH "NPM-PRUNE" "1" "March 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 97b912987d0bd0..e434b4f2a71d28 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" "February 2023" "" "" +.TH "NPM-PUBLISH" "1" "March 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 24ba7853adba8f..91459b2a27c4a7 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" "February 2023" "" "" +.TH "NPM-QUERY" "1" "March 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 1c00566dd1701a..8f4d6d75a45e81 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" "February 2023" "" "" +.TH "NPM-REBUILD" "1" "March 2023" "" "" .SH "NAME" \fBnpm-rebuild\fR - Rebuild a package .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-repo.1 b/deps/npm/man/man1/npm-repo.1 index 65bb96687f571e..0588d9b595c126 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" "February 2023" "" "" +.TH "NPM-REPO" "1" "March 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 9323e2841a261e..a05bc3f189ae6e 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" "February 2023" "" "" +.TH "NPM-RESTART" "1" "March 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 bd943bb95a6d9c..c9c9439dbccca4 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" "February 2023" "" "" +.TH "NPM-ROOT" "1" "March 2023" "" "" .SH "NAME" \fBnpm-root\fR - Display npm root .SS "Synopsis" @@ -48,8 +48,6 @@ man pages are linked to \fB{prefix}/share/man\fR .IP \(bu 4 npm help prefix .IP \(bu 4 -npm help bin -.IP \(bu 4 npm help folders .IP \(bu 4 npm help config diff --git a/deps/npm/man/man1/npm-run-script.1 b/deps/npm/man/man1/npm-run-script.1 index afcf4d655bf218..a905e08ae68dc1 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" "February 2023" "" "" +.TH "NPM-RUN-SCRIPT" "1" "March 2023" "" "" .SH "NAME" \fBnpm-run-script\fR - Run arbitrary package scripts .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-search.1 b/deps/npm/man/man1/npm-search.1 index 2241f81e2250e8..9c172a44b6da6c 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" "February 2023" "" "" +.TH "NPM-SEARCH" "1" "March 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 5192bc1222f3dc..7981f03b1606ec 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" "February 2023" "" "" +.TH "NPM-SHRINKWRAP" "1" "March 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 ecb2ffe84fa809..1f0392794bf79b 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" "February 2023" "" "" +.TH "NPM-STAR" "1" "March 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 49ffc90e03ce10..c2472bc237ea33 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" "February 2023" "" "" +.TH "NPM-STARS" "1" "March 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 ecf3ad2838266c..83905a1bd6a596 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" "February 2023" "" "" +.TH "NPM-START" "1" "March 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 4a5f604941e09d..c04cffa982b339 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" "February 2023" "" "" +.TH "NPM-STOP" "1" "March 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 30399634bc8bc8..435f882a60ef6a 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" "February 2023" "" "" +.TH "NPM-TEAM" "1" "March 2023" "" "" .SH "NAME" \fBnpm-team\fR - Manage organization teams and team memberships .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-test.1 b/deps/npm/man/man1/npm-test.1 index ddd45f0757b9ff..48100ddd2ed3fa 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" "February 2023" "" "" +.TH "NPM-TEST" "1" "March 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 202f55bd69e68e..380160743eabf3 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" "February 2023" "" "" +.TH "NPM-TOKEN" "1" "March 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 9c90a9863215c9..b8f291cbeda665 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" "February 2023" "" "" +.TH "NPM-UNINSTALL" "1" "March 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 8b250dd67bcc41..0b5bae99d9df93 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" "February 2023" "" "" +.TH "NPM-UNPUBLISH" "1" "March 2023" "" "" .SH "NAME" \fBnpm-unpublish\fR - Remove a package from the registry .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-unstar.1 b/deps/npm/man/man1/npm-unstar.1 index c76968c9050b5b..7e01bf1a960392 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" "February 2023" "" "" +.TH "NPM-UNSTAR" "1" "March 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 7819631243fccd..1ac95a9b5a0c99 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" "February 2023" "" "" +.TH "NPM-UPDATE" "1" "March 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 66bfdbdc598bdd..9f13e68d7f7690 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" "February 2023" "" "" +.TH "NPM-VERSION" "1" "March 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 6075c163d0e8d2..5da1474d5177a3 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" "February 2023" "" "" +.TH "NPM-VIEW" "1" "March 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 d96a3648776381..d20de132af5e01 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" "February 2023" "" "" +.TH "NPM-WHOAMI" "1" "March 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 631f484d455b98..545ad4dec9b1af 100644 --- a/deps/npm/man/man1/npm.1 +++ b/deps/npm/man/man1/npm.1 @@ -1,4 +1,4 @@ -.TH "NPM" "1" "February 2023" "" "" +.TH "NPM" "1" "March 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 -9.5.1 +9.6.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 079dffeecdbe2e..bf5e9bf8ea4dfe 100644 --- a/deps/npm/man/man1/npx.1 +++ b/deps/npm/man/man1/npx.1 @@ -1,4 +1,4 @@ -.TH "NPX" "1" "February 2023" "" "" +.TH "NPX" "1" "March 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 50bf4c8c7aec20..403d66ee7fc54d 100644 --- a/deps/npm/man/man5/folders.5 +++ b/deps/npm/man/man5/folders.5 @@ -1,4 +1,4 @@ -.TH "FOLDERS" "5" "February 2023" "" "" +.TH "FOLDERS" "5" "March 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 68af465f5ee21a..c5ef3e0b8c55cd 100644 --- a/deps/npm/man/man5/install.5 +++ b/deps/npm/man/man5/install.5 @@ -1,4 +1,4 @@ -.TH "INSTALL" "5" "February 2023" "" "" +.TH "INSTALL" "5" "March 2023" "" "" .SH "NAME" \fBinstall\fR - Download and install node and npm .SS "Description" @@ -26,23 +26,7 @@ npm -v .RE .SS "Using a Node version manager to install Node.js and npm" .P -Node version managers allow you to install and switch between multiple versions of Node.js and npm on your system so you can test your applications on multiple versions of npm to ensure they work for users on different versions. -.SS "OSX or Linux Node version managers" -.RS 0 -.IP \(bu 4 -\fBnvm\fR \fI\(lahttps://github.com/creationix/nvm\(ra\fR -.IP \(bu 4 -\fBn\fR \fI\(lahttps://github.com/tj/n\(ra\fR -.RE 0 - -.SS "Windows Node version managers" -.RS 0 -.IP \(bu 4 -\fBnodist\fR \fI\(lahttps://github.com/marcelklehr/nodist\(ra\fR -.IP \(bu 4 -\fBnvm-windows\fR \fI\(lahttps://github.com/coreybutler/nvm-windows\(ra\fR -.RE 0 - +Node version managers allow you to install and switch between multiple versions of Node.js and npm on your system so you can test your applications on multiple versions of npm to ensure they work for users on different versions. You can \fBsearch for them on GitHub\fR \fI\(lahttps://github.com/search?q=node%20version%20manager&type=repositories\(ra\fR. .SS "Using a Node installer to install Node.js and npm" .P If you are unable to use a Node version manager, you can use a Node installer to install both Node.js and npm on your system. diff --git a/deps/npm/man/man5/npm-global.5 b/deps/npm/man/man5/npm-global.5 index 50bf4c8c7aec20..403d66ee7fc54d 100644 --- a/deps/npm/man/man5/npm-global.5 +++ b/deps/npm/man/man5/npm-global.5 @@ -1,4 +1,4 @@ -.TH "FOLDERS" "5" "February 2023" "" "" +.TH "FOLDERS" "5" "March 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 8f7dd8fd5b73e6..b9c12028df641c 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" "February 2023" "" "" +.TH "PACKAGE.JSON" "5" "March 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 12a5dc05887fda..28f1fb6185f994 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" "February 2023" "" "" +.TH "NPM-SHRINKWRAP.JSON" "5" "March 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 a568984bc80aaa..d4ab9f65774a26 100644 --- a/deps/npm/man/man5/npmrc.5 +++ b/deps/npm/man/man5/npmrc.5 @@ -1,4 +1,4 @@ -.TH "NPMRC" "5" "February 2023" "" "" +.TH "NPMRC" "5" "March 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 8f7dd8fd5b73e6..b9c12028df641c 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" "February 2023" "" "" +.TH "PACKAGE.JSON" "5" "March 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 20be57b80db4fb..d6b65de211e4fa 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" "February 2023" "" "" +.TH "PACKAGE-LOCK.JSON" "5" "March 2023" "" "" .SH "NAME" \fBpackage-lock.json\fR - A manifestation of the manifest .SS "Description" @@ -67,9 +67,9 @@ No version provided: an "ancient" shrinkwrap file from a version of npm prior to .IP \(bu 4 \fB1\fR: The lockfile version used by npm v5 and v6. .IP \(bu 4 -\fB2\fR: The lockfile version used by npm v7, which is backwards compatible to v1 lockfiles. +\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 v7, \fIwithout\fR backwards compatibility affordances. This is used for the hidden lockfile at \fBnode_modules/.package-lock.json\fR, and will likely be used in a future version of npm, once support for npm v6 is no longer relevant. +\fB3\fR: The lockfile version used by npm v9. 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 dc4261c2803a8c..93fd95d7915703 100644 --- a/deps/npm/man/man7/config.7 +++ b/deps/npm/man/man7/config.7 @@ -1,4 +1,4 @@ -.TH "CONFIG" "7" "February 2023" "" "" +.TH "CONFIG" "7" "March 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 f1670a3a20e885..2d5c77e6717fc5 100644 --- a/deps/npm/man/man7/dependency-selectors.7 +++ b/deps/npm/man/man7/dependency-selectors.7 @@ -1,4 +1,4 @@ -.TH "QUERYING" "7" "February 2023" "" "" +.TH "QUERYING" "7" "March 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 a15142ba205a4b..83d9c5a39953f0 100644 --- a/deps/npm/man/man7/developers.7 +++ b/deps/npm/man/man7/developers.7 @@ -1,4 +1,4 @@ -.TH "DEVELOPERS" "7" "February 2023" "" "" +.TH "DEVELOPERS" "7" "March 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 d1cc3bdf00d8ca..4d1000caa942a1 100644 --- a/deps/npm/man/man7/logging.7 +++ b/deps/npm/man/man7/logging.7 @@ -1,4 +1,4 @@ -.TH "LOGGING" "7" "February 2023" "" "" +.TH "LOGGING" "7" "March 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 7aa5da2ede48f4..ea8e56ad714bed 100644 --- a/deps/npm/man/man7/orgs.7 +++ b/deps/npm/man/man7/orgs.7 @@ -1,4 +1,4 @@ -.TH "ORGS" "7" "February 2023" "" "" +.TH "ORGS" "7" "March 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 4ae0095bd13b25..c3eb5e458f6cff 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" "February 2023" "" "" +.TH "PACKAGE-SPEC" "7" "March 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 e67c8bb2b01158..b8926cb2f57a47 100644 --- a/deps/npm/man/man7/registry.7 +++ b/deps/npm/man/man7/registry.7 @@ -1,4 +1,4 @@ -.TH "REGISTRY" "7" "February 2023" "" "" +.TH "REGISTRY" "7" "March 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 82e39c8cb1acc3..97066d4d97f274 100644 --- a/deps/npm/man/man7/removal.7 +++ b/deps/npm/man/man7/removal.7 @@ -1,4 +1,4 @@ -.TH "REMOVAL" "7" "February 2023" "" "" +.TH "REMOVAL" "7" "March 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 670b2f88c82116..6b58330b7b89bf 100644 --- a/deps/npm/man/man7/scope.7 +++ b/deps/npm/man/man7/scope.7 @@ -1,4 +1,4 @@ -.TH "SCOPE" "7" "February 2023" "" "" +.TH "SCOPE" "7" "March 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 5f0ee7735d6a22..d4e5de7e97f3df 100644 --- a/deps/npm/man/man7/scripts.7 +++ b/deps/npm/man/man7/scripts.7 @@ -1,4 +1,4 @@ -.TH "SCRIPTS" "7" "February 2023" "" "" +.TH "SCRIPTS" "7" "March 2023" "" "" .SH "NAME" \fBscripts\fR - How npm handles the "scripts" field .SS "Description" diff --git a/deps/npm/man/man7/workspaces.7 b/deps/npm/man/man7/workspaces.7 index 6e1e9bf59e08f2..7db3d49cc25c6a 100644 --- a/deps/npm/man/man7/workspaces.7 +++ b/deps/npm/man/man7/workspaces.7 @@ -1,4 +1,4 @@ -.TH "WORKSPACES" "7" "February 2023" "" "" +.TH "WORKSPACES" "7" "March 2023" "" "" .SH "NAME" \fBworkspaces\fR - Working with workspaces .SS "Description" diff --git a/deps/npm/node_modules/@colors/colors/index.d.ts b/deps/npm/node_modules/@colors/colors/index.d.ts deleted file mode 100644 index df3f2e6afc945a..00000000000000 --- a/deps/npm/node_modules/@colors/colors/index.d.ts +++ /dev/null @@ -1,136 +0,0 @@ -// Type definitions for @colors/colors 1.4+ -// Project: https://github.com/Marak/colors.js -// Definitions by: Bart van der Schoor , Staffan Eketorp -// Definitions: https://github.com/DABH/colors.js - -export interface Color { - (text: string): string; - - strip: Color; - stripColors: Color; - - black: Color; - red: Color; - green: Color; - yellow: Color; - blue: Color; - magenta: Color; - cyan: Color; - white: Color; - gray: Color; - grey: Color; - - bgBlack: Color; - bgRed: Color; - bgGreen: Color; - bgYellow: Color; - bgBlue: Color; - bgMagenta: Color; - bgCyan: Color; - bgWhite: Color; - - reset: Color; - bold: Color; - dim: Color; - italic: Color; - underline: Color; - inverse: Color; - hidden: Color; - strikethrough: Color; - - rainbow: Color; - zebra: Color; - america: Color; - trap: Color; - random: Color; - zalgo: Color; -} - -export function enable(): void; -export function disable(): void; -export function setTheme(theme: any): void; - -export let enabled: boolean; - -export const strip: Color; -export const stripColors: Color; - -export const black: Color; -export const red: Color; -export const green: Color; -export const yellow: Color; -export const blue: Color; -export const magenta: Color; -export const cyan: Color; -export const white: Color; -export const gray: Color; -export const grey: Color; - -export const bgBlack: Color; -export const bgRed: Color; -export const bgGreen: Color; -export const bgYellow: Color; -export const bgBlue: Color; -export const bgMagenta: Color; -export const bgCyan: Color; -export const bgWhite: Color; - -export const reset: Color; -export const bold: Color; -export const dim: Color; -export const italic: Color; -export const underline: Color; -export const inverse: Color; -export const hidden: Color; -export const strikethrough: Color; - -export const rainbow: Color; -export const zebra: Color; -export const america: Color; -export const trap: Color; -export const random: Color; -export const zalgo: Color; - -declare global { - interface String { - strip: string; - stripColors: string; - - black: string; - red: string; - green: string; - yellow: string; - blue: string; - magenta: string; - cyan: string; - white: string; - gray: string; - grey: string; - - bgBlack: string; - bgRed: string; - bgGreen: string; - bgYellow: string; - bgBlue: string; - bgMagenta: string; - bgCyan: string; - bgWhite: string; - - reset: string; - // @ts-ignore - bold: string; - dim: string; - italic: string; - underline: string; - inverse: string; - hidden: string; - strikethrough: string; - - rainbow: string; - zebra: string; - america: string; - trap: string; - random: string; - zalgo: string; - } -} diff --git a/deps/npm/node_modules/@colors/colors/safe.d.ts b/deps/npm/node_modules/@colors/colors/safe.d.ts deleted file mode 100644 index 2bafc27984e0ea..00000000000000 --- a/deps/npm/node_modules/@colors/colors/safe.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -// Type definitions for Colors.js 1.2 -// Project: https://github.com/Marak/colors.js -// Definitions by: Bart van der Schoor , Staffan Eketorp -// Definitions: https://github.com/Marak/colors.js - -export const enabled: boolean; -export function enable(): void; -export function disable(): void; -export function setTheme(theme: any): void; - -export function strip(str: string): string; -export function stripColors(str: string): string; - -export function black(str: string): string; -export function red(str: string): string; -export function green(str: string): string; -export function yellow(str: string): string; -export function blue(str: string): string; -export function magenta(str: string): string; -export function cyan(str: string): string; -export function white(str: string): string; -export function gray(str: string): string; -export function grey(str: string): string; - -export function bgBlack(str: string): string; -export function bgRed(str: string): string; -export function bgGreen(str: string): string; -export function bgYellow(str: string): string; -export function bgBlue(str: string): string; -export function bgMagenta(str: string): string; -export function bgCyan(str: string): string; -export function bgWhite(str: string): string; - -export function reset(str: string): string; -export function bold(str: string): string; -export function dim(str: string): string; -export function italic(str: string): string; -export function underline(str: string): string; -export function inverse(str: string): string; -export function hidden(str: string): string; -export function strikethrough(str: string): string; - -export function rainbow(str: string): string; -export function zebra(str: string): string; -export function america(str: string): string; -export function trap(str: string): string; -export function random(str: string): string; -export function zalgo(str: string): string; diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js index 2ea66ac3364149..0d936d8ef77689 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js @@ -1243,7 +1243,7 @@ This is a one-time fix-up, please be patient... if (isWorkspace) { const existingNode = this.idealTree.edgesOut.get(spec.name).to if (existingNode && existingNode.isWorkspace && existingNode.satisfies(edge)) { - return edge.to + return existingNode } } diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js index 87993cca876d66..760fa977ecfd91 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js @@ -535,9 +535,14 @@ module.exports = cls => class Reifier extends cls { await this[_renamePath](d, retired) } } - const made = await mkdir(node.path, { recursive: true }) this[_sparseTreeDirs].add(node.path) - this[_sparseTreeRoots].add(made) + const made = await mkdir(node.path, { recursive: true }) + // if the directory already exists, made will be undefined. if that's the case + // we don't want to remove it because we aren't the ones who created it so we + // omit it from the _sparseTreeRoots + if (made) { + this[_sparseTreeRoots].add(made) + } })) .then(() => process.emit('timeEnd', 'reify:createSparse')) } diff --git a/deps/npm/node_modules/@npmcli/arborist/package.json b/deps/npm/node_modules/@npmcli/arborist/package.json index aaa69e048432aa..8e9354c87e052e 100644 --- a/deps/npm/node_modules/@npmcli/arborist/package.json +++ b/deps/npm/node_modules/@npmcli/arborist/package.json @@ -1,11 +1,11 @@ { "name": "@npmcli/arborist", - "version": "6.2.3", + "version": "6.2.6", "description": "Manage node_modules trees", "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/fs": "^3.1.0", - "@npmcli/installed-package-contents": "^2.0.0", + "@npmcli/installed-package-contents": "^2.0.2", "@npmcli/map-workspaces": "^3.0.2", "@npmcli/metavuln-calculator": "^5.0.0", "@npmcli/name-from-folder": "^2.0.0", @@ -19,7 +19,7 @@ "hosted-git-info": "^6.1.1", "json-parse-even-better-errors": "^3.0.0", "json-stringify-nice": "^1.1.4", - "minimatch": "^6.1.6", + "minimatch": "^7.4.2", "nopt": "^7.0.0", "npm-install-checks": "^6.0.0", "npm-package-arg": "^10.1.0", @@ -39,7 +39,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "benchmark": "^2.1.4", "chalk": "^4.1.0", "minify-registry-metadata": "^3.0.0", @@ -98,7 +98,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" } } diff --git a/deps/npm/node_modules/@npmcli/config/lib/parse-field.js b/deps/npm/node_modules/@npmcli/config/lib/parse-field.js index 0c905bf23cb107..099b0b4eaf1a83 100644 --- a/deps/npm/node_modules/@npmcli/config/lib/parse-field.js +++ b/deps/npm/node_modules/@npmcli/config/lib/parse-field.js @@ -20,6 +20,7 @@ const parseField = (f, key, opts, listElement = false) => { const isUmask = typeList.has(typeDefs.Umask.type) const isNumber = typeList.has(typeDefs.Number.type) const isList = !listElement && typeList.has(Array) + const isDate = typeList.has(typeDefs.Date.type) if (Array.isArray(f)) { return !isList ? f : f.map(field => parseField(field, key, opts, true)) @@ -53,6 +54,10 @@ const parseField = (f, key, opts, listElement = false) => { f = envReplace(f, env) + if (isDate) { + return new Date(f) + } + if (isPath) { const homePattern = platform === 'win32' ? /^~(\/|\\)/ : /^~\// if (homePattern.test(f) && home) { diff --git a/deps/npm/node_modules/@npmcli/config/package.json b/deps/npm/node_modules/@npmcli/config/package.json index 38c063e358beb1..d61e4fab839c43 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": "6.1.3", + "version": "6.1.5", "files": [ "bin/", "lib/" @@ -33,7 +33,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "tap": "^16.3.4" }, "dependencies": { @@ -50,6 +50,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4" + "version": "4.12.1" } } diff --git a/deps/npm/node_modules/@npmcli/git/lib/clone.js b/deps/npm/node_modules/@npmcli/git/lib/clone.js index 3f165dd70e3806..e25a4d14268216 100644 --- a/deps/npm/node_modules/@npmcli/git/lib/clone.js +++ b/deps/npm/node_modules/@npmcli/git/lib/clone.js @@ -27,8 +27,7 @@ const spawn = require('./spawn.js') const { isWindows } = require('./utils.js') const pickManifest = require('npm-pick-manifest') -const fs = require('fs') -const mkdirp = require('mkdirp') +const fs = require('fs/promises') module.exports = (repo, ref = 'HEAD', target = null, opts = {}) => getRevs(repo, opts).then(revs => clone( @@ -93,7 +92,7 @@ const other = (repo, revDoc, target, opts) => { .concat(shallow ? ['--depth=1'] : []) const git = (args) => spawn(args, { ...opts, cwd: target }) - return mkdirp(target) + return fs.mkdir(target, { recursive: true }) .then(() => git(['init'])) .then(() => isWindows(opts) ? git(['config', '--local', '--add', 'core.longpaths', 'true']) @@ -141,19 +140,21 @@ const plain = (repo, revDoc, target, opts) => { return spawn(args, opts).then(() => revDoc.sha) } -const updateSubmodules = (target, opts) => new Promise(resolve => - fs.stat(target + '/.gitmodules', er => { - if (er) { - return resolve(null) - } - return resolve(spawn([ - 'submodule', - 'update', - '-q', - '--init', - '--recursive', - ], { ...opts, cwd: target })) - })) +const updateSubmodules = async (target, opts) => { + const hasSubmodules = await fs.stat(`${target}/.gitmodules`) + .then(() => true) + .catch(() => false) + if (!hasSubmodules) { + return null + } + return spawn([ + 'submodule', + 'update', + '-q', + '--init', + '--recursive', + ], { ...opts, cwd: target }) +} const unresolved = (repo, ref, target, opts) => { // can't do this one shallowly, because the ref isn't advertised @@ -161,7 +162,7 @@ const unresolved = (repo, ref, target, opts) => { const lp = isWindows(opts) ? ['--config', 'core.longpaths=true'] : [] const cloneArgs = ['clone', '--mirror', '-q', repo, target + '/.git'] const git = (args) => spawn(args, { ...opts, cwd: target }) - return mkdirp(target) + return fs.mkdir(target, { recursive: true }) .then(() => git(cloneArgs.concat(lp))) .then(() => git(['init'])) .then(() => git(['checkout', ref])) diff --git a/deps/npm/node_modules/@npmcli/git/package.json b/deps/npm/node_modules/@npmcli/git/package.json index f3ce2fcfc92321..41c78dddfa3ccc 100644 --- a/deps/npm/node_modules/@npmcli/git/package.json +++ b/deps/npm/node_modules/@npmcli/git/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/git", - "version": "4.0.3", + "version": "4.0.4", "main": "lib/index.js", "files": [ "bin/", @@ -32,16 +32,14 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.8.0", + "@npmcli/template-oss": "4.12.0", "npm-package-arg": "^10.0.0", - "rimraf": "^3.0.2", "slash": "^3.0.0", "tap": "^16.0.1" }, "dependencies": { "@npmcli/promise-spawn": "^6.0.0", "lru-cache": "^7.4.4", - "mkdirp": "^1.0.4", "npm-pick-manifest": "^8.0.0", "proc-log": "^3.0.0", "promise-inflight": "^1.0.1", @@ -55,6 +53,6 @@ "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "windowsCI": false, - "version": "4.8.0" + "version": "4.12.0" } } diff --git a/deps/npm/node_modules/@npmcli/installed-package-contents/lib/index.js b/deps/npm/node_modules/@npmcli/installed-package-contents/lib/index.js index e2c545b5ab949c..20b25c4bc8437d 100755 --- a/deps/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +++ b/deps/npm/node_modules/@npmcli/installed-package-contents/lib/index.js @@ -1,3 +1,5 @@ +#! /usr/bin/env node + // to GET CONTENTS for folder at PATH (which may be a PACKAGE): // - if PACKAGE, read path/package.json // - if bins in ../node_modules/.bin, add those to result diff --git a/deps/npm/node_modules/@npmcli/installed-package-contents/package.json b/deps/npm/node_modules/@npmcli/installed-package-contents/package.json index aac2de13042561..3554754123e618 100644 --- a/deps/npm/node_modules/@npmcli/installed-package-contents/package.json +++ b/deps/npm/node_modules/@npmcli/installed-package-contents/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/installed-package-contents", - "version": "2.0.1", + "version": "2.0.2", "description": "Get the list of files installed in a package in node_modules, including bundled dependencies", "author": "GitHub Inc.", "main": "lib/index.js", @@ -19,8 +19,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.6.2", - "mkdirp": "^1.0.4", + "@npmcli/template-oss": "4.11.4", "require-inject": "^1.4.4", "tap": "^16.3.0" }, @@ -41,7 +40,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.6.2" + "version": "4.11.4" }, "tap": { "nyc-arg": [ diff --git a/deps/npm/node_modules/@npmcli/map-workspaces/lib/index.js b/deps/npm/node_modules/@npmcli/map-workspaces/lib/index.js index f93bc2911e89fd..cd9b65db53231c 100644 --- a/deps/npm/node_modules/@npmcli/map-workspaces/lib/index.js +++ b/deps/npm/node_modules/@npmcli/map-workspaces/lib/index.js @@ -1,11 +1,9 @@ -const { promisify } = require('util') const path = require('path') const getName = require('@npmcli/name-from-folder') const minimatch = require('minimatch') const rpj = require('read-package-json-fast') const glob = require('glob') -const pGlob = promisify(glob) function appendNegatedPatterns (patterns) { const results = [] @@ -98,7 +96,9 @@ async function mapWorkspaces (opts = {}) { const getPackagePathname = pkgPathmame(opts) for (const item of patterns) { - const matches = await pGlob(getGlobPattern(item.pattern), getGlobOpts()) + let matches = await glob(getGlobPattern(item.pattern), getGlobOpts()) + // preserves glob@8 behavior + matches = matches.sort((a, b) => a.localeCompare(b, 'en')) for (const match of matches) { let pkg diff --git a/deps/npm/node_modules/@npmcli/map-workspaces/package.json b/deps/npm/node_modules/@npmcli/map-workspaces/package.json index 3f5270360c5fc0..35b7e3fde2362e 100644 --- a/deps/npm/node_modules/@npmcli/map-workspaces/package.json +++ b/deps/npm/node_modules/@npmcli/map-workspaces/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/map-workspaces", - "version": "3.0.2", + "version": "3.0.3", "main": "lib/index.js", "files": [ "bin/", @@ -43,17 +43,17 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.3", + "@npmcli/template-oss": "4.12.0", "tap": "^16.0.1" }, "dependencies": { "@npmcli/name-from-folder": "^2.0.0", - "glob": "^8.0.1", - "minimatch": "^6.1.6", + "glob": "^9.3.1", + "minimatch": "^7.4.2", "read-package-json-fast": "^3.0.0" }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.3" + "version": "4.12.0" } } diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/LICENSE b/deps/npm/node_modules/@sigstore/protobuf-specs/LICENSE similarity index 99% rename from tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/LICENSE rename to deps/npm/node_modules/@sigstore/protobuf-specs/LICENSE index 17a25538d9bd63..e9e7c1679a09df 100644 --- a/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +++ b/deps/npm/node_modules/@sigstore/protobuf-specs/LICENSE @@ -1,3 +1,4 @@ + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -178,7 +179,7 @@ APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" + boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -186,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright contributors + Copyright 2023 The Sigstore Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/envelope.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/envelope.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/api/field_behavior.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/api/field_behavior.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/descriptor.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/descriptor.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/timestamp.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/timestamp.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_bundle.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_bundle.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_common.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_common.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_rekor.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_rekor.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_trustroot.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_trustroot.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_verification.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js similarity index 100% rename from deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_verification.js rename to deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js diff --git a/deps/npm/node_modules/@sigstore/protobuf-specs/dist/index.js b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/index.js new file mode 100644 index 00000000000000..eafb768c48fcaa --- /dev/null +++ b/deps/npm/node_modules/@sigstore/protobuf-specs/dist/index.js @@ -0,0 +1,37 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +/* +Copyright 2023 The Sigstore Authors. + +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. +*/ +__exportStar(require("./__generated__/envelope"), exports); +__exportStar(require("./__generated__/sigstore_bundle"), exports); +__exportStar(require("./__generated__/sigstore_common"), exports); +__exportStar(require("./__generated__/sigstore_rekor"), exports); +__exportStar(require("./__generated__/sigstore_trustroot"), exports); +__exportStar(require("./__generated__/sigstore_verification"), exports); diff --git a/deps/npm/node_modules/@sigstore/protobuf-specs/package.json b/deps/npm/node_modules/@sigstore/protobuf-specs/package.json new file mode 100644 index 00000000000000..7cb4aa9c5364ff --- /dev/null +++ b/deps/npm/node_modules/@sigstore/protobuf-specs/package.json @@ -0,0 +1,31 @@ +{ + "name": "@sigstore/protobuf-specs", + "version": "0.1.0", + "description": "code-signing for npm packages", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "scripts": { + "build": "tsc" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sigstore/protobuf-specs.git" + }, + "files": [ + "dist" + ], + "author": "bdehamer@github.com", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/sigstore/protobuf-specs/issues" + }, + "homepage": "https://github.com/sigstore/protobuf-specs#readme", + "devDependencies": { + "@tsconfig/node14": "^1.0.3", + "@types/node": "^18.14.0", + "typescript": "^4.9.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } +} diff --git a/deps/npm/node_modules/@tootallnate/once/dist/index.d.ts b/deps/npm/node_modules/@tootallnate/once/dist/index.d.ts deleted file mode 100644 index 93d02a9a348b50..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/index.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -/// -import { EventEmitter } from 'events'; -import { EventNames, EventListenerParameters, AbortSignal } from './types'; -export interface OnceOptions { - signal?: AbortSignal; -} -export default function once>(emitter: Emitter, name: Event, { signal }?: OnceOptions): Promise>; diff --git a/deps/npm/node_modules/@tootallnate/once/dist/index.js.map b/deps/npm/node_modules/@tootallnate/once/dist/index.js.map deleted file mode 100644 index 61708ca07f1b09..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAOA,SAAwB,IAAI,CAI3B,OAAgB,EAChB,IAAW,EACX,EAAE,MAAM,KAAkB,EAAE;IAE5B,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QACtC,SAAS,OAAO;YACf,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,mBAAmB,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;YAC9C,OAAO,CAAC,cAAc,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;YACtC,OAAO,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAC1C,CAAC;QACD,SAAS,OAAO,CAAC,GAAG,IAAW;YAC9B,OAAO,EAAE,CAAC;YACV,OAAO,CAAC,IAA+C,CAAC,CAAC;QAC1D,CAAC;QACD,SAAS,OAAO,CAAC,GAAU;YAC1B,OAAO,EAAE,CAAC;YACV,MAAM,CAAC,GAAG,CAAC,CAAC;QACb,CAAC;QACD,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,gBAAgB,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAC3C,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAC1B,OAAO,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IAC9B,CAAC,CAAC,CAAC;AACJ,CAAC;AA1BD,uBA0BC"} \ No newline at end of file diff --git a/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.d.ts b/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.d.ts deleted file mode 100644 index eb2bbc6c6275ec..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.d.ts +++ /dev/null @@ -1,231 +0,0 @@ -export declare type OverloadedParameters = T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; - (...args: infer A13): any; - (...args: infer A14): any; - (...args: infer A15): any; - (...args: infer A16): any; - (...args: infer A17): any; - (...args: infer A18): any; - (...args: infer A19): any; - (...args: infer A20): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 | A13 | A14 | A15 | A16 | A17 | A18 | A19 | A20 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; - (...args: infer A13): any; - (...args: infer A14): any; - (...args: infer A15): any; - (...args: infer A16): any; - (...args: infer A17): any; - (...args: infer A18): any; - (...args: infer A19): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 | A13 | A14 | A15 | A16 | A17 | A18 | A19 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; - (...args: infer A13): any; - (...args: infer A14): any; - (...args: infer A15): any; - (...args: infer A16): any; - (...args: infer A17): any; - (...args: infer A18): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 | A13 | A14 | A15 | A16 | A17 | A18 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; - (...args: infer A13): any; - (...args: infer A14): any; - (...args: infer A15): any; - (...args: infer A16): any; - (...args: infer A17): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 | A13 | A14 | A15 | A16 | A17 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; - (...args: infer A13): any; - (...args: infer A14): any; - (...args: infer A15): any; - (...args: infer A16): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 | A13 | A14 | A15 | A16 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; - (...args: infer A13): any; - (...args: infer A14): any; - (...args: infer A15): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 | A13 | A14 | A15 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; - (...args: infer A13): any; - (...args: infer A14): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 | A13 | A14 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; - (...args: infer A13): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 | A13 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; - (...args: infer A12): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; - (...args: infer A11): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; - (...args: infer A10): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; - (...args: infer A9): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; - (...args: infer A8): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; - (...args: infer A7): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 | A7 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; - (...args: infer A6): any; -} ? A1 | A2 | A3 | A4 | A5 | A6 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; - (...args: infer A5): any; -} ? A1 | A2 | A3 | A4 | A5 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; - (...args: infer A4): any; -} ? A1 | A2 | A3 | A4 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; - (...args: infer A3): any; -} ? A1 | A2 | A3 : T extends { - (...args: infer A1): any; - (...args: infer A2): any; -} ? A1 | A2 : T extends { - (...args: infer A1): any; -} ? A1 : any; diff --git a/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.js.map b/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.js.map deleted file mode 100644 index 863f146d625f6c..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"overloaded-parameters.js","sourceRoot":"","sources":["../src/overloaded-parameters.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/deps/npm/node_modules/@tootallnate/once/dist/types.d.ts b/deps/npm/node_modules/@tootallnate/once/dist/types.d.ts deleted file mode 100644 index 58be8284ab8d3e..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/types.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -/// -import { EventEmitter } from 'events'; -import { OverloadedParameters } from './overloaded-parameters'; -export declare type FirstParameter = T extends [infer R, ...any[]] ? R : never; -export declare type EventListener = F extends [ - T, - infer R, - ...any[] -] ? R : never; -export declare type EventParameters = OverloadedParameters; -export declare type EventNames = FirstParameter>; -export declare type EventListenerParameters> = WithDefault, Event>>, unknown[]>; -export declare type WithDefault = [T] extends [never] ? D : T; -export interface AbortSignal { - addEventListener: (name: string, listener: (...args: any[]) => any) => void; - removeEventListener: (name: string, listener: (...args: any[]) => any) => void; -} diff --git a/deps/npm/node_modules/@tootallnate/once/dist/types.js.map b/deps/npm/node_modules/@tootallnate/once/dist/types.js.map deleted file mode 100644 index c768b79002615c..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/types.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/deps/npm/node_modules/@tufjs/models/LICENSE b/deps/npm/node_modules/@tufjs/models/LICENSE new file mode 100644 index 00000000000000..420700f5d37659 --- /dev/null +++ b/deps/npm/node_modules/@tufjs/models/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 GitHub and the TUF 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/tuf-js/dist/models/base.js b/deps/npm/node_modules/@tufjs/models/dist/base.js similarity index 81% rename from deps/npm/node_modules/tuf-js/dist/models/base.js rename to deps/npm/node_modules/@tufjs/models/dist/base.js index 7658567e2d6027..d89a089c330922 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/base.js +++ b/deps/npm/node_modules/@tufjs/models/dist/base.js @@ -3,11 +3,23 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.Signed = void 0; +exports.Signed = exports.isMetadataKind = exports.MetadataKind = void 0; const util_1 = __importDefault(require("util")); -const error_1 = require("../error"); -const utils_1 = require("../utils"); +const error_1 = require("./error"); +const utils_1 = require("./utils"); const SPECIFICATION_VERSION = ['1', '0', '31']; +var MetadataKind; +(function (MetadataKind) { + MetadataKind["Root"] = "root"; + MetadataKind["Timestamp"] = "timestamp"; + MetadataKind["Snapshot"] = "snapshot"; + MetadataKind["Targets"] = "targets"; +})(MetadataKind = exports.MetadataKind || (exports.MetadataKind = {})); +function isMetadataKind(value) { + return (typeof value === 'string' && + Object.values(MetadataKind).includes(value)); +} +exports.isMetadataKind = isMetadataKind; /*** * A base class for the signed part of TUF metadata. * diff --git a/deps/npm/node_modules/tuf-js/dist/models/delegations.js b/deps/npm/node_modules/@tufjs/models/dist/delegations.js similarity index 93% rename from deps/npm/node_modules/tuf-js/dist/models/delegations.js rename to deps/npm/node_modules/@tufjs/models/dist/delegations.js index 302bd52d8d885d..7165f1e2443936 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/delegations.js +++ b/deps/npm/node_modules/@tufjs/models/dist/delegations.js @@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.Delegations = void 0; const util_1 = __importDefault(require("util")); -const error_1 = require("../error"); -const guard_1 = require("../utils/guard"); +const error_1 = require("./error"); const key_1 = require("./key"); const role_1 = require("./role"); +const utils_1 = require("./utils"); /** * A container object storing information about all delegations. * @@ -67,7 +67,7 @@ class Delegations { static fromJSON(data) { const { keys, roles, succinct_roles, ...unrecognizedFields } = data; let succinctRoles; - if ((0, guard_1.isObject)(succinct_roles)) { + if (utils_1.guard.isObject(succinct_roles)) { succinctRoles = role_1.SuccinctRoles.fromJSON(succinct_roles); } return new Delegations({ @@ -89,7 +89,7 @@ function rolesToJSON(roles) { return Object.values(roles).map((role) => role.toJSON()); } function keysFromJSON(data) { - if (!(0, guard_1.isObjectRecord)(data)) { + if (!utils_1.guard.isObjectRecord(data)) { throw new TypeError('keys is malformed'); } return Object.entries(data).reduce((acc, [keyID, keyData]) => ({ @@ -99,8 +99,8 @@ function keysFromJSON(data) { } function rolesFromJSON(data) { let roleMap; - if ((0, guard_1.isDefined)(data)) { - if (!(0, guard_1.isObjectArray)(data)) { + if (utils_1.guard.isDefined(data)) { + if (!utils_1.guard.isObjectArray(data)) { throw new TypeError('roles is malformed'); } roleMap = data.reduce((acc, role) => { diff --git a/deps/npm/node_modules/@tufjs/models/dist/error.js b/deps/npm/node_modules/@tufjs/models/dist/error.js new file mode 100644 index 00000000000000..ba80698747ba06 --- /dev/null +++ b/deps/npm/node_modules/@tufjs/models/dist/error.js @@ -0,0 +1,27 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UnsupportedAlgorithmError = exports.CryptoError = exports.LengthOrHashMismatchError = exports.UnsignedMetadataError = exports.RepositoryError = exports.ValueError = void 0; +// An error about insufficient values +class ValueError extends Error { +} +exports.ValueError = ValueError; +// An error with a repository's state, such as a missing file. +// It covers all exceptions that come from the repository side when +// looking from the perspective of users of metadata API or ngclient. +class RepositoryError extends Error { +} +exports.RepositoryError = RepositoryError; +// An error about metadata object with insufficient threshold of signatures. +class UnsignedMetadataError extends RepositoryError { +} +exports.UnsignedMetadataError = UnsignedMetadataError; +// An error while checking the length and hash values of an object. +class LengthOrHashMismatchError extends RepositoryError { +} +exports.LengthOrHashMismatchError = LengthOrHashMismatchError; +class CryptoError extends Error { +} +exports.CryptoError = CryptoError; +class UnsupportedAlgorithmError extends CryptoError { +} +exports.UnsupportedAlgorithmError = UnsupportedAlgorithmError; diff --git a/deps/npm/node_modules/tuf-js/dist/models/file.js b/deps/npm/node_modules/@tufjs/models/dist/file.js similarity index 95% rename from deps/npm/node_modules/tuf-js/dist/models/file.js rename to deps/npm/node_modules/@tufjs/models/dist/file.js index d6d535f6ca7872..b35fe5950bbb7e 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/file.js +++ b/deps/npm/node_modules/@tufjs/models/dist/file.js @@ -6,8 +6,8 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.TargetFile = exports.MetaFile = void 0; const crypto_1 = __importDefault(require("crypto")); const util_1 = __importDefault(require("util")); -const error_1 = require("../error"); -const guard_1 = require("../utils/guard"); +const error_1 = require("./error"); +const utils_1 = require("./utils"); // A container with information about a particular metadata file. // // This class is used for Timestamp and Snapshot metadata. @@ -75,10 +75,10 @@ class MetaFile { if (typeof version !== 'number') { throw new TypeError('version must be a number'); } - if ((0, guard_1.isDefined)(length) && typeof length !== 'number') { + if (utils_1.guard.isDefined(length) && typeof length !== 'number') { throw new TypeError('length must be a number'); } - if ((0, guard_1.isDefined)(hashes) && !(0, guard_1.isStringRecord)(hashes)) { + if (utils_1.guard.isDefined(hashes) && !utils_1.guard.isStringRecord(hashes)) { throw new TypeError('hashes must be string keys and values'); } return new MetaFile({ @@ -163,7 +163,7 @@ class TargetFile { if (typeof length !== 'number') { throw new TypeError('length must be a number'); } - if (!(0, guard_1.isStringRecord)(hashes)) { + if (!utils_1.guard.isStringRecord(hashes)) { throw new TypeError('hashes must have string keys and values'); } return new TargetFile({ diff --git a/deps/npm/node_modules/@tufjs/models/dist/index.js b/deps/npm/node_modules/@tufjs/models/dist/index.js new file mode 100644 index 00000000000000..a4dc783659f045 --- /dev/null +++ b/deps/npm/node_modules/@tufjs/models/dist/index.js @@ -0,0 +1,24 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Timestamp = exports.Targets = exports.Snapshot = exports.Signature = exports.Root = exports.Metadata = exports.Key = exports.TargetFile = exports.MetaFile = exports.ValueError = exports.MetadataKind = void 0; +var base_1 = require("./base"); +Object.defineProperty(exports, "MetadataKind", { enumerable: true, get: function () { return base_1.MetadataKind; } }); +var error_1 = require("./error"); +Object.defineProperty(exports, "ValueError", { enumerable: true, get: function () { return error_1.ValueError; } }); +var file_1 = require("./file"); +Object.defineProperty(exports, "MetaFile", { enumerable: true, get: function () { return file_1.MetaFile; } }); +Object.defineProperty(exports, "TargetFile", { enumerable: true, get: function () { return file_1.TargetFile; } }); +var key_1 = require("./key"); +Object.defineProperty(exports, "Key", { enumerable: true, get: function () { return key_1.Key; } }); +var metadata_1 = require("./metadata"); +Object.defineProperty(exports, "Metadata", { enumerable: true, get: function () { return metadata_1.Metadata; } }); +var root_1 = require("./root"); +Object.defineProperty(exports, "Root", { enumerable: true, get: function () { return root_1.Root; } }); +var signature_1 = require("./signature"); +Object.defineProperty(exports, "Signature", { enumerable: true, get: function () { return signature_1.Signature; } }); +var snapshot_1 = require("./snapshot"); +Object.defineProperty(exports, "Snapshot", { enumerable: true, get: function () { return snapshot_1.Snapshot; } }); +var targets_1 = require("./targets"); +Object.defineProperty(exports, "Targets", { enumerable: true, get: function () { return targets_1.Targets; } }); +var timestamp_1 = require("./timestamp"); +Object.defineProperty(exports, "Timestamp", { enumerable: true, get: function () { return timestamp_1.Timestamp; } }); diff --git a/deps/npm/node_modules/tuf-js/dist/models/key.js b/deps/npm/node_modules/@tufjs/models/dist/key.js similarity index 68% rename from deps/npm/node_modules/tuf-js/dist/models/key.js rename to deps/npm/node_modules/@tufjs/models/dist/key.js index 33ff514fc178fa..5e55b09d7c6ddc 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/key.js +++ b/deps/npm/node_modules/@tufjs/models/dist/key.js @@ -1,37 +1,13 @@ "use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Key = void 0; const util_1 = __importDefault(require("util")); -const error_1 = require("../error"); -const guard_1 = require("../utils/guard"); -const key_1 = require("../utils/key"); -const signer = __importStar(require("../utils/signer")); +const error_1 = require("./error"); +const utils_1 = require("./utils"); +const key_1 = require("./utils/key"); // A container class representing the public portion of a Key. class Key { constructor(options) { @@ -57,7 +33,7 @@ class Key { }); const signedData = metadata.signed.toJSON(); try { - if (!signer.verifySignature(signedData, publicKey, signature.sig)) { + if (!utils_1.crypto.verifySignature(signedData, publicKey, signature.sig)) { throw new error_1.UnsignedMetadataError(`failed to verify ${this.keyID} signature`); } } @@ -94,7 +70,7 @@ class Key { if (typeof scheme !== 'string') { throw new TypeError('scheme must be a string'); } - if (!(0, guard_1.isStringRecord)(keyval)) { + if (!utils_1.guard.isStringRecord(keyval)) { throw new TypeError('keyval must be a string record'); } return new Key({ diff --git a/deps/npm/node_modules/tuf-js/dist/models/metadata.js b/deps/npm/node_modules/@tufjs/models/dist/metadata.js similarity index 82% rename from deps/npm/node_modules/tuf-js/dist/models/metadata.js rename to deps/npm/node_modules/@tufjs/models/dist/metadata.js index 11c3c546822acc..945d3a42a7cfb2 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/metadata.js +++ b/deps/npm/node_modules/@tufjs/models/dist/metadata.js @@ -5,14 +5,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.Metadata = void 0; const util_1 = __importDefault(require("util")); -const error_1 = require("../error"); -const guard_1 = require("../utils/guard"); -const types_1 = require("../utils/types"); +const base_1 = require("./base"); +const error_1 = require("./error"); const root_1 = require("./root"); const signature_1 = require("./signature"); const snapshot_1 = require("./snapshot"); const targets_1 = require("./targets"); const timestamp_1 = require("./timestamp"); +const utils_1 = require("./utils"); +const json_1 = require("./utils/json"); /*** * A container for signed TUF metadata. * @@ -43,15 +44,23 @@ class Metadata { this.signatures = signatures || {}; this.unrecognizedFields = unrecognizedFields || {}; } + sign(signer, append = true) { + const bytes = (0, json_1.canonicalize)(this.signed.toJSON()); + const signature = signer(bytes); + if (!append) { + this.signatures = {}; + } + this.signatures[signature.keyID] = signature; + } verifyDelegate(delegatedRole, delegatedMetadata) { let role; let keys = {}; switch (this.signed.type) { - case types_1.MetadataKind.Root: + case base_1.MetadataKind.Root: keys = this.signed.keys; role = this.signed.roles[delegatedRole]; break; - case types_1.MetadataKind.Targets: + case base_1.MetadataKind.Targets: if (!this.signed.delegations) { throw new error_1.ValueError(`No delegations found for ${delegatedRole}`); } @@ -98,9 +107,19 @@ class Metadata { util_1.default.isDeepStrictEqual(this.signatures, other.signatures) && util_1.default.isDeepStrictEqual(this.unrecognizedFields, other.unrecognizedFields)); } + toJSON() { + const signatures = Object.values(this.signatures).map((signature) => { + return signature.toJSON(); + }); + return { + signatures, + signed: this.signed.toJSON(), + ...this.unrecognizedFields, + }; + } static fromJSON(type, data) { const { signed, signatures, ...rest } = data; - if (!(0, guard_1.isDefined)(signed) || !(0, guard_1.isObject)(signed)) { + if (!utils_1.guard.isDefined(signed) || !utils_1.guard.isObject(signed)) { throw new TypeError('signed is not defined'); } if (type !== signed._type) { @@ -108,16 +127,16 @@ class Metadata { } let signedObj; switch (type) { - case types_1.MetadataKind.Root: + case base_1.MetadataKind.Root: signedObj = root_1.Root.fromJSON(signed); break; - case types_1.MetadataKind.Timestamp: + case base_1.MetadataKind.Timestamp: signedObj = timestamp_1.Timestamp.fromJSON(signed); break; - case types_1.MetadataKind.Snapshot: + case base_1.MetadataKind.Snapshot: signedObj = snapshot_1.Snapshot.fromJSON(signed); break; - case types_1.MetadataKind.Targets: + case base_1.MetadataKind.Targets: signedObj = targets_1.Targets.fromJSON(signed); break; default: @@ -129,7 +148,7 @@ class Metadata { } exports.Metadata = Metadata; function signaturesFromJSON(data) { - if (!(0, guard_1.isObjectArray)(data)) { + if (!utils_1.guard.isObjectArray(data)) { throw new TypeError('signatures is not an array'); } return data.reduce((acc, sigData) => { diff --git a/deps/npm/node_modules/tuf-js/dist/models/role.js b/deps/npm/node_modules/@tufjs/models/dist/role.js similarity index 96% rename from deps/npm/node_modules/tuf-js/dist/models/role.js rename to deps/npm/node_modules/@tufjs/models/dist/role.js index da80a09b8b09f6..143c5dc6089665 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/role.js +++ b/deps/npm/node_modules/@tufjs/models/dist/role.js @@ -7,8 +7,8 @@ exports.SuccinctRoles = exports.DelegatedRole = exports.Role = exports.TOP_LEVEL const crypto_1 = __importDefault(require("crypto")); const minimatch_1 = __importDefault(require("minimatch")); const util_1 = __importDefault(require("util")); -const error_1 = require("../error"); -const guard_1 = require("../utils/guard"); +const error_1 = require("./error"); +const utils_1 = require("./utils"); exports.TOP_LEVEL_ROLE_NAMES = [ 'root', 'targets', @@ -51,7 +51,7 @@ class Role { } static fromJSON(data) { const { keyids, threshold, ...rest } = data; - if (!(0, guard_1.isStringArray)(keyids)) { + if (!utils_1.guard.isStringArray(keyids)) { throw new TypeError('keyids must be an array'); } if (typeof threshold !== 'number') { @@ -128,7 +128,7 @@ class DelegatedRole extends Role { } static fromJSON(data) { const { keyids, threshold, name, terminating, paths, path_hash_prefixes, ...rest } = data; - if (!(0, guard_1.isStringArray)(keyids)) { + if (!utils_1.guard.isStringArray(keyids)) { throw new TypeError('keyids must be an array of strings'); } if (typeof threshold !== 'number') { @@ -140,10 +140,11 @@ class DelegatedRole extends Role { if (typeof terminating !== 'boolean') { throw new TypeError('terminating must be a boolean'); } - if ((0, guard_1.isDefined)(paths) && !(0, guard_1.isStringArray)(paths)) { + if (utils_1.guard.isDefined(paths) && !utils_1.guard.isStringArray(paths)) { throw new TypeError('paths must be an array of strings'); } - if ((0, guard_1.isDefined)(path_hash_prefixes) && !(0, guard_1.isStringArray)(path_hash_prefixes)) { + if (utils_1.guard.isDefined(path_hash_prefixes) && + !utils_1.guard.isStringArray(path_hash_prefixes)) { throw new TypeError('path_hash_prefixes must be an array of strings'); } return new DelegatedRole({ @@ -274,7 +275,7 @@ class SuccinctRoles extends Role { } static fromJSON(data) { const { keyids, threshold, bit_length, name_prefix, ...rest } = data; - if (!(0, guard_1.isStringArray)(keyids)) { + if (!utils_1.guard.isStringArray(keyids)) { throw new TypeError('keyids must be an array of strings'); } if (typeof threshold !== 'number') { diff --git a/deps/npm/node_modules/tuf-js/dist/models/root.js b/deps/npm/node_modules/@tufjs/models/dist/root.js similarity index 84% rename from deps/npm/node_modules/tuf-js/dist/models/root.js rename to deps/npm/node_modules/@tufjs/models/dist/root.js index 574ec1acdcc39d..36d0ef0f186d15 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/root.js +++ b/deps/npm/node_modules/@tufjs/models/dist/root.js @@ -5,12 +5,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.Root = void 0; const util_1 = __importDefault(require("util")); -const error_1 = require("../error"); -const guard_1 = require("../utils/guard"); -const types_1 = require("../utils/types"); const base_1 = require("./base"); +const error_1 = require("./error"); const key_1 = require("./key"); const role_1 = require("./role"); +const utils_1 = require("./utils"); /** * A container for the signed part of root metadata. * @@ -20,7 +19,7 @@ const role_1 = require("./role"); class Root extends base_1.Signed { constructor(options) { super(options); - this.type = types_1.MetadataKind.Root; + this.type = base_1.MetadataKind.Root; this.keys = options.keys || {}; this.consistentSnapshot = options.consistentSnapshot ?? true; if (!options.roles) { @@ -37,6 +36,15 @@ class Root extends base_1.Signed { this.roles = options.roles; } } + addKey(key, role) { + if (!this.roles[role]) { + throw new error_1.ValueError(`role ${role} does not exist`); + } + if (!this.roles[role].keyIDs.includes(key.keyID)) { + this.roles[role].keyIDs.push(key.keyID); + } + this.keys[key.keyID] = key; + } equals(other) { if (!(other instanceof Root)) { return false; @@ -48,6 +56,7 @@ class Root extends base_1.Signed { } toJSON() { return { + _type: this.type, spec_version: this.specVersion, version: this.version, expires: this.expires, @@ -81,8 +90,8 @@ function rolesToJSON(roles) { } function keysFromJSON(data) { let keys; - if ((0, guard_1.isDefined)(data)) { - if (!(0, guard_1.isObjectRecord)(data)) { + if (utils_1.guard.isDefined(data)) { + if (!utils_1.guard.isObjectRecord(data)) { throw new TypeError('keys must be an object'); } keys = Object.entries(data).reduce((acc, [keyID, keyData]) => ({ @@ -94,8 +103,8 @@ function keysFromJSON(data) { } function rolesFromJSON(data) { let roles; - if ((0, guard_1.isDefined)(data)) { - if (!(0, guard_1.isObjectRecord)(data)) { + if (utils_1.guard.isDefined(data)) { + if (!utils_1.guard.isObjectRecord(data)) { throw new TypeError('roles must be an object'); } roles = Object.entries(data).reduce((acc, [roleName, roleData]) => ({ diff --git a/deps/npm/node_modules/tuf-js/dist/models/signature.js b/deps/npm/node_modules/@tufjs/models/dist/signature.js similarity index 89% rename from deps/npm/node_modules/tuf-js/dist/models/signature.js rename to deps/npm/node_modules/@tufjs/models/dist/signature.js index 9550fa7b551fc9..33eb204eb0835e 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/signature.js +++ b/deps/npm/node_modules/@tufjs/models/dist/signature.js @@ -15,6 +15,12 @@ class Signature { this.keyID = keyID; this.sig = sig; } + toJSON() { + return { + keyid: this.keyID, + sig: this.sig, + }; + } static fromJSON(data) { const { keyid, sig } = data; if (typeof keyid !== 'string') { diff --git a/deps/npm/node_modules/tuf-js/dist/models/snapshot.js b/deps/npm/node_modules/@tufjs/models/dist/snapshot.js similarity index 89% rename from deps/npm/node_modules/tuf-js/dist/models/snapshot.js rename to deps/npm/node_modules/@tufjs/models/dist/snapshot.js index 0945a28cd03cc9..e90ea8e729e4e8 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/snapshot.js +++ b/deps/npm/node_modules/@tufjs/models/dist/snapshot.js @@ -5,10 +5,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.Snapshot = void 0; const util_1 = __importDefault(require("util")); -const guard_1 = require("../utils/guard"); -const types_1 = require("../utils/types"); const base_1 = require("./base"); const file_1 = require("./file"); +const utils_1 = require("./utils"); /** * A container for the signed part of snapshot metadata. * @@ -19,7 +18,7 @@ const file_1 = require("./file"); class Snapshot extends base_1.Signed { constructor(opts) { super(opts); - this.type = types_1.MetadataKind.Snapshot; + this.type = base_1.MetadataKind.Snapshot; this.meta = opts.meta || { 'targets.json': new file_1.MetaFile({ version: 1 }) }; } equals(other) { @@ -30,6 +29,7 @@ class Snapshot extends base_1.Signed { } toJSON() { return { + _type: this.type, meta: metaToJSON(this.meta), spec_version: this.specVersion, version: this.version, @@ -56,8 +56,8 @@ function metaToJSON(meta) { } function metaFromJSON(data) { let meta; - if ((0, guard_1.isDefined)(data)) { - if (!(0, guard_1.isObjectRecord)(data)) { + if (utils_1.guard.isDefined(data)) { + if (!utils_1.guard.isObjectRecord(data)) { throw new TypeError('meta field is malformed'); } else { @@ -66,6 +66,6 @@ function metaFromJSON(data) { [path]: file_1.MetaFile.fromJSON(metadata), }), {}); } - return meta; } + return meta; } diff --git a/deps/npm/node_modules/tuf-js/dist/models/targets.js b/deps/npm/node_modules/@tufjs/models/dist/targets.js similarity index 88% rename from deps/npm/node_modules/tuf-js/dist/models/targets.js rename to deps/npm/node_modules/@tufjs/models/dist/targets.js index 90a2528764708e..54bd8f8c554af5 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/targets.js +++ b/deps/npm/node_modules/@tufjs/models/dist/targets.js @@ -5,11 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.Targets = void 0; const util_1 = __importDefault(require("util")); -const guard_1 = require("../utils/guard"); -const types_1 = require("../utils/types"); const base_1 = require("./base"); const delegations_1 = require("./delegations"); const file_1 = require("./file"); +const utils_1 = require("./utils"); // Container for the signed part of targets metadata. // // Targets contains verifying information about target files and also delegates @@ -17,10 +16,13 @@ const file_1 = require("./file"); class Targets extends base_1.Signed { constructor(options) { super(options); - this.type = types_1.MetadataKind.Targets; + this.type = base_1.MetadataKind.Targets; this.targets = options.targets || {}; this.delegations = options.delegations; } + addTarget(target) { + this.targets[target.path] = target; + } equals(other) { if (!(other instanceof Targets)) { return false; @@ -31,6 +33,7 @@ class Targets extends base_1.Signed { } toJSON() { const json = { + _type: this.type, spec_version: this.specVersion, version: this.version, expires: this.expires, @@ -62,8 +65,8 @@ function targetsToJSON(targets) { } function targetsFromJSON(data) { let targets; - if ((0, guard_1.isDefined)(data)) { - if (!(0, guard_1.isObjectRecord)(data)) { + if (utils_1.guard.isDefined(data)) { + if (!utils_1.guard.isObjectRecord(data)) { throw new TypeError('targets must be an object'); } else { @@ -77,8 +80,8 @@ function targetsFromJSON(data) { } function delegationsFromJSON(data) { let delegations; - if ((0, guard_1.isDefined)(data)) { - if (!(0, guard_1.isObject)(data)) { + if (utils_1.guard.isDefined(data)) { + if (!utils_1.guard.isObject(data)) { throw new TypeError('delegations must be an object'); } else { diff --git a/deps/npm/node_modules/tuf-js/dist/models/timestamp.js b/deps/npm/node_modules/@tufjs/models/dist/timestamp.js similarity index 86% rename from deps/npm/node_modules/tuf-js/dist/models/timestamp.js rename to deps/npm/node_modules/@tufjs/models/dist/timestamp.js index 84f681b68d16a3..9880c4c9fc2549 100644 --- a/deps/npm/node_modules/tuf-js/dist/models/timestamp.js +++ b/deps/npm/node_modules/@tufjs/models/dist/timestamp.js @@ -1,10 +1,9 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Timestamp = void 0; -const guard_1 = require("../utils/guard"); -const types_1 = require("../utils/types"); const base_1 = require("./base"); const file_1 = require("./file"); +const utils_1 = require("./utils"); /** * A container for the signed part of timestamp metadata. * @@ -14,7 +13,7 @@ const file_1 = require("./file"); class Timestamp extends base_1.Signed { constructor(options) { super(options); - this.type = types_1.MetadataKind.Timestamp; + this.type = base_1.MetadataKind.Timestamp; this.snapshotMeta = options.snapshotMeta || new file_1.MetaFile({ version: 1 }); } equals(other) { @@ -25,6 +24,7 @@ class Timestamp extends base_1.Signed { } toJSON() { return { + _type: this.type, spec_version: this.specVersion, version: this.version, expires: this.expires, @@ -45,9 +45,9 @@ class Timestamp extends base_1.Signed { exports.Timestamp = Timestamp; function snapshotMetaFromJSON(data) { let snapshotMeta; - if ((0, guard_1.isDefined)(data)) { + if (utils_1.guard.isDefined(data)) { const snapshotData = data['snapshot.json']; - if (!(0, guard_1.isDefined)(snapshotData) || !(0, guard_1.isObject)(snapshotData)) { + if (!utils_1.guard.isDefined(snapshotData) || !utils_1.guard.isObject(snapshotData)) { throw new TypeError('missing snapshot.json in meta'); } else { diff --git a/deps/npm/node_modules/tuf-js/dist/utils/guard.js b/deps/npm/node_modules/@tufjs/models/dist/utils/guard.js similarity index 74% rename from deps/npm/node_modules/tuf-js/dist/utils/guard.js rename to deps/npm/node_modules/@tufjs/models/dist/utils/guard.js index f2207af18690ac..efe558852303ce 100644 --- a/deps/npm/node_modules/tuf-js/dist/utils/guard.js +++ b/deps/npm/node_modules/@tufjs/models/dist/utils/guard.js @@ -1,7 +1,6 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.isMetadataKind = exports.isObjectRecord = exports.isStringRecord = exports.isObjectArray = exports.isStringArray = exports.isObject = exports.isDefined = void 0; -const types_1 = require("./types"); +exports.isObjectRecord = exports.isStringRecord = exports.isObjectArray = exports.isStringArray = exports.isObject = exports.isDefined = void 0; function isDefined(val) { return val !== undefined; } @@ -32,8 +31,3 @@ function isObjectRecord(value) { Object.values(value).every((v) => typeof v === 'object' && v !== null)); } exports.isObjectRecord = isObjectRecord; -function isMetadataKind(value) { - return (typeof value === 'string' && - Object.values(types_1.MetadataKind).includes(value)); -} -exports.isMetadataKind = isMetadataKind; diff --git a/deps/npm/node_modules/tuf-js/dist/utils/index.js b/deps/npm/node_modules/@tufjs/models/dist/utils/index.js similarity index 79% rename from deps/npm/node_modules/tuf-js/dist/utils/index.js rename to deps/npm/node_modules/@tufjs/models/dist/utils/index.js index 604696a30565b4..872aae28049c9c 100644 --- a/deps/npm/node_modules/tuf-js/dist/utils/index.js +++ b/deps/npm/node_modules/@tufjs/models/dist/utils/index.js @@ -23,9 +23,6 @@ var __importStar = (this && this.__importStar) || function (mod) { return result; }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.types = exports.signer = exports.json = exports.guard = exports.config = void 0; -exports.config = __importStar(require("./config")); +exports.crypto = exports.guard = void 0; exports.guard = __importStar(require("./guard")); -exports.json = __importStar(require("./json")); -exports.signer = __importStar(require("./signer")); -exports.types = __importStar(require("./types")); +exports.crypto = __importStar(require("./verify")); diff --git a/deps/npm/node_modules/tuf-js/dist/utils/json.js b/deps/npm/node_modules/@tufjs/models/dist/utils/json.js similarity index 100% rename from deps/npm/node_modules/tuf-js/dist/utils/json.js rename to deps/npm/node_modules/@tufjs/models/dist/utils/json.js diff --git a/deps/npm/node_modules/tuf-js/dist/utils/key.js b/deps/npm/node_modules/@tufjs/models/dist/utils/key.js similarity index 100% rename from deps/npm/node_modules/tuf-js/dist/utils/key.js rename to deps/npm/node_modules/@tufjs/models/dist/utils/key.js diff --git a/deps/npm/node_modules/tuf-js/dist/utils/oid.js b/deps/npm/node_modules/@tufjs/models/dist/utils/oid.js similarity index 100% rename from deps/npm/node_modules/tuf-js/dist/utils/oid.js rename to deps/npm/node_modules/@tufjs/models/dist/utils/oid.js diff --git a/deps/npm/node_modules/@tufjs/models/dist/utils/types.js b/deps/npm/node_modules/@tufjs/models/dist/utils/types.js new file mode 100644 index 00000000000000..c8ad2e549bdc68 --- /dev/null +++ b/deps/npm/node_modules/@tufjs/models/dist/utils/types.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/deps/npm/node_modules/tuf-js/dist/utils/signer.js b/deps/npm/node_modules/@tufjs/models/dist/utils/verify.js similarity index 100% rename from deps/npm/node_modules/tuf-js/dist/utils/signer.js rename to deps/npm/node_modules/@tufjs/models/dist/utils/verify.js diff --git a/deps/npm/node_modules/@tufjs/models/package.json b/deps/npm/node_modules/@tufjs/models/package.json new file mode 100644 index 00000000000000..d8b2a189a1425c --- /dev/null +++ b/deps/npm/node_modules/@tufjs/models/package.json @@ -0,0 +1,41 @@ +{ + "name": "@tufjs/models", + "version": "1.0.1", + "description": "TUF metadata models", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "files": [ + "dist" + ], + "scripts": { + "build": "tsc --build", + "clean": "rm -rf dist && rm tsconfig.tsbuildinfo", + "test": "jest" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/theupdateframework/tuf-js.git" + }, + "keywords": [ + "tuf", + "security", + "update" + ], + "author": "bdehamer@github.com", + "license": "MIT", + "bugs": { + "url": "https://github.com/theupdateframework/tuf-js/issues" + }, + "homepage": "https://github.com/theupdateframework/tuf-js/tree/main/packages/models#readme", + "devDependencies": { + "@types/minimatch": "^5.1.2", + "@types/node": "^18.15.3", + "typescript": "^4.9.5" + }, + "dependencies": { + "minimatch": "^7.4.2" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } +} diff --git a/deps/npm/node_modules/abort-controller/dist/abort-controller.d.ts b/deps/npm/node_modules/abort-controller/dist/abort-controller.d.ts deleted file mode 100644 index 75852fb59952de..00000000000000 --- a/deps/npm/node_modules/abort-controller/dist/abort-controller.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { EventTarget } from "event-target-shim" - -type Events = { - abort: any -} -type EventAttributes = { - onabort: any -} -/** - * The signal class. - * @see https://dom.spec.whatwg.org/#abortsignal - */ -declare class AbortSignal extends EventTarget { - /** - * AbortSignal cannot be constructed directly. - */ - constructor() - /** - * Returns `true` if this `AbortSignal`"s `AbortController` has signaled to abort, and `false` otherwise. - */ - readonly aborted: boolean -} -/** - * The AbortController. - * @see https://dom.spec.whatwg.org/#abortcontroller - */ -declare class AbortController { - /** - * Initialize this controller. - */ - constructor() - /** - * Returns the `AbortSignal` object associated with this object. - */ - readonly signal: AbortSignal - /** - * Abort and signal to any observers that the associated activity is to be aborted. - */ - abort(): void -} - -export default AbortController -export { AbortController, AbortSignal } diff --git a/deps/npm/node_modules/abort-controller/dist/abort-controller.js.map b/deps/npm/node_modules/abort-controller/dist/abort-controller.js.map deleted file mode 100644 index cfdcafdc61167b..00000000000000 --- a/deps/npm/node_modules/abort-controller/dist/abort-controller.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"abort-controller.js","sources":["../src/abort-signal.ts","../src/abort-controller.ts"],"sourcesContent":["import {\n // Event,\n EventTarget,\n // Type,\n defineEventAttribute,\n} from \"event-target-shim\"\n\n// Known Limitation\n// Use `any` because the type of `AbortSignal` in `lib.dom.d.ts` is wrong and\n// to make assignable our `AbortSignal` into that.\n// https://github.com/Microsoft/TSJS-lib-generator/pull/623\ntype Events = {\n abort: any // Event & Type<\"abort\">\n}\ntype EventAttributes = {\n onabort: any // Event & Type<\"abort\">\n}\n\n/**\n * The signal class.\n * @see https://dom.spec.whatwg.org/#abortsignal\n */\nexport default class AbortSignal extends EventTarget {\n /**\n * AbortSignal cannot be constructed directly.\n */\n public constructor() {\n super()\n throw new TypeError(\"AbortSignal cannot be constructed directly\")\n }\n\n /**\n * Returns `true` if this `AbortSignal`'s `AbortController` has signaled to abort, and `false` otherwise.\n */\n public get aborted(): boolean {\n const aborted = abortedFlags.get(this)\n if (typeof aborted !== \"boolean\") {\n throw new TypeError(\n `Expected 'this' to be an 'AbortSignal' object, but got ${\n this === null ? \"null\" : typeof this\n }`,\n )\n }\n return aborted\n }\n}\ndefineEventAttribute(AbortSignal.prototype, \"abort\")\n\n/**\n * Create an AbortSignal object.\n */\nexport function createAbortSignal(): AbortSignal {\n const signal = Object.create(AbortSignal.prototype)\n EventTarget.call(signal)\n abortedFlags.set(signal, false)\n return signal\n}\n\n/**\n * Abort a given signal.\n */\nexport function abortSignal(signal: AbortSignal): void {\n if (abortedFlags.get(signal) !== false) {\n return\n }\n\n abortedFlags.set(signal, true)\n signal.dispatchEvent<\"abort\">({ type: \"abort\" })\n}\n\n/**\n * Aborted flag for each instances.\n */\nconst abortedFlags = new WeakMap()\n\n// Properties should be enumerable.\nObject.defineProperties(AbortSignal.prototype, {\n aborted: { enumerable: true },\n})\n\n// `toString()` should return `\"[object AbortSignal]\"`\nif (typeof Symbol === \"function\" && typeof Symbol.toStringTag === \"symbol\") {\n Object.defineProperty(AbortSignal.prototype, Symbol.toStringTag, {\n configurable: true,\n value: \"AbortSignal\",\n })\n}\n","import AbortSignal, { abortSignal, createAbortSignal } from \"./abort-signal\"\n\n/**\n * The AbortController.\n * @see https://dom.spec.whatwg.org/#abortcontroller\n */\nexport default class AbortController {\n /**\n * Initialize this controller.\n */\n public constructor() {\n signals.set(this, createAbortSignal())\n }\n\n /**\n * Returns the `AbortSignal` object associated with this object.\n */\n public get signal(): AbortSignal {\n return getSignal(this)\n }\n\n /**\n * Abort and signal to any observers that the associated activity is to be aborted.\n */\n public abort(): void {\n abortSignal(getSignal(this))\n }\n}\n\n/**\n * Associated signals.\n */\nconst signals = new WeakMap()\n\n/**\n * Get the associated signal of a given controller.\n */\nfunction getSignal(controller: AbortController): AbortSignal {\n const signal = signals.get(controller)\n if (signal == null) {\n throw new TypeError(\n `Expected 'this' to be an 'AbortController' object, but got ${\n controller === null ? \"null\" : typeof controller\n }`,\n )\n }\n return signal\n}\n\n// Properties should be enumerable.\nObject.defineProperties(AbortController.prototype, {\n signal: { enumerable: true },\n abort: { enumerable: true },\n})\n\nif (typeof Symbol === \"function\" && typeof Symbol.toStringTag === \"symbol\") {\n Object.defineProperty(AbortController.prototype, Symbol.toStringTag, {\n configurable: true,\n value: \"AbortController\",\n })\n}\n\nexport { AbortController, AbortSignal }\n"],"names":["EventTarget","defineEventAttribute"],"mappings":";;;;;;;;;;AAkBA;;;;AAIA,MAAqB,WAAY,SAAQA,2BAAoC;;;;IAIzE;QACI,KAAK,EAAE,CAAA;QACP,MAAM,IAAI,SAAS,CAAC,4CAA4C,CAAC,CAAA;KACpE;;;;IAKD,IAAW,OAAO;QACd,MAAM,OAAO,GAAG,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACtC,IAAI,OAAO,OAAO,KAAK,SAAS,EAAE;YAC9B,MAAM,IAAI,SAAS,CACf,0DACI,IAAI,KAAK,IAAI,GAAG,MAAM,GAAG,OAAO,IACpC,EAAE,CACL,CAAA;SACJ;QACD,OAAO,OAAO,CAAA;KACjB;CACJ;AACDC,oCAAoB,CAAC,WAAW,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;;;;AAKpD,SAAgB,iBAAiB;IAC7B,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,CAAC,CAAA;IACnDD,2BAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACxB,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,CAAA;IAC/B,OAAO,MAAM,CAAA;CAChB;;;;AAKD,SAAgB,WAAW,CAAC,MAAmB;IAC3C,IAAI,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,KAAK,EAAE;QACpC,OAAM;KACT;IAED,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;IAC9B,MAAM,CAAC,aAAa,CAAU,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAA;CACnD;;;;AAKD,MAAM,YAAY,GAAG,IAAI,OAAO,EAAwB,CAAA;;AAGxD,MAAM,CAAC,gBAAgB,CAAC,WAAW,CAAC,SAAS,EAAE;IAC3C,OAAO,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE;CAChC,CAAC,CAAA;;AAGF,IAAI,OAAO,MAAM,KAAK,UAAU,IAAI,OAAO,MAAM,CAAC,WAAW,KAAK,QAAQ,EAAE;IACxE,MAAM,CAAC,cAAc,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,WAAW,EAAE;QAC7D,YAAY,EAAE,IAAI;QAClB,KAAK,EAAE,aAAa;KACvB,CAAC,CAAA;CACL;;ACpFD;;;;AAIA,MAAqB,eAAe;;;;IAIhC;QACI,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,iBAAiB,EAAE,CAAC,CAAA;KACzC;;;;IAKD,IAAW,MAAM;QACb,OAAO,SAAS,CAAC,IAAI,CAAC,CAAA;KACzB;;;;IAKM,KAAK;QACR,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAA;KAC/B;CACJ;;;;AAKD,MAAM,OAAO,GAAG,IAAI,OAAO,EAAgC,CAAA;;;;AAK3D,SAAS,SAAS,CAAC,UAA2B;IAC1C,MAAM,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,CAAA;IACtC,IAAI,MAAM,IAAI,IAAI,EAAE;QAChB,MAAM,IAAI,SAAS,CACf,8DACI,UAAU,KAAK,IAAI,GAAG,MAAM,GAAG,OAAO,UAC1C,EAAE,CACL,CAAA;KACJ;IACD,OAAO,MAAM,CAAA;CAChB;;AAGD,MAAM,CAAC,gBAAgB,CAAC,eAAe,CAAC,SAAS,EAAE;IAC/C,MAAM,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE;IAC5B,KAAK,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE;CAC9B,CAAC,CAAA;AAEF,IAAI,OAAO,MAAM,KAAK,UAAU,IAAI,OAAO,MAAM,CAAC,WAAW,KAAK,QAAQ,EAAE;IACxE,MAAM,CAAC,cAAc,CAAC,eAAe,CAAC,SAAS,EAAE,MAAM,CAAC,WAAW,EAAE;QACjE,YAAY,EAAE,IAAI;QAClB,KAAK,EAAE,iBAAiB;KAC3B,CAAC,CAAA;CACL;;;;;;;;;;;;;"} \ No newline at end of file diff --git a/deps/npm/node_modules/abort-controller/dist/abort-controller.mjs.map b/deps/npm/node_modules/abort-controller/dist/abort-controller.mjs.map deleted file mode 100644 index 1e8fa6b00f6eff..00000000000000 --- a/deps/npm/node_modules/abort-controller/dist/abort-controller.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"abort-controller.mjs","sources":["../src/abort-signal.ts","../src/abort-controller.ts"],"sourcesContent":["import {\n // Event,\n EventTarget,\n // Type,\n defineEventAttribute,\n} from \"event-target-shim\"\n\n// Known Limitation\n// Use `any` because the type of `AbortSignal` in `lib.dom.d.ts` is wrong and\n// to make assignable our `AbortSignal` into that.\n// https://github.com/Microsoft/TSJS-lib-generator/pull/623\ntype Events = {\n abort: any // Event & Type<\"abort\">\n}\ntype EventAttributes = {\n onabort: any // Event & Type<\"abort\">\n}\n\n/**\n * The signal class.\n * @see https://dom.spec.whatwg.org/#abortsignal\n */\nexport default class AbortSignal extends EventTarget {\n /**\n * AbortSignal cannot be constructed directly.\n */\n public constructor() {\n super()\n throw new TypeError(\"AbortSignal cannot be constructed directly\")\n }\n\n /**\n * Returns `true` if this `AbortSignal`'s `AbortController` has signaled to abort, and `false` otherwise.\n */\n public get aborted(): boolean {\n const aborted = abortedFlags.get(this)\n if (typeof aborted !== \"boolean\") {\n throw new TypeError(\n `Expected 'this' to be an 'AbortSignal' object, but got ${\n this === null ? \"null\" : typeof this\n }`,\n )\n }\n return aborted\n }\n}\ndefineEventAttribute(AbortSignal.prototype, \"abort\")\n\n/**\n * Create an AbortSignal object.\n */\nexport function createAbortSignal(): AbortSignal {\n const signal = Object.create(AbortSignal.prototype)\n EventTarget.call(signal)\n abortedFlags.set(signal, false)\n return signal\n}\n\n/**\n * Abort a given signal.\n */\nexport function abortSignal(signal: AbortSignal): void {\n if (abortedFlags.get(signal) !== false) {\n return\n }\n\n abortedFlags.set(signal, true)\n signal.dispatchEvent<\"abort\">({ type: \"abort\" })\n}\n\n/**\n * Aborted flag for each instances.\n */\nconst abortedFlags = new WeakMap()\n\n// Properties should be enumerable.\nObject.defineProperties(AbortSignal.prototype, {\n aborted: { enumerable: true },\n})\n\n// `toString()` should return `\"[object AbortSignal]\"`\nif (typeof Symbol === \"function\" && typeof Symbol.toStringTag === \"symbol\") {\n Object.defineProperty(AbortSignal.prototype, Symbol.toStringTag, {\n configurable: true,\n value: \"AbortSignal\",\n })\n}\n","import AbortSignal, { abortSignal, createAbortSignal } from \"./abort-signal\"\n\n/**\n * The AbortController.\n * @see https://dom.spec.whatwg.org/#abortcontroller\n */\nexport default class AbortController {\n /**\n * Initialize this controller.\n */\n public constructor() {\n signals.set(this, createAbortSignal())\n }\n\n /**\n * Returns the `AbortSignal` object associated with this object.\n */\n public get signal(): AbortSignal {\n return getSignal(this)\n }\n\n /**\n * Abort and signal to any observers that the associated activity is to be aborted.\n */\n public abort(): void {\n abortSignal(getSignal(this))\n }\n}\n\n/**\n * Associated signals.\n */\nconst signals = new WeakMap()\n\n/**\n * Get the associated signal of a given controller.\n */\nfunction getSignal(controller: AbortController): AbortSignal {\n const signal = signals.get(controller)\n if (signal == null) {\n throw new TypeError(\n `Expected 'this' to be an 'AbortController' object, but got ${\n controller === null ? \"null\" : typeof controller\n }`,\n )\n }\n return signal\n}\n\n// Properties should be enumerable.\nObject.defineProperties(AbortController.prototype, {\n signal: { enumerable: true },\n abort: { enumerable: true },\n})\n\nif (typeof Symbol === \"function\" && typeof Symbol.toStringTag === \"symbol\") {\n Object.defineProperty(AbortController.prototype, Symbol.toStringTag, {\n configurable: true,\n value: \"AbortController\",\n })\n}\n\nexport { AbortController, AbortSignal }\n"],"names":[],"mappings":";;;;;;AAkBA;;;;AAIA,MAAqB,WAAY,SAAQ,WAAoC;;;;IAIzE;QACI,KAAK,EAAE,CAAA;QACP,MAAM,IAAI,SAAS,CAAC,4CAA4C,CAAC,CAAA;KACpE;;;;IAKD,IAAW,OAAO;QACd,MAAM,OAAO,GAAG,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACtC,IAAI,OAAO,OAAO,KAAK,SAAS,EAAE;YAC9B,MAAM,IAAI,SAAS,CACf,0DACI,IAAI,KAAK,IAAI,GAAG,MAAM,GAAG,OAAO,IACpC,EAAE,CACL,CAAA;SACJ;QACD,OAAO,OAAO,CAAA;KACjB;CACJ;AACD,oBAAoB,CAAC,WAAW,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;;;;AAKpD,SAAgB,iBAAiB;IAC7B,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,CAAC,CAAA;IACnD,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACxB,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,CAAA;IAC/B,OAAO,MAAM,CAAA;CAChB;;;;AAKD,SAAgB,WAAW,CAAC,MAAmB;IAC3C,IAAI,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,KAAK,EAAE;QACpC,OAAM;KACT;IAED,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;IAC9B,MAAM,CAAC,aAAa,CAAU,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAA;CACnD;;;;AAKD,MAAM,YAAY,GAAG,IAAI,OAAO,EAAwB,CAAA;;AAGxD,MAAM,CAAC,gBAAgB,CAAC,WAAW,CAAC,SAAS,EAAE;IAC3C,OAAO,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE;CAChC,CAAC,CAAA;;AAGF,IAAI,OAAO,MAAM,KAAK,UAAU,IAAI,OAAO,MAAM,CAAC,WAAW,KAAK,QAAQ,EAAE;IACxE,MAAM,CAAC,cAAc,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,WAAW,EAAE;QAC7D,YAAY,EAAE,IAAI;QAClB,KAAK,EAAE,aAAa;KACvB,CAAC,CAAA;CACL;;ACpFD;;;;AAIA,MAAqB,eAAe;;;;IAIhC;QACI,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,iBAAiB,EAAE,CAAC,CAAA;KACzC;;;;IAKD,IAAW,MAAM;QACb,OAAO,SAAS,CAAC,IAAI,CAAC,CAAA;KACzB;;;;IAKM,KAAK;QACR,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAA;KAC/B;CACJ;;;;AAKD,MAAM,OAAO,GAAG,IAAI,OAAO,EAAgC,CAAA;;;;AAK3D,SAAS,SAAS,CAAC,UAA2B;IAC1C,MAAM,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,CAAA;IACtC,IAAI,MAAM,IAAI,IAAI,EAAE;QAChB,MAAM,IAAI,SAAS,CACf,8DACI,UAAU,KAAK,IAAI,GAAG,MAAM,GAAG,OAAO,UAC1C,EAAE,CACL,CAAA;KACJ;IACD,OAAO,MAAM,CAAA;CAChB;;AAGD,MAAM,CAAC,gBAAgB,CAAC,eAAe,CAAC,SAAS,EAAE;IAC/C,MAAM,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE;IAC5B,KAAK,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE;CAC9B,CAAC,CAAA;AAEF,IAAI,OAAO,MAAM,KAAK,UAAU,IAAI,OAAO,MAAM,CAAC,WAAW,KAAK,QAAQ,EAAE;IACxE,MAAM,CAAC,cAAc,CAAC,eAAe,CAAC,SAAS,EAAE,MAAM,CAAC,WAAW,EAAE;QACjE,YAAY,EAAE,IAAI;QAClB,KAAK,EAAE,iBAAiB;KAC3B,CAAC,CAAA;CACL;;;;;"} \ No newline at end of file diff --git a/deps/npm/node_modules/abort-controller/dist/abort-controller.umd.js.map b/deps/npm/node_modules/abort-controller/dist/abort-controller.umd.js.map deleted file mode 100644 index 875ab0283d6ae8..00000000000000 --- a/deps/npm/node_modules/abort-controller/dist/abort-controller.umd.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"abort-controller.umd.js","sources":["../node_modules/event-target-shim/dist/event-target-shim.mjs","../src/abort-signal.ts","../src/abort-controller.ts"],"sourcesContent":["/**\n * @author Toru Nagashima \n * @copyright 2015 Toru Nagashima. All rights reserved.\n * See LICENSE file in root directory for full license.\n */\n/**\n * @typedef {object} PrivateData\n * @property {EventTarget} eventTarget The event target.\n * @property {{type:string}} event The original event object.\n * @property {number} eventPhase The current event phase.\n * @property {EventTarget|null} currentTarget The current event target.\n * @property {boolean} canceled The flag to prevent default.\n * @property {boolean} stopped The flag to stop propagation.\n * @property {boolean} immediateStopped The flag to stop propagation immediately.\n * @property {Function|null} passiveListener The listener if the current listener is passive. Otherwise this is null.\n * @property {number} timeStamp The unix time.\n * @private\n */\n\n/**\n * Private data for event wrappers.\n * @type {WeakMap}\n * @private\n */\nconst privateData = new WeakMap();\n\n/**\n * Cache for wrapper classes.\n * @type {WeakMap}\n * @private\n */\nconst wrappers = new WeakMap();\n\n/**\n * Get private data.\n * @param {Event} event The event object to get private data.\n * @returns {PrivateData} The private data of the event.\n * @private\n */\nfunction pd(event) {\n const retv = privateData.get(event);\n console.assert(\n retv != null,\n \"'this' is expected an Event object, but got\",\n event\n );\n return retv\n}\n\n/**\n * https://dom.spec.whatwg.org/#set-the-canceled-flag\n * @param data {PrivateData} private data.\n */\nfunction setCancelFlag(data) {\n if (data.passiveListener != null) {\n if (\n typeof console !== \"undefined\" &&\n typeof console.error === \"function\"\n ) {\n console.error(\n \"Unable to preventDefault inside passive event listener invocation.\",\n data.passiveListener\n );\n }\n return\n }\n if (!data.event.cancelable) {\n return\n }\n\n data.canceled = true;\n if (typeof data.event.preventDefault === \"function\") {\n data.event.preventDefault();\n }\n}\n\n/**\n * @see https://dom.spec.whatwg.org/#interface-event\n * @private\n */\n/**\n * The event wrapper.\n * @constructor\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Event|{type:string}} event The original event to wrap.\n */\nfunction Event(eventTarget, event) {\n privateData.set(this, {\n eventTarget,\n event,\n eventPhase: 2,\n currentTarget: eventTarget,\n canceled: false,\n stopped: false,\n immediateStopped: false,\n passiveListener: null,\n timeStamp: event.timeStamp || Date.now(),\n });\n\n // https://heycam.github.io/webidl/#Unforgeable\n Object.defineProperty(this, \"isTrusted\", { value: false, enumerable: true });\n\n // Define accessors\n const keys = Object.keys(event);\n for (let i = 0; i < keys.length; ++i) {\n const key = keys[i];\n if (!(key in this)) {\n Object.defineProperty(this, key, defineRedirectDescriptor(key));\n }\n }\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEvent.prototype = {\n /**\n * The type of this event.\n * @type {string}\n */\n get type() {\n return pd(this).event.type\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n */\n get target() {\n return pd(this).eventTarget\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n */\n get currentTarget() {\n return pd(this).currentTarget\n },\n\n /**\n * @returns {EventTarget[]} The composed path of this event.\n */\n composedPath() {\n const currentTarget = pd(this).currentTarget;\n if (currentTarget == null) {\n return []\n }\n return [currentTarget]\n },\n\n /**\n * Constant of NONE.\n * @type {number}\n */\n get NONE() {\n return 0\n },\n\n /**\n * Constant of CAPTURING_PHASE.\n * @type {number}\n */\n get CAPTURING_PHASE() {\n return 1\n },\n\n /**\n * Constant of AT_TARGET.\n * @type {number}\n */\n get AT_TARGET() {\n return 2\n },\n\n /**\n * Constant of BUBBLING_PHASE.\n * @type {number}\n */\n get BUBBLING_PHASE() {\n return 3\n },\n\n /**\n * The target of this event.\n * @type {number}\n */\n get eventPhase() {\n return pd(this).eventPhase\n },\n\n /**\n * Stop event bubbling.\n * @returns {void}\n */\n stopPropagation() {\n const data = pd(this);\n\n data.stopped = true;\n if (typeof data.event.stopPropagation === \"function\") {\n data.event.stopPropagation();\n }\n },\n\n /**\n * Stop event bubbling.\n * @returns {void}\n */\n stopImmediatePropagation() {\n const data = pd(this);\n\n data.stopped = true;\n data.immediateStopped = true;\n if (typeof data.event.stopImmediatePropagation === \"function\") {\n data.event.stopImmediatePropagation();\n }\n },\n\n /**\n * The flag to be bubbling.\n * @type {boolean}\n */\n get bubbles() {\n return Boolean(pd(this).event.bubbles)\n },\n\n /**\n * The flag to be cancelable.\n * @type {boolean}\n */\n get cancelable() {\n return Boolean(pd(this).event.cancelable)\n },\n\n /**\n * Cancel this event.\n * @returns {void}\n */\n preventDefault() {\n setCancelFlag(pd(this));\n },\n\n /**\n * The flag to indicate cancellation state.\n * @type {boolean}\n */\n get defaultPrevented() {\n return pd(this).canceled\n },\n\n /**\n * The flag to be composed.\n * @type {boolean}\n */\n get composed() {\n return Boolean(pd(this).event.composed)\n },\n\n /**\n * The unix time of this event.\n * @type {number}\n */\n get timeStamp() {\n return pd(this).timeStamp\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n * @deprecated\n */\n get srcElement() {\n return pd(this).eventTarget\n },\n\n /**\n * The flag to stop event bubbling.\n * @type {boolean}\n * @deprecated\n */\n get cancelBubble() {\n return pd(this).stopped\n },\n set cancelBubble(value) {\n if (!value) {\n return\n }\n const data = pd(this);\n\n data.stopped = true;\n if (typeof data.event.cancelBubble === \"boolean\") {\n data.event.cancelBubble = true;\n }\n },\n\n /**\n * The flag to indicate cancellation state.\n * @type {boolean}\n * @deprecated\n */\n get returnValue() {\n return !pd(this).canceled\n },\n set returnValue(value) {\n if (!value) {\n setCancelFlag(pd(this));\n }\n },\n\n /**\n * Initialize this event object. But do nothing under event dispatching.\n * @param {string} type The event type.\n * @param {boolean} [bubbles=false] The flag to be possible to bubble up.\n * @param {boolean} [cancelable=false] The flag to be possible to cancel.\n * @deprecated\n */\n initEvent() {\n // Do nothing.\n },\n};\n\n// `constructor` is not enumerable.\nObject.defineProperty(Event.prototype, \"constructor\", {\n value: Event,\n configurable: true,\n writable: true,\n});\n\n// Ensure `event instanceof window.Event` is `true`.\nif (typeof window !== \"undefined\" && typeof window.Event !== \"undefined\") {\n Object.setPrototypeOf(Event.prototype, window.Event.prototype);\n\n // Make association for wrappers.\n wrappers.set(window.Event.prototype, Event);\n}\n\n/**\n * Get the property descriptor to redirect a given property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to redirect the property.\n * @private\n */\nfunction defineRedirectDescriptor(key) {\n return {\n get() {\n return pd(this).event[key]\n },\n set(value) {\n pd(this).event[key] = value;\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Get the property descriptor to call a given method property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to call the method property.\n * @private\n */\nfunction defineCallDescriptor(key) {\n return {\n value() {\n const event = pd(this).event;\n return event[key].apply(event, arguments)\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Define new wrapper class.\n * @param {Function} BaseEvent The base wrapper class.\n * @param {Object} proto The prototype of the original event.\n * @returns {Function} The defined wrapper class.\n * @private\n */\nfunction defineWrapper(BaseEvent, proto) {\n const keys = Object.keys(proto);\n if (keys.length === 0) {\n return BaseEvent\n }\n\n /** CustomEvent */\n function CustomEvent(eventTarget, event) {\n BaseEvent.call(this, eventTarget, event);\n }\n\n CustomEvent.prototype = Object.create(BaseEvent.prototype, {\n constructor: { value: CustomEvent, configurable: true, writable: true },\n });\n\n // Define accessors.\n for (let i = 0; i < keys.length; ++i) {\n const key = keys[i];\n if (!(key in BaseEvent.prototype)) {\n const descriptor = Object.getOwnPropertyDescriptor(proto, key);\n const isFunc = typeof descriptor.value === \"function\";\n Object.defineProperty(\n CustomEvent.prototype,\n key,\n isFunc\n ? defineCallDescriptor(key)\n : defineRedirectDescriptor(key)\n );\n }\n }\n\n return CustomEvent\n}\n\n/**\n * Get the wrapper class of a given prototype.\n * @param {Object} proto The prototype of the original event to get its wrapper.\n * @returns {Function} The wrapper class.\n * @private\n */\nfunction getWrapper(proto) {\n if (proto == null || proto === Object.prototype) {\n return Event\n }\n\n let wrapper = wrappers.get(proto);\n if (wrapper == null) {\n wrapper = defineWrapper(getWrapper(Object.getPrototypeOf(proto)), proto);\n wrappers.set(proto, wrapper);\n }\n return wrapper\n}\n\n/**\n * Wrap a given event to management a dispatching.\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Object} event The event to wrap.\n * @returns {Event} The wrapper instance.\n * @private\n */\nfunction wrapEvent(eventTarget, event) {\n const Wrapper = getWrapper(Object.getPrototypeOf(event));\n return new Wrapper(eventTarget, event)\n}\n\n/**\n * Get the immediateStopped flag of a given event.\n * @param {Event} event The event to get.\n * @returns {boolean} The flag to stop propagation immediately.\n * @private\n */\nfunction isStopped(event) {\n return pd(event).immediateStopped\n}\n\n/**\n * Set the current event phase of a given event.\n * @param {Event} event The event to set current target.\n * @param {number} eventPhase New event phase.\n * @returns {void}\n * @private\n */\nfunction setEventPhase(event, eventPhase) {\n pd(event).eventPhase = eventPhase;\n}\n\n/**\n * Set the current target of a given event.\n * @param {Event} event The event to set current target.\n * @param {EventTarget|null} currentTarget New current target.\n * @returns {void}\n * @private\n */\nfunction setCurrentTarget(event, currentTarget) {\n pd(event).currentTarget = currentTarget;\n}\n\n/**\n * Set a passive listener of a given event.\n * @param {Event} event The event to set current target.\n * @param {Function|null} passiveListener New passive listener.\n * @returns {void}\n * @private\n */\nfunction setPassiveListener(event, passiveListener) {\n pd(event).passiveListener = passiveListener;\n}\n\n/**\n * @typedef {object} ListenerNode\n * @property {Function} listener\n * @property {1|2|3} listenerType\n * @property {boolean} passive\n * @property {boolean} once\n * @property {ListenerNode|null} next\n * @private\n */\n\n/**\n * @type {WeakMap>}\n * @private\n */\nconst listenersMap = new WeakMap();\n\n// Listener types\nconst CAPTURE = 1;\nconst BUBBLE = 2;\nconst ATTRIBUTE = 3;\n\n/**\n * Check whether a given value is an object or not.\n * @param {any} x The value to check.\n * @returns {boolean} `true` if the value is an object.\n */\nfunction isObject(x) {\n return x !== null && typeof x === \"object\" //eslint-disable-line no-restricted-syntax\n}\n\n/**\n * Get listeners.\n * @param {EventTarget} eventTarget The event target to get.\n * @returns {Map} The listeners.\n * @private\n */\nfunction getListeners(eventTarget) {\n const listeners = listenersMap.get(eventTarget);\n if (listeners == null) {\n throw new TypeError(\n \"'this' is expected an EventTarget object, but got another value.\"\n )\n }\n return listeners\n}\n\n/**\n * Get the property descriptor for the event attribute of a given event.\n * @param {string} eventName The event name to get property descriptor.\n * @returns {PropertyDescriptor} The property descriptor.\n * @private\n */\nfunction defineEventAttributeDescriptor(eventName) {\n return {\n get() {\n const listeners = getListeners(this);\n let node = listeners.get(eventName);\n while (node != null) {\n if (node.listenerType === ATTRIBUTE) {\n return node.listener\n }\n node = node.next;\n }\n return null\n },\n\n set(listener) {\n if (typeof listener !== \"function\" && !isObject(listener)) {\n listener = null; // eslint-disable-line no-param-reassign\n }\n const listeners = getListeners(this);\n\n // Traverse to the tail while removing old value.\n let prev = null;\n let node = listeners.get(eventName);\n while (node != null) {\n if (node.listenerType === ATTRIBUTE) {\n // Remove old value.\n if (prev !== null) {\n prev.next = node.next;\n } else if (node.next !== null) {\n listeners.set(eventName, node.next);\n } else {\n listeners.delete(eventName);\n }\n } else {\n prev = node;\n }\n\n node = node.next;\n }\n\n // Add new value.\n if (listener !== null) {\n const newNode = {\n listener,\n listenerType: ATTRIBUTE,\n passive: false,\n once: false,\n next: null,\n };\n if (prev === null) {\n listeners.set(eventName, newNode);\n } else {\n prev.next = newNode;\n }\n }\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Define an event attribute (e.g. `eventTarget.onclick`).\n * @param {Object} eventTargetPrototype The event target prototype to define an event attrbite.\n * @param {string} eventName The event name to define.\n * @returns {void}\n */\nfunction defineEventAttribute(eventTargetPrototype, eventName) {\n Object.defineProperty(\n eventTargetPrototype,\n `on${eventName}`,\n defineEventAttributeDescriptor(eventName)\n );\n}\n\n/**\n * Define a custom EventTarget with event attributes.\n * @param {string[]} eventNames Event names for event attributes.\n * @returns {EventTarget} The custom EventTarget.\n * @private\n */\nfunction defineCustomEventTarget(eventNames) {\n /** CustomEventTarget */\n function CustomEventTarget() {\n EventTarget.call(this);\n }\n\n CustomEventTarget.prototype = Object.create(EventTarget.prototype, {\n constructor: {\n value: CustomEventTarget,\n configurable: true,\n writable: true,\n },\n });\n\n for (let i = 0; i < eventNames.length; ++i) {\n defineEventAttribute(CustomEventTarget.prototype, eventNames[i]);\n }\n\n return CustomEventTarget\n}\n\n/**\n * EventTarget.\n *\n * - This is constructor if no arguments.\n * - This is a function which returns a CustomEventTarget constructor if there are arguments.\n *\n * For example:\n *\n * class A extends EventTarget {}\n * class B extends EventTarget(\"message\") {}\n * class C extends EventTarget(\"message\", \"error\") {}\n * class D extends EventTarget([\"message\", \"error\"]) {}\n */\nfunction EventTarget() {\n /*eslint-disable consistent-return */\n if (this instanceof EventTarget) {\n listenersMap.set(this, new Map());\n return\n }\n if (arguments.length === 1 && Array.isArray(arguments[0])) {\n return defineCustomEventTarget(arguments[0])\n }\n if (arguments.length > 0) {\n const types = new Array(arguments.length);\n for (let i = 0; i < arguments.length; ++i) {\n types[i] = arguments[i];\n }\n return defineCustomEventTarget(types)\n }\n throw new TypeError(\"Cannot call a class as a function\")\n /*eslint-enable consistent-return */\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEventTarget.prototype = {\n /**\n * Add a given listener to this event target.\n * @param {string} eventName The event name to add.\n * @param {Function} listener The listener to add.\n * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n * @returns {void}\n */\n addEventListener(eventName, listener, options) {\n if (listener == null) {\n return\n }\n if (typeof listener !== \"function\" && !isObject(listener)) {\n throw new TypeError(\"'listener' should be a function or an object.\")\n }\n\n const listeners = getListeners(this);\n const optionsIsObj = isObject(options);\n const capture = optionsIsObj\n ? Boolean(options.capture)\n : Boolean(options);\n const listenerType = capture ? CAPTURE : BUBBLE;\n const newNode = {\n listener,\n listenerType,\n passive: optionsIsObj && Boolean(options.passive),\n once: optionsIsObj && Boolean(options.once),\n next: null,\n };\n\n // Set it as the first node if the first node is null.\n let node = listeners.get(eventName);\n if (node === undefined) {\n listeners.set(eventName, newNode);\n return\n }\n\n // Traverse to the tail while checking duplication..\n let prev = null;\n while (node != null) {\n if (\n node.listener === listener &&\n node.listenerType === listenerType\n ) {\n // Should ignore duplication.\n return\n }\n prev = node;\n node = node.next;\n }\n\n // Add it.\n prev.next = newNode;\n },\n\n /**\n * Remove a given listener from this event target.\n * @param {string} eventName The event name to remove.\n * @param {Function} listener The listener to remove.\n * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n * @returns {void}\n */\n removeEventListener(eventName, listener, options) {\n if (listener == null) {\n return\n }\n\n const listeners = getListeners(this);\n const capture = isObject(options)\n ? Boolean(options.capture)\n : Boolean(options);\n const listenerType = capture ? CAPTURE : BUBBLE;\n\n let prev = null;\n let node = listeners.get(eventName);\n while (node != null) {\n if (\n node.listener === listener &&\n node.listenerType === listenerType\n ) {\n if (prev !== null) {\n prev.next = node.next;\n } else if (node.next !== null) {\n listeners.set(eventName, node.next);\n } else {\n listeners.delete(eventName);\n }\n return\n }\n\n prev = node;\n node = node.next;\n }\n },\n\n /**\n * Dispatch a given event.\n * @param {Event|{type:string}} event The event to dispatch.\n * @returns {boolean} `false` if canceled.\n */\n dispatchEvent(event) {\n if (event == null || typeof event.type !== \"string\") {\n throw new TypeError('\"event.type\" should be a string.')\n }\n\n // If listeners aren't registered, terminate.\n const listeners = getListeners(this);\n const eventName = event.type;\n let node = listeners.get(eventName);\n if (node == null) {\n return true\n }\n\n // Since we cannot rewrite several properties, so wrap object.\n const wrappedEvent = wrapEvent(this, event);\n\n // This doesn't process capturing phase and bubbling phase.\n // This isn't participating in a tree.\n let prev = null;\n while (node != null) {\n // Remove this listener if it's once\n if (node.once) {\n if (prev !== null) {\n prev.next = node.next;\n } else if (node.next !== null) {\n listeners.set(eventName, node.next);\n } else {\n listeners.delete(eventName);\n }\n } else {\n prev = node;\n }\n\n // Call this listener\n setPassiveListener(\n wrappedEvent,\n node.passive ? node.listener : null\n );\n if (typeof node.listener === \"function\") {\n try {\n node.listener.call(this, wrappedEvent);\n } catch (err) {\n if (\n typeof console !== \"undefined\" &&\n typeof console.error === \"function\"\n ) {\n console.error(err);\n }\n }\n } else if (\n node.listenerType !== ATTRIBUTE &&\n typeof node.listener.handleEvent === \"function\"\n ) {\n node.listener.handleEvent(wrappedEvent);\n }\n\n // Break if `event.stopImmediatePropagation` was called.\n if (isStopped(wrappedEvent)) {\n break\n }\n\n node = node.next;\n }\n setPassiveListener(wrappedEvent, null);\n setEventPhase(wrappedEvent, 0);\n setCurrentTarget(wrappedEvent, null);\n\n return !wrappedEvent.defaultPrevented\n },\n};\n\n// `constructor` is not enumerable.\nObject.defineProperty(EventTarget.prototype, \"constructor\", {\n value: EventTarget,\n configurable: true,\n writable: true,\n});\n\n// Ensure `eventTarget instanceof window.EventTarget` is `true`.\nif (\n typeof window !== \"undefined\" &&\n typeof window.EventTarget !== \"undefined\"\n) {\n Object.setPrototypeOf(EventTarget.prototype, window.EventTarget.prototype);\n}\n\nexport default EventTarget;\nexport { defineEventAttribute, EventTarget };\n//# sourceMappingURL=event-target-shim.mjs.map\n","import {\n // Event,\n EventTarget,\n // Type,\n defineEventAttribute,\n} from \"event-target-shim\"\n\n// Known Limitation\n// Use `any` because the type of `AbortSignal` in `lib.dom.d.ts` is wrong and\n// to make assignable our `AbortSignal` into that.\n// https://github.com/Microsoft/TSJS-lib-generator/pull/623\ntype Events = {\n abort: any // Event & Type<\"abort\">\n}\ntype EventAttributes = {\n onabort: any // Event & Type<\"abort\">\n}\n\n/**\n * The signal class.\n * @see https://dom.spec.whatwg.org/#abortsignal\n */\nexport default class AbortSignal extends EventTarget {\n /**\n * AbortSignal cannot be constructed directly.\n */\n public constructor() {\n super()\n throw new TypeError(\"AbortSignal cannot be constructed directly\")\n }\n\n /**\n * Returns `true` if this `AbortSignal`'s `AbortController` has signaled to abort, and `false` otherwise.\n */\n public get aborted(): boolean {\n const aborted = abortedFlags.get(this)\n if (typeof aborted !== \"boolean\") {\n throw new TypeError(\n `Expected 'this' to be an 'AbortSignal' object, but got ${\n this === null ? \"null\" : typeof this\n }`,\n )\n }\n return aborted\n }\n}\ndefineEventAttribute(AbortSignal.prototype, \"abort\")\n\n/**\n * Create an AbortSignal object.\n */\nexport function createAbortSignal(): AbortSignal {\n const signal = Object.create(AbortSignal.prototype)\n EventTarget.call(signal)\n abortedFlags.set(signal, false)\n return signal\n}\n\n/**\n * Abort a given signal.\n */\nexport function abortSignal(signal: AbortSignal): void {\n if (abortedFlags.get(signal) !== false) {\n return\n }\n\n abortedFlags.set(signal, true)\n signal.dispatchEvent<\"abort\">({ type: \"abort\" })\n}\n\n/**\n * Aborted flag for each instances.\n */\nconst abortedFlags = new WeakMap()\n\n// Properties should be enumerable.\nObject.defineProperties(AbortSignal.prototype, {\n aborted: { enumerable: true },\n})\n\n// `toString()` should return `\"[object AbortSignal]\"`\nif (typeof Symbol === \"function\" && typeof Symbol.toStringTag === \"symbol\") {\n Object.defineProperty(AbortSignal.prototype, Symbol.toStringTag, {\n configurable: true,\n value: \"AbortSignal\",\n })\n}\n","import AbortSignal, { abortSignal, createAbortSignal } from \"./abort-signal\"\n\n/**\n * The AbortController.\n * @see https://dom.spec.whatwg.org/#abortcontroller\n */\nexport default class AbortController {\n /**\n * Initialize this controller.\n */\n public constructor() {\n signals.set(this, createAbortSignal())\n }\n\n /**\n * Returns the `AbortSignal` object associated with this object.\n */\n public get signal(): AbortSignal {\n return getSignal(this)\n }\n\n /**\n * Abort and signal to any observers that the associated activity is to be aborted.\n */\n public abort(): void {\n abortSignal(getSignal(this))\n }\n}\n\n/**\n * Associated signals.\n */\nconst signals = new WeakMap()\n\n/**\n * Get the associated signal of a given controller.\n */\nfunction getSignal(controller: AbortController): AbortSignal {\n const signal = signals.get(controller)\n if (signal == null) {\n throw new TypeError(\n `Expected 'this' to be an 'AbortController' object, but got ${\n controller === null ? \"null\" : typeof controller\n }`,\n )\n }\n return signal\n}\n\n// Properties should be enumerable.\nObject.defineProperties(AbortController.prototype, {\n signal: { enumerable: true },\n abort: { enumerable: true },\n})\n\nif (typeof Symbol === \"function\" && typeof Symbol.toStringTag === \"symbol\") {\n Object.defineProperty(AbortController.prototype, Symbol.toStringTag, {\n configurable: true,\n value: \"AbortController\",\n })\n}\n\nexport { AbortController, AbortSignal }\n"],"names":["pd","event","retv","privateData","get","console","assert","setCancelFlag","data","passiveListener","cancelable","canceled","preventDefault","error","Event","eventTarget","set","eventPhase","currentTarget","stopped","immediateStopped","timeStamp","Date","now","Object","defineProperty","value","enumerable","key","keys","i","length","defineRedirectDescriptor","configurable","defineCallDescriptor","apply","arguments","defineWrapper","BaseEvent","proto","CustomEvent","call","prototype","create","constructor","writable","descriptor","getOwnPropertyDescriptor","isFunc","getWrapper","wrapper","wrappers","getPrototypeOf","wrapEvent","Wrapper","isStopped","setEventPhase","setCurrentTarget","setPassiveListener","createAbortSignal","signal","AbortSignal","EventTarget","abortedFlags","abortSignal","dispatchEvent","type","getSignal","controller","signals","TypeError","WeakMap","target","composedPath","NONE","CAPTURING_PHASE","AT_TARGET","BUBBLING_PHASE","stopPropagation","stopImmediatePropagation","bubbles","defaultPrevented","composed","srcElement","cancelBubble","returnValue","initEvent","window","setPrototypeOf","aborted","defineEventAttribute","defineProperties","Symbol","_typeof","toStringTag","AbortController","abort"],"mappings":";;;+3CAkCA,QAASA,CAAAA,CAAT,CAAYC,CAAZ,CAAmB,IACTC,CAAAA,CAAI,CAAGC,CAAW,CAACC,GAAZ,CAAgBH,CAAhB,QACbI,CAAAA,OAAO,CAACC,MAAR,CACY,IAAR,EAAAJ,CADJ,CAEI,6CAFJ,CAGID,CAHJ,EAKOC,EAOX,QAASK,CAAAA,CAAT,CAAuBC,CAAvB,CAA6B,OACG,KAAxB,EAAAA,CAAI,CAACC,eADgB,MAarB,CAACD,CAAI,CAACP,KAAL,CAAWS,UAbS,GAiBzBF,CAAI,CAACG,QAAL,GAjByB,CAkBgB,UAArC,QAAOH,CAAAA,CAAI,CAACP,KAAL,CAAWW,cAlBG,EAmBrBJ,CAAI,CAACP,KAAL,CAAWW,cAAX,EAnBqB,QAGE,WAAnB,QAAOP,CAAAA,OAAP,EACyB,UAAzB,QAAOA,CAAAA,OAAO,CAACQ,KAJE,EAMjBR,OAAO,CAACQ,KAAR,CACI,oEADJ,CAEIL,CAAI,CAACC,eAFT,CANiB,EAiC7B,QAASK,CAAAA,CAAT,CAAeC,CAAf,CAA4Bd,CAA5B,CAAmC,CAC/BE,CAAW,CAACa,GAAZ,CAAgB,IAAhB,CAAsB,CAClBD,WAAW,CAAXA,CADkB,CAElBd,KAAK,CAALA,CAFkB,CAGlBgB,UAAU,CAAE,CAHM,CAIlBC,aAAa,CAAEH,CAJG,CAKlBJ,QAAQ,GALU,CAMlBQ,OAAO,GANW,CAOlBC,gBAAgB,GAPE,CAQlBX,eAAe,CAAE,IARC,CASlBY,SAAS,CAAEpB,CAAK,CAACoB,SAAN,EAAmBC,IAAI,CAACC,GAAL,EATZ,CAAtB,CAD+B,CAc/BC,MAAM,CAACC,cAAP,CAAsB,IAAtB,CAA4B,WAA5B,CAAyC,CAAEC,KAAK,GAAP,CAAgBC,UAAU,GAA1B,CAAzC,CAd+B,QAmBrBC,CAAAA,EAFJC,CAAI,CAAGL,MAAM,CAACK,IAAP,CAAY5B,CAAZ,EACJ6B,CAAC,CAAG,EAAGA,CAAC,CAAGD,CAAI,CAACE,OAAQ,EAAED,EACzBF,EAAMC,CAAI,CAACC,CAAD,EACVF,CAAG,GAAI,OACTJ,MAAM,CAACC,cAAP,CAAsB,IAAtB,CAA4BG,CAA5B,CAAiCI,CAAwB,CAACJ,CAAD,CAAzD,EAyOZ,QAASI,CAAAA,CAAT,CAAkCJ,CAAlC,CAAuC,OAC5B,CACHxB,GADG,WACG,OACKJ,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASC,KAAT,CAAe2B,CAAf,CAFR,CAAA,CAIHZ,GAJG,UAICU,EAAO,CACP1B,CAAE,CAAC,IAAD,CAAF,CAASC,KAAT,CAAe2B,CAAf,EAAsBF,CALvB,CAAA,CAOHO,YAAY,GAPT,CAQHN,UAAU,GARP,EAkBX,QAASO,CAAAA,CAAT,CAA8BN,CAA9B,CAAmC,OACxB,CACHF,KADG,WACK,IACEzB,CAAAA,CAAK,CAAGD,CAAE,CAAC,IAAD,CAAF,CAASC,YAChBA,CAAAA,CAAK,CAAC2B,CAAD,CAAL,CAAWO,KAAX,CAAiBlC,CAAjB,CAAwBmC,SAAxB,CAHR,CAAA,CAKHH,YAAY,GALT,CAMHN,UAAU,GANP,EAiBX,QAASU,CAAAA,CAAT,CAAuBC,CAAvB,CAAkCC,CAAlC,CAAyC,SAO5BC,CAAAA,EAAYzB,EAAad,EAAO,CACrCqC,CAAS,CAACG,IAAV,CAAe,IAAf,CAAqB1B,CAArB,CAAkCd,CAAlC,KAPE4B,CAAAA,CAAI,CAAGL,MAAM,CAACK,IAAP,CAAYU,CAAZ,KACO,CAAhB,GAAAV,CAAI,CAACE,aACEO,CAAAA,EAQXE,CAAW,CAACE,SAAZ,CAAwBlB,MAAM,CAACmB,MAAP,CAAcL,CAAS,CAACI,SAAxB,CAAmC,CACvDE,WAAW,CAAE,CAAElB,KAAK,CAAEc,CAAT,CAAsBP,YAAY,GAAlC,CAA0CY,QAAQ,GAAlD,CAD0C,CAAnC,CAXa,KAgBhC,GACKjB,CAAAA,CADL,CAAIE,CAAC,CAAG,EAAGA,CAAC,CAAGD,CAAI,CAACE,OAAQ,EAAED,KACzBF,EAAMC,CAAI,CAACC,CAAD,EACZ,EAAEF,CAAG,GAAIU,CAAAA,CAAS,CAACI,SAAnB,EAA+B,IACzBI,CAAAA,CAAU,CAAGtB,MAAM,CAACuB,wBAAP,CAAgCR,CAAhC,CAAuCX,CAAvC,CADY,CAEzBoB,CAAM,CAA+B,UAA5B,QAAOF,CAAAA,CAAU,CAACpB,KAFF,CAG/BF,MAAM,CAACC,cAAP,CACIe,CAAW,CAACE,SADhB,CAEId,CAFJ,CAGIoB,CAAM,CACAd,CAAoB,CAACN,CAAD,CADpB,CAEAI,CAAwB,CAACJ,CAAD,CALlC,QAUDY,CAAAA,EASX,QAASS,CAAAA,CAAT,CAAoBV,CAApB,CAA2B,IACV,IAAT,EAAAA,CAAK,EAAYA,CAAK,GAAKf,MAAM,CAACkB,gBAC3B5B,CAAAA,KAGPoC,CAAAA,CAAO,CAAGC,CAAQ,CAAC/C,GAAT,CAAamC,CAAb,QACC,KAAX,EAAAW,IACAA,CAAO,CAAGb,CAAa,CAACY,CAAU,CAACzB,MAAM,CAAC4B,cAAP,CAAsBb,CAAtB,CAAD,CAAX,CAA2CA,CAA3C,EACvBY,CAAQ,CAACnC,GAAT,CAAauB,CAAb,CAAoBW,CAApB,GAEGA,EAUJ,QAASG,CAAAA,CAAT,CAAmBtC,CAAnB,CAAgCd,CAAhC,CAAuC,IACpCqD,CAAAA,CAAO,CAAGL,CAAU,CAACzB,MAAM,CAAC4B,cAAP,CAAsBnD,CAAtB,CAAD,QACnB,IAAIqD,CAAAA,CAAJ,CAAYvC,CAAZ,CAAyBd,CAAzB,EASJ,QAASsD,CAAAA,CAAT,CAAmBtD,CAAnB,CAA0B,OACtBD,CAAAA,CAAE,CAACC,CAAD,CAAF,CAAUmB,iBAUd,QAASoC,CAAAA,CAAT,CAAuBvD,CAAvB,CAA8BgB,CAA9B,CAA0C,CAC7CjB,CAAE,CAACC,CAAD,CAAF,CAAUgB,UAAV,CAAuBA,EAUpB,QAASwC,CAAAA,CAAT,CAA0BxD,CAA1B,CAAiCiB,CAAjC,CAAgD,CACnDlB,CAAE,CAACC,CAAD,CAAF,CAAUiB,aAAV,CAA0BA,EAUvB,QAASwC,CAAAA,CAAT,CAA4BzD,CAA5B,CAAmCQ,CAAnC,CAAoD,CACvDT,CAAE,CAACC,CAAD,CAAF,CAAUQ,eAAV,CAA4BA,ysCC1ahBkD,CAAAA,OACNC,CAAAA,CAAM,CAAGpC,MAAM,CAACmB,MAAPnB,CAAcqC,CAAW,CAACnB,SAA1BlB,QACfsC,CAAAA,CAAW,CAACrB,IAAZqB,CAAiBF,CAAjBE,EACAC,CAAY,CAAC/C,GAAb+C,CAAiBH,CAAjBG,KACOH,UAMKI,CAAAA,EAAYJ,GACpBG,KAAAA,CAAY,CAAC3D,GAAb2D,CAAiBH,CAAjBG,IAIJA,CAAY,CAAC/C,GAAb+C,CAAiBH,CAAjBG,KACAH,CAAM,CAACK,aAAPL,CAA8B,CAAEM,IAAI,CAAE,OAAR,CAA9BN,GC9BJ,QAASO,CAAAA,CAAT,CAAmBC,CAAnB,KACUR,CAAAA,CAAM,CAAGS,CAAO,CAACjE,GAARiE,CAAYD,CAAZC,KACD,IAAVT,EAAAA,OACM,IAAIU,CAAAA,SAAJ,sEAEiB,IAAfF,GAAAA,CAAU,CAAY,MAAZ,GAA4BA,GAFxC,QAMHR,CAAAA,KF3BLzD,CAAAA,CAAW,CAAG,GAAIoE,CAAAA,QAOlBpB,CAAQ,CAAG,GAAIoB,CAAAA,QAkFrBzD,CAAK,CAAC4B,SAAN,CAAkB,IAKVwB,CAAAA,MAAO,OACAlE,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASC,KAAT,CAAeiE,IANZ,CAAA,IAaVM,CAAAA,QAAS,OACFxE,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASe,WAdN,CAAA,IAqBVG,CAAAA,eAAgB,OACTlB,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASkB,aAtBN,CAAA,CA4BduD,YA5Bc,WA4BC,IACLvD,CAAAA,CAAa,CAAGlB,CAAE,CAAC,IAAD,CAAF,CAASkB,cADpB,MAEU,KAAjB,EAAAA,CAFO,CAGA,EAHA,CAKJ,CAACA,CAAD,CAjCG,CAAA,IAwCVwD,CAAAA,MAAO,OACA,EAzCG,CAAA,IAgDVC,CAAAA,iBAAkB,OACX,EAjDG,CAAA,IAwDVC,CAAAA,WAAY,OACL,EAzDG,CAAA,IAgEVC,CAAAA,gBAAiB,OACV,EAjEG,CAAA,IAwEV5D,CAAAA,YAAa,OACNjB,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASiB,UAzEN,CAAA,CAgFd6D,eAhFc,WAgFI,IACRtE,CAAAA,CAAI,CAAGR,CAAE,CAAC,IAAD,EAEfQ,CAAI,CAACW,OAAL,GAHc,CAI4B,UAAtC,QAAOX,CAAAA,CAAI,CAACP,KAAL,CAAW6E,eAJR,EAKVtE,CAAI,CAACP,KAAL,CAAW6E,eAAX,EArFM,CAAA,CA6FdC,wBA7Fc,WA6Fa,IACjBvE,CAAAA,CAAI,CAAGR,CAAE,CAAC,IAAD,EAEfQ,CAAI,CAACW,OAAL,GAHuB,CAIvBX,CAAI,CAACY,gBAAL,GAJuB,CAK4B,UAA/C,QAAOZ,CAAAA,CAAI,CAACP,KAAL,CAAW8E,wBALC,EAMnBvE,CAAI,CAACP,KAAL,CAAW8E,wBAAX,EAnGM,CAAA,IA2GVC,CAAAA,SAAU,SACKhF,CAAE,CAAC,IAAD,CAAF,CAASC,KAAT,CAAe+E,OA5GpB,CAAA,IAmHVtE,CAAAA,YAAa,SACEV,CAAE,CAAC,IAAD,CAAF,CAASC,KAAT,CAAeS,UApHpB,CAAA,CA2HdE,cA3Hc,WA2HG,CACbL,CAAa,CAACP,CAAE,CAAC,IAAD,CAAH,CA5HH,CAAA,IAmIViF,CAAAA,kBAAmB,OACZjF,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASW,QApIN,CAAA,IA2IVuE,CAAAA,UAAW,SACIlF,CAAE,CAAC,IAAD,CAAF,CAASC,KAAT,CAAeiF,QA5IpB,CAAA,IAmJV7D,CAAAA,WAAY,OACLrB,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASqB,SApJN,CAAA,IA4JV8D,CAAAA,YAAa,OACNnF,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASe,WA7JN,CAAA,IAqKVqE,CAAAA,cAAe,OACRpF,CAAAA,CAAE,CAAC,IAAD,CAAF,CAASmB,OAtKN,CAAA,IAwKViE,CAAAA,aAAa1D,EAAO,IACfA,MAGClB,CAAAA,CAAI,CAAGR,CAAE,CAAC,IAAD,EAEfQ,CAAI,CAACW,OAAL,IACuC,SAAnC,QAAOX,CAAAA,CAAI,CAACP,KAAL,CAAWmF,eAClB5E,CAAI,CAACP,KAAL,CAAWmF,YAAX,KAhLM,CAAA,IAyLVC,CAAAA,aAAc,OACP,CAACrF,CAAE,CAAC,IAAD,CAAF,CAASW,QA1LP,CAAA,IA4LV0E,CAAAA,YAAY3D,EAAO,CACdA,CADc,EAEfnB,CAAa,CAACP,CAAE,CAAC,IAAD,CAAH,CA9LP,CAAA,CAyMdsF,SAzMc,WAyMF,EAzME,EA+MlB9D,MAAM,CAACC,cAAP,CAAsBX,CAAK,CAAC4B,SAA5B,CAAuC,aAAvC,CAAsD,CAClDhB,KAAK,CAAEZ,CAD2C,CAElDmB,YAAY,GAFsC,CAGlDY,QAAQ,GAH0C,CAAtD,EAOsB,WAAlB,QAAO0C,CAAAA,MAAP,EAAyD,WAAxB,QAAOA,CAAAA,MAAM,CAACzE,QAC/CU,MAAM,CAACgE,cAAP,CAAsB1E,CAAK,CAAC4B,SAA5B,CAAuC6C,MAAM,CAACzE,KAAP,CAAa4B,SAApD,EAGAS,CAAQ,CAACnC,GAAT,CAAauE,MAAM,CAACzE,KAAP,CAAa4B,SAA1B,CAAqC5B,CAArC,wiDChTiB+C,CAAAA,2EAMP,GAAIS,CAAAA,SAAJ,CAAc,4CAAd,sDAOAmB,CAAAA,CAAO,CAAG1B,CAAY,CAAC3D,GAAb2D,CAAiB,IAAjBA,KACO,SAAnB,QAAO0B,CAAAA,OACD,IAAInB,CAAAA,SAAJ,kEAEW,IAAT,QAAgB,MAAhB,GAAgC,MAFlC,QAMHmB,CAAAA,SArB0B3B,GAwBzC4B,CAAoB,CAAC7B,CAAW,CAACnB,SAAb,CAAwB,OAAxB,EA2BpB,GAAMqB,CAAAA,CAAY,CAAG,GAAIQ,CAAAA,OAAzB,CAGA/C,MAAM,CAACmE,gBAAPnE,CAAwBqC,CAAW,CAACnB,SAApClB,CAA+C,CAC3CiE,OAAO,CAAE,CAAE9D,UAAU,GAAZ,CADkC,CAA/CH,EAKsB,UAAlB,QAAOoE,CAAAA,MAAP,EAA8D,QAA9B,GAAAC,EAAOD,MAAM,CAACE,cAC9CtE,MAAM,CAACC,cAAPD,CAAsBqC,CAAW,CAACnB,SAAlClB,CAA6CoE,MAAM,CAACE,WAApDtE,CAAiE,CAC7DS,YAAY,GADiD,CAE7DP,KAAK,CAAE,aAFsD,CAAjEF,KC5EiBuE,CAAAA,oCAKb1B,CAAO,CAACrD,GAARqD,CAAY,IAAZA,CAAkBV,CAAiB,EAAnCU,4CAcAL,CAAW,CAACG,CAAS,CAAC,IAAD,CAAV,uCAPJA,CAAAA,CAAS,CAAC,IAAD,WAclBE,CAAO,CAAG,GAAIE,CAAAA,WAkBpB/C,MAAM,CAACmE,gBAAPnE,CAAwBuE,CAAe,CAACrD,SAAxClB,CAAmD,CAC/CoC,MAAM,CAAE,CAAEjC,UAAU,GAAZ,CADuC,CAE/CqE,KAAK,CAAE,CAAErE,UAAU,GAAZ,CAFwC,CAAnDH,EAKsB,UAAlB,QAAOoE,CAAAA,MAAP,EAA8D,QAA9B,GAAAC,EAAOD,MAAM,CAACE,cAC9CtE,MAAM,CAACC,cAAPD,CAAsBuE,CAAe,CAACrD,SAAtClB,CAAiDoE,MAAM,CAACE,WAAxDtE,CAAqE,CACjES,YAAY,GADqD,CAEjEP,KAAK,CAAE,iBAF0D,CAArEF"} \ No newline at end of file diff --git a/deps/npm/node_modules/agent-base/dist/src/index.d.ts b/deps/npm/node_modules/agent-base/dist/src/index.d.ts deleted file mode 100644 index bc4ab744c59c81..00000000000000 --- a/deps/npm/node_modules/agent-base/dist/src/index.d.ts +++ /dev/null @@ -1,78 +0,0 @@ -/// -import net from 'net'; -import http from 'http'; -import https from 'https'; -import { Duplex } from 'stream'; -import { EventEmitter } from 'events'; -declare function createAgent(opts?: createAgent.AgentOptions): createAgent.Agent; -declare function createAgent(callback: createAgent.AgentCallback, opts?: createAgent.AgentOptions): createAgent.Agent; -declare namespace createAgent { - interface ClientRequest extends http.ClientRequest { - _last?: boolean; - _hadError?: boolean; - method: string; - } - interface AgentRequestOptions { - host?: string; - path?: string; - port: number; - } - interface HttpRequestOptions extends AgentRequestOptions, Omit { - secureEndpoint: false; - } - interface HttpsRequestOptions extends AgentRequestOptions, Omit { - secureEndpoint: true; - } - type RequestOptions = HttpRequestOptions | HttpsRequestOptions; - type AgentLike = Pick | http.Agent; - type AgentCallbackReturn = Duplex | AgentLike; - type AgentCallbackCallback = (err?: Error | null, socket?: createAgent.AgentCallbackReturn) => void; - type AgentCallbackPromise = (req: createAgent.ClientRequest, opts: createAgent.RequestOptions) => createAgent.AgentCallbackReturn | Promise; - type AgentCallback = typeof Agent.prototype.callback; - type AgentOptions = { - timeout?: number; - }; - /** - * Base `http.Agent` implementation. - * No pooling/keep-alive is implemented by default. - * - * @param {Function} callback - * @api public - */ - class Agent extends EventEmitter { - timeout: number | null; - maxFreeSockets: number; - maxTotalSockets: number; - maxSockets: number; - sockets: { - [key: string]: net.Socket[]; - }; - freeSockets: { - [key: string]: net.Socket[]; - }; - requests: { - [key: string]: http.IncomingMessage[]; - }; - options: https.AgentOptions; - private promisifiedCallback?; - private explicitDefaultPort?; - private explicitProtocol?; - constructor(callback?: createAgent.AgentCallback | createAgent.AgentOptions, _opts?: createAgent.AgentOptions); - get defaultPort(): number; - set defaultPort(v: number); - get protocol(): string; - set protocol(v: string); - callback(req: createAgent.ClientRequest, opts: createAgent.RequestOptions, fn: createAgent.AgentCallbackCallback): void; - callback(req: createAgent.ClientRequest, opts: createAgent.RequestOptions): createAgent.AgentCallbackReturn | Promise; - /** - * Called by node-core's "_http_client.js" module when creating - * a new HTTP request with this Agent instance. - * - * @api public - */ - addRequest(req: ClientRequest, _opts: RequestOptions): void; - freeSocket(socket: net.Socket, opts: AgentOptions): void; - destroy(): void; - } -} -export = createAgent; diff --git a/deps/npm/node_modules/agent-base/dist/src/index.js.map b/deps/npm/node_modules/agent-base/dist/src/index.js.map deleted file mode 100644 index bd118ab6bb1ce6..00000000000000 --- a/deps/npm/node_modules/agent-base/dist/src/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAIA,mCAAsC;AACtC,kDAAgC;AAChC,4DAAoC;AAEpC,MAAM,KAAK,GAAG,eAAW,CAAC,YAAY,CAAC,CAAC;AAExC,SAAS,OAAO,CAAC,CAAM;IACtB,OAAO,OAAO,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,UAAU,KAAK,UAAU,CAAC;AACzD,CAAC;AAED,SAAS,gBAAgB;IACxB,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,KAAK,EAAE,CAAC;IAC9B,IAAI,OAAO,KAAK,KAAK,QAAQ;QAAE,OAAO,KAAK,CAAC;IAC5C,OAAO,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,IAAK,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACxG,CAAC;AAOD,SAAS,WAAW,CACnB,QAA+D,EAC/D,IAA+B;IAE/B,OAAO,IAAI,WAAW,CAAC,KAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;AAC9C,CAAC;AAED,WAAU,WAAW;IAmDpB;;;;;;OAMG;IACH,MAAa,KAAM,SAAQ,qBAAY;QAmBtC,YACC,QAA+D,EAC/D,KAAgC;YAEhC,KAAK,EAAE,CAAC;YAER,IAAI,IAAI,GAAG,KAAK,CAAC;YACjB,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;gBACnC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aACzB;iBAAM,IAAI,QAAQ,EAAE;gBACpB,IAAI,GAAG,QAAQ,CAAC;aAChB;YAED,0DAA0D;YAC1D,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;YACpB,IAAI,IAAI,IAAI,OAAO,IAAI,CAAC,OAAO,KAAK,QAAQ,EAAE;gBAC7C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;aAC5B;YAED,+DAA+D;YAC/D,0DAA0D;YAC1D,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;YACxB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;YACpB,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC;YAChC,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;YAClB,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;YACtB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;YACnB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;QACnB,CAAC;QAED,IAAI,WAAW;YACd,IAAI,OAAO,IAAI,CAAC,mBAAmB,KAAK,QAAQ,EAAE;gBACjD,OAAO,IAAI,CAAC,mBAAmB,CAAC;aAChC;YACD,OAAO,gBAAgB,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;QACtC,CAAC;QAED,IAAI,WAAW,CAAC,CAAS;YACxB,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC;QAC9B,CAAC;QAED,IAAI,QAAQ;YACX,IAAI,OAAO,IAAI,CAAC,gBAAgB,KAAK,QAAQ,EAAE;gBAC9C,OAAO,IAAI,CAAC,gBAAgB,CAAC;aAC7B;YACD,OAAO,gBAAgB,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC;QAChD,CAAC;QAED,IAAI,QAAQ,CAAC,CAAS;YACrB,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;QAC3B,CAAC;QAaD,QAAQ,CACP,GAA8B,EAC9B,IAA8B,EAC9B,EAAsC;YAKtC,MAAM,IAAI,KAAK,CACd,yFAAyF,CACzF,CAAC;QACH,CAAC;QAED;;;;;WAKG;QACH,UAAU,CAAC,GAAkB,EAAE,KAAqB;YACnD,MAAM,IAAI,qBAAwB,KAAK,CAAE,CAAC;YAE1C,IAAI,OAAO,IAAI,CAAC,cAAc,KAAK,SAAS,EAAE;gBAC7C,IAAI,CAAC,cAAc,GAAG,gBAAgB,EAAE,CAAC;aACzC;YAED,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,EAAE;gBACtB,IAAI,CAAC,IAAI,GAAG,WAAW,CAAC;aACxB;YAED,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,EAAE;gBACtB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;aAC3C;YAED,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,EAAE;gBAC1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC;aACzD;YAED,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,EAAE;gBAC3B,2DAA2D;gBAC3D,0DAA0D;gBAC1D,4DAA4D;gBAC5D,8CAA8C;gBAC9C,OAAO,IAAI,CAAC,IAAI,CAAC;aACjB;YAED,OAAO,IAAI,CAAC,KAAK,CAAC;YAClB,OAAO,IAAI,CAAC,QAAQ,CAAC;YACrB,OAAO,IAAI,CAAC,aAAa,CAAC;YAC1B,OAAO,IAAI,CAAC,WAAW,CAAC;YACxB,OAAO,IAAI,CAAC,gBAAgB,CAAC;YAE7B,kCAAkC;YAClC,2CAA2C;YAC3C,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC;YACjB,GAAG,CAAC,eAAe,GAAG,KAAK,CAAC;YAE5B,IAAI,QAAQ,GAAG,KAAK,CAAC;YACrB,IAAI,SAAS,GAAyC,IAAI,CAAC;YAC3D,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC;YAE/C,MAAM,OAAO,GAAG,CAAC,GAA0B,EAAE,EAAE;gBAC9C,IAAI,GAAG,CAAC,SAAS;oBAAE,OAAO;gBAC1B,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;gBACvB,yDAAyD;gBACzD,iEAAiE;gBACjE,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC;YACtB,CAAC,CAAC;YAEF,MAAM,SAAS,GAAG,GAAG,EAAE;gBACtB,SAAS,GAAG,IAAI,CAAC;gBACjB,QAAQ,GAAG,IAAI,CAAC;gBAChB,MAAM,GAAG,GAA0B,IAAI,KAAK,CAC3C,sDAAsD,SAAS,IAAI,CACnE,CAAC;gBACF,GAAG,CAAC,IAAI,GAAG,UAAU,CAAC;gBACtB,OAAO,CAAC,GAAG,CAAC,CAAC;YACd,CAAC,CAAC;YAEF,MAAM,aAAa,GAAG,CAAC,GAA0B,EAAE,EAAE;gBACpD,IAAI,QAAQ;oBAAE,OAAO;gBACrB,IAAI,SAAS,KAAK,IAAI,EAAE;oBACvB,YAAY,CAAC,SAAS,CAAC,CAAC;oBACxB,SAAS,GAAG,IAAI,CAAC;iBACjB;gBACD,OAAO,CAAC,GAAG,CAAC,CAAC;YACd,CAAC,CAAC;YAEF,MAAM,QAAQ,GAAG,CAAC,MAA2B,EAAE,EAAE;gBAChD,IAAI,QAAQ;oBAAE,OAAO;gBACrB,IAAI,SAAS,IAAI,IAAI,EAAE;oBACtB,YAAY,CAAC,SAAS,CAAC,CAAC;oBACxB,SAAS,GAAG,IAAI,CAAC;iBACjB;gBAED,IAAI,OAAO,CAAC,MAAM,CAAC,EAAE;oBACpB,oDAAoD;oBACpD,wDAAwD;oBACxD,eAAe;oBACf,KAAK,CACJ,6CAA6C,EAC7C,MAAM,CAAC,WAAW,CAAC,IAAI,CACvB,CAAC;oBACD,MAA4B,CAAC,UAAU,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;oBACpD,OAAO;iBACP;gBAED,IAAI,MAAM,EAAE;oBACX,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,EAAE;wBACxB,IAAI,CAAC,UAAU,CAAC,MAAoB,EAAE,IAAI,CAAC,CAAC;oBAC7C,CAAC,CAAC,CAAC;oBACH,GAAG,CAAC,QAAQ,CAAC,MAAoB,CAAC,CAAC;oBACnC,OAAO;iBACP;gBAED,MAAM,GAAG,GAAG,IAAI,KAAK,CACpB,qDAAqD,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,IAAI,IAAI,CAC/E,CAAC;gBACF,OAAO,CAAC,GAAG,CAAC,CAAC;YACd,CAAC,CAAC;YAEF,IAAI,OAAO,IAAI,CAAC,QAAQ,KAAK,UAAU,EAAE;gBACxC,OAAO,CAAC,IAAI,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC;gBAChD,OAAO;aACP;YAED,IAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE;gBAC9B,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,IAAI,CAAC,EAAE;oBAC9B,KAAK,CAAC,gDAAgD,CAAC,CAAC;oBACxD,IAAI,CAAC,mBAAmB,GAAG,mBAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;iBACpD;qBAAM;oBACN,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,QAAQ,CAAC;iBACzC;aACD;YAED,IAAI,OAAO,SAAS,KAAK,QAAQ,IAAI,SAAS,GAAG,CAAC,EAAE;gBACnD,SAAS,GAAG,UAAU,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;aAC7C;YAED,IAAI,MAAM,IAAI,IAAI,IAAI,OAAO,IAAI,CAAC,IAAI,KAAK,QAAQ,EAAE;gBACpD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;aAC9B;YAED,IAAI;gBACH,KAAK,CACJ,qCAAqC,EACrC,IAAI,CAAC,QAAQ,EACb,GAAG,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,IAAI,EAAE,CAC3B,CAAC;gBACF,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,mBAAmB,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC,CAAC,IAAI,CACxD,QAAQ,EACR,aAAa,CACb,CAAC;aACF;YAAC,OAAO,GAAG,EAAE;gBACb,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;aACzC;QACF,CAAC;QAED,UAAU,CAAC,MAAkB,EAAE,IAAkB;YAChD,KAAK,CAAC,sBAAsB,EAAE,MAAM,CAAC,WAAW,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;YAC7D,MAAM,CAAC,OAAO,EAAE,CAAC;QAClB,CAAC;QAED,OAAO;YACN,KAAK,CAAC,qBAAqB,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QACrD,CAAC;KACD;IAxPY,iBAAK,QAwPjB,CAAA;IAED,uCAAuC;IACvC,WAAW,CAAC,SAAS,GAAG,WAAW,CAAC,KAAK,CAAC,SAAS,CAAC;AACrD,CAAC,EAtTS,WAAW,KAAX,WAAW,QAsTpB;AAED,iBAAS,WAAW,CAAC"} \ No newline at end of file diff --git a/deps/npm/node_modules/agent-base/dist/src/promisify.d.ts b/deps/npm/node_modules/agent-base/dist/src/promisify.d.ts deleted file mode 100644 index 02688696fb4c1a..00000000000000 --- a/deps/npm/node_modules/agent-base/dist/src/promisify.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { ClientRequest, RequestOptions, AgentCallbackCallback, AgentCallbackPromise } from './index'; -declare type LegacyCallback = (req: ClientRequest, opts: RequestOptions, fn: AgentCallbackCallback) => void; -export default function promisify(fn: LegacyCallback): AgentCallbackPromise; -export {}; diff --git a/deps/npm/node_modules/agent-base/dist/src/promisify.js.map b/deps/npm/node_modules/agent-base/dist/src/promisify.js.map deleted file mode 100644 index 4bff9bfcfa2899..00000000000000 --- a/deps/npm/node_modules/agent-base/dist/src/promisify.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"promisify.js","sourceRoot":"","sources":["../../src/promisify.ts"],"names":[],"mappings":";;AAeA,SAAwB,SAAS,CAAC,EAAkB;IACnD,OAAO,UAAsB,GAAkB,EAAE,IAAoB;QACpE,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACtC,EAAE,CAAC,IAAI,CACN,IAAI,EACJ,GAAG,EACH,IAAI,EACJ,CAAC,GAA6B,EAAE,GAAyB,EAAE,EAAE;gBAC5D,IAAI,GAAG,EAAE;oBACR,MAAM,CAAC,GAAG,CAAC,CAAC;iBACZ;qBAAM;oBACN,OAAO,CAAC,GAAG,CAAC,CAAC;iBACb;YACF,CAAC,CACD,CAAC;QACH,CAAC,CAAC,CAAC;IACJ,CAAC,CAAC;AACH,CAAC;AAjBD,4BAiBC"} \ No newline at end of file diff --git a/deps/npm/node_modules/agent-base/src/index.ts b/deps/npm/node_modules/agent-base/src/index.ts deleted file mode 100644 index a47ccd493f90a8..00000000000000 --- a/deps/npm/node_modules/agent-base/src/index.ts +++ /dev/null @@ -1,345 +0,0 @@ -import net from 'net'; -import http from 'http'; -import https from 'https'; -import { Duplex } from 'stream'; -import { EventEmitter } from 'events'; -import createDebug from 'debug'; -import promisify from './promisify'; - -const debug = createDebug('agent-base'); - -function isAgent(v: any): v is createAgent.AgentLike { - return Boolean(v) && typeof v.addRequest === 'function'; -} - -function isSecureEndpoint(): boolean { - 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(opts?: createAgent.AgentOptions): createAgent.Agent; -function createAgent( - callback: createAgent.AgentCallback, - opts?: createAgent.AgentOptions -): createAgent.Agent; -function createAgent( - callback?: createAgent.AgentCallback | createAgent.AgentOptions, - opts?: createAgent.AgentOptions -) { - return new createAgent.Agent(callback, opts); -} - -namespace createAgent { - export interface ClientRequest extends http.ClientRequest { - _last?: boolean; - _hadError?: boolean; - method: string; - } - - export interface AgentRequestOptions { - host?: string; - path?: string; - // `port` on `http.RequestOptions` can be a string or undefined, - // but `net.TcpNetConnectOpts` expects only a number - port: number; - } - - export interface HttpRequestOptions - extends AgentRequestOptions, - Omit { - secureEndpoint: false; - } - - export interface HttpsRequestOptions - extends AgentRequestOptions, - Omit { - secureEndpoint: true; - } - - export type RequestOptions = HttpRequestOptions | HttpsRequestOptions; - - export type AgentLike = Pick | http.Agent; - - export type AgentCallbackReturn = Duplex | AgentLike; - - export type AgentCallbackCallback = ( - err?: Error | null, - socket?: createAgent.AgentCallbackReturn - ) => void; - - export type AgentCallbackPromise = ( - req: createAgent.ClientRequest, - opts: createAgent.RequestOptions - ) => - | createAgent.AgentCallbackReturn - | Promise; - - export type AgentCallback = typeof Agent.prototype.callback; - - export type AgentOptions = { - timeout?: number; - }; - - /** - * Base `http.Agent` implementation. - * No pooling/keep-alive is implemented by default. - * - * @param {Function} callback - * @api public - */ - export class Agent extends EventEmitter { - public timeout: number | null; - public maxFreeSockets: number; - public maxTotalSockets: number; - public maxSockets: number; - public sockets: { - [key: string]: net.Socket[]; - }; - public freeSockets: { - [key: string]: net.Socket[]; - }; - public requests: { - [key: string]: http.IncomingMessage[]; - }; - public options: https.AgentOptions; - private promisifiedCallback?: createAgent.AgentCallbackPromise; - private explicitDefaultPort?: number; - private explicitProtocol?: string; - - constructor( - callback?: createAgent.AgentCallback | createAgent.AgentOptions, - _opts?: createAgent.AgentOptions - ) { - 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(): number { - if (typeof this.explicitDefaultPort === 'number') { - return this.explicitDefaultPort; - } - return isSecureEndpoint() ? 443 : 80; - } - - set defaultPort(v: number) { - this.explicitDefaultPort = v; - } - - get protocol(): string { - if (typeof this.explicitProtocol === 'string') { - return this.explicitProtocol; - } - return isSecureEndpoint() ? 'https:' : 'http:'; - } - - set protocol(v: string) { - this.explicitProtocol = v; - } - - callback( - req: createAgent.ClientRequest, - opts: createAgent.RequestOptions, - fn: createAgent.AgentCallbackCallback - ): void; - callback( - req: createAgent.ClientRequest, - opts: createAgent.RequestOptions - ): - | createAgent.AgentCallbackReturn - | Promise; - callback( - req: createAgent.ClientRequest, - opts: createAgent.AgentOptions, - fn?: createAgent.AgentCallbackCallback - ): - | createAgent.AgentCallbackReturn - | Promise - | void { - 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: ClientRequest, _opts: RequestOptions): void { - const opts: RequestOptions = { ..._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: ReturnType | null = null; - const timeoutMs = opts.timeout || this.timeout; - - const onerror = (err: NodeJS.ErrnoException) => { - 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: NodeJS.ErrnoException = new Error( - `A "socket" was not created for HTTP request before ${timeoutMs}ms` - ); - err.code = 'ETIMEOUT'; - onerror(err); - }; - - const callbackError = (err: NodeJS.ErrnoException) => { - if (timedOut) return; - if (timeoutId !== null) { - clearTimeout(timeoutId); - timeoutId = null; - } - onerror(err); - }; - - const onsocket = (socket: AgentCallbackReturn) => { - 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 as createAgent.Agent).addRequest(req, opts); - return; - } - - if (socket) { - socket.once('free', () => { - this.freeSocket(socket as net.Socket, opts); - }); - req.onSocket(socket as net.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(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: net.Socket, opts: AgentOptions) { - debug('Freeing socket %o %o', socket.constructor.name, opts); - socket.destroy(); - } - - destroy() { - debug('Destroying agent %o', this.constructor.name); - } - } - - // So that `instanceof` works correctly - createAgent.prototype = createAgent.Agent.prototype; -} - -export = createAgent; diff --git a/deps/npm/node_modules/agent-base/src/promisify.ts b/deps/npm/node_modules/agent-base/src/promisify.ts deleted file mode 100644 index 60cc6627100b81..00000000000000 --- a/deps/npm/node_modules/agent-base/src/promisify.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { - Agent, - ClientRequest, - RequestOptions, - AgentCallbackCallback, - AgentCallbackPromise, - AgentCallbackReturn -} from './index'; - -type LegacyCallback = ( - req: ClientRequest, - opts: RequestOptions, - fn: AgentCallbackCallback -) => void; - -export default function promisify(fn: LegacyCallback): AgentCallbackPromise { - return function(this: Agent, req: ClientRequest, opts: RequestOptions) { - return new Promise((resolve, reject) => { - fn.call( - this, - req, - opts, - (err: Error | null | undefined, rtn?: AgentCallbackReturn) => { - if (err) { - reject(err); - } else { - resolve(rtn); - } - } - ); - }); - }; -} diff --git a/deps/npm/node_modules/agentkeepalive/index.d.ts b/deps/npm/node_modules/agentkeepalive/index.d.ts deleted file mode 100644 index c2ce7d207a64b3..00000000000000 --- a/deps/npm/node_modules/agentkeepalive/index.d.ts +++ /dev/null @@ -1,62 +0,0 @@ -import * as http from 'http'; -import * as https from 'https'; - -interface PlainObject { - [key: string]: any; -} - -declare class HttpAgent extends http.Agent { - constructor(opts?: AgentKeepAlive.HttpOptions); - readonly statusChanged: boolean; - createSocket(req: http.IncomingMessage, options: http.RequestOptions, cb: Function): void; - getCurrentStatus(): AgentKeepAlive.AgentStatus; -} - -interface Constants { - CURRENT_ID: Symbol; - CREATE_ID: Symbol; - INIT_SOCKET: Symbol; - CREATE_HTTPS_CONNECTION: Symbol; - SOCKET_CREATED_TIME: Symbol; - SOCKET_NAME: Symbol; - SOCKET_REQUEST_COUNT: Symbol; - SOCKET_REQUEST_FINISHED_COUNT: Symbol; -} - -declare class AgentKeepAlive extends HttpAgent {} - -declare namespace AgentKeepAlive { - export interface AgentStatus { - createSocketCount: number; - createSocketErrorCount: number; - closeSocketCount: number; - errorSocketCount: number; - timeoutSocketCount: number; - requestCount: number; - freeSockets: PlainObject; - sockets: PlainObject; - requests: PlainObject; - } - - interface CommonHttpOption { - keepAlive?: boolean | undefined; - freeSocketTimeout?: number | undefined; - freeSocketKeepAliveTimeout?: number | undefined; - timeout?: number | undefined; - socketActiveTTL?: number | undefined; - } - - export interface HttpOptions extends http.AgentOptions, CommonHttpOption { } - export interface HttpsOptions extends https.AgentOptions, CommonHttpOption { } - - export class HttpsAgent extends https.Agent { - constructor(opts?: HttpsOptions); - readonly statusChanged: boolean; - createSocket(req: http.IncomingMessage, options: http.RequestOptions, cb: Function): void; - getCurrentStatus(): AgentStatus; - } - - export const constants: Constants; -} - -export = AgentKeepAlive; diff --git a/deps/npm/node_modules/agentkeepalive/package.json b/deps/npm/node_modules/agentkeepalive/package.json index efa561d2c6d6c1..3115fee69a0416 100644 --- a/deps/npm/node_modules/agentkeepalive/package.json +++ b/deps/npm/node_modules/agentkeepalive/package.json @@ -1,6 +1,6 @@ { "name": "agentkeepalive", - "version": "4.2.1", + "version": "4.3.0", "description": "Missing keepalive http.Agent", "main": "index.js", "browser": "browser.js", @@ -11,12 +11,12 @@ "lib" ], "scripts": { + "contributor": "git-contributor", "test": "npm run lint && egg-bin test --full-trace", "test-local": "egg-bin test --full-trace", "cov": "cross-env DEBUG=agentkeepalive egg-bin cov --full-trace", "ci": "npm run lint && npm run cov", - "lint": "eslint lib test index.js", - "autod": "autod" + "lint": "eslint lib test index.js" }, "repository": { "type": "git", @@ -36,17 +36,16 @@ ], "dependencies": { "debug": "^4.1.0", - "depd": "^1.1.2", + "depd": "^2.0.0", "humanize-ms": "^1.2.1" }, "devDependencies": { - "autod": "^3.0.1", "coffee": "^5.3.0", "cross-env": "^6.0.3", "egg-bin": "^4.9.0", - "egg-ci": "^1.10.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" @@ -54,13 +53,6 @@ "engines": { "node": ">= 8.0.0" }, - "ci": { - "type": "github", - "os": { - "github": "linux" - }, - "version": "8, 10, 12, 14, 16" - }, - "author": "fengmk2 (https://fengmk2.com)", + "author": "fengmk2 (https://github.com/fengmk2)", "license": "MIT" } diff --git a/deps/npm/node_modules/aggregate-error/index.d.ts b/deps/npm/node_modules/aggregate-error/index.d.ts deleted file mode 100644 index 502bf7ad1d0dfb..00000000000000 --- a/deps/npm/node_modules/aggregate-error/index.d.ts +++ /dev/null @@ -1,51 +0,0 @@ -/** -Create an error from multiple errors. -*/ -declare class AggregateError extends Error implements Iterable { - readonly name: 'AggregateError'; - - /** - @param errors - If a string, a new `Error` is created with the string as the error message. If a non-Error object, a new `Error` is created with all properties from the object copied over. - @returns An Error that is also an [`Iterable`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators#Iterables) for the individual errors. - - @example - ``` - import AggregateError = require('aggregate-error'); - - const error = new AggregateError([new Error('foo'), 'bar', {message: 'baz'}]); - - throw error; - - // AggregateError: - // Error: foo - // at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:33) - // Error: bar - // at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13) - // Error: baz - // at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13) - // at AggregateError (/Users/sindresorhus/dev/aggregate-error/index.js:19:3) - // at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13) - // at Module._compile (module.js:556:32) - // at Object.Module._extensions..js (module.js:565:10) - // at Module.load (module.js:473:32) - // at tryModuleLoad (module.js:432:12) - // at Function.Module._load (module.js:424:3) - // at Module.runMain (module.js:590:10) - // at run (bootstrap_node.js:394:7) - // at startup (bootstrap_node.js:149:9) - - - for (const individualError of error) { - console.log(individualError); - } - //=> [Error: foo] - //=> [Error: bar] - //=> [Error: baz] - ``` - */ - constructor(errors: ReadonlyArray); - - [Symbol.iterator](): IterableIterator; -} - -export = AggregateError; diff --git a/deps/npm/node_modules/ansi-regex/index.d.ts b/deps/npm/node_modules/ansi-regex/index.d.ts deleted file mode 100644 index 2dbf6af2b6f3b5..00000000000000 --- a/deps/npm/node_modules/ansi-regex/index.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -declare namespace ansiRegex { - interface Options { - /** - Match only the first ANSI escape. - - @default false - */ - onlyFirst: boolean; - } -} - -/** -Regular expression for matching ANSI escape codes. - -@example -``` -import ansiRegex = require('ansi-regex'); - -ansiRegex().test('\u001B[4mcake\u001B[0m'); -//=> true - -ansiRegex().test('cake'); -//=> false - -'\u001B[4mcake\u001B[0m'.match(ansiRegex()); -//=> ['\u001B[4m', '\u001B[0m'] - -'\u001B[4mcake\u001B[0m'.match(ansiRegex({onlyFirst: true})); -//=> ['\u001B[4m'] - -'\u001B]8;;https://github.com\u0007click\u001B]8;;\u0007'.match(ansiRegex()); -//=> ['\u001B]8;;https://github.com\u0007', '\u001B]8;;\u0007'] -``` -*/ -declare function ansiRegex(options?: ansiRegex.Options): RegExp; - -export = ansiRegex; diff --git a/deps/npm/node_modules/ansi-styles/index.d.ts b/deps/npm/node_modules/ansi-styles/index.d.ts deleted file mode 100644 index 44a907e580f105..00000000000000 --- a/deps/npm/node_modules/ansi-styles/index.d.ts +++ /dev/null @@ -1,345 +0,0 @@ -declare type CSSColor = - | 'aliceblue' - | 'antiquewhite' - | 'aqua' - | 'aquamarine' - | 'azure' - | 'beige' - | 'bisque' - | 'black' - | 'blanchedalmond' - | 'blue' - | 'blueviolet' - | 'brown' - | 'burlywood' - | 'cadetblue' - | 'chartreuse' - | 'chocolate' - | 'coral' - | 'cornflowerblue' - | 'cornsilk' - | 'crimson' - | 'cyan' - | 'darkblue' - | 'darkcyan' - | 'darkgoldenrod' - | 'darkgray' - | 'darkgreen' - | 'darkgrey' - | 'darkkhaki' - | 'darkmagenta' - | 'darkolivegreen' - | 'darkorange' - | 'darkorchid' - | 'darkred' - | 'darksalmon' - | 'darkseagreen' - | 'darkslateblue' - | 'darkslategray' - | 'darkslategrey' - | 'darkturquoise' - | 'darkviolet' - | 'deeppink' - | 'deepskyblue' - | 'dimgray' - | 'dimgrey' - | 'dodgerblue' - | 'firebrick' - | 'floralwhite' - | 'forestgreen' - | 'fuchsia' - | 'gainsboro' - | 'ghostwhite' - | 'gold' - | 'goldenrod' - | 'gray' - | 'green' - | 'greenyellow' - | 'grey' - | 'honeydew' - | 'hotpink' - | 'indianred' - | 'indigo' - | 'ivory' - | 'khaki' - | 'lavender' - | 'lavenderblush' - | 'lawngreen' - | 'lemonchiffon' - | 'lightblue' - | 'lightcoral' - | 'lightcyan' - | 'lightgoldenrodyellow' - | 'lightgray' - | 'lightgreen' - | 'lightgrey' - | 'lightpink' - | 'lightsalmon' - | 'lightseagreen' - | 'lightskyblue' - | 'lightslategray' - | 'lightslategrey' - | 'lightsteelblue' - | 'lightyellow' - | 'lime' - | 'limegreen' - | 'linen' - | 'magenta' - | 'maroon' - | 'mediumaquamarine' - | 'mediumblue' - | 'mediumorchid' - | 'mediumpurple' - | 'mediumseagreen' - | 'mediumslateblue' - | 'mediumspringgreen' - | 'mediumturquoise' - | 'mediumvioletred' - | 'midnightblue' - | 'mintcream' - | 'mistyrose' - | 'moccasin' - | 'navajowhite' - | 'navy' - | 'oldlace' - | 'olive' - | 'olivedrab' - | 'orange' - | 'orangered' - | 'orchid' - | 'palegoldenrod' - | 'palegreen' - | 'paleturquoise' - | 'palevioletred' - | 'papayawhip' - | 'peachpuff' - | 'peru' - | 'pink' - | 'plum' - | 'powderblue' - | 'purple' - | 'rebeccapurple' - | 'red' - | 'rosybrown' - | 'royalblue' - | 'saddlebrown' - | 'salmon' - | 'sandybrown' - | 'seagreen' - | 'seashell' - | 'sienna' - | 'silver' - | 'skyblue' - | 'slateblue' - | 'slategray' - | 'slategrey' - | 'snow' - | 'springgreen' - | 'steelblue' - | 'tan' - | 'teal' - | 'thistle' - | 'tomato' - | 'turquoise' - | 'violet' - | 'wheat' - | 'white' - | 'whitesmoke' - | 'yellow' - | 'yellowgreen'; - -declare namespace ansiStyles { - interface ColorConvert { - /** - The RGB color space. - - @param red - (`0`-`255`) - @param green - (`0`-`255`) - @param blue - (`0`-`255`) - */ - rgb(red: number, green: number, blue: number): string; - - /** - The RGB HEX color space. - - @param hex - A hexadecimal string containing RGB data. - */ - hex(hex: string): string; - - /** - @param keyword - A CSS color name. - */ - keyword(keyword: CSSColor): string; - - /** - The HSL color space. - - @param hue - (`0`-`360`) - @param saturation - (`0`-`100`) - @param lightness - (`0`-`100`) - */ - hsl(hue: number, saturation: number, lightness: number): string; - - /** - The HSV color space. - - @param hue - (`0`-`360`) - @param saturation - (`0`-`100`) - @param value - (`0`-`100`) - */ - hsv(hue: number, saturation: number, value: number): string; - - /** - The HSV color space. - - @param hue - (`0`-`360`) - @param whiteness - (`0`-`100`) - @param blackness - (`0`-`100`) - */ - hwb(hue: number, whiteness: number, blackness: number): string; - - /** - Use a [4-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4-bit) to set text color. - */ - ansi(ansi: number): string; - - /** - Use an [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color. - */ - ansi256(ansi: number): string; - } - - interface CSPair { - /** - The ANSI terminal control sequence for starting this style. - */ - readonly open: string; - - /** - The ANSI terminal control sequence for ending this style. - */ - readonly close: string; - } - - interface ColorBase { - readonly ansi: ColorConvert; - readonly ansi256: ColorConvert; - readonly ansi16m: ColorConvert; - - /** - The ANSI terminal control sequence for ending this color. - */ - readonly close: string; - } - - interface Modifier { - /** - Resets the current color chain. - */ - readonly reset: CSPair; - - /** - Make text bold. - */ - readonly bold: CSPair; - - /** - Emitting only a small amount of light. - */ - readonly dim: CSPair; - - /** - Make text italic. (Not widely supported) - */ - readonly italic: CSPair; - - /** - Make text underline. (Not widely supported) - */ - readonly underline: CSPair; - - /** - Inverse background and foreground colors. - */ - readonly inverse: CSPair; - - /** - Prints the text, but makes it invisible. - */ - readonly hidden: CSPair; - - /** - Puts a horizontal line through the center of the text. (Not widely supported) - */ - readonly strikethrough: CSPair; - } - - interface ForegroundColor { - readonly black: CSPair; - readonly red: CSPair; - readonly green: CSPair; - readonly yellow: CSPair; - readonly blue: CSPair; - readonly cyan: CSPair; - readonly magenta: CSPair; - readonly white: CSPair; - - /** - Alias for `blackBright`. - */ - readonly gray: CSPair; - - /** - Alias for `blackBright`. - */ - readonly grey: CSPair; - - readonly blackBright: CSPair; - readonly redBright: CSPair; - readonly greenBright: CSPair; - readonly yellowBright: CSPair; - readonly blueBright: CSPair; - readonly cyanBright: CSPair; - readonly magentaBright: CSPair; - readonly whiteBright: CSPair; - } - - interface BackgroundColor { - readonly bgBlack: CSPair; - readonly bgRed: CSPair; - readonly bgGreen: CSPair; - readonly bgYellow: CSPair; - readonly bgBlue: CSPair; - readonly bgCyan: CSPair; - readonly bgMagenta: CSPair; - readonly bgWhite: CSPair; - - /** - Alias for `bgBlackBright`. - */ - readonly bgGray: CSPair; - - /** - Alias for `bgBlackBright`. - */ - readonly bgGrey: CSPair; - - readonly bgBlackBright: CSPair; - readonly bgRedBright: CSPair; - readonly bgGreenBright: CSPair; - readonly bgYellowBright: CSPair; - readonly bgBlueBright: CSPair; - readonly bgCyanBright: CSPair; - readonly bgMagentaBright: CSPair; - readonly bgWhiteBright: CSPair; - } -} - -declare const ansiStyles: { - readonly modifier: ansiStyles.Modifier; - readonly color: ansiStyles.ForegroundColor & ansiStyles.ColorBase; - readonly bgColor: ansiStyles.BackgroundColor & ansiStyles.ColorBase; - readonly codes: ReadonlyMap; -} & ansiStyles.BackgroundColor & ansiStyles.ForegroundColor & ansiStyles.Modifier; - -export = ansiStyles; diff --git a/deps/npm/node_modules/base64-js/index.d.ts b/deps/npm/node_modules/base64-js/index.d.ts deleted file mode 100644 index 7d9fa1d97cb668..00000000000000 --- a/deps/npm/node_modules/base64-js/index.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -export function byteLength(b64: string): number; -export function toByteArray(b64: string): Uint8Array; -export function fromByteArray(uint8: Uint8Array): string; diff --git a/deps/npm/node_modules/binary-extensions/binary-extensions.json.d.ts b/deps/npm/node_modules/binary-extensions/binary-extensions.json.d.ts deleted file mode 100644 index 94a248c2bcff7d..00000000000000 --- a/deps/npm/node_modules/binary-extensions/binary-extensions.json.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -declare const binaryExtensionsJson: readonly string[]; - -export = binaryExtensionsJson; diff --git a/deps/npm/node_modules/binary-extensions/index.d.ts b/deps/npm/node_modules/binary-extensions/index.d.ts deleted file mode 100644 index f469ac5fb0fe5f..00000000000000 --- a/deps/npm/node_modules/binary-extensions/index.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -/** -List of binary file extensions. - -@example -``` -import binaryExtensions = require('binary-extensions'); - -console.log(binaryExtensions); -//=> ['3ds', '3g2', …] -``` -*/ -declare const binaryExtensions: readonly string[]; - -export = binaryExtensions; diff --git a/deps/npm/node_modules/buffer/index.d.ts b/deps/npm/node_modules/buffer/index.d.ts deleted file mode 100644 index 07096a2f725aac..00000000000000 --- a/deps/npm/node_modules/buffer/index.d.ts +++ /dev/null @@ -1,194 +0,0 @@ -export class Buffer extends Uint8Array { - length: number - write(string: string, offset?: number, length?: number, encoding?: string): number; - toString(encoding?: string, start?: number, end?: number): string; - toJSON(): { type: 'Buffer', data: any[] }; - equals(otherBuffer: Buffer): boolean; - compare(otherBuffer: Uint8Array, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): number; - copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; - slice(start?: number, end?: number): Buffer; - writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number; - readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number; - readIntLE(offset: number, byteLength: number, noAssert?: boolean): number; - readIntBE(offset: number, byteLength: number, noAssert?: boolean): number; - readUInt8(offset: number, noAssert?: boolean): number; - readUInt16LE(offset: number, noAssert?: boolean): number; - readUInt16BE(offset: number, noAssert?: boolean): number; - readUInt32LE(offset: number, noAssert?: boolean): number; - readUInt32BE(offset: number, noAssert?: boolean): number; - readBigUInt64LE(offset: number): BigInt; - readBigUInt64BE(offset: number): BigInt; - readInt8(offset: number, noAssert?: boolean): number; - readInt16LE(offset: number, noAssert?: boolean): number; - readInt16BE(offset: number, noAssert?: boolean): number; - readInt32LE(offset: number, noAssert?: boolean): number; - readInt32BE(offset: number, noAssert?: boolean): number; - readBigInt64LE(offset: number): BigInt; - readBigInt64BE(offset: number): BigInt; - readFloatLE(offset: number, noAssert?: boolean): number; - readFloatBE(offset: number, noAssert?: boolean): number; - readDoubleLE(offset: number, noAssert?: boolean): number; - readDoubleBE(offset: number, noAssert?: boolean): number; - reverse(): this; - swap16(): Buffer; - swap32(): Buffer; - swap64(): Buffer; - writeUInt8(value: number, offset: number, noAssert?: boolean): number; - writeUInt16LE(value: number, offset: number, noAssert?: boolean): number; - writeUInt16BE(value: number, offset: number, noAssert?: boolean): number; - writeUInt32LE(value: number, offset: number, noAssert?: boolean): number; - writeUInt32BE(value: number, offset: number, noAssert?: boolean): number; - writeBigUInt64LE(value: number, offset: number): BigInt; - writeBigUInt64BE(value: number, offset: number): BigInt; - writeInt8(value: number, offset: number, noAssert?: boolean): number; - writeInt16LE(value: number, offset: number, noAssert?: boolean): number; - writeInt16BE(value: number, offset: number, noAssert?: boolean): number; - writeInt32LE(value: number, offset: number, noAssert?: boolean): number; - writeInt32BE(value: number, offset: number, noAssert?: boolean): number; - writeBigInt64LE(value: number, offset: number): BigInt; - writeBigInt64BE(value: number, offset: number): BigInt; - writeFloatLE(value: number, offset: number, noAssert?: boolean): number; - writeFloatBE(value: number, offset: number, noAssert?: boolean): number; - writeDoubleLE(value: number, offset: number, noAssert?: boolean): number; - writeDoubleBE(value: number, offset: number, noAssert?: boolean): number; - fill(value: any, offset?: number, end?: number): this; - indexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number; - lastIndexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number; - includes(value: string | number | Buffer, byteOffset?: number, encoding?: string): boolean; - - /** - * Allocates a new buffer containing the given {str}. - * - * @param str String to store in buffer. - * @param encoding encoding to use, optional. Default is 'utf8' - */ - constructor (str: string, encoding?: string); - /** - * Allocates a new buffer of {size} octets. - * - * @param size count of octets to allocate. - */ - constructor (size: number); - /** - * Allocates a new buffer containing the given {array} of octets. - * - * @param array The octets to store. - */ - constructor (array: Uint8Array); - /** - * Produces a Buffer backed by the same allocated memory as - * the given {ArrayBuffer}. - * - * - * @param arrayBuffer The ArrayBuffer with which to share memory. - */ - constructor (arrayBuffer: ArrayBuffer); - /** - * Allocates a new buffer containing the given {array} of octets. - * - * @param array The octets to store. - */ - constructor (array: any[]); - /** - * Copies the passed {buffer} data onto a new {Buffer} instance. - * - * @param buffer The buffer to copy. - */ - constructor (buffer: Buffer); - prototype: Buffer; - /** - * Allocates a new Buffer using an {array} of octets. - * - * @param array - */ - static from(array: any[]): Buffer; - /** - * When passed a reference to the .buffer property of a TypedArray instance, - * the newly created Buffer will share the same allocated memory as the TypedArray. - * The optional {byteOffset} and {length} arguments specify a memory range - * within the {arrayBuffer} that will be shared by the Buffer. - * - * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer() - * @param byteOffset - * @param length - */ - static from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?: number): Buffer; - /** - * Copies the passed {buffer} data onto a new Buffer instance. - * - * @param buffer - */ - static from(buffer: Buffer | Uint8Array): Buffer; - /** - * Creates a new Buffer containing the given JavaScript string {str}. - * If provided, the {encoding} parameter identifies the character encoding. - * If not provided, {encoding} defaults to 'utf8'. - * - * @param str - */ - static from(str: string, encoding?: string): Buffer; - /** - * Returns true if {obj} is a Buffer - * - * @param obj object to test. - */ - static isBuffer(obj: any): obj is Buffer; - /** - * Returns true if {encoding} is a valid encoding argument. - * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' - * - * @param encoding string to test. - */ - static isEncoding(encoding: string): boolean; - /** - * Gives the actual byte length of a string. encoding defaults to 'utf8'. - * This is not the same as String.prototype.length since that returns the number of characters in a string. - * - * @param string string to test. - * @param encoding encoding used to evaluate (defaults to 'utf8') - */ - static byteLength(string: string, encoding?: string): number; - /** - * Returns a buffer which is the result of concatenating all the buffers in the list together. - * - * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer. - * If the list has exactly one item, then the first item of the list is returned. - * If the list has more than one item, then a new Buffer is created. - * - * @param list An array of Buffer objects to concatenate - * @param totalLength Total length of the buffers when concatenated. - * If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly. - */ - static concat(list: Uint8Array[], totalLength?: number): Buffer; - /** - * The same as buf1.compare(buf2). - */ - static compare(buf1: Uint8Array, buf2: Uint8Array): number; - /** - * Allocates a new buffer of {size} octets. - * - * @param size count of octets to allocate. - * @param fill if specified, buffer will be initialized by calling buf.fill(fill). - * If parameter is omitted, buffer will be filled with zeros. - * @param encoding encoding used for call to buf.fill while initializing - */ - static alloc(size: number, fill?: string | Buffer | number, encoding?: string): Buffer; - /** - * Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents - * of the newly created Buffer are unknown and may contain sensitive data. - * - * @param size count of octets to allocate - */ - static allocUnsafe(size: number): Buffer; - /** - * Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents - * of the newly created Buffer are unknown and may contain sensitive data. - * - * @param size count of octets to allocate - */ - static allocUnsafeSlow(size: number): Buffer; -} diff --git a/deps/npm/node_modules/cacache/lib/util/glob.js b/deps/npm/node_modules/cacache/lib/util/glob.js index 8908a3aedb4ee9..38b5459c59b294 100644 --- a/deps/npm/node_modules/cacache/lib/util/glob.js +++ b/deps/npm/node_modules/cacache/lib/util/glob.js @@ -1,7 +1,6 @@ 'use strict' -const { promisify } = require('util') -const glob = promisify(require('glob')) +const glob = require('glob') const globify = (pattern) => pattern.split('//').join('/') module.exports = (path, options) => glob(globify(path), options) diff --git a/deps/npm/node_modules/cacache/package.json b/deps/npm/node_modules/cacache/package.json index 189a19bf315976..e3a0ab6a610039 100644 --- a/deps/npm/node_modules/cacache/package.json +++ b/deps/npm/node_modules/cacache/package.json @@ -1,6 +1,6 @@ { "name": "cacache", - "version": "17.0.4", + "version": "17.0.5", "cache-version": { "content": "2", "index": "5" @@ -47,7 +47,7 @@ "dependencies": { "@npmcli/fs": "^3.1.0", "fs-minipass": "^3.0.0", - "glob": "^8.0.1", + "glob": "^9.3.1", "lru-cache": "^7.7.1", "minipass": "^4.0.0", "minipass-collect": "^1.0.2", @@ -61,7 +61,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.0", + "@npmcli/template-oss": "4.12.0", "tap": "^16.0.0" }, "engines": { @@ -70,7 +70,7 @@ "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "windowsCI": false, - "version": "4.11.0" + "version": "4.12.0" }, "author": "GitHub Inc.", "tap": { diff --git a/deps/npm/node_modules/chalk/index.d.ts b/deps/npm/node_modules/chalk/index.d.ts deleted file mode 100644 index 9cd88f38beea87..00000000000000 --- a/deps/npm/node_modules/chalk/index.d.ts +++ /dev/null @@ -1,415 +0,0 @@ -/** -Basic foreground colors. - -[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support) -*/ -declare type ForegroundColor = - | 'black' - | 'red' - | 'green' - | 'yellow' - | 'blue' - | 'magenta' - | 'cyan' - | 'white' - | 'gray' - | 'grey' - | 'blackBright' - | 'redBright' - | 'greenBright' - | 'yellowBright' - | 'blueBright' - | 'magentaBright' - | 'cyanBright' - | 'whiteBright'; - -/** -Basic background colors. - -[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support) -*/ -declare type BackgroundColor = - | 'bgBlack' - | 'bgRed' - | 'bgGreen' - | 'bgYellow' - | 'bgBlue' - | 'bgMagenta' - | 'bgCyan' - | 'bgWhite' - | 'bgGray' - | 'bgGrey' - | 'bgBlackBright' - | 'bgRedBright' - | 'bgGreenBright' - | 'bgYellowBright' - | 'bgBlueBright' - | 'bgMagentaBright' - | 'bgCyanBright' - | 'bgWhiteBright'; - -/** -Basic colors. - -[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support) -*/ -declare type Color = ForegroundColor | BackgroundColor; - -declare type Modifiers = - | 'reset' - | 'bold' - | 'dim' - | 'italic' - | 'underline' - | 'inverse' - | 'hidden' - | 'strikethrough' - | 'visible'; - -declare namespace chalk { - /** - Levels: - - `0` - All colors disabled. - - `1` - Basic 16 colors support. - - `2` - ANSI 256 colors support. - - `3` - Truecolor 16 million colors support. - */ - type Level = 0 | 1 | 2 | 3; - - interface Options { - /** - Specify the color support for Chalk. - - By default, color support is automatically detected based on the environment. - - Levels: - - `0` - All colors disabled. - - `1` - Basic 16 colors support. - - `2` - ANSI 256 colors support. - - `3` - Truecolor 16 million colors support. - */ - level?: Level; - } - - /** - Return a new Chalk instance. - */ - type Instance = new (options?: Options) => Chalk; - - /** - Detect whether the terminal supports color. - */ - interface ColorSupport { - /** - The color level used by Chalk. - */ - level: Level; - - /** - Return whether Chalk supports basic 16 colors. - */ - hasBasic: boolean; - - /** - Return whether Chalk supports ANSI 256 colors. - */ - has256: boolean; - - /** - Return whether Chalk supports Truecolor 16 million colors. - */ - has16m: boolean; - } - - interface ChalkFunction { - /** - Use a template string. - - @remarks Template literals are unsupported for nested calls (see [issue #341](https://github.com/chalk/chalk/issues/341)) - - @example - ``` - import chalk = require('chalk'); - - log(chalk` - CPU: {red ${cpu.totalPercent}%} - RAM: {green ${ram.used / ram.total * 100}%} - DISK: {rgb(255,131,0) ${disk.used / disk.total * 100}%} - `); - ``` - - @example - ``` - import chalk = require('chalk'); - - log(chalk.red.bgBlack`2 + 3 = {bold ${2 + 3}}`) - ``` - */ - (text: TemplateStringsArray, ...placeholders: unknown[]): string; - - (...text: unknown[]): string; - } - - interface Chalk extends ChalkFunction { - /** - Return a new Chalk instance. - */ - Instance: Instance; - - /** - The color support for Chalk. - - By default, color support is automatically detected based on the environment. - - Levels: - - `0` - All colors disabled. - - `1` - Basic 16 colors support. - - `2` - ANSI 256 colors support. - - `3` - Truecolor 16 million colors support. - */ - level: Level; - - /** - Use HEX value to set text color. - - @param color - Hexadecimal value representing the desired color. - - @example - ``` - import chalk = require('chalk'); - - chalk.hex('#DEADED'); - ``` - */ - hex(color: string): Chalk; - - /** - Use keyword color value to set text color. - - @param color - Keyword value representing the desired color. - - @example - ``` - import chalk = require('chalk'); - - chalk.keyword('orange'); - ``` - */ - keyword(color: string): Chalk; - - /** - Use RGB values to set text color. - */ - rgb(red: number, green: number, blue: number): Chalk; - - /** - Use HSL values to set text color. - */ - hsl(hue: number, saturation: number, lightness: number): Chalk; - - /** - Use HSV values to set text color. - */ - hsv(hue: number, saturation: number, value: number): Chalk; - - /** - Use HWB values to set text color. - */ - hwb(hue: number, whiteness: number, blackness: number): Chalk; - - /** - Use a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set text color. - - 30 <= code && code < 38 || 90 <= code && code < 98 - For example, 31 for red, 91 for redBright. - */ - ansi(code: number): Chalk; - - /** - Use a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color. - */ - ansi256(index: number): Chalk; - - /** - Use HEX value to set background color. - - @param color - Hexadecimal value representing the desired color. - - @example - ``` - import chalk = require('chalk'); - - chalk.bgHex('#DEADED'); - ``` - */ - bgHex(color: string): Chalk; - - /** - Use keyword color value to set background color. - - @param color - Keyword value representing the desired color. - - @example - ``` - import chalk = require('chalk'); - - chalk.bgKeyword('orange'); - ``` - */ - bgKeyword(color: string): Chalk; - - /** - Use RGB values to set background color. - */ - bgRgb(red: number, green: number, blue: number): Chalk; - - /** - Use HSL values to set background color. - */ - bgHsl(hue: number, saturation: number, lightness: number): Chalk; - - /** - Use HSV values to set background color. - */ - bgHsv(hue: number, saturation: number, value: number): Chalk; - - /** - Use HWB values to set background color. - */ - bgHwb(hue: number, whiteness: number, blackness: number): Chalk; - - /** - Use a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set background color. - - 30 <= code && code < 38 || 90 <= code && code < 98 - For example, 31 for red, 91 for redBright. - Use the foreground code, not the background code (for example, not 41, nor 101). - */ - bgAnsi(code: number): Chalk; - - /** - Use a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set background color. - */ - bgAnsi256(index: number): Chalk; - - /** - Modifier: Resets the current color chain. - */ - readonly reset: Chalk; - - /** - Modifier: Make text bold. - */ - readonly bold: Chalk; - - /** - Modifier: Emitting only a small amount of light. - */ - readonly dim: Chalk; - - /** - Modifier: Make text italic. (Not widely supported) - */ - readonly italic: Chalk; - - /** - Modifier: Make text underline. (Not widely supported) - */ - readonly underline: Chalk; - - /** - Modifier: Inverse background and foreground colors. - */ - readonly inverse: Chalk; - - /** - Modifier: Prints the text, but makes it invisible. - */ - readonly hidden: Chalk; - - /** - Modifier: Puts a horizontal line through the center of the text. (Not widely supported) - */ - readonly strikethrough: Chalk; - - /** - Modifier: Prints the text only when Chalk has a color support level > 0. - Can be useful for things that are purely cosmetic. - */ - readonly visible: Chalk; - - readonly black: Chalk; - readonly red: Chalk; - readonly green: Chalk; - readonly yellow: Chalk; - readonly blue: Chalk; - readonly magenta: Chalk; - readonly cyan: Chalk; - readonly white: Chalk; - - /* - Alias for `blackBright`. - */ - readonly gray: Chalk; - - /* - Alias for `blackBright`. - */ - readonly grey: Chalk; - - readonly blackBright: Chalk; - readonly redBright: Chalk; - readonly greenBright: Chalk; - readonly yellowBright: Chalk; - readonly blueBright: Chalk; - readonly magentaBright: Chalk; - readonly cyanBright: Chalk; - readonly whiteBright: Chalk; - - readonly bgBlack: Chalk; - readonly bgRed: Chalk; - readonly bgGreen: Chalk; - readonly bgYellow: Chalk; - readonly bgBlue: Chalk; - readonly bgMagenta: Chalk; - readonly bgCyan: Chalk; - readonly bgWhite: Chalk; - - /* - Alias for `bgBlackBright`. - */ - readonly bgGray: Chalk; - - /* - Alias for `bgBlackBright`. - */ - readonly bgGrey: Chalk; - - readonly bgBlackBright: Chalk; - readonly bgRedBright: Chalk; - readonly bgGreenBright: Chalk; - readonly bgYellowBright: Chalk; - readonly bgBlueBright: Chalk; - readonly bgMagentaBright: Chalk; - readonly bgCyanBright: Chalk; - readonly bgWhiteBright: Chalk; - } -} - -/** -Main Chalk object that allows to chain styles together. -Call the last one as a method with a string argument. -Order doesn't matter, and later styles take precedent in case of a conflict. -This simply means that `chalk.red.yellow.green` is equivalent to `chalk.green`. -*/ -declare const chalk: chalk.Chalk & chalk.ChalkFunction & { - supportsColor: chalk.ColorSupport | false; - Level: chalk.Level; - Color: Color; - ForegroundColor: ForegroundColor; - BackgroundColor: BackgroundColor; - Modifiers: Modifiers; - stderr: chalk.Chalk & {supportsColor: chalk.ColorSupport | false}; -}; - -export = chalk; diff --git a/deps/npm/node_modules/ci-info/index.d.ts b/deps/npm/node_modules/ci-info/index.d.ts deleted file mode 100644 index 8aebdcf25858d2..00000000000000 --- a/deps/npm/node_modules/ci-info/index.d.ts +++ /dev/null @@ -1,75 +0,0 @@ -// This file is generated at pre-commit by running `node create-typings.js`. - -/** - * Returns a boolean. Will be `true` if the code is running on a CI server, - * otherwise `false`. - * - * Some CI servers not listed here might still trigger the `ci.isCI` - * boolean to be set to `true` if they use certain vendor neutral environment - * variables. In those cases `ci.name` will be `null` and no vendor specific - * boolean will be set to `true`. - */ -export const isCI: boolean; -/** - * Returns a boolean if PR detection is supported for the current CI server. - * Will be `true` if a PR is being tested, otherwise `false`. If PR detection is - * not supported for the current CI server, the value will be `null`. - */ -export const isPR: boolean | null; -/** - * Returns a string containing name of the CI server the code is running on. If - * CI server is not detected, it returns `null`. - * - * Don't depend on the value of this string not to change for a specific vendor. - * If you find your self writing `ci.name === 'Travis CI'`, you most likely want - * to use `ci.TRAVIS` instead. - */ -export const name: string | null; - -export const APPCIRCLE: boolean; -export const APPVEYOR: boolean; -export const CODEBUILD: boolean; -export const AZURE_PIPELINES: boolean; -export const BAMBOO: boolean; -export const BITBUCKET: boolean; -export const BITRISE: boolean; -export const BUDDY: boolean; -export const BUILDKITE: boolean; -export const CIRCLE: boolean; -export const CIRRUS: boolean; -export const CODEFRESH: boolean; -export const CODEMAGIC: boolean; -export const CODESHIP: boolean; -export const DRONE: boolean; -export const DSARI: boolean; -export const EAS: boolean; -export const GERRIT: boolean; -export const GITHUB_ACTIONS: boolean; -export const GITLAB: boolean; -export const GOCD: boolean; -export const GOOGLE_CLOUD_BUILD: boolean; -export const HARNESS: boolean; -export const HEROKU: boolean; -export const HUDSON: boolean; -export const JENKINS: boolean; -export const LAYERCI: boolean; -export const MAGNUM: boolean; -export const NETLIFY: boolean; -export const NEVERCODE: boolean; -export const RELEASEHUB: boolean; -export const RENDER: boolean; -export const SAIL: boolean; -export const SCREWDRIVER: boolean; -export const SEMAPHORE: boolean; -export const SHIPPABLE: boolean; -export const SOLANO: boolean; -export const SOURCEHUT: boolean; -export const STRIDER: boolean; -export const TASKCLUSTER: boolean; -export const TEAMCITY: boolean; -export const TRAVIS: boolean; -export const VERCEL: boolean; -export const APPCENTER: boolean; -export const WOODPECKER: boolean; -export const XCODE_CLOUD: boolean; -export const XCODE_SERVER: boolean; diff --git a/deps/npm/node_modules/cidr-regex/index.d.ts b/deps/npm/node_modules/cidr-regex/index.d.ts deleted file mode 100644 index 9099caecc8e2a2..00000000000000 --- a/deps/npm/node_modules/cidr-regex/index.d.ts +++ /dev/null @@ -1,55 +0,0 @@ -declare namespace ip { - interface Options { - /** - Only match an exact string. Useful with `RegExp#test()` to check if a string is a CIDR IP address. *(`false` matches any CIDR IP address in a string)* - - @default false - */ - readonly exact?: boolean; - } -} - -declare const ip: { - /** - Regular expression for matching IP addresses in CIDR notation. - - @returns A regex for matching both IPv4 and IPv6 CIDR IP addresses. - - @example - ``` - import cidrRegex = require("cidr-regex"); - - // Contains a CIDR IP address? - cidrRegex().test("foo 192.168.0.1/24"); - //=> true - - // Is a CIDR IP address? - cidrRegex({exact: true}).test("foo 192.168.0.1/24"); - //=> false - - "foo 192.168.0.1/24 bar 1:2:3:4:5:6:7:8/64 baz".match(cidrRegex()); - //=> ["192.168.0.1/24", "1:2:3:4:5:6:7:8/64"] - ``` - */ - (options?: ip.Options): RegExp; - - /** - @returns A regex for matching IPv4 CIDR IP addresses. - */ - v4(options?: ip.Options): RegExp; - - /** - @returns A regex for matching IPv6 CIDR IP addresses. - - @example - ``` - import cidrRegex = require("cidr-regex"); - - cidrRegex.v6({exact: true}).test("1:2:3:4:5:6:7:8/64"); - //=> true - ``` - */ - v6(options?: ip.Options): RegExp; -}; - -export = ip; diff --git a/deps/npm/node_modules/clean-stack/index.d.ts b/deps/npm/node_modules/clean-stack/index.d.ts deleted file mode 100644 index ed5899509419c1..00000000000000 --- a/deps/npm/node_modules/clean-stack/index.d.ts +++ /dev/null @@ -1,47 +0,0 @@ -declare namespace cleanStack { - interface Options { - /** - Prettify the file paths in the stack: - - `/Users/sindresorhus/dev/clean-stack/unicorn.js:2:15` → `~/dev/clean-stack/unicorn.js:2:15` - - @default false - */ - readonly pretty?: boolean; - } -} - -/** -Clean up error stack traces. Removes the mostly unhelpful internal Node.js entries. - -@param stack - The `stack` property of an `Error`. - -@example -``` -import cleanStack = require('clean-stack'); - -const error = new Error('Missing unicorn'); - -console.log(error.stack); - -// Error: Missing unicorn -// at Object. (/Users/sindresorhus/dev/clean-stack/unicorn.js:2:15) -// at Module._compile (module.js:409:26) -// at Object.Module._extensions..js (module.js:416:10) -// at Module.load (module.js:343:32) -// at Function.Module._load (module.js:300:12) -// at Function.Module.runMain (module.js:441:10) -// at startup (node.js:139:18) - -console.log(cleanStack(error.stack)); - -// Error: Missing unicorn -// at Object. (/Users/sindresorhus/dev/clean-stack/unicorn.js:2:15) -``` -*/ -declare function cleanStack( - stack: string, - options?: cleanStack.Options -): string; - -export = cleanStack; diff --git a/deps/npm/node_modules/cli-table3/index.d.ts b/deps/npm/node_modules/cli-table3/index.d.ts deleted file mode 100644 index 16980f848cc8ec..00000000000000 --- a/deps/npm/node_modules/cli-table3/index.d.ts +++ /dev/null @@ -1,93 +0,0 @@ -declare namespace CliTable3 { - type CharName = - "top" | - "top-mid" | - "top-left" | - "top-right" | - "bottom" | - "bottom-mid" | - "bottom-left" | - "bottom-right" | - "left" | - "left-mid" | - "mid" | - "mid-mid" | - "right" | - "right-mid" | - "middle"; - - type HorizontalAlignment = "left" | "center" | "right"; - type VerticalAlignment = "top" | "center" | "bottom"; - - interface TableOptions { - truncate: string; - colWidths: Array; - rowHeights: Array; - colAligns: HorizontalAlignment[]; - rowAligns: VerticalAlignment[]; - head: string[]; - wordWrap: boolean; - wrapOnWordBoundary: boolean; - } - - interface TableInstanceOptions extends TableOptions { - chars: Record; - style: { - "padding-left": number; - "padding-right": number; - head: string[]; - border: string[]; - compact: boolean; - }; - } - - interface TableConstructorOptions extends Partial { - chars?: Partial>; - style?: Partial; - } - - type CellValue = boolean | number | string | null | undefined; - - interface CellOptions { - content: CellValue; - chars?: Partial>; - truncate?: string; - colSpan?: number; - rowSpan?: number; - hAlign?: HorizontalAlignment; - vAlign?: VerticalAlignment; - style?: { - "padding-left"?: number; - "padding-right"?: number; - head?: string[]; - border?: string[]; - }; - } - - interface GenericTable extends Array { - options: TableInstanceOptions; - readonly width: number; - } - - type Table = GenericTable; - type Cell = CellValue | CellOptions; - - type HorizontalTableRow = Cell[]; - - interface VerticalTableRow { - [name: string]: Cell; - } - - interface CrossTableRow { - [name: string]: Cell[]; - } -} - -interface CliTable3 { - new (options?: CliTable3.TableConstructorOptions): CliTable3.Table; - readonly prototype: CliTable3.Table; -} - -declare const CliTable3: CliTable3; - -export = CliTable3; diff --git a/deps/npm/node_modules/depd/History.md b/deps/npm/node_modules/depd/History.md index 507ecb8de21d5d..cd9ebaaa9963f7 100644 --- a/deps/npm/node_modules/depd/History.md +++ b/deps/npm/node_modules/depd/History.md @@ -1,3 +1,10 @@ +2.0.0 / 2018-10-26 +================== + + * Drop support for Node.js 0.6 + * Replace internal `eval` usage with `Function` constructor + * Use instance methods on `process` to check for listeners + 1.1.2 / 2018-01-11 ================== diff --git a/deps/npm/node_modules/depd/LICENSE b/deps/npm/node_modules/depd/LICENSE index 84441fbb570926..248de7af2bd16c 100644 --- a/deps/npm/node_modules/depd/LICENSE +++ b/deps/npm/node_modules/depd/LICENSE @@ -1,6 +1,6 @@ (The MIT License) -Copyright (c) 2014-2017 Douglas Christopher Wilson +Copyright (c) 2014-2018 Douglas Christopher Wilson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/deps/npm/node_modules/depd/index.js b/deps/npm/node_modules/depd/index.js index d758d3c8f58a60..1bf2fcfdeffc98 100644 --- a/deps/npm/node_modules/depd/index.js +++ b/deps/npm/node_modules/depd/index.js @@ -1,6 +1,6 @@ /*! * depd - * Copyright(c) 2014-2017 Douglas Christopher Wilson + * Copyright(c) 2014-2018 Douglas Christopher Wilson * MIT Licensed */ @@ -8,8 +8,6 @@ * Module dependencies. */ -var callSiteToString = require('./lib/compat').callSiteToString -var eventListenerCount = require('./lib/compat').eventListenerCount var relative = require('path').relative /** @@ -92,7 +90,7 @@ function createStackString (stack) { } for (var i = 0; i < stack.length; i++) { - str += '\n at ' + callSiteToString(stack[i]) + str += '\n at ' + stack[i].toString() } return str @@ -128,12 +126,31 @@ function depd (namespace) { return deprecate } +/** + * Determine if event emitter has listeners of a given type. + * + * The way to do this check is done three different ways in Node.js >= 0.8 + * so this consolidates them into a minimal set using instance methods. + * + * @param {EventEmitter} emitter + * @param {string} type + * @returns {boolean} + * @private + */ + +function eehaslisteners (emitter, type) { + var count = typeof emitter.listenerCount !== 'function' + ? emitter.listeners(type).length + : emitter.listenerCount(type) + + return count > 0 +} + /** * Determine if namespace is ignored. */ function isignored (namespace) { - /* istanbul ignore next: tested in a child processs */ if (process.noDeprecation) { // --no-deprecation support return true @@ -150,7 +167,6 @@ function isignored (namespace) { */ function istraced (namespace) { - /* istanbul ignore next: tested in a child processs */ if (process.traceDeprecation) { // --trace-deprecation support return true @@ -167,7 +183,7 @@ function istraced (namespace) { */ function log (message, site) { - var haslisteners = eventListenerCount(process, 'deprecation') !== 0 + var haslisteners = eehaslisteners(process, 'deprecation') // abort early if no destination if (!haslisteners && this._ignored) { @@ -310,7 +326,7 @@ function formatPlain (msg, caller, stack) { // add stack trace if (this._traced) { for (var i = 0; i < stack.length; i++) { - formatted += '\n at ' + callSiteToString(stack[i]) + formatted += '\n at ' + stack[i].toString() } return formatted @@ -335,7 +351,7 @@ function formatColor (msg, caller, stack) { // add stack trace if (this._traced) { for (var i = 0; i < stack.length; i++) { - formatted += '\n \x1b[36mat ' + callSiteToString(stack[i]) + '\x1b[39m' // cyan + formatted += '\n \x1b[36mat ' + stack[i].toString() + '\x1b[39m' // cyan } return formatted @@ -400,18 +416,18 @@ function wrapfunction (fn, message) { } var args = createArgumentsString(fn.length) - var deprecate = this // eslint-disable-line no-unused-vars var stack = getStack() var site = callSiteLocation(stack[1]) site.name = fn.name - // eslint-disable-next-line no-eval - var deprecatedfn = eval('(function (' + args + ') {\n' + + // eslint-disable-next-line no-new-func + var deprecatedfn = new Function('fn', 'log', 'deprecate', 'message', 'site', '"use strict"\n' + + 'return function (' + args + ') {' + 'log.call(deprecate, message, site)\n' + 'return fn.apply(this, arguments)\n' + - '})') + '}')(fn, log, this, message, site) return deprecatedfn } diff --git a/deps/npm/node_modules/depd/lib/compat/callsite-tostring.js b/deps/npm/node_modules/depd/lib/compat/callsite-tostring.js deleted file mode 100644 index 73186dc644a366..00000000000000 --- a/deps/npm/node_modules/depd/lib/compat/callsite-tostring.js +++ /dev/null @@ -1,103 +0,0 @@ -/*! - * depd - * Copyright(c) 2014 Douglas Christopher Wilson - * MIT Licensed - */ - -'use strict' - -/** - * Module exports. - */ - -module.exports = callSiteToString - -/** - * Format a CallSite file location to a string. - */ - -function callSiteFileLocation (callSite) { - var fileName - var fileLocation = '' - - if (callSite.isNative()) { - fileLocation = 'native' - } else if (callSite.isEval()) { - fileName = callSite.getScriptNameOrSourceURL() - if (!fileName) { - fileLocation = callSite.getEvalOrigin() - } - } else { - fileName = callSite.getFileName() - } - - if (fileName) { - fileLocation += fileName - - var lineNumber = callSite.getLineNumber() - if (lineNumber != null) { - fileLocation += ':' + lineNumber - - var columnNumber = callSite.getColumnNumber() - if (columnNumber) { - fileLocation += ':' + columnNumber - } - } - } - - return fileLocation || 'unknown source' -} - -/** - * Format a CallSite to a string. - */ - -function callSiteToString (callSite) { - var addSuffix = true - var fileLocation = callSiteFileLocation(callSite) - var functionName = callSite.getFunctionName() - var isConstructor = callSite.isConstructor() - var isMethodCall = !(callSite.isToplevel() || isConstructor) - var line = '' - - if (isMethodCall) { - var methodName = callSite.getMethodName() - var typeName = getConstructorName(callSite) - - if (functionName) { - if (typeName && functionName.indexOf(typeName) !== 0) { - line += typeName + '.' - } - - line += functionName - - if (methodName && functionName.lastIndexOf('.' + methodName) !== functionName.length - methodName.length - 1) { - line += ' [as ' + methodName + ']' - } - } else { - line += typeName + '.' + (methodName || '') - } - } else if (isConstructor) { - line += 'new ' + (functionName || '') - } else if (functionName) { - line += functionName - } else { - addSuffix = false - line += fileLocation - } - - if (addSuffix) { - line += ' (' + fileLocation + ')' - } - - return line -} - -/** - * Get constructor name of reviver. - */ - -function getConstructorName (obj) { - var receiver = obj.receiver - return (receiver.constructor && receiver.constructor.name) || null -} diff --git a/deps/npm/node_modules/depd/lib/compat/event-listener-count.js b/deps/npm/node_modules/depd/lib/compat/event-listener-count.js deleted file mode 100644 index 3a8925d136ae6e..00000000000000 --- a/deps/npm/node_modules/depd/lib/compat/event-listener-count.js +++ /dev/null @@ -1,22 +0,0 @@ -/*! - * depd - * Copyright(c) 2015 Douglas Christopher Wilson - * MIT Licensed - */ - -'use strict' - -/** - * Module exports. - * @public - */ - -module.exports = eventListenerCount - -/** - * Get the count of listeners on an event emitter of a specific type. - */ - -function eventListenerCount (emitter, type) { - return emitter.listeners(type).length -} diff --git a/deps/npm/node_modules/depd/lib/compat/index.js b/deps/npm/node_modules/depd/lib/compat/index.js deleted file mode 100644 index 955b3336b25e79..00000000000000 --- a/deps/npm/node_modules/depd/lib/compat/index.js +++ /dev/null @@ -1,79 +0,0 @@ -/*! - * depd - * Copyright(c) 2014-2015 Douglas Christopher Wilson - * MIT Licensed - */ - -'use strict' - -/** - * Module dependencies. - * @private - */ - -var EventEmitter = require('events').EventEmitter - -/** - * Module exports. - * @public - */ - -lazyProperty(module.exports, 'callSiteToString', function callSiteToString () { - var limit = Error.stackTraceLimit - var obj = {} - var prep = Error.prepareStackTrace - - function prepareObjectStackTrace (obj, stack) { - return stack - } - - Error.prepareStackTrace = prepareObjectStackTrace - Error.stackTraceLimit = 2 - - // capture the stack - Error.captureStackTrace(obj) - - // slice the stack - var stack = obj.stack.slice() - - Error.prepareStackTrace = prep - Error.stackTraceLimit = limit - - return stack[0].toString ? toString : require('./callsite-tostring') -}) - -lazyProperty(module.exports, 'eventListenerCount', function eventListenerCount () { - return EventEmitter.listenerCount || require('./event-listener-count') -}) - -/** - * Define a lazy property. - */ - -function lazyProperty (obj, prop, getter) { - function get () { - var val = getter() - - Object.defineProperty(obj, prop, { - configurable: true, - enumerable: true, - value: val - }) - - return val - } - - Object.defineProperty(obj, prop, { - configurable: true, - enumerable: true, - get: get - }) -} - -/** - * Call toString() on the obj - */ - -function toString (obj) { - return obj.toString() -} diff --git a/deps/npm/node_modules/depd/package.json b/deps/npm/node_modules/depd/package.json index 5e3c863216e40f..3857e199184a0a 100644 --- a/deps/npm/node_modules/depd/package.json +++ b/deps/npm/node_modules/depd/package.json @@ -1,7 +1,7 @@ { "name": "depd", "description": "Deprecate all the things", - "version": "1.1.2", + "version": "2.0.0", "author": "Douglas Christopher Wilson ", "license": "MIT", "keywords": [ @@ -13,13 +13,17 @@ "devDependencies": { "benchmark": "2.1.4", "beautify-benchmark": "0.2.4", - "eslint": "3.19.0", - "eslint-config-standard": "7.1.0", + "eslint": "5.7.0", + "eslint-config-standard": "12.0.0", + "eslint-plugin-import": "2.14.0", "eslint-plugin-markdown": "1.0.0-beta.7", - "eslint-plugin-promise": "3.6.0", - "eslint-plugin-standard": "3.0.1", + "eslint-plugin-node": "7.0.1", + "eslint-plugin-promise": "4.0.1", + "eslint-plugin-standard": "4.0.0", "istanbul": "0.4.5", - "mocha": "~1.21.5" + "mocha": "5.2.0", + "safe-buffer": "5.1.2", + "uid-safe": "2.1.5" }, "files": [ "lib/", @@ -29,13 +33,13 @@ "Readme.md" ], "engines": { - "node": ">= 0.6" + "node": ">= 0.8" }, "scripts": { "bench": "node benchmark/index.js", "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --reporter spec --bail test/", - "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --no-exit test/", - "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/" + "test-ci": "istanbul cover --print=none node_modules/mocha/bin/_mocha -- --reporter spec test/ && istanbul report lcovonly text-summary", + "test-cov": "istanbul cover --print=none node_modules/mocha/bin/_mocha -- --reporter dot test/ && istanbul report lcov text-summary" } } diff --git a/deps/npm/node_modules/emoji-regex/index.d.ts b/deps/npm/node_modules/emoji-regex/index.d.ts deleted file mode 100644 index 1955b4704ecfc9..00000000000000 --- a/deps/npm/node_modules/emoji-regex/index.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -declare module 'emoji-regex' { - function emojiRegex(): RegExp; - - export default emojiRegex; -} - -declare module 'emoji-regex/text' { - function emojiRegex(): RegExp; - - export default emojiRegex; -} - -declare module 'emoji-regex/es2015' { - function emojiRegex(): RegExp; - - export default emojiRegex; -} - -declare module 'emoji-regex/es2015/text' { - function emojiRegex(): RegExp; - - export default emojiRegex; -} diff --git a/deps/npm/node_modules/env-paths/index.d.ts b/deps/npm/node_modules/env-paths/index.d.ts deleted file mode 100644 index 277ddc0a183c97..00000000000000 --- a/deps/npm/node_modules/env-paths/index.d.ts +++ /dev/null @@ -1,101 +0,0 @@ -declare namespace envPaths { - export interface Options { - /** - __Don't use this option unless you really have to!__ - - Suffix appended to the project name to avoid name conflicts with native apps. Pass an empty string to disable it. - - @default 'nodejs' - */ - readonly suffix?: string; - } - - export interface Paths { - /** - Directory for data files. - - Example locations (with the default `nodejs` suffix): - - - macOS: `~/Library/Application Support/MyApp-nodejs` - - Windows: `%LOCALAPPDATA%\MyApp-nodejs\Data` (for example, `C:\Users\USERNAME\AppData\Local\MyApp-nodejs\Data`) - - Linux: `~/.local/share/MyApp-nodejs` (or `$XDG_DATA_HOME/MyApp-nodejs`) - */ - readonly data: string; - - /** - Directory for data files. - - Example locations (with the default `nodejs` suffix): - - - macOS: `~/Library/Preferences/MyApp-nodejs` - - Windows: `%APPDATA%\MyApp-nodejs\Config` (for example, `C:\Users\USERNAME\AppData\Roaming\MyApp-nodejs\Config`) - - Linux: `~/.config/MyApp-nodejs` (or `$XDG_CONFIG_HOME/MyApp-nodejs`) - */ - readonly config: string; - - /** - Directory for non-essential data files. - - Example locations (with the default `nodejs` suffix): - - - macOS: `~/Library/Caches/MyApp-nodejs` - - Windows: `%LOCALAPPDATA%\MyApp-nodejs\Cache` (for example, `C:\Users\USERNAME\AppData\Local\MyApp-nodejs\Cache`) - - Linux: `~/.cache/MyApp-nodejs` (or `$XDG_CACHE_HOME/MyApp-nodejs`) - */ - readonly cache: string; - - /** - Directory for log files. - - Example locations (with the default `nodejs` suffix): - - - macOS: `~/Library/Logs/MyApp-nodejs` - - Windows: `%LOCALAPPDATA%\MyApp-nodejs\Log` (for example, `C:\Users\USERNAME\AppData\Local\MyApp-nodejs\Log`) - - Linux: `~/.local/state/MyApp-nodejs` (or `$XDG_STATE_HOME/MyApp-nodejs`) - */ - readonly log: string; - - /** - Directory for temporary files. - - Example locations (with the default `nodejs` suffix): - - - macOS: `/var/folders/jf/f2twvvvs5jl_m49tf034ffpw0000gn/T/MyApp-nodejs` - - Windows: `%LOCALAPPDATA%\Temp\MyApp-nodejs` (for example, `C:\Users\USERNAME\AppData\Local\Temp\MyApp-nodejs`) - - Linux: `/tmp/USERNAME/MyApp-nodejs` - */ - readonly temp: string; - } -} - -declare const envPaths: { - /** - Get paths for storing things like data, config, cache, etc. - - Note: It only generates the path strings. It doesn't create the directories for you. You could use [`make-dir`](https://github.com/sindresorhus/make-dir) to create the directories. - - @param name - Name of your project. Used to generate the paths. - @returns The paths to use for your project on current OS. - - @example - ``` - import envPaths = require('env-paths'); - - const paths = envPaths('MyApp'); - - paths.data; - //=> '/home/sindresorhus/.local/share/MyApp-nodejs' - - paths.config - //=> '/home/sindresorhus/.config/MyApp-nodejs' - ``` - */ - (name: string, options?: envPaths.Options): envPaths.Paths; - - // TODO: Remove this for the next major release, refactor the whole definition to: - // declare function envPaths(name: string, options?: envPaths.Options): envPaths.Paths; - // export = envPaths; - default: typeof envPaths; -}; - -export = envPaths; diff --git a/deps/npm/node_modules/event-target-shim/dist/event-target-shim.js.map b/deps/npm/node_modules/event-target-shim/dist/event-target-shim.js.map deleted file mode 100644 index 83c5f626aa6705..00000000000000 --- a/deps/npm/node_modules/event-target-shim/dist/event-target-shim.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"event-target-shim.js","sources":["../src/event.mjs","../src/event-target.mjs"],"sourcesContent":["/**\n * @typedef {object} PrivateData\n * @property {EventTarget} eventTarget The event target.\n * @property {{type:string}} event The original event object.\n * @property {number} eventPhase The current event phase.\n * @property {EventTarget|null} currentTarget The current event target.\n * @property {boolean} canceled The flag to prevent default.\n * @property {boolean} stopped The flag to stop propagation.\n * @property {boolean} immediateStopped The flag to stop propagation immediately.\n * @property {Function|null} passiveListener The listener if the current listener is passive. Otherwise this is null.\n * @property {number} timeStamp The unix time.\n * @private\n */\n\n/**\n * Private data for event wrappers.\n * @type {WeakMap}\n * @private\n */\nconst privateData = new WeakMap()\n\n/**\n * Cache for wrapper classes.\n * @type {WeakMap}\n * @private\n */\nconst wrappers = new WeakMap()\n\n/**\n * Get private data.\n * @param {Event} event The event object to get private data.\n * @returns {PrivateData} The private data of the event.\n * @private\n */\nfunction pd(event) {\n const retv = privateData.get(event)\n console.assert(\n retv != null,\n \"'this' is expected an Event object, but got\",\n event\n )\n return retv\n}\n\n/**\n * https://dom.spec.whatwg.org/#set-the-canceled-flag\n * @param data {PrivateData} private data.\n */\nfunction setCancelFlag(data) {\n if (data.passiveListener != null) {\n if (\n typeof console !== \"undefined\" &&\n typeof console.error === \"function\"\n ) {\n console.error(\n \"Unable to preventDefault inside passive event listener invocation.\",\n data.passiveListener\n )\n }\n return\n }\n if (!data.event.cancelable) {\n return\n }\n\n data.canceled = true\n if (typeof data.event.preventDefault === \"function\") {\n data.event.preventDefault()\n }\n}\n\n/**\n * @see https://dom.spec.whatwg.org/#interface-event\n * @private\n */\n/**\n * The event wrapper.\n * @constructor\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Event|{type:string}} event The original event to wrap.\n */\nfunction Event(eventTarget, event) {\n privateData.set(this, {\n eventTarget,\n event,\n eventPhase: 2,\n currentTarget: eventTarget,\n canceled: false,\n stopped: false,\n immediateStopped: false,\n passiveListener: null,\n timeStamp: event.timeStamp || Date.now(),\n })\n\n // https://heycam.github.io/webidl/#Unforgeable\n Object.defineProperty(this, \"isTrusted\", { value: false, enumerable: true })\n\n // Define accessors\n const keys = Object.keys(event)\n for (let i = 0; i < keys.length; ++i) {\n const key = keys[i]\n if (!(key in this)) {\n Object.defineProperty(this, key, defineRedirectDescriptor(key))\n }\n }\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEvent.prototype = {\n /**\n * The type of this event.\n * @type {string}\n */\n get type() {\n return pd(this).event.type\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n */\n get target() {\n return pd(this).eventTarget\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n */\n get currentTarget() {\n return pd(this).currentTarget\n },\n\n /**\n * @returns {EventTarget[]} The composed path of this event.\n */\n composedPath() {\n const currentTarget = pd(this).currentTarget\n if (currentTarget == null) {\n return []\n }\n return [currentTarget]\n },\n\n /**\n * Constant of NONE.\n * @type {number}\n */\n get NONE() {\n return 0\n },\n\n /**\n * Constant of CAPTURING_PHASE.\n * @type {number}\n */\n get CAPTURING_PHASE() {\n return 1\n },\n\n /**\n * Constant of AT_TARGET.\n * @type {number}\n */\n get AT_TARGET() {\n return 2\n },\n\n /**\n * Constant of BUBBLING_PHASE.\n * @type {number}\n */\n get BUBBLING_PHASE() {\n return 3\n },\n\n /**\n * The target of this event.\n * @type {number}\n */\n get eventPhase() {\n return pd(this).eventPhase\n },\n\n /**\n * Stop event bubbling.\n * @returns {void}\n */\n stopPropagation() {\n const data = pd(this)\n\n data.stopped = true\n if (typeof data.event.stopPropagation === \"function\") {\n data.event.stopPropagation()\n }\n },\n\n /**\n * Stop event bubbling.\n * @returns {void}\n */\n stopImmediatePropagation() {\n const data = pd(this)\n\n data.stopped = true\n data.immediateStopped = true\n if (typeof data.event.stopImmediatePropagation === \"function\") {\n data.event.stopImmediatePropagation()\n }\n },\n\n /**\n * The flag to be bubbling.\n * @type {boolean}\n */\n get bubbles() {\n return Boolean(pd(this).event.bubbles)\n },\n\n /**\n * The flag to be cancelable.\n * @type {boolean}\n */\n get cancelable() {\n return Boolean(pd(this).event.cancelable)\n },\n\n /**\n * Cancel this event.\n * @returns {void}\n */\n preventDefault() {\n setCancelFlag(pd(this))\n },\n\n /**\n * The flag to indicate cancellation state.\n * @type {boolean}\n */\n get defaultPrevented() {\n return pd(this).canceled\n },\n\n /**\n * The flag to be composed.\n * @type {boolean}\n */\n get composed() {\n return Boolean(pd(this).event.composed)\n },\n\n /**\n * The unix time of this event.\n * @type {number}\n */\n get timeStamp() {\n return pd(this).timeStamp\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n * @deprecated\n */\n get srcElement() {\n return pd(this).eventTarget\n },\n\n /**\n * The flag to stop event bubbling.\n * @type {boolean}\n * @deprecated\n */\n get cancelBubble() {\n return pd(this).stopped\n },\n set cancelBubble(value) {\n if (!value) {\n return\n }\n const data = pd(this)\n\n data.stopped = true\n if (typeof data.event.cancelBubble === \"boolean\") {\n data.event.cancelBubble = true\n }\n },\n\n /**\n * The flag to indicate cancellation state.\n * @type {boolean}\n * @deprecated\n */\n get returnValue() {\n return !pd(this).canceled\n },\n set returnValue(value) {\n if (!value) {\n setCancelFlag(pd(this))\n }\n },\n\n /**\n * Initialize this event object. But do nothing under event dispatching.\n * @param {string} type The event type.\n * @param {boolean} [bubbles=false] The flag to be possible to bubble up.\n * @param {boolean} [cancelable=false] The flag to be possible to cancel.\n * @deprecated\n */\n initEvent() {\n // Do nothing.\n },\n}\n\n// `constructor` is not enumerable.\nObject.defineProperty(Event.prototype, \"constructor\", {\n value: Event,\n configurable: true,\n writable: true,\n})\n\n// Ensure `event instanceof window.Event` is `true`.\nif (typeof window !== \"undefined\" && typeof window.Event !== \"undefined\") {\n Object.setPrototypeOf(Event.prototype, window.Event.prototype)\n\n // Make association for wrappers.\n wrappers.set(window.Event.prototype, Event)\n}\n\n/**\n * Get the property descriptor to redirect a given property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to redirect the property.\n * @private\n */\nfunction defineRedirectDescriptor(key) {\n return {\n get() {\n return pd(this).event[key]\n },\n set(value) {\n pd(this).event[key] = value\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Get the property descriptor to call a given method property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to call the method property.\n * @private\n */\nfunction defineCallDescriptor(key) {\n return {\n value() {\n const event = pd(this).event\n return event[key].apply(event, arguments)\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Define new wrapper class.\n * @param {Function} BaseEvent The base wrapper class.\n * @param {Object} proto The prototype of the original event.\n * @returns {Function} The defined wrapper class.\n * @private\n */\nfunction defineWrapper(BaseEvent, proto) {\n const keys = Object.keys(proto)\n if (keys.length === 0) {\n return BaseEvent\n }\n\n /** CustomEvent */\n function CustomEvent(eventTarget, event) {\n BaseEvent.call(this, eventTarget, event)\n }\n\n CustomEvent.prototype = Object.create(BaseEvent.prototype, {\n constructor: { value: CustomEvent, configurable: true, writable: true },\n })\n\n // Define accessors.\n for (let i = 0; i < keys.length; ++i) {\n const key = keys[i]\n if (!(key in BaseEvent.prototype)) {\n const descriptor = Object.getOwnPropertyDescriptor(proto, key)\n const isFunc = typeof descriptor.value === \"function\"\n Object.defineProperty(\n CustomEvent.prototype,\n key,\n isFunc\n ? defineCallDescriptor(key)\n : defineRedirectDescriptor(key)\n )\n }\n }\n\n return CustomEvent\n}\n\n/**\n * Get the wrapper class of a given prototype.\n * @param {Object} proto The prototype of the original event to get its wrapper.\n * @returns {Function} The wrapper class.\n * @private\n */\nfunction getWrapper(proto) {\n if (proto == null || proto === Object.prototype) {\n return Event\n }\n\n let wrapper = wrappers.get(proto)\n if (wrapper == null) {\n wrapper = defineWrapper(getWrapper(Object.getPrototypeOf(proto)), proto)\n wrappers.set(proto, wrapper)\n }\n return wrapper\n}\n\n/**\n * Wrap a given event to management a dispatching.\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Object} event The event to wrap.\n * @returns {Event} The wrapper instance.\n * @private\n */\nexport function wrapEvent(eventTarget, event) {\n const Wrapper = getWrapper(Object.getPrototypeOf(event))\n return new Wrapper(eventTarget, event)\n}\n\n/**\n * Get the immediateStopped flag of a given event.\n * @param {Event} event The event to get.\n * @returns {boolean} The flag to stop propagation immediately.\n * @private\n */\nexport function isStopped(event) {\n return pd(event).immediateStopped\n}\n\n/**\n * Set the current event phase of a given event.\n * @param {Event} event The event to set current target.\n * @param {number} eventPhase New event phase.\n * @returns {void}\n * @private\n */\nexport function setEventPhase(event, eventPhase) {\n pd(event).eventPhase = eventPhase\n}\n\n/**\n * Set the current target of a given event.\n * @param {Event} event The event to set current target.\n * @param {EventTarget|null} currentTarget New current target.\n * @returns {void}\n * @private\n */\nexport function setCurrentTarget(event, currentTarget) {\n pd(event).currentTarget = currentTarget\n}\n\n/**\n * Set a passive listener of a given event.\n * @param {Event} event The event to set current target.\n * @param {Function|null} passiveListener New passive listener.\n * @returns {void}\n * @private\n */\nexport function setPassiveListener(event, passiveListener) {\n pd(event).passiveListener = passiveListener\n}\n","import {\n isStopped,\n setCurrentTarget,\n setEventPhase,\n setPassiveListener,\n wrapEvent,\n} from \"./event.mjs\"\n\n/**\n * @typedef {object} ListenerNode\n * @property {Function} listener\n * @property {1|2|3} listenerType\n * @property {boolean} passive\n * @property {boolean} once\n * @property {ListenerNode|null} next\n * @private\n */\n\n/**\n * @type {WeakMap>}\n * @private\n */\nconst listenersMap = new WeakMap()\n\n// Listener types\nconst CAPTURE = 1\nconst BUBBLE = 2\nconst ATTRIBUTE = 3\n\n/**\n * Check whether a given value is an object or not.\n * @param {any} x The value to check.\n * @returns {boolean} `true` if the value is an object.\n */\nfunction isObject(x) {\n return x !== null && typeof x === \"object\" //eslint-disable-line no-restricted-syntax\n}\n\n/**\n * Get listeners.\n * @param {EventTarget} eventTarget The event target to get.\n * @returns {Map} The listeners.\n * @private\n */\nfunction getListeners(eventTarget) {\n const listeners = listenersMap.get(eventTarget)\n if (listeners == null) {\n throw new TypeError(\n \"'this' is expected an EventTarget object, but got another value.\"\n )\n }\n return listeners\n}\n\n/**\n * Get the property descriptor for the event attribute of a given event.\n * @param {string} eventName The event name to get property descriptor.\n * @returns {PropertyDescriptor} The property descriptor.\n * @private\n */\nfunction defineEventAttributeDescriptor(eventName) {\n return {\n get() {\n const listeners = getListeners(this)\n let node = listeners.get(eventName)\n while (node != null) {\n if (node.listenerType === ATTRIBUTE) {\n return node.listener\n }\n node = node.next\n }\n return null\n },\n\n set(listener) {\n if (typeof listener !== \"function\" && !isObject(listener)) {\n listener = null // eslint-disable-line no-param-reassign\n }\n const listeners = getListeners(this)\n\n // Traverse to the tail while removing old value.\n let prev = null\n let node = listeners.get(eventName)\n while (node != null) {\n if (node.listenerType === ATTRIBUTE) {\n // Remove old value.\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n } else {\n prev = node\n }\n\n node = node.next\n }\n\n // Add new value.\n if (listener !== null) {\n const newNode = {\n listener,\n listenerType: ATTRIBUTE,\n passive: false,\n once: false,\n next: null,\n }\n if (prev === null) {\n listeners.set(eventName, newNode)\n } else {\n prev.next = newNode\n }\n }\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Define an event attribute (e.g. `eventTarget.onclick`).\n * @param {Object} eventTargetPrototype The event target prototype to define an event attrbite.\n * @param {string} eventName The event name to define.\n * @returns {void}\n */\nfunction defineEventAttribute(eventTargetPrototype, eventName) {\n Object.defineProperty(\n eventTargetPrototype,\n `on${eventName}`,\n defineEventAttributeDescriptor(eventName)\n )\n}\n\n/**\n * Define a custom EventTarget with event attributes.\n * @param {string[]} eventNames Event names for event attributes.\n * @returns {EventTarget} The custom EventTarget.\n * @private\n */\nfunction defineCustomEventTarget(eventNames) {\n /** CustomEventTarget */\n function CustomEventTarget() {\n EventTarget.call(this)\n }\n\n CustomEventTarget.prototype = Object.create(EventTarget.prototype, {\n constructor: {\n value: CustomEventTarget,\n configurable: true,\n writable: true,\n },\n })\n\n for (let i = 0; i < eventNames.length; ++i) {\n defineEventAttribute(CustomEventTarget.prototype, eventNames[i])\n }\n\n return CustomEventTarget\n}\n\n/**\n * EventTarget.\n *\n * - This is constructor if no arguments.\n * - This is a function which returns a CustomEventTarget constructor if there are arguments.\n *\n * For example:\n *\n * class A extends EventTarget {}\n * class B extends EventTarget(\"message\") {}\n * class C extends EventTarget(\"message\", \"error\") {}\n * class D extends EventTarget([\"message\", \"error\"]) {}\n */\nfunction EventTarget() {\n /*eslint-disable consistent-return */\n if (this instanceof EventTarget) {\n listenersMap.set(this, new Map())\n return\n }\n if (arguments.length === 1 && Array.isArray(arguments[0])) {\n return defineCustomEventTarget(arguments[0])\n }\n if (arguments.length > 0) {\n const types = new Array(arguments.length)\n for (let i = 0; i < arguments.length; ++i) {\n types[i] = arguments[i]\n }\n return defineCustomEventTarget(types)\n }\n throw new TypeError(\"Cannot call a class as a function\")\n /*eslint-enable consistent-return */\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEventTarget.prototype = {\n /**\n * Add a given listener to this event target.\n * @param {string} eventName The event name to add.\n * @param {Function} listener The listener to add.\n * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n * @returns {void}\n */\n addEventListener(eventName, listener, options) {\n if (listener == null) {\n return\n }\n if (typeof listener !== \"function\" && !isObject(listener)) {\n throw new TypeError(\"'listener' should be a function or an object.\")\n }\n\n const listeners = getListeners(this)\n const optionsIsObj = isObject(options)\n const capture = optionsIsObj\n ? Boolean(options.capture)\n : Boolean(options)\n const listenerType = capture ? CAPTURE : BUBBLE\n const newNode = {\n listener,\n listenerType,\n passive: optionsIsObj && Boolean(options.passive),\n once: optionsIsObj && Boolean(options.once),\n next: null,\n }\n\n // Set it as the first node if the first node is null.\n let node = listeners.get(eventName)\n if (node === undefined) {\n listeners.set(eventName, newNode)\n return\n }\n\n // Traverse to the tail while checking duplication..\n let prev = null\n while (node != null) {\n if (\n node.listener === listener &&\n node.listenerType === listenerType\n ) {\n // Should ignore duplication.\n return\n }\n prev = node\n node = node.next\n }\n\n // Add it.\n prev.next = newNode\n },\n\n /**\n * Remove a given listener from this event target.\n * @param {string} eventName The event name to remove.\n * @param {Function} listener The listener to remove.\n * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n * @returns {void}\n */\n removeEventListener(eventName, listener, options) {\n if (listener == null) {\n return\n }\n\n const listeners = getListeners(this)\n const capture = isObject(options)\n ? Boolean(options.capture)\n : Boolean(options)\n const listenerType = capture ? CAPTURE : BUBBLE\n\n let prev = null\n let node = listeners.get(eventName)\n while (node != null) {\n if (\n node.listener === listener &&\n node.listenerType === listenerType\n ) {\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n return\n }\n\n prev = node\n node = node.next\n }\n },\n\n /**\n * Dispatch a given event.\n * @param {Event|{type:string}} event The event to dispatch.\n * @returns {boolean} `false` if canceled.\n */\n dispatchEvent(event) {\n if (event == null || typeof event.type !== \"string\") {\n throw new TypeError('\"event.type\" should be a string.')\n }\n\n // If listeners aren't registered, terminate.\n const listeners = getListeners(this)\n const eventName = event.type\n let node = listeners.get(eventName)\n if (node == null) {\n return true\n }\n\n // Since we cannot rewrite several properties, so wrap object.\n const wrappedEvent = wrapEvent(this, event)\n\n // This doesn't process capturing phase and bubbling phase.\n // This isn't participating in a tree.\n let prev = null\n while (node != null) {\n // Remove this listener if it's once\n if (node.once) {\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n } else {\n prev = node\n }\n\n // Call this listener\n setPassiveListener(\n wrappedEvent,\n node.passive ? node.listener : null\n )\n if (typeof node.listener === \"function\") {\n try {\n node.listener.call(this, wrappedEvent)\n } catch (err) {\n if (\n typeof console !== \"undefined\" &&\n typeof console.error === \"function\"\n ) {\n console.error(err)\n }\n }\n } else if (\n node.listenerType !== ATTRIBUTE &&\n typeof node.listener.handleEvent === \"function\"\n ) {\n node.listener.handleEvent(wrappedEvent)\n }\n\n // Break if `event.stopImmediatePropagation` was called.\n if (isStopped(wrappedEvent)) {\n break\n }\n\n node = node.next\n }\n setPassiveListener(wrappedEvent, null)\n setEventPhase(wrappedEvent, 0)\n setCurrentTarget(wrappedEvent, null)\n\n return !wrappedEvent.defaultPrevented\n },\n}\n\n// `constructor` is not enumerable.\nObject.defineProperty(EventTarget.prototype, \"constructor\", {\n value: EventTarget,\n configurable: true,\n writable: true,\n})\n\n// Ensure `eventTarget instanceof window.EventTarget` is `true`.\nif (\n typeof window !== \"undefined\" &&\n typeof window.EventTarget !== \"undefined\"\n) {\n Object.setPrototypeOf(EventTarget.prototype, window.EventTarget.prototype)\n}\n\nexport { defineEventAttribute, EventTarget }\nexport default EventTarget\n"],"names":[],"mappings":";;;;;;;;;AAAA;;;;;;;;;;;;;;;;;;;AAmBA,MAAM,WAAW,GAAG,IAAI,OAAO,GAAE;;;;;;;AAOjC,MAAM,QAAQ,GAAG,IAAI,OAAO,GAAE;;;;;;;;AAQ9B,SAAS,EAAE,CAAC,KAAK,EAAE;IACf,MAAM,IAAI,GAAG,WAAW,CAAC,GAAG,CAAC,KAAK,EAAC;IACnC,OAAO,CAAC,MAAM;QACV,IAAI,IAAI,IAAI;QACZ,6CAA6C;QAC7C,KAAK;MACR;IACD,OAAO,IAAI;CACd;;;;;;AAMD,SAAS,aAAa,CAAC,IAAI,EAAE;IACzB,IAAI,IAAI,CAAC,eAAe,IAAI,IAAI,EAAE;QAC9B;YACI,OAAO,OAAO,KAAK,WAAW;YAC9B,OAAO,OAAO,CAAC,KAAK,KAAK,UAAU;UACrC;YACE,OAAO,CAAC,KAAK;gBACT,oEAAoE;gBACpE,IAAI,CAAC,eAAe;cACvB;SACJ;QACD,MAAM;KACT;IACD,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE;QACxB,MAAM;KACT;;IAED,IAAI,CAAC,QAAQ,GAAG,KAAI;IACpB,IAAI,OAAO,IAAI,CAAC,KAAK,CAAC,cAAc,KAAK,UAAU,EAAE;QACjD,IAAI,CAAC,KAAK,CAAC,cAAc,GAAE;KAC9B;CACJ;;;;;;;;;;;;AAYD,SAAS,KAAK,CAAC,WAAW,EAAE,KAAK,EAAE;IAC/B,WAAW,CAAC,GAAG,CAAC,IAAI,EAAE;QAClB,WAAW;QACX,KAAK;QACL,UAAU,EAAE,CAAC;QACb,aAAa,EAAE,WAAW;QAC1B,QAAQ,EAAE,KAAK;QACf,OAAO,EAAE,KAAK;QACd,gBAAgB,EAAE,KAAK;QACvB,eAAe,EAAE,IAAI;QACrB,SAAS,EAAE,KAAK,CAAC,SAAS,IAAI,IAAI,CAAC,GAAG,EAAE;KAC3C,EAAC;;;IAGF,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,IAAI,EAAE,EAAC;;;IAG5E,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,EAAC;IAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QAClC,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,EAAC;QACnB,IAAI,EAAE,GAAG,IAAI,IAAI,CAAC,EAAE;YAChB,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,wBAAwB,CAAC,GAAG,CAAC,EAAC;SAClE;KACJ;CACJ;;;AAGD,KAAK,CAAC,SAAS,GAAG;;;;;IAKd,IAAI,IAAI,GAAG;QACP,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI;KAC7B;;;;;;IAMD,IAAI,MAAM,GAAG;QACT,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,WAAW;KAC9B;;;;;;IAMD,IAAI,aAAa,GAAG;QAChB,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,aAAa;KAChC;;;;;IAKD,YAAY,GAAG;QACX,MAAM,aAAa,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC,cAAa;QAC5C,IAAI,aAAa,IAAI,IAAI,EAAE;YACvB,OAAO,EAAE;SACZ;QACD,OAAO,CAAC,aAAa,CAAC;KACzB;;;;;;IAMD,IAAI,IAAI,GAAG;QACP,OAAO,CAAC;KACX;;;;;;IAMD,IAAI,eAAe,GAAG;QAClB,OAAO,CAAC;KACX;;;;;;IAMD,IAAI,SAAS,GAAG;QACZ,OAAO,CAAC;KACX;;;;;;IAMD,IAAI,cAAc,GAAG;QACjB,OAAO,CAAC;KACX;;;;;;IAMD,IAAI,UAAU,GAAG;QACb,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,UAAU;KAC7B;;;;;;IAMD,eAAe,GAAG;QACd,MAAM,IAAI,GAAG,EAAE,CAAC,IAAI,EAAC;;QAErB,IAAI,CAAC,OAAO,GAAG,KAAI;QACnB,IAAI,OAAO,IAAI,CAAC,KAAK,CAAC,eAAe,KAAK,UAAU,EAAE;YAClD,IAAI,CAAC,KAAK,CAAC,eAAe,GAAE;SAC/B;KACJ;;;;;;IAMD,wBAAwB,GAAG;QACvB,MAAM,IAAI,GAAG,EAAE,CAAC,IAAI,EAAC;;QAErB,IAAI,CAAC,OAAO,GAAG,KAAI;QACnB,IAAI,CAAC,gBAAgB,GAAG,KAAI;QAC5B,IAAI,OAAO,IAAI,CAAC,KAAK,CAAC,wBAAwB,KAAK,UAAU,EAAE;YAC3D,IAAI,CAAC,KAAK,CAAC,wBAAwB,GAAE;SACxC;KACJ;;;;;;IAMD,IAAI,OAAO,GAAG;QACV,OAAO,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC;KACzC;;;;;;IAMD,IAAI,UAAU,GAAG;QACb,OAAO,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC;KAC5C;;;;;;IAMD,cAAc,GAAG;QACb,aAAa,CAAC,EAAE,CAAC,IAAI,CAAC,EAAC;KAC1B;;;;;;IAMD,IAAI,gBAAgB,GAAG;QACnB,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,QAAQ;KAC3B;;;;;;IAMD,IAAI,QAAQ,GAAG;QACX,OAAO,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC;KAC1C;;;;;;IAMD,IAAI,SAAS,GAAG;QACZ,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,SAAS;KAC5B;;;;;;;IAOD,IAAI,UAAU,GAAG;QACb,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,WAAW;KAC9B;;;;;;;IAOD,IAAI,YAAY,GAAG;QACf,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,OAAO;KAC1B;IACD,IAAI,YAAY,CAAC,KAAK,EAAE;QACpB,IAAI,CAAC,KAAK,EAAE;YACR,MAAM;SACT;QACD,MAAM,IAAI,GAAG,EAAE,CAAC,IAAI,EAAC;;QAErB,IAAI,CAAC,OAAO,GAAG,KAAI;QACnB,IAAI,OAAO,IAAI,CAAC,KAAK,CAAC,YAAY,KAAK,SAAS,EAAE;YAC9C,IAAI,CAAC,KAAK,CAAC,YAAY,GAAG,KAAI;SACjC;KACJ;;;;;;;IAOD,IAAI,WAAW,GAAG;QACd,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,QAAQ;KAC5B;IACD,IAAI,WAAW,CAAC,KAAK,EAAE;QACnB,IAAI,CAAC,KAAK,EAAE;YACR,aAAa,CAAC,EAAE,CAAC,IAAI,CAAC,EAAC;SAC1B;KACJ;;;;;;;;;IASD,SAAS,GAAG;;KAEX;EACJ;;;AAGD,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,SAAS,EAAE,aAAa,EAAE;IAClD,KAAK,EAAE,KAAK;IACZ,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;CACjB,EAAC;;;AAGF,IAAI,OAAO,MAAM,KAAK,WAAW,IAAI,OAAO,MAAM,CAAC,KAAK,KAAK,WAAW,EAAE;IACtE,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,SAAS,EAAE,MAAM,CAAC,KAAK,CAAC,SAAS,EAAC;;;IAG9D,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,KAAK,EAAC;CAC9C;;;;;;;;AAQD,SAAS,wBAAwB,CAAC,GAAG,EAAE;IACnC,OAAO;QACH,GAAG,GAAG;YACF,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC;SAC7B;QACD,GAAG,CAAC,KAAK,EAAE;YACP,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,MAAK;SAC9B;QACD,YAAY,EAAE,IAAI;QAClB,UAAU,EAAE,IAAI;KACnB;CACJ;;;;;;;;AAQD,SAAS,oBAAoB,CAAC,GAAG,EAAE;IAC/B,OAAO;QACH,KAAK,GAAG;YACJ,MAAM,KAAK,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC,MAAK;YAC5B,OAAO,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,SAAS,CAAC;SAC5C;QACD,YAAY,EAAE,IAAI;QAClB,UAAU,EAAE,IAAI;KACnB;CACJ;;;;;;;;;AASD,SAAS,aAAa,CAAC,SAAS,EAAE,KAAK,EAAE;IACrC,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,EAAC;IAC/B,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE;QACnB,OAAO,SAAS;KACnB;;;IAGD,SAAS,WAAW,CAAC,WAAW,EAAE,KAAK,EAAE;QACrC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,EAAC;KAC3C;;IAED,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,SAAS,EAAE;QACvD,WAAW,EAAE,EAAE,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE;KAC1E,EAAC;;;IAGF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QAClC,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,EAAC;QACnB,IAAI,EAAE,GAAG,IAAI,SAAS,CAAC,SAAS,CAAC,EAAE;YAC/B,MAAM,UAAU,GAAG,MAAM,CAAC,wBAAwB,CAAC,KAAK,EAAE,GAAG,EAAC;YAC9D,MAAM,MAAM,GAAG,OAAO,UAAU,CAAC,KAAK,KAAK,WAAU;YACrD,MAAM,CAAC,cAAc;gBACjB,WAAW,CAAC,SAAS;gBACrB,GAAG;gBACH,MAAM;sBACA,oBAAoB,CAAC,GAAG,CAAC;sBACzB,wBAAwB,CAAC,GAAG,CAAC;cACtC;SACJ;KACJ;;IAED,OAAO,WAAW;CACrB;;;;;;;;AAQD,SAAS,UAAU,CAAC,KAAK,EAAE;IACvB,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,KAAK,MAAM,CAAC,SAAS,EAAE;QAC7C,OAAO,KAAK;KACf;;IAED,IAAI,OAAO,GAAG,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAC;IACjC,IAAI,OAAO,IAAI,IAAI,EAAE;QACjB,OAAO,GAAG,aAAa,CAAC,UAAU,CAAC,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,EAAC;QACxE,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAE,OAAO,EAAC;KAC/B;IACD,OAAO,OAAO;CACjB;;;;;;;;;AASD,AAAO,SAAS,SAAS,CAAC,WAAW,EAAE,KAAK,EAAE;IAC1C,MAAM,OAAO,GAAG,UAAU,CAAC,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,EAAC;IACxD,OAAO,IAAI,OAAO,CAAC,WAAW,EAAE,KAAK,CAAC;CACzC;;;;;;;;AAQD,AAAO,SAAS,SAAS,CAAC,KAAK,EAAE;IAC7B,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC,gBAAgB;CACpC;;;;;;;;;AASD,AAAO,SAAS,aAAa,CAAC,KAAK,EAAE,UAAU,EAAE;IAC7C,EAAE,CAAC,KAAK,CAAC,CAAC,UAAU,GAAG,WAAU;CACpC;;;;;;;;;AASD,AAAO,SAAS,gBAAgB,CAAC,KAAK,EAAE,aAAa,EAAE;IACnD,EAAE,CAAC,KAAK,CAAC,CAAC,aAAa,GAAG,cAAa;CAC1C;;;;;;;;;AASD,AAAO,SAAS,kBAAkB,CAAC,KAAK,EAAE,eAAe,EAAE;IACvD,EAAE,CAAC,KAAK,CAAC,CAAC,eAAe,GAAG,gBAAe;CAC9C;;ACtdD;;;;;;;;;;;;;;AAcA,MAAM,YAAY,GAAG,IAAI,OAAO,GAAE;;;AAGlC,MAAM,OAAO,GAAG,EAAC;AACjB,MAAM,MAAM,GAAG,EAAC;AAChB,MAAM,SAAS,GAAG,EAAC;;;;;;;AAOnB,SAAS,QAAQ,CAAC,CAAC,EAAE;IACjB,OAAO,CAAC,KAAK,IAAI,IAAI,OAAO,CAAC,KAAK,QAAQ;CAC7C;;;;;;;;AAQD,SAAS,YAAY,CAAC,WAAW,EAAE;IAC/B,MAAM,SAAS,GAAG,YAAY,CAAC,GAAG,CAAC,WAAW,EAAC;IAC/C,IAAI,SAAS,IAAI,IAAI,EAAE;QACnB,MAAM,IAAI,SAAS;YACf,kEAAkE;SACrE;KACJ;IACD,OAAO,SAAS;CACnB;;;;;;;;AAQD,SAAS,8BAA8B,CAAC,SAAS,EAAE;IAC/C,OAAO;QACH,GAAG,GAAG;YACF,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;YACpC,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;YACnC,OAAO,IAAI,IAAI,IAAI,EAAE;gBACjB,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,EAAE;oBACjC,OAAO,IAAI,CAAC,QAAQ;iBACvB;gBACD,IAAI,GAAG,IAAI,CAAC,KAAI;aACnB;YACD,OAAO,IAAI;SACd;;QAED,GAAG,CAAC,QAAQ,EAAE;YACV,IAAI,OAAO,QAAQ,KAAK,UAAU,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBACvD,QAAQ,GAAG,KAAI;aAClB;YACD,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;;;YAGpC,IAAI,IAAI,GAAG,KAAI;YACf,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;YACnC,OAAO,IAAI,IAAI,IAAI,EAAE;gBACjB,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,EAAE;;oBAEjC,IAAI,IAAI,KAAK,IAAI,EAAE;wBACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAI;qBACxB,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,IAAI,EAAE;wBAC3B,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,EAAC;qBACtC,MAAM;wBACH,SAAS,CAAC,MAAM,CAAC,SAAS,EAAC;qBAC9B;iBACJ,MAAM;oBACH,IAAI,GAAG,KAAI;iBACd;;gBAED,IAAI,GAAG,IAAI,CAAC,KAAI;aACnB;;;YAGD,IAAI,QAAQ,KAAK,IAAI,EAAE;gBACnB,MAAM,OAAO,GAAG;oBACZ,QAAQ;oBACR,YAAY,EAAE,SAAS;oBACvB,OAAO,EAAE,KAAK;oBACd,IAAI,EAAE,KAAK;oBACX,IAAI,EAAE,IAAI;kBACb;gBACD,IAAI,IAAI,KAAK,IAAI,EAAE;oBACf,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,EAAC;iBACpC,MAAM;oBACH,IAAI,CAAC,IAAI,GAAG,QAAO;iBACtB;aACJ;SACJ;QACD,YAAY,EAAE,IAAI;QAClB,UAAU,EAAE,IAAI;KACnB;CACJ;;;;;;;;AAQD,SAAS,oBAAoB,CAAC,oBAAoB,EAAE,SAAS,EAAE;IAC3D,MAAM,CAAC,cAAc;QACjB,oBAAoB;QACpB,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC;QAChB,8BAA8B,CAAC,SAAS,CAAC;MAC5C;CACJ;;;;;;;;AAQD,SAAS,uBAAuB,CAAC,UAAU,EAAE;;IAEzC,SAAS,iBAAiB,GAAG;QACzB,WAAW,CAAC,IAAI,CAAC,IAAI,EAAC;KACzB;;IAED,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,EAAE;QAC/D,WAAW,EAAE;YACT,KAAK,EAAE,iBAAiB;YACxB,YAAY,EAAE,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ,EAAC;;IAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QACxC,oBAAoB,CAAC,iBAAiB,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,EAAC;KACnE;;IAED,OAAO,iBAAiB;CAC3B;;;;;;;;;;;;;;;AAeD,SAAS,WAAW,GAAG;;IAEnB,IAAI,IAAI,YAAY,WAAW,EAAE;QAC7B,YAAY,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,GAAG,EAAE,EAAC;QACjC,MAAM;KACT;IACD,IAAI,SAAS,CAAC,MAAM,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE;QACvD,OAAO,uBAAuB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;KAC/C;IACD,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE;QACtB,MAAM,KAAK,GAAG,IAAI,KAAK,CAAC,SAAS,CAAC,MAAM,EAAC;QACzC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;YACvC,KAAK,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,EAAC;SAC1B;QACD,OAAO,uBAAuB,CAAC,KAAK,CAAC;KACxC;IACD,MAAM,IAAI,SAAS,CAAC,mCAAmC,CAAC;;CAE3D;;;AAGD,WAAW,CAAC,SAAS,GAAG;;;;;;;;IAQpB,gBAAgB,CAAC,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE;QAC3C,IAAI,QAAQ,IAAI,IAAI,EAAE;YAClB,MAAM;SACT;QACD,IAAI,OAAO,QAAQ,KAAK,UAAU,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;YACvD,MAAM,IAAI,SAAS,CAAC,+CAA+C,CAAC;SACvE;;QAED,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;QACpC,MAAM,YAAY,GAAG,QAAQ,CAAC,OAAO,EAAC;QACtC,MAAM,OAAO,GAAG,YAAY;cACtB,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC;cACxB,OAAO,CAAC,OAAO,EAAC;QACtB,MAAM,YAAY,GAAG,OAAO,GAAG,OAAO,GAAG,OAAM;QAC/C,MAAM,OAAO,GAAG;YACZ,QAAQ;YACR,YAAY;YACZ,OAAO,EAAE,YAAY,IAAI,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC;YACjD,IAAI,EAAE,YAAY,IAAI,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC;YAC3C,IAAI,EAAE,IAAI;UACb;;;QAGD,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;QACnC,IAAI,IAAI,KAAK,SAAS,EAAE;YACpB,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,EAAC;YACjC,MAAM;SACT;;;QAGD,IAAI,IAAI,GAAG,KAAI;QACf,OAAO,IAAI,IAAI,IAAI,EAAE;YACjB;gBACI,IAAI,CAAC,QAAQ,KAAK,QAAQ;gBAC1B,IAAI,CAAC,YAAY,KAAK,YAAY;cACpC;;gBAEE,MAAM;aACT;YACD,IAAI,GAAG,KAAI;YACX,IAAI,GAAG,IAAI,CAAC,KAAI;SACnB;;;QAGD,IAAI,CAAC,IAAI,GAAG,QAAO;KACtB;;;;;;;;;IASD,mBAAmB,CAAC,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE;QAC9C,IAAI,QAAQ,IAAI,IAAI,EAAE;YAClB,MAAM;SACT;;QAED,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;QACpC,MAAM,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC;cAC3B,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC;cACxB,OAAO,CAAC,OAAO,EAAC;QACtB,MAAM,YAAY,GAAG,OAAO,GAAG,OAAO,GAAG,OAAM;;QAE/C,IAAI,IAAI,GAAG,KAAI;QACf,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;QACnC,OAAO,IAAI,IAAI,IAAI,EAAE;YACjB;gBACI,IAAI,CAAC,QAAQ,KAAK,QAAQ;gBAC1B,IAAI,CAAC,YAAY,KAAK,YAAY;cACpC;gBACE,IAAI,IAAI,KAAK,IAAI,EAAE;oBACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAI;iBACxB,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,IAAI,EAAE;oBAC3B,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,EAAC;iBACtC,MAAM;oBACH,SAAS,CAAC,MAAM,CAAC,SAAS,EAAC;iBAC9B;gBACD,MAAM;aACT;;YAED,IAAI,GAAG,KAAI;YACX,IAAI,GAAG,IAAI,CAAC,KAAI;SACnB;KACJ;;;;;;;IAOD,aAAa,CAAC,KAAK,EAAE;QACjB,IAAI,KAAK,IAAI,IAAI,IAAI,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,EAAE;YACjD,MAAM,IAAI,SAAS,CAAC,kCAAkC,CAAC;SAC1D;;;QAGD,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;QACpC,MAAM,SAAS,GAAG,KAAK,CAAC,KAAI;QAC5B,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;QACnC,IAAI,IAAI,IAAI,IAAI,EAAE;YACd,OAAO,IAAI;SACd;;;QAGD,MAAM,YAAY,GAAG,SAAS,CAAC,IAAI,EAAE,KAAK,EAAC;;;;QAI3C,IAAI,IAAI,GAAG,KAAI;QACf,OAAO,IAAI,IAAI,IAAI,EAAE;;YAEjB,IAAI,IAAI,CAAC,IAAI,EAAE;gBACX,IAAI,IAAI,KAAK,IAAI,EAAE;oBACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAI;iBACxB,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,IAAI,EAAE;oBAC3B,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,EAAC;iBACtC,MAAM;oBACH,SAAS,CAAC,MAAM,CAAC,SAAS,EAAC;iBAC9B;aACJ,MAAM;gBACH,IAAI,GAAG,KAAI;aACd;;;YAGD,kBAAkB;gBACd,YAAY;gBACZ,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,GAAG,IAAI;cACtC;YACD,IAAI,OAAO,IAAI,CAAC,QAAQ,KAAK,UAAU,EAAE;gBACrC,IAAI;oBACA,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,YAAY,EAAC;iBACzC,CAAC,OAAO,GAAG,EAAE;oBACV;wBACI,OAAO,OAAO,KAAK,WAAW;wBAC9B,OAAO,OAAO,CAAC,KAAK,KAAK,UAAU;sBACrC;wBACE,OAAO,CAAC,KAAK,CAAC,GAAG,EAAC;qBACrB;iBACJ;aACJ,MAAM;gBACH,IAAI,CAAC,YAAY,KAAK,SAAS;gBAC/B,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,KAAK,UAAU;cACjD;gBACE,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,YAAY,EAAC;aAC1C;;;YAGD,IAAI,SAAS,CAAC,YAAY,CAAC,EAAE;gBACzB,KAAK;aACR;;YAED,IAAI,GAAG,IAAI,CAAC,KAAI;SACnB;QACD,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAC;QACtC,aAAa,CAAC,YAAY,EAAE,CAAC,EAAC;QAC9B,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAC;;QAEpC,OAAO,CAAC,YAAY,CAAC,gBAAgB;KACxC;EACJ;;;AAGD,MAAM,CAAC,cAAc,CAAC,WAAW,CAAC,SAAS,EAAE,aAAa,EAAE;IACxD,KAAK,EAAE,WAAW;IAClB,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;CACjB,EAAC;;;AAGF;IACI,OAAO,MAAM,KAAK,WAAW;IAC7B,OAAO,MAAM,CAAC,WAAW,KAAK,WAAW;EAC3C;IACE,MAAM,CAAC,cAAc,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC,SAAS,EAAC;CAC7E;;;;;;;;;;;;;"} \ No newline at end of file diff --git a/deps/npm/node_modules/event-target-shim/dist/event-target-shim.mjs.map b/deps/npm/node_modules/event-target-shim/dist/event-target-shim.mjs.map deleted file mode 100644 index 57b3e8f7c028d0..00000000000000 --- a/deps/npm/node_modules/event-target-shim/dist/event-target-shim.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"event-target-shim.mjs","sources":["../src/event.mjs","../src/event-target.mjs"],"sourcesContent":["/**\n * @typedef {object} PrivateData\n * @property {EventTarget} eventTarget The event target.\n * @property {{type:string}} event The original event object.\n * @property {number} eventPhase The current event phase.\n * @property {EventTarget|null} currentTarget The current event target.\n * @property {boolean} canceled The flag to prevent default.\n * @property {boolean} stopped The flag to stop propagation.\n * @property {boolean} immediateStopped The flag to stop propagation immediately.\n * @property {Function|null} passiveListener The listener if the current listener is passive. Otherwise this is null.\n * @property {number} timeStamp The unix time.\n * @private\n */\n\n/**\n * Private data for event wrappers.\n * @type {WeakMap}\n * @private\n */\nconst privateData = new WeakMap()\n\n/**\n * Cache for wrapper classes.\n * @type {WeakMap}\n * @private\n */\nconst wrappers = new WeakMap()\n\n/**\n * Get private data.\n * @param {Event} event The event object to get private data.\n * @returns {PrivateData} The private data of the event.\n * @private\n */\nfunction pd(event) {\n const retv = privateData.get(event)\n console.assert(\n retv != null,\n \"'this' is expected an Event object, but got\",\n event\n )\n return retv\n}\n\n/**\n * https://dom.spec.whatwg.org/#set-the-canceled-flag\n * @param data {PrivateData} private data.\n */\nfunction setCancelFlag(data) {\n if (data.passiveListener != null) {\n if (\n typeof console !== \"undefined\" &&\n typeof console.error === \"function\"\n ) {\n console.error(\n \"Unable to preventDefault inside passive event listener invocation.\",\n data.passiveListener\n )\n }\n return\n }\n if (!data.event.cancelable) {\n return\n }\n\n data.canceled = true\n if (typeof data.event.preventDefault === \"function\") {\n data.event.preventDefault()\n }\n}\n\n/**\n * @see https://dom.spec.whatwg.org/#interface-event\n * @private\n */\n/**\n * The event wrapper.\n * @constructor\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Event|{type:string}} event The original event to wrap.\n */\nfunction Event(eventTarget, event) {\n privateData.set(this, {\n eventTarget,\n event,\n eventPhase: 2,\n currentTarget: eventTarget,\n canceled: false,\n stopped: false,\n immediateStopped: false,\n passiveListener: null,\n timeStamp: event.timeStamp || Date.now(),\n })\n\n // https://heycam.github.io/webidl/#Unforgeable\n Object.defineProperty(this, \"isTrusted\", { value: false, enumerable: true })\n\n // Define accessors\n const keys = Object.keys(event)\n for (let i = 0; i < keys.length; ++i) {\n const key = keys[i]\n if (!(key in this)) {\n Object.defineProperty(this, key, defineRedirectDescriptor(key))\n }\n }\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEvent.prototype = {\n /**\n * The type of this event.\n * @type {string}\n */\n get type() {\n return pd(this).event.type\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n */\n get target() {\n return pd(this).eventTarget\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n */\n get currentTarget() {\n return pd(this).currentTarget\n },\n\n /**\n * @returns {EventTarget[]} The composed path of this event.\n */\n composedPath() {\n const currentTarget = pd(this).currentTarget\n if (currentTarget == null) {\n return []\n }\n return [currentTarget]\n },\n\n /**\n * Constant of NONE.\n * @type {number}\n */\n get NONE() {\n return 0\n },\n\n /**\n * Constant of CAPTURING_PHASE.\n * @type {number}\n */\n get CAPTURING_PHASE() {\n return 1\n },\n\n /**\n * Constant of AT_TARGET.\n * @type {number}\n */\n get AT_TARGET() {\n return 2\n },\n\n /**\n * Constant of BUBBLING_PHASE.\n * @type {number}\n */\n get BUBBLING_PHASE() {\n return 3\n },\n\n /**\n * The target of this event.\n * @type {number}\n */\n get eventPhase() {\n return pd(this).eventPhase\n },\n\n /**\n * Stop event bubbling.\n * @returns {void}\n */\n stopPropagation() {\n const data = pd(this)\n\n data.stopped = true\n if (typeof data.event.stopPropagation === \"function\") {\n data.event.stopPropagation()\n }\n },\n\n /**\n * Stop event bubbling.\n * @returns {void}\n */\n stopImmediatePropagation() {\n const data = pd(this)\n\n data.stopped = true\n data.immediateStopped = true\n if (typeof data.event.stopImmediatePropagation === \"function\") {\n data.event.stopImmediatePropagation()\n }\n },\n\n /**\n * The flag to be bubbling.\n * @type {boolean}\n */\n get bubbles() {\n return Boolean(pd(this).event.bubbles)\n },\n\n /**\n * The flag to be cancelable.\n * @type {boolean}\n */\n get cancelable() {\n return Boolean(pd(this).event.cancelable)\n },\n\n /**\n * Cancel this event.\n * @returns {void}\n */\n preventDefault() {\n setCancelFlag(pd(this))\n },\n\n /**\n * The flag to indicate cancellation state.\n * @type {boolean}\n */\n get defaultPrevented() {\n return pd(this).canceled\n },\n\n /**\n * The flag to be composed.\n * @type {boolean}\n */\n get composed() {\n return Boolean(pd(this).event.composed)\n },\n\n /**\n * The unix time of this event.\n * @type {number}\n */\n get timeStamp() {\n return pd(this).timeStamp\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n * @deprecated\n */\n get srcElement() {\n return pd(this).eventTarget\n },\n\n /**\n * The flag to stop event bubbling.\n * @type {boolean}\n * @deprecated\n */\n get cancelBubble() {\n return pd(this).stopped\n },\n set cancelBubble(value) {\n if (!value) {\n return\n }\n const data = pd(this)\n\n data.stopped = true\n if (typeof data.event.cancelBubble === \"boolean\") {\n data.event.cancelBubble = true\n }\n },\n\n /**\n * The flag to indicate cancellation state.\n * @type {boolean}\n * @deprecated\n */\n get returnValue() {\n return !pd(this).canceled\n },\n set returnValue(value) {\n if (!value) {\n setCancelFlag(pd(this))\n }\n },\n\n /**\n * Initialize this event object. But do nothing under event dispatching.\n * @param {string} type The event type.\n * @param {boolean} [bubbles=false] The flag to be possible to bubble up.\n * @param {boolean} [cancelable=false] The flag to be possible to cancel.\n * @deprecated\n */\n initEvent() {\n // Do nothing.\n },\n}\n\n// `constructor` is not enumerable.\nObject.defineProperty(Event.prototype, \"constructor\", {\n value: Event,\n configurable: true,\n writable: true,\n})\n\n// Ensure `event instanceof window.Event` is `true`.\nif (typeof window !== \"undefined\" && typeof window.Event !== \"undefined\") {\n Object.setPrototypeOf(Event.prototype, window.Event.prototype)\n\n // Make association for wrappers.\n wrappers.set(window.Event.prototype, Event)\n}\n\n/**\n * Get the property descriptor to redirect a given property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to redirect the property.\n * @private\n */\nfunction defineRedirectDescriptor(key) {\n return {\n get() {\n return pd(this).event[key]\n },\n set(value) {\n pd(this).event[key] = value\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Get the property descriptor to call a given method property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to call the method property.\n * @private\n */\nfunction defineCallDescriptor(key) {\n return {\n value() {\n const event = pd(this).event\n return event[key].apply(event, arguments)\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Define new wrapper class.\n * @param {Function} BaseEvent The base wrapper class.\n * @param {Object} proto The prototype of the original event.\n * @returns {Function} The defined wrapper class.\n * @private\n */\nfunction defineWrapper(BaseEvent, proto) {\n const keys = Object.keys(proto)\n if (keys.length === 0) {\n return BaseEvent\n }\n\n /** CustomEvent */\n function CustomEvent(eventTarget, event) {\n BaseEvent.call(this, eventTarget, event)\n }\n\n CustomEvent.prototype = Object.create(BaseEvent.prototype, {\n constructor: { value: CustomEvent, configurable: true, writable: true },\n })\n\n // Define accessors.\n for (let i = 0; i < keys.length; ++i) {\n const key = keys[i]\n if (!(key in BaseEvent.prototype)) {\n const descriptor = Object.getOwnPropertyDescriptor(proto, key)\n const isFunc = typeof descriptor.value === \"function\"\n Object.defineProperty(\n CustomEvent.prototype,\n key,\n isFunc\n ? defineCallDescriptor(key)\n : defineRedirectDescriptor(key)\n )\n }\n }\n\n return CustomEvent\n}\n\n/**\n * Get the wrapper class of a given prototype.\n * @param {Object} proto The prototype of the original event to get its wrapper.\n * @returns {Function} The wrapper class.\n * @private\n */\nfunction getWrapper(proto) {\n if (proto == null || proto === Object.prototype) {\n return Event\n }\n\n let wrapper = wrappers.get(proto)\n if (wrapper == null) {\n wrapper = defineWrapper(getWrapper(Object.getPrototypeOf(proto)), proto)\n wrappers.set(proto, wrapper)\n }\n return wrapper\n}\n\n/**\n * Wrap a given event to management a dispatching.\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Object} event The event to wrap.\n * @returns {Event} The wrapper instance.\n * @private\n */\nexport function wrapEvent(eventTarget, event) {\n const Wrapper = getWrapper(Object.getPrototypeOf(event))\n return new Wrapper(eventTarget, event)\n}\n\n/**\n * Get the immediateStopped flag of a given event.\n * @param {Event} event The event to get.\n * @returns {boolean} The flag to stop propagation immediately.\n * @private\n */\nexport function isStopped(event) {\n return pd(event).immediateStopped\n}\n\n/**\n * Set the current event phase of a given event.\n * @param {Event} event The event to set current target.\n * @param {number} eventPhase New event phase.\n * @returns {void}\n * @private\n */\nexport function setEventPhase(event, eventPhase) {\n pd(event).eventPhase = eventPhase\n}\n\n/**\n * Set the current target of a given event.\n * @param {Event} event The event to set current target.\n * @param {EventTarget|null} currentTarget New current target.\n * @returns {void}\n * @private\n */\nexport function setCurrentTarget(event, currentTarget) {\n pd(event).currentTarget = currentTarget\n}\n\n/**\n * Set a passive listener of a given event.\n * @param {Event} event The event to set current target.\n * @param {Function|null} passiveListener New passive listener.\n * @returns {void}\n * @private\n */\nexport function setPassiveListener(event, passiveListener) {\n pd(event).passiveListener = passiveListener\n}\n","import {\n isStopped,\n setCurrentTarget,\n setEventPhase,\n setPassiveListener,\n wrapEvent,\n} from \"./event.mjs\"\n\n/**\n * @typedef {object} ListenerNode\n * @property {Function} listener\n * @property {1|2|3} listenerType\n * @property {boolean} passive\n * @property {boolean} once\n * @property {ListenerNode|null} next\n * @private\n */\n\n/**\n * @type {WeakMap>}\n * @private\n */\nconst listenersMap = new WeakMap()\n\n// Listener types\nconst CAPTURE = 1\nconst BUBBLE = 2\nconst ATTRIBUTE = 3\n\n/**\n * Check whether a given value is an object or not.\n * @param {any} x The value to check.\n * @returns {boolean} `true` if the value is an object.\n */\nfunction isObject(x) {\n return x !== null && typeof x === \"object\" //eslint-disable-line no-restricted-syntax\n}\n\n/**\n * Get listeners.\n * @param {EventTarget} eventTarget The event target to get.\n * @returns {Map} The listeners.\n * @private\n */\nfunction getListeners(eventTarget) {\n const listeners = listenersMap.get(eventTarget)\n if (listeners == null) {\n throw new TypeError(\n \"'this' is expected an EventTarget object, but got another value.\"\n )\n }\n return listeners\n}\n\n/**\n * Get the property descriptor for the event attribute of a given event.\n * @param {string} eventName The event name to get property descriptor.\n * @returns {PropertyDescriptor} The property descriptor.\n * @private\n */\nfunction defineEventAttributeDescriptor(eventName) {\n return {\n get() {\n const listeners = getListeners(this)\n let node = listeners.get(eventName)\n while (node != null) {\n if (node.listenerType === ATTRIBUTE) {\n return node.listener\n }\n node = node.next\n }\n return null\n },\n\n set(listener) {\n if (typeof listener !== \"function\" && !isObject(listener)) {\n listener = null // eslint-disable-line no-param-reassign\n }\n const listeners = getListeners(this)\n\n // Traverse to the tail while removing old value.\n let prev = null\n let node = listeners.get(eventName)\n while (node != null) {\n if (node.listenerType === ATTRIBUTE) {\n // Remove old value.\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n } else {\n prev = node\n }\n\n node = node.next\n }\n\n // Add new value.\n if (listener !== null) {\n const newNode = {\n listener,\n listenerType: ATTRIBUTE,\n passive: false,\n once: false,\n next: null,\n }\n if (prev === null) {\n listeners.set(eventName, newNode)\n } else {\n prev.next = newNode\n }\n }\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Define an event attribute (e.g. `eventTarget.onclick`).\n * @param {Object} eventTargetPrototype The event target prototype to define an event attrbite.\n * @param {string} eventName The event name to define.\n * @returns {void}\n */\nfunction defineEventAttribute(eventTargetPrototype, eventName) {\n Object.defineProperty(\n eventTargetPrototype,\n `on${eventName}`,\n defineEventAttributeDescriptor(eventName)\n )\n}\n\n/**\n * Define a custom EventTarget with event attributes.\n * @param {string[]} eventNames Event names for event attributes.\n * @returns {EventTarget} The custom EventTarget.\n * @private\n */\nfunction defineCustomEventTarget(eventNames) {\n /** CustomEventTarget */\n function CustomEventTarget() {\n EventTarget.call(this)\n }\n\n CustomEventTarget.prototype = Object.create(EventTarget.prototype, {\n constructor: {\n value: CustomEventTarget,\n configurable: true,\n writable: true,\n },\n })\n\n for (let i = 0; i < eventNames.length; ++i) {\n defineEventAttribute(CustomEventTarget.prototype, eventNames[i])\n }\n\n return CustomEventTarget\n}\n\n/**\n * EventTarget.\n *\n * - This is constructor if no arguments.\n * - This is a function which returns a CustomEventTarget constructor if there are arguments.\n *\n * For example:\n *\n * class A extends EventTarget {}\n * class B extends EventTarget(\"message\") {}\n * class C extends EventTarget(\"message\", \"error\") {}\n * class D extends EventTarget([\"message\", \"error\"]) {}\n */\nfunction EventTarget() {\n /*eslint-disable consistent-return */\n if (this instanceof EventTarget) {\n listenersMap.set(this, new Map())\n return\n }\n if (arguments.length === 1 && Array.isArray(arguments[0])) {\n return defineCustomEventTarget(arguments[0])\n }\n if (arguments.length > 0) {\n const types = new Array(arguments.length)\n for (let i = 0; i < arguments.length; ++i) {\n types[i] = arguments[i]\n }\n return defineCustomEventTarget(types)\n }\n throw new TypeError(\"Cannot call a class as a function\")\n /*eslint-enable consistent-return */\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEventTarget.prototype = {\n /**\n * Add a given listener to this event target.\n * @param {string} eventName The event name to add.\n * @param {Function} listener The listener to add.\n * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n * @returns {void}\n */\n addEventListener(eventName, listener, options) {\n if (listener == null) {\n return\n }\n if (typeof listener !== \"function\" && !isObject(listener)) {\n throw new TypeError(\"'listener' should be a function or an object.\")\n }\n\n const listeners = getListeners(this)\n const optionsIsObj = isObject(options)\n const capture = optionsIsObj\n ? Boolean(options.capture)\n : Boolean(options)\n const listenerType = capture ? CAPTURE : BUBBLE\n const newNode = {\n listener,\n listenerType,\n passive: optionsIsObj && Boolean(options.passive),\n once: optionsIsObj && Boolean(options.once),\n next: null,\n }\n\n // Set it as the first node if the first node is null.\n let node = listeners.get(eventName)\n if (node === undefined) {\n listeners.set(eventName, newNode)\n return\n }\n\n // Traverse to the tail while checking duplication..\n let prev = null\n while (node != null) {\n if (\n node.listener === listener &&\n node.listenerType === listenerType\n ) {\n // Should ignore duplication.\n return\n }\n prev = node\n node = node.next\n }\n\n // Add it.\n prev.next = newNode\n },\n\n /**\n * Remove a given listener from this event target.\n * @param {string} eventName The event name to remove.\n * @param {Function} listener The listener to remove.\n * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n * @returns {void}\n */\n removeEventListener(eventName, listener, options) {\n if (listener == null) {\n return\n }\n\n const listeners = getListeners(this)\n const capture = isObject(options)\n ? Boolean(options.capture)\n : Boolean(options)\n const listenerType = capture ? CAPTURE : BUBBLE\n\n let prev = null\n let node = listeners.get(eventName)\n while (node != null) {\n if (\n node.listener === listener &&\n node.listenerType === listenerType\n ) {\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n return\n }\n\n prev = node\n node = node.next\n }\n },\n\n /**\n * Dispatch a given event.\n * @param {Event|{type:string}} event The event to dispatch.\n * @returns {boolean} `false` if canceled.\n */\n dispatchEvent(event) {\n if (event == null || typeof event.type !== \"string\") {\n throw new TypeError('\"event.type\" should be a string.')\n }\n\n // If listeners aren't registered, terminate.\n const listeners = getListeners(this)\n const eventName = event.type\n let node = listeners.get(eventName)\n if (node == null) {\n return true\n }\n\n // Since we cannot rewrite several properties, so wrap object.\n const wrappedEvent = wrapEvent(this, event)\n\n // This doesn't process capturing phase and bubbling phase.\n // This isn't participating in a tree.\n let prev = null\n while (node != null) {\n // Remove this listener if it's once\n if (node.once) {\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n } else {\n prev = node\n }\n\n // Call this listener\n setPassiveListener(\n wrappedEvent,\n node.passive ? node.listener : null\n )\n if (typeof node.listener === \"function\") {\n try {\n node.listener.call(this, wrappedEvent)\n } catch (err) {\n if (\n typeof console !== \"undefined\" &&\n typeof console.error === \"function\"\n ) {\n console.error(err)\n }\n }\n } else if (\n node.listenerType !== ATTRIBUTE &&\n typeof node.listener.handleEvent === \"function\"\n ) {\n node.listener.handleEvent(wrappedEvent)\n }\n\n // Break if `event.stopImmediatePropagation` was called.\n if (isStopped(wrappedEvent)) {\n break\n }\n\n node = node.next\n }\n setPassiveListener(wrappedEvent, null)\n setEventPhase(wrappedEvent, 0)\n setCurrentTarget(wrappedEvent, null)\n\n return !wrappedEvent.defaultPrevented\n },\n}\n\n// `constructor` is not enumerable.\nObject.defineProperty(EventTarget.prototype, \"constructor\", {\n value: EventTarget,\n configurable: true,\n writable: true,\n})\n\n// Ensure `eventTarget instanceof window.EventTarget` is `true`.\nif (\n typeof window !== \"undefined\" &&\n typeof window.EventTarget !== \"undefined\"\n) {\n Object.setPrototypeOf(EventTarget.prototype, window.EventTarget.prototype)\n}\n\nexport { defineEventAttribute, EventTarget }\nexport default EventTarget\n"],"names":[],"mappings":";;;;;AAAA;;;;;;;;;;;;;;;;;;;AAmBA,MAAM,WAAW,GAAG,IAAI,OAAO,GAAE;;;;;;;AAOjC,MAAM,QAAQ,GAAG,IAAI,OAAO,GAAE;;;;;;;;AAQ9B,SAAS,EAAE,CAAC,KAAK,EAAE;IACf,MAAM,IAAI,GAAG,WAAW,CAAC,GAAG,CAAC,KAAK,EAAC;IACnC,OAAO,CAAC,MAAM;QACV,IAAI,IAAI,IAAI;QACZ,6CAA6C;QAC7C,KAAK;MACR;IACD,OAAO,IAAI;CACd;;;;;;AAMD,SAAS,aAAa,CAAC,IAAI,EAAE;IACzB,IAAI,IAAI,CAAC,eAAe,IAAI,IAAI,EAAE;QAC9B;YACI,OAAO,OAAO,KAAK,WAAW;YAC9B,OAAO,OAAO,CAAC,KAAK,KAAK,UAAU;UACrC;YACE,OAAO,CAAC,KAAK;gBACT,oEAAoE;gBACpE,IAAI,CAAC,eAAe;cACvB;SACJ;QACD,MAAM;KACT;IACD,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE;QACxB,MAAM;KACT;;IAED,IAAI,CAAC,QAAQ,GAAG,KAAI;IACpB,IAAI,OAAO,IAAI,CAAC,KAAK,CAAC,cAAc,KAAK,UAAU,EAAE;QACjD,IAAI,CAAC,KAAK,CAAC,cAAc,GAAE;KAC9B;CACJ;;;;;;;;;;;;AAYD,SAAS,KAAK,CAAC,WAAW,EAAE,KAAK,EAAE;IAC/B,WAAW,CAAC,GAAG,CAAC,IAAI,EAAE;QAClB,WAAW;QACX,KAAK;QACL,UAAU,EAAE,CAAC;QACb,aAAa,EAAE,WAAW;QAC1B,QAAQ,EAAE,KAAK;QACf,OAAO,EAAE,KAAK;QACd,gBAAgB,EAAE,KAAK;QACvB,eAAe,EAAE,IAAI;QACrB,SAAS,EAAE,KAAK,CAAC,SAAS,IAAI,IAAI,CAAC,GAAG,EAAE;KAC3C,EAAC;;;IAGF,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,IAAI,EAAE,EAAC;;;IAG5E,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,EAAC;IAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QAClC,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,EAAC;QACnB,IAAI,EAAE,GAAG,IAAI,IAAI,CAAC,EAAE;YAChB,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,wBAAwB,CAAC,GAAG,CAAC,EAAC;SAClE;KACJ;CACJ;;;AAGD,KAAK,CAAC,SAAS,GAAG;;;;;IAKd,IAAI,IAAI,GAAG;QACP,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI;KAC7B;;;;;;IAMD,IAAI,MAAM,GAAG;QACT,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,WAAW;KAC9B;;;;;;IAMD,IAAI,aAAa,GAAG;QAChB,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,aAAa;KAChC;;;;;IAKD,YAAY,GAAG;QACX,MAAM,aAAa,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC,cAAa;QAC5C,IAAI,aAAa,IAAI,IAAI,EAAE;YACvB,OAAO,EAAE;SACZ;QACD,OAAO,CAAC,aAAa,CAAC;KACzB;;;;;;IAMD,IAAI,IAAI,GAAG;QACP,OAAO,CAAC;KACX;;;;;;IAMD,IAAI,eAAe,GAAG;QAClB,OAAO,CAAC;KACX;;;;;;IAMD,IAAI,SAAS,GAAG;QACZ,OAAO,CAAC;KACX;;;;;;IAMD,IAAI,cAAc,GAAG;QACjB,OAAO,CAAC;KACX;;;;;;IAMD,IAAI,UAAU,GAAG;QACb,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,UAAU;KAC7B;;;;;;IAMD,eAAe,GAAG;QACd,MAAM,IAAI,GAAG,EAAE,CAAC,IAAI,EAAC;;QAErB,IAAI,CAAC,OAAO,GAAG,KAAI;QACnB,IAAI,OAAO,IAAI,CAAC,KAAK,CAAC,eAAe,KAAK,UAAU,EAAE;YAClD,IAAI,CAAC,KAAK,CAAC,eAAe,GAAE;SAC/B;KACJ;;;;;;IAMD,wBAAwB,GAAG;QACvB,MAAM,IAAI,GAAG,EAAE,CAAC,IAAI,EAAC;;QAErB,IAAI,CAAC,OAAO,GAAG,KAAI;QACnB,IAAI,CAAC,gBAAgB,GAAG,KAAI;QAC5B,IAAI,OAAO,IAAI,CAAC,KAAK,CAAC,wBAAwB,KAAK,UAAU,EAAE;YAC3D,IAAI,CAAC,KAAK,CAAC,wBAAwB,GAAE;SACxC;KACJ;;;;;;IAMD,IAAI,OAAO,GAAG;QACV,OAAO,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC;KACzC;;;;;;IAMD,IAAI,UAAU,GAAG;QACb,OAAO,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC;KAC5C;;;;;;IAMD,cAAc,GAAG;QACb,aAAa,CAAC,EAAE,CAAC,IAAI,CAAC,EAAC;KAC1B;;;;;;IAMD,IAAI,gBAAgB,GAAG;QACnB,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,QAAQ;KAC3B;;;;;;IAMD,IAAI,QAAQ,GAAG;QACX,OAAO,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC;KAC1C;;;;;;IAMD,IAAI,SAAS,GAAG;QACZ,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,SAAS;KAC5B;;;;;;;IAOD,IAAI,UAAU,GAAG;QACb,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,WAAW;KAC9B;;;;;;;IAOD,IAAI,YAAY,GAAG;QACf,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,OAAO;KAC1B;IACD,IAAI,YAAY,CAAC,KAAK,EAAE;QACpB,IAAI,CAAC,KAAK,EAAE;YACR,MAAM;SACT;QACD,MAAM,IAAI,GAAG,EAAE,CAAC,IAAI,EAAC;;QAErB,IAAI,CAAC,OAAO,GAAG,KAAI;QACnB,IAAI,OAAO,IAAI,CAAC,KAAK,CAAC,YAAY,KAAK,SAAS,EAAE;YAC9C,IAAI,CAAC,KAAK,CAAC,YAAY,GAAG,KAAI;SACjC;KACJ;;;;;;;IAOD,IAAI,WAAW,GAAG;QACd,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,QAAQ;KAC5B;IACD,IAAI,WAAW,CAAC,KAAK,EAAE;QACnB,IAAI,CAAC,KAAK,EAAE;YACR,aAAa,CAAC,EAAE,CAAC,IAAI,CAAC,EAAC;SAC1B;KACJ;;;;;;;;;IASD,SAAS,GAAG;;KAEX;EACJ;;;AAGD,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,SAAS,EAAE,aAAa,EAAE;IAClD,KAAK,EAAE,KAAK;IACZ,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;CACjB,EAAC;;;AAGF,IAAI,OAAO,MAAM,KAAK,WAAW,IAAI,OAAO,MAAM,CAAC,KAAK,KAAK,WAAW,EAAE;IACtE,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,SAAS,EAAE,MAAM,CAAC,KAAK,CAAC,SAAS,EAAC;;;IAG9D,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,KAAK,EAAC;CAC9C;;;;;;;;AAQD,SAAS,wBAAwB,CAAC,GAAG,EAAE;IACnC,OAAO;QACH,GAAG,GAAG;YACF,OAAO,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC;SAC7B;QACD,GAAG,CAAC,KAAK,EAAE;YACP,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,MAAK;SAC9B;QACD,YAAY,EAAE,IAAI;QAClB,UAAU,EAAE,IAAI;KACnB;CACJ;;;;;;;;AAQD,SAAS,oBAAoB,CAAC,GAAG,EAAE;IAC/B,OAAO;QACH,KAAK,GAAG;YACJ,MAAM,KAAK,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC,MAAK;YAC5B,OAAO,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,SAAS,CAAC;SAC5C;QACD,YAAY,EAAE,IAAI;QAClB,UAAU,EAAE,IAAI;KACnB;CACJ;;;;;;;;;AASD,SAAS,aAAa,CAAC,SAAS,EAAE,KAAK,EAAE;IACrC,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,EAAC;IAC/B,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE;QACnB,OAAO,SAAS;KACnB;;;IAGD,SAAS,WAAW,CAAC,WAAW,EAAE,KAAK,EAAE;QACrC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,KAAK,EAAC;KAC3C;;IAED,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,SAAS,EAAE;QACvD,WAAW,EAAE,EAAE,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE;KAC1E,EAAC;;;IAGF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QAClC,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,EAAC;QACnB,IAAI,EAAE,GAAG,IAAI,SAAS,CAAC,SAAS,CAAC,EAAE;YAC/B,MAAM,UAAU,GAAG,MAAM,CAAC,wBAAwB,CAAC,KAAK,EAAE,GAAG,EAAC;YAC9D,MAAM,MAAM,GAAG,OAAO,UAAU,CAAC,KAAK,KAAK,WAAU;YACrD,MAAM,CAAC,cAAc;gBACjB,WAAW,CAAC,SAAS;gBACrB,GAAG;gBACH,MAAM;sBACA,oBAAoB,CAAC,GAAG,CAAC;sBACzB,wBAAwB,CAAC,GAAG,CAAC;cACtC;SACJ;KACJ;;IAED,OAAO,WAAW;CACrB;;;;;;;;AAQD,SAAS,UAAU,CAAC,KAAK,EAAE;IACvB,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,KAAK,MAAM,CAAC,SAAS,EAAE;QAC7C,OAAO,KAAK;KACf;;IAED,IAAI,OAAO,GAAG,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAC;IACjC,IAAI,OAAO,IAAI,IAAI,EAAE;QACjB,OAAO,GAAG,aAAa,CAAC,UAAU,CAAC,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,EAAC;QACxE,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAE,OAAO,EAAC;KAC/B;IACD,OAAO,OAAO;CACjB;;;;;;;;;AASD,AAAO,SAAS,SAAS,CAAC,WAAW,EAAE,KAAK,EAAE;IAC1C,MAAM,OAAO,GAAG,UAAU,CAAC,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,EAAC;IACxD,OAAO,IAAI,OAAO,CAAC,WAAW,EAAE,KAAK,CAAC;CACzC;;;;;;;;AAQD,AAAO,SAAS,SAAS,CAAC,KAAK,EAAE;IAC7B,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC,gBAAgB;CACpC;;;;;;;;;AASD,AAAO,SAAS,aAAa,CAAC,KAAK,EAAE,UAAU,EAAE;IAC7C,EAAE,CAAC,KAAK,CAAC,CAAC,UAAU,GAAG,WAAU;CACpC;;;;;;;;;AASD,AAAO,SAAS,gBAAgB,CAAC,KAAK,EAAE,aAAa,EAAE;IACnD,EAAE,CAAC,KAAK,CAAC,CAAC,aAAa,GAAG,cAAa;CAC1C;;;;;;;;;AASD,AAAO,SAAS,kBAAkB,CAAC,KAAK,EAAE,eAAe,EAAE;IACvD,EAAE,CAAC,KAAK,CAAC,CAAC,eAAe,GAAG,gBAAe;CAC9C;;ACtdD;;;;;;;;;;;;;;AAcA,MAAM,YAAY,GAAG,IAAI,OAAO,GAAE;;;AAGlC,MAAM,OAAO,GAAG,EAAC;AACjB,MAAM,MAAM,GAAG,EAAC;AAChB,MAAM,SAAS,GAAG,EAAC;;;;;;;AAOnB,SAAS,QAAQ,CAAC,CAAC,EAAE;IACjB,OAAO,CAAC,KAAK,IAAI,IAAI,OAAO,CAAC,KAAK,QAAQ;CAC7C;;;;;;;;AAQD,SAAS,YAAY,CAAC,WAAW,EAAE;IAC/B,MAAM,SAAS,GAAG,YAAY,CAAC,GAAG,CAAC,WAAW,EAAC;IAC/C,IAAI,SAAS,IAAI,IAAI,EAAE;QACnB,MAAM,IAAI,SAAS;YACf,kEAAkE;SACrE;KACJ;IACD,OAAO,SAAS;CACnB;;;;;;;;AAQD,SAAS,8BAA8B,CAAC,SAAS,EAAE;IAC/C,OAAO;QACH,GAAG,GAAG;YACF,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;YACpC,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;YACnC,OAAO,IAAI,IAAI,IAAI,EAAE;gBACjB,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,EAAE;oBACjC,OAAO,IAAI,CAAC,QAAQ;iBACvB;gBACD,IAAI,GAAG,IAAI,CAAC,KAAI;aACnB;YACD,OAAO,IAAI;SACd;;QAED,GAAG,CAAC,QAAQ,EAAE;YACV,IAAI,OAAO,QAAQ,KAAK,UAAU,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;gBACvD,QAAQ,GAAG,KAAI;aAClB;YACD,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;;;YAGpC,IAAI,IAAI,GAAG,KAAI;YACf,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;YACnC,OAAO,IAAI,IAAI,IAAI,EAAE;gBACjB,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,EAAE;;oBAEjC,IAAI,IAAI,KAAK,IAAI,EAAE;wBACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAI;qBACxB,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,IAAI,EAAE;wBAC3B,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,EAAC;qBACtC,MAAM;wBACH,SAAS,CAAC,MAAM,CAAC,SAAS,EAAC;qBAC9B;iBACJ,MAAM;oBACH,IAAI,GAAG,KAAI;iBACd;;gBAED,IAAI,GAAG,IAAI,CAAC,KAAI;aACnB;;;YAGD,IAAI,QAAQ,KAAK,IAAI,EAAE;gBACnB,MAAM,OAAO,GAAG;oBACZ,QAAQ;oBACR,YAAY,EAAE,SAAS;oBACvB,OAAO,EAAE,KAAK;oBACd,IAAI,EAAE,KAAK;oBACX,IAAI,EAAE,IAAI;kBACb;gBACD,IAAI,IAAI,KAAK,IAAI,EAAE;oBACf,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,EAAC;iBACpC,MAAM;oBACH,IAAI,CAAC,IAAI,GAAG,QAAO;iBACtB;aACJ;SACJ;QACD,YAAY,EAAE,IAAI;QAClB,UAAU,EAAE,IAAI;KACnB;CACJ;;;;;;;;AAQD,SAAS,oBAAoB,CAAC,oBAAoB,EAAE,SAAS,EAAE;IAC3D,MAAM,CAAC,cAAc;QACjB,oBAAoB;QACpB,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC;QAChB,8BAA8B,CAAC,SAAS,CAAC;MAC5C;CACJ;;;;;;;;AAQD,SAAS,uBAAuB,CAAC,UAAU,EAAE;;IAEzC,SAAS,iBAAiB,GAAG;QACzB,WAAW,CAAC,IAAI,CAAC,IAAI,EAAC;KACzB;;IAED,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,EAAE;QAC/D,WAAW,EAAE;YACT,KAAK,EAAE,iBAAiB;YACxB,YAAY,EAAE,IAAI;YAClB,QAAQ,EAAE,IAAI;SACjB;KACJ,EAAC;;IAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QACxC,oBAAoB,CAAC,iBAAiB,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,EAAC;KACnE;;IAED,OAAO,iBAAiB;CAC3B;;;;;;;;;;;;;;;AAeD,SAAS,WAAW,GAAG;;IAEnB,IAAI,IAAI,YAAY,WAAW,EAAE;QAC7B,YAAY,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,GAAG,EAAE,EAAC;QACjC,MAAM;KACT;IACD,IAAI,SAAS,CAAC,MAAM,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE;QACvD,OAAO,uBAAuB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;KAC/C;IACD,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE;QACtB,MAAM,KAAK,GAAG,IAAI,KAAK,CAAC,SAAS,CAAC,MAAM,EAAC;QACzC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;YACvC,KAAK,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,EAAC;SAC1B;QACD,OAAO,uBAAuB,CAAC,KAAK,CAAC;KACxC;IACD,MAAM,IAAI,SAAS,CAAC,mCAAmC,CAAC;;CAE3D;;;AAGD,WAAW,CAAC,SAAS,GAAG;;;;;;;;IAQpB,gBAAgB,CAAC,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE;QAC3C,IAAI,QAAQ,IAAI,IAAI,EAAE;YAClB,MAAM;SACT;QACD,IAAI,OAAO,QAAQ,KAAK,UAAU,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;YACvD,MAAM,IAAI,SAAS,CAAC,+CAA+C,CAAC;SACvE;;QAED,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;QACpC,MAAM,YAAY,GAAG,QAAQ,CAAC,OAAO,EAAC;QACtC,MAAM,OAAO,GAAG,YAAY;cACtB,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC;cACxB,OAAO,CAAC,OAAO,EAAC;QACtB,MAAM,YAAY,GAAG,OAAO,GAAG,OAAO,GAAG,OAAM;QAC/C,MAAM,OAAO,GAAG;YACZ,QAAQ;YACR,YAAY;YACZ,OAAO,EAAE,YAAY,IAAI,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC;YACjD,IAAI,EAAE,YAAY,IAAI,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC;YAC3C,IAAI,EAAE,IAAI;UACb;;;QAGD,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;QACnC,IAAI,IAAI,KAAK,SAAS,EAAE;YACpB,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,EAAC;YACjC,MAAM;SACT;;;QAGD,IAAI,IAAI,GAAG,KAAI;QACf,OAAO,IAAI,IAAI,IAAI,EAAE;YACjB;gBACI,IAAI,CAAC,QAAQ,KAAK,QAAQ;gBAC1B,IAAI,CAAC,YAAY,KAAK,YAAY;cACpC;;gBAEE,MAAM;aACT;YACD,IAAI,GAAG,KAAI;YACX,IAAI,GAAG,IAAI,CAAC,KAAI;SACnB;;;QAGD,IAAI,CAAC,IAAI,GAAG,QAAO;KACtB;;;;;;;;;IASD,mBAAmB,CAAC,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE;QAC9C,IAAI,QAAQ,IAAI,IAAI,EAAE;YAClB,MAAM;SACT;;QAED,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;QACpC,MAAM,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC;cAC3B,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC;cACxB,OAAO,CAAC,OAAO,EAAC;QACtB,MAAM,YAAY,GAAG,OAAO,GAAG,OAAO,GAAG,OAAM;;QAE/C,IAAI,IAAI,GAAG,KAAI;QACf,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;QACnC,OAAO,IAAI,IAAI,IAAI,EAAE;YACjB;gBACI,IAAI,CAAC,QAAQ,KAAK,QAAQ;gBAC1B,IAAI,CAAC,YAAY,KAAK,YAAY;cACpC;gBACE,IAAI,IAAI,KAAK,IAAI,EAAE;oBACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAI;iBACxB,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,IAAI,EAAE;oBAC3B,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,EAAC;iBACtC,MAAM;oBACH,SAAS,CAAC,MAAM,CAAC,SAAS,EAAC;iBAC9B;gBACD,MAAM;aACT;;YAED,IAAI,GAAG,KAAI;YACX,IAAI,GAAG,IAAI,CAAC,KAAI;SACnB;KACJ;;;;;;;IAOD,aAAa,CAAC,KAAK,EAAE;QACjB,IAAI,KAAK,IAAI,IAAI,IAAI,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,EAAE;YACjD,MAAM,IAAI,SAAS,CAAC,kCAAkC,CAAC;SAC1D;;;QAGD,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,EAAC;QACpC,MAAM,SAAS,GAAG,KAAK,CAAC,KAAI;QAC5B,IAAI,IAAI,GAAG,SAAS,CAAC,GAAG,CAAC,SAAS,EAAC;QACnC,IAAI,IAAI,IAAI,IAAI,EAAE;YACd,OAAO,IAAI;SACd;;;QAGD,MAAM,YAAY,GAAG,SAAS,CAAC,IAAI,EAAE,KAAK,EAAC;;;;QAI3C,IAAI,IAAI,GAAG,KAAI;QACf,OAAO,IAAI,IAAI,IAAI,EAAE;;YAEjB,IAAI,IAAI,CAAC,IAAI,EAAE;gBACX,IAAI,IAAI,KAAK,IAAI,EAAE;oBACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAI;iBACxB,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,IAAI,EAAE;oBAC3B,SAAS,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,EAAC;iBACtC,MAAM;oBACH,SAAS,CAAC,MAAM,CAAC,SAAS,EAAC;iBAC9B;aACJ,MAAM;gBACH,IAAI,GAAG,KAAI;aACd;;;YAGD,kBAAkB;gBACd,YAAY;gBACZ,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,GAAG,IAAI;cACtC;YACD,IAAI,OAAO,IAAI,CAAC,QAAQ,KAAK,UAAU,EAAE;gBACrC,IAAI;oBACA,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,YAAY,EAAC;iBACzC,CAAC,OAAO,GAAG,EAAE;oBACV;wBACI,OAAO,OAAO,KAAK,WAAW;wBAC9B,OAAO,OAAO,CAAC,KAAK,KAAK,UAAU;sBACrC;wBACE,OAAO,CAAC,KAAK,CAAC,GAAG,EAAC;qBACrB;iBACJ;aACJ,MAAM;gBACH,IAAI,CAAC,YAAY,KAAK,SAAS;gBAC/B,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,KAAK,UAAU;cACjD;gBACE,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,YAAY,EAAC;aAC1C;;;YAGD,IAAI,SAAS,CAAC,YAAY,CAAC,EAAE;gBACzB,KAAK;aACR;;YAED,IAAI,GAAG,IAAI,CAAC,KAAI;SACnB;QACD,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAC;QACtC,aAAa,CAAC,YAAY,EAAE,CAAC,EAAC;QAC9B,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAC;;QAEpC,OAAO,CAAC,YAAY,CAAC,gBAAgB;KACxC;EACJ;;;AAGD,MAAM,CAAC,cAAc,CAAC,WAAW,CAAC,SAAS,EAAE,aAAa,EAAE;IACxD,KAAK,EAAE,WAAW;IAClB,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,IAAI;CACjB,EAAC;;;AAGF;IACI,OAAO,MAAM,KAAK,WAAW;IAC7B,OAAO,MAAM,CAAC,WAAW,KAAK,WAAW;EAC3C;IACE,MAAM,CAAC,cAAc,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC,SAAS,EAAC;CAC7E;;;;;"} \ No newline at end of file diff --git a/deps/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js.map b/deps/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js.map deleted file mode 100644 index c5b2b60a85f0a6..00000000000000 --- a/deps/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"event-target-shim.umd.js","sources":["../src/event.mjs","../src/event-target.mjs"],"sourcesContent":["/**\n * @typedef {object} PrivateData\n * @property {EventTarget} eventTarget The event target.\n * @property {{type:string}} event The original event object.\n * @property {number} eventPhase The current event phase.\n * @property {EventTarget|null} currentTarget The current event target.\n * @property {boolean} canceled The flag to prevent default.\n * @property {boolean} stopped The flag to stop propagation.\n * @property {boolean} immediateStopped The flag to stop propagation immediately.\n * @property {Function|null} passiveListener The listener if the current listener is passive. Otherwise this is null.\n * @property {number} timeStamp The unix time.\n * @private\n */\n\n/**\n * Private data for event wrappers.\n * @type {WeakMap}\n * @private\n */\nconst privateData = new WeakMap()\n\n/**\n * Cache for wrapper classes.\n * @type {WeakMap}\n * @private\n */\nconst wrappers = new WeakMap()\n\n/**\n * Get private data.\n * @param {Event} event The event object to get private data.\n * @returns {PrivateData} The private data of the event.\n * @private\n */\nfunction pd(event) {\n const retv = privateData.get(event)\n console.assert(\n retv != null,\n \"'this' is expected an Event object, but got\",\n event\n )\n return retv\n}\n\n/**\n * https://dom.spec.whatwg.org/#set-the-canceled-flag\n * @param data {PrivateData} private data.\n */\nfunction setCancelFlag(data) {\n if (data.passiveListener != null) {\n if (\n typeof console !== \"undefined\" &&\n typeof console.error === \"function\"\n ) {\n console.error(\n \"Unable to preventDefault inside passive event listener invocation.\",\n data.passiveListener\n )\n }\n return\n }\n if (!data.event.cancelable) {\n return\n }\n\n data.canceled = true\n if (typeof data.event.preventDefault === \"function\") {\n data.event.preventDefault()\n }\n}\n\n/**\n * @see https://dom.spec.whatwg.org/#interface-event\n * @private\n */\n/**\n * The event wrapper.\n * @constructor\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Event|{type:string}} event The original event to wrap.\n */\nfunction Event(eventTarget, event) {\n privateData.set(this, {\n eventTarget,\n event,\n eventPhase: 2,\n currentTarget: eventTarget,\n canceled: false,\n stopped: false,\n immediateStopped: false,\n passiveListener: null,\n timeStamp: event.timeStamp || Date.now(),\n })\n\n // https://heycam.github.io/webidl/#Unforgeable\n Object.defineProperty(this, \"isTrusted\", { value: false, enumerable: true })\n\n // Define accessors\n const keys = Object.keys(event)\n for (let i = 0; i < keys.length; ++i) {\n const key = keys[i]\n if (!(key in this)) {\n Object.defineProperty(this, key, defineRedirectDescriptor(key))\n }\n }\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEvent.prototype = {\n /**\n * The type of this event.\n * @type {string}\n */\n get type() {\n return pd(this).event.type\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n */\n get target() {\n return pd(this).eventTarget\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n */\n get currentTarget() {\n return pd(this).currentTarget\n },\n\n /**\n * @returns {EventTarget[]} The composed path of this event.\n */\n composedPath() {\n const currentTarget = pd(this).currentTarget\n if (currentTarget == null) {\n return []\n }\n return [currentTarget]\n },\n\n /**\n * Constant of NONE.\n * @type {number}\n */\n get NONE() {\n return 0\n },\n\n /**\n * Constant of CAPTURING_PHASE.\n * @type {number}\n */\n get CAPTURING_PHASE() {\n return 1\n },\n\n /**\n * Constant of AT_TARGET.\n * @type {number}\n */\n get AT_TARGET() {\n return 2\n },\n\n /**\n * Constant of BUBBLING_PHASE.\n * @type {number}\n */\n get BUBBLING_PHASE() {\n return 3\n },\n\n /**\n * The target of this event.\n * @type {number}\n */\n get eventPhase() {\n return pd(this).eventPhase\n },\n\n /**\n * Stop event bubbling.\n * @returns {void}\n */\n stopPropagation() {\n const data = pd(this)\n\n data.stopped = true\n if (typeof data.event.stopPropagation === \"function\") {\n data.event.stopPropagation()\n }\n },\n\n /**\n * Stop event bubbling.\n * @returns {void}\n */\n stopImmediatePropagation() {\n const data = pd(this)\n\n data.stopped = true\n data.immediateStopped = true\n if (typeof data.event.stopImmediatePropagation === \"function\") {\n data.event.stopImmediatePropagation()\n }\n },\n\n /**\n * The flag to be bubbling.\n * @type {boolean}\n */\n get bubbles() {\n return Boolean(pd(this).event.bubbles)\n },\n\n /**\n * The flag to be cancelable.\n * @type {boolean}\n */\n get cancelable() {\n return Boolean(pd(this).event.cancelable)\n },\n\n /**\n * Cancel this event.\n * @returns {void}\n */\n preventDefault() {\n setCancelFlag(pd(this))\n },\n\n /**\n * The flag to indicate cancellation state.\n * @type {boolean}\n */\n get defaultPrevented() {\n return pd(this).canceled\n },\n\n /**\n * The flag to be composed.\n * @type {boolean}\n */\n get composed() {\n return Boolean(pd(this).event.composed)\n },\n\n /**\n * The unix time of this event.\n * @type {number}\n */\n get timeStamp() {\n return pd(this).timeStamp\n },\n\n /**\n * The target of this event.\n * @type {EventTarget}\n * @deprecated\n */\n get srcElement() {\n return pd(this).eventTarget\n },\n\n /**\n * The flag to stop event bubbling.\n * @type {boolean}\n * @deprecated\n */\n get cancelBubble() {\n return pd(this).stopped\n },\n set cancelBubble(value) {\n if (!value) {\n return\n }\n const data = pd(this)\n\n data.stopped = true\n if (typeof data.event.cancelBubble === \"boolean\") {\n data.event.cancelBubble = true\n }\n },\n\n /**\n * The flag to indicate cancellation state.\n * @type {boolean}\n * @deprecated\n */\n get returnValue() {\n return !pd(this).canceled\n },\n set returnValue(value) {\n if (!value) {\n setCancelFlag(pd(this))\n }\n },\n\n /**\n * Initialize this event object. But do nothing under event dispatching.\n * @param {string} type The event type.\n * @param {boolean} [bubbles=false] The flag to be possible to bubble up.\n * @param {boolean} [cancelable=false] The flag to be possible to cancel.\n * @deprecated\n */\n initEvent() {\n // Do nothing.\n },\n}\n\n// `constructor` is not enumerable.\nObject.defineProperty(Event.prototype, \"constructor\", {\n value: Event,\n configurable: true,\n writable: true,\n})\n\n// Ensure `event instanceof window.Event` is `true`.\nif (typeof window !== \"undefined\" && typeof window.Event !== \"undefined\") {\n Object.setPrototypeOf(Event.prototype, window.Event.prototype)\n\n // Make association for wrappers.\n wrappers.set(window.Event.prototype, Event)\n}\n\n/**\n * Get the property descriptor to redirect a given property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to redirect the property.\n * @private\n */\nfunction defineRedirectDescriptor(key) {\n return {\n get() {\n return pd(this).event[key]\n },\n set(value) {\n pd(this).event[key] = value\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Get the property descriptor to call a given method property.\n * @param {string} key Property name to define property descriptor.\n * @returns {PropertyDescriptor} The property descriptor to call the method property.\n * @private\n */\nfunction defineCallDescriptor(key) {\n return {\n value() {\n const event = pd(this).event\n return event[key].apply(event, arguments)\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Define new wrapper class.\n * @param {Function} BaseEvent The base wrapper class.\n * @param {Object} proto The prototype of the original event.\n * @returns {Function} The defined wrapper class.\n * @private\n */\nfunction defineWrapper(BaseEvent, proto) {\n const keys = Object.keys(proto)\n if (keys.length === 0) {\n return BaseEvent\n }\n\n /** CustomEvent */\n function CustomEvent(eventTarget, event) {\n BaseEvent.call(this, eventTarget, event)\n }\n\n CustomEvent.prototype = Object.create(BaseEvent.prototype, {\n constructor: { value: CustomEvent, configurable: true, writable: true },\n })\n\n // Define accessors.\n for (let i = 0; i < keys.length; ++i) {\n const key = keys[i]\n if (!(key in BaseEvent.prototype)) {\n const descriptor = Object.getOwnPropertyDescriptor(proto, key)\n const isFunc = typeof descriptor.value === \"function\"\n Object.defineProperty(\n CustomEvent.prototype,\n key,\n isFunc\n ? defineCallDescriptor(key)\n : defineRedirectDescriptor(key)\n )\n }\n }\n\n return CustomEvent\n}\n\n/**\n * Get the wrapper class of a given prototype.\n * @param {Object} proto The prototype of the original event to get its wrapper.\n * @returns {Function} The wrapper class.\n * @private\n */\nfunction getWrapper(proto) {\n if (proto == null || proto === Object.prototype) {\n return Event\n }\n\n let wrapper = wrappers.get(proto)\n if (wrapper == null) {\n wrapper = defineWrapper(getWrapper(Object.getPrototypeOf(proto)), proto)\n wrappers.set(proto, wrapper)\n }\n return wrapper\n}\n\n/**\n * Wrap a given event to management a dispatching.\n * @param {EventTarget} eventTarget The event target of this dispatching.\n * @param {Object} event The event to wrap.\n * @returns {Event} The wrapper instance.\n * @private\n */\nexport function wrapEvent(eventTarget, event) {\n const Wrapper = getWrapper(Object.getPrototypeOf(event))\n return new Wrapper(eventTarget, event)\n}\n\n/**\n * Get the immediateStopped flag of a given event.\n * @param {Event} event The event to get.\n * @returns {boolean} The flag to stop propagation immediately.\n * @private\n */\nexport function isStopped(event) {\n return pd(event).immediateStopped\n}\n\n/**\n * Set the current event phase of a given event.\n * @param {Event} event The event to set current target.\n * @param {number} eventPhase New event phase.\n * @returns {void}\n * @private\n */\nexport function setEventPhase(event, eventPhase) {\n pd(event).eventPhase = eventPhase\n}\n\n/**\n * Set the current target of a given event.\n * @param {Event} event The event to set current target.\n * @param {EventTarget|null} currentTarget New current target.\n * @returns {void}\n * @private\n */\nexport function setCurrentTarget(event, currentTarget) {\n pd(event).currentTarget = currentTarget\n}\n\n/**\n * Set a passive listener of a given event.\n * @param {Event} event The event to set current target.\n * @param {Function|null} passiveListener New passive listener.\n * @returns {void}\n * @private\n */\nexport function setPassiveListener(event, passiveListener) {\n pd(event).passiveListener = passiveListener\n}\n","import {\n isStopped,\n setCurrentTarget,\n setEventPhase,\n setPassiveListener,\n wrapEvent,\n} from \"./event.mjs\"\n\n/**\n * @typedef {object} ListenerNode\n * @property {Function} listener\n * @property {1|2|3} listenerType\n * @property {boolean} passive\n * @property {boolean} once\n * @property {ListenerNode|null} next\n * @private\n */\n\n/**\n * @type {WeakMap>}\n * @private\n */\nconst listenersMap = new WeakMap()\n\n// Listener types\nconst CAPTURE = 1\nconst BUBBLE = 2\nconst ATTRIBUTE = 3\n\n/**\n * Check whether a given value is an object or not.\n * @param {any} x The value to check.\n * @returns {boolean} `true` if the value is an object.\n */\nfunction isObject(x) {\n return x !== null && typeof x === \"object\" //eslint-disable-line no-restricted-syntax\n}\n\n/**\n * Get listeners.\n * @param {EventTarget} eventTarget The event target to get.\n * @returns {Map} The listeners.\n * @private\n */\nfunction getListeners(eventTarget) {\n const listeners = listenersMap.get(eventTarget)\n if (listeners == null) {\n throw new TypeError(\n \"'this' is expected an EventTarget object, but got another value.\"\n )\n }\n return listeners\n}\n\n/**\n * Get the property descriptor for the event attribute of a given event.\n * @param {string} eventName The event name to get property descriptor.\n * @returns {PropertyDescriptor} The property descriptor.\n * @private\n */\nfunction defineEventAttributeDescriptor(eventName) {\n return {\n get() {\n const listeners = getListeners(this)\n let node = listeners.get(eventName)\n while (node != null) {\n if (node.listenerType === ATTRIBUTE) {\n return node.listener\n }\n node = node.next\n }\n return null\n },\n\n set(listener) {\n if (typeof listener !== \"function\" && !isObject(listener)) {\n listener = null // eslint-disable-line no-param-reassign\n }\n const listeners = getListeners(this)\n\n // Traverse to the tail while removing old value.\n let prev = null\n let node = listeners.get(eventName)\n while (node != null) {\n if (node.listenerType === ATTRIBUTE) {\n // Remove old value.\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n } else {\n prev = node\n }\n\n node = node.next\n }\n\n // Add new value.\n if (listener !== null) {\n const newNode = {\n listener,\n listenerType: ATTRIBUTE,\n passive: false,\n once: false,\n next: null,\n }\n if (prev === null) {\n listeners.set(eventName, newNode)\n } else {\n prev.next = newNode\n }\n }\n },\n configurable: true,\n enumerable: true,\n }\n}\n\n/**\n * Define an event attribute (e.g. `eventTarget.onclick`).\n * @param {Object} eventTargetPrototype The event target prototype to define an event attrbite.\n * @param {string} eventName The event name to define.\n * @returns {void}\n */\nfunction defineEventAttribute(eventTargetPrototype, eventName) {\n Object.defineProperty(\n eventTargetPrototype,\n `on${eventName}`,\n defineEventAttributeDescriptor(eventName)\n )\n}\n\n/**\n * Define a custom EventTarget with event attributes.\n * @param {string[]} eventNames Event names for event attributes.\n * @returns {EventTarget} The custom EventTarget.\n * @private\n */\nfunction defineCustomEventTarget(eventNames) {\n /** CustomEventTarget */\n function CustomEventTarget() {\n EventTarget.call(this)\n }\n\n CustomEventTarget.prototype = Object.create(EventTarget.prototype, {\n constructor: {\n value: CustomEventTarget,\n configurable: true,\n writable: true,\n },\n })\n\n for (let i = 0; i < eventNames.length; ++i) {\n defineEventAttribute(CustomEventTarget.prototype, eventNames[i])\n }\n\n return CustomEventTarget\n}\n\n/**\n * EventTarget.\n *\n * - This is constructor if no arguments.\n * - This is a function which returns a CustomEventTarget constructor if there are arguments.\n *\n * For example:\n *\n * class A extends EventTarget {}\n * class B extends EventTarget(\"message\") {}\n * class C extends EventTarget(\"message\", \"error\") {}\n * class D extends EventTarget([\"message\", \"error\"]) {}\n */\nfunction EventTarget() {\n /*eslint-disable consistent-return */\n if (this instanceof EventTarget) {\n listenersMap.set(this, new Map())\n return\n }\n if (arguments.length === 1 && Array.isArray(arguments[0])) {\n return defineCustomEventTarget(arguments[0])\n }\n if (arguments.length > 0) {\n const types = new Array(arguments.length)\n for (let i = 0; i < arguments.length; ++i) {\n types[i] = arguments[i]\n }\n return defineCustomEventTarget(types)\n }\n throw new TypeError(\"Cannot call a class as a function\")\n /*eslint-enable consistent-return */\n}\n\n// Should be enumerable, but class methods are not enumerable.\nEventTarget.prototype = {\n /**\n * Add a given listener to this event target.\n * @param {string} eventName The event name to add.\n * @param {Function} listener The listener to add.\n * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n * @returns {void}\n */\n addEventListener(eventName, listener, options) {\n if (listener == null) {\n return\n }\n if (typeof listener !== \"function\" && !isObject(listener)) {\n throw new TypeError(\"'listener' should be a function or an object.\")\n }\n\n const listeners = getListeners(this)\n const optionsIsObj = isObject(options)\n const capture = optionsIsObj\n ? Boolean(options.capture)\n : Boolean(options)\n const listenerType = capture ? CAPTURE : BUBBLE\n const newNode = {\n listener,\n listenerType,\n passive: optionsIsObj && Boolean(options.passive),\n once: optionsIsObj && Boolean(options.once),\n next: null,\n }\n\n // Set it as the first node if the first node is null.\n let node = listeners.get(eventName)\n if (node === undefined) {\n listeners.set(eventName, newNode)\n return\n }\n\n // Traverse to the tail while checking duplication..\n let prev = null\n while (node != null) {\n if (\n node.listener === listener &&\n node.listenerType === listenerType\n ) {\n // Should ignore duplication.\n return\n }\n prev = node\n node = node.next\n }\n\n // Add it.\n prev.next = newNode\n },\n\n /**\n * Remove a given listener from this event target.\n * @param {string} eventName The event name to remove.\n * @param {Function} listener The listener to remove.\n * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener.\n * @returns {void}\n */\n removeEventListener(eventName, listener, options) {\n if (listener == null) {\n return\n }\n\n const listeners = getListeners(this)\n const capture = isObject(options)\n ? Boolean(options.capture)\n : Boolean(options)\n const listenerType = capture ? CAPTURE : BUBBLE\n\n let prev = null\n let node = listeners.get(eventName)\n while (node != null) {\n if (\n node.listener === listener &&\n node.listenerType === listenerType\n ) {\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n return\n }\n\n prev = node\n node = node.next\n }\n },\n\n /**\n * Dispatch a given event.\n * @param {Event|{type:string}} event The event to dispatch.\n * @returns {boolean} `false` if canceled.\n */\n dispatchEvent(event) {\n if (event == null || typeof event.type !== \"string\") {\n throw new TypeError('\"event.type\" should be a string.')\n }\n\n // If listeners aren't registered, terminate.\n const listeners = getListeners(this)\n const eventName = event.type\n let node = listeners.get(eventName)\n if (node == null) {\n return true\n }\n\n // Since we cannot rewrite several properties, so wrap object.\n const wrappedEvent = wrapEvent(this, event)\n\n // This doesn't process capturing phase and bubbling phase.\n // This isn't participating in a tree.\n let prev = null\n while (node != null) {\n // Remove this listener if it's once\n if (node.once) {\n if (prev !== null) {\n prev.next = node.next\n } else if (node.next !== null) {\n listeners.set(eventName, node.next)\n } else {\n listeners.delete(eventName)\n }\n } else {\n prev = node\n }\n\n // Call this listener\n setPassiveListener(\n wrappedEvent,\n node.passive ? node.listener : null\n )\n if (typeof node.listener === \"function\") {\n try {\n node.listener.call(this, wrappedEvent)\n } catch (err) {\n if (\n typeof console !== \"undefined\" &&\n typeof console.error === \"function\"\n ) {\n console.error(err)\n }\n }\n } else if (\n node.listenerType !== ATTRIBUTE &&\n typeof node.listener.handleEvent === \"function\"\n ) {\n node.listener.handleEvent(wrappedEvent)\n }\n\n // Break if `event.stopImmediatePropagation` was called.\n if (isStopped(wrappedEvent)) {\n break\n }\n\n node = node.next\n }\n setPassiveListener(wrappedEvent, null)\n setEventPhase(wrappedEvent, 0)\n setCurrentTarget(wrappedEvent, null)\n\n return !wrappedEvent.defaultPrevented\n },\n}\n\n// `constructor` is not enumerable.\nObject.defineProperty(EventTarget.prototype, \"constructor\", {\n value: EventTarget,\n configurable: true,\n writable: true,\n})\n\n// Ensure `eventTarget instanceof window.EventTarget` is `true`.\nif (\n typeof window !== \"undefined\" &&\n typeof window.EventTarget !== \"undefined\"\n) {\n Object.setPrototypeOf(EventTarget.prototype, window.EventTarget.prototype)\n}\n\nexport { defineEventAttribute, EventTarget }\nexport default EventTarget\n"],"names":["pd","event","retv","privateData","get","console","assert","setCancelFlag","data","passiveListener","cancelable","canceled","preventDefault","error","Event","eventTarget","set","eventPhase","currentTarget","stopped","immediateStopped","timeStamp","Date","now","Object","defineProperty","value","enumerable","key","keys","i","length","defineRedirectDescriptor","configurable","defineCallDescriptor","apply","arguments","defineWrapper","BaseEvent","proto","CustomEvent","call","prototype","create","constructor","writable","descriptor","getOwnPropertyDescriptor","isFunc","getWrapper","wrapper","wrappers","getPrototypeOf","wrapEvent","Wrapper","isStopped","setEventPhase","setCurrentTarget","setPassiveListener","isObject","x","_typeof","getListeners","listeners","listenersMap","TypeError","defineEventAttributeDescriptor","eventName","node","listenerType","listener","next","prev","delete","newNode","passive","once","defineEventAttribute","eventTargetPrototype","defineCustomEventTarget","eventNames","CustomEventTarget","EventTarget","Map","Array","isArray","types","WeakMap","type","target","composedPath","NONE","CAPTURING_PHASE","AT_TARGET","BUBBLING_PHASE","stopPropagation","stopImmediatePropagation","bubbles","defaultPrevented","composed","srcElement","cancelBubble","returnValue","initEvent","window","setPrototypeOf","CAPTURE","BUBBLE","addEventListener","options","optionsIsObj","capture","removeEventListener","dispatchEvent","wrappedEvent","err","handleEvent"],"mappings":";;;;wbAkCA,QAASA,CAAAA,CAAT,CAAYC,CAAZ,CAAmB,IACTC,CAAAA,CAAI,CAAGC,CAAW,CAACC,GAAZD,CAAgBF,CAAhBE,QACbE,CAAAA,OAAO,CAACC,MAARD,CACY,IAARH,EAAAA,CADJG,CAEI,6CAFJA,CAGIJ,CAHJI,EAKOH,EAOX,QAASK,CAAAA,CAAT,CAAuBC,CAAvB,CAA6B,OACG,KAAxBA,EAAAA,CAAI,CAACC,eADgB,MAarB,CAACD,CAAI,CAACP,KAALO,CAAWE,UAbS,GAiBzBF,CAAI,CAACG,QAALH,GAjByB,CAkBgB,UAArC,QAAOA,CAAAA,CAAI,CAACP,KAALO,CAAWI,cAlBG,EAmBrBJ,CAAI,CAACP,KAALO,CAAWI,cAAXJ,EAnBqB,QAGE,WAAnB,QAAOH,CAAAA,OAAP,EACyB,UAAzB,QAAOA,CAAAA,OAAO,CAACQ,KAJE,EAMjBR,OAAO,CAACQ,KAARR,CACI,oEADJA,CAEIG,CAAI,CAACC,eAFTJ,CANiB,EAiC7B,QAASS,CAAAA,CAAT,CAAeC,CAAf,CAA4Bd,CAA5B,CAAmC,CAC/BE,CAAW,CAACa,GAAZb,CAAgB,IAAhBA,CAAsB,CAClBY,WAAW,CAAXA,CADkB,CAElBd,KAAK,CAALA,CAFkB,CAGlBgB,UAAU,CAAE,CAHM,CAIlBC,aAAa,CAAEH,CAJG,CAKlBJ,QAAQ,GALU,CAMlBQ,OAAO,GANW,CAOlBC,gBAAgB,GAPE,CAQlBX,eAAe,CAAE,IARC,CASlBY,SAAS,CAAEpB,CAAK,CAACoB,SAANpB,EAAmBqB,IAAI,CAACC,GAALD,EATZ,CAAtBnB,CAD+B,CAc/BqB,MAAM,CAACC,cAAPD,CAAsB,IAAtBA,CAA4B,WAA5BA,CAAyC,CAAEE,KAAK,GAAP,CAAgBC,UAAU,GAA1B,CAAzCH,CAd+B,QAmBrBI,CAAAA,EAFJC,CAAI,CAAGL,MAAM,CAACK,IAAPL,CAAYvB,CAAZuB,EACJM,CAAC,CAAG,EAAGA,CAAC,CAAGD,CAAI,CAACE,OAAQ,EAAED,EACzBF,EAAMC,CAAI,CAACC,CAAD,EACVF,CAAG,GAAI,OACTJ,MAAM,CAACC,cAAPD,CAAsB,IAAtBA,CAA4BI,CAA5BJ,CAAiCQ,CAAwB,CAACJ,CAAD,CAAzDJ,EAyOZ,QAASQ,CAAAA,CAAT,CAAkCJ,CAAlC,CAAuC,OAC5B,CACHxB,GADG,WACG,OACKJ,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASC,KAATD,CAAe4B,CAAf5B,CAFR,CAAA,CAIHgB,GAJG,UAICU,EAAO,CACP1B,CAAE,CAAC,IAAD,CAAFA,CAASC,KAATD,CAAe4B,CAAf5B,EAAsB0B,CALvB,CAAA,CAOHO,YAAY,GAPT,CAQHN,UAAU,GARP,EAkBX,QAASO,CAAAA,CAAT,CAA8BN,CAA9B,CAAmC,OACxB,CACHF,KADG,WACK,IACEzB,CAAAA,CAAK,CAAGD,CAAE,CAAC,IAAD,CAAFA,CAASC,YAChBA,CAAAA,CAAK,CAAC2B,CAAD,CAAL3B,CAAWkC,KAAXlC,CAAiBA,CAAjBA,CAAwBmC,SAAxBnC,CAHR,CAAA,CAKHgC,YAAY,GALT,CAMHN,UAAU,GANP,EAiBX,QAASU,CAAAA,CAAT,CAAuBC,CAAvB,CAAkCC,CAAlC,CAAyC,SAO5BC,CAAAA,EAAYzB,EAAad,EAAO,CACrCqC,CAAS,CAACG,IAAVH,CAAe,IAAfA,CAAqBvB,CAArBuB,CAAkCrC,CAAlCqC,KAPET,CAAAA,CAAI,CAAGL,MAAM,CAACK,IAAPL,CAAYe,CAAZf,KACO,CAAhBK,GAAAA,CAAI,CAACE,aACEO,CAAAA,EAQXE,CAAW,CAACE,SAAZF,CAAwBhB,MAAM,CAACmB,MAAPnB,CAAcc,CAAS,CAACI,SAAxBlB,CAAmC,CACvDoB,WAAW,CAAE,CAAElB,KAAK,CAAEc,CAAT,CAAsBP,YAAY,GAAlC,CAA0CY,QAAQ,GAAlD,CAD0C,CAAnCrB,CAXa,KAgBhC,GACKI,CAAAA,CADL,CAAIE,CAAC,CAAG,EAAGA,CAAC,CAAGD,CAAI,CAACE,OAAQ,EAAED,KACzBF,EAAMC,CAAI,CAACC,CAAD,EACZ,EAAEF,CAAG,GAAIU,CAAAA,CAAS,CAACI,SAAnB,EAA+B,IACzBI,CAAAA,CAAU,CAAGtB,MAAM,CAACuB,wBAAPvB,CAAgCe,CAAhCf,CAAuCI,CAAvCJ,CADY,CAEzBwB,CAAM,CAA+B,UAA5B,QAAOF,CAAAA,CAAU,CAACpB,KAFF,CAG/BF,MAAM,CAACC,cAAPD,CACIgB,CAAW,CAACE,SADhBlB,CAEII,CAFJJ,CAGIwB,CAAM,CACAd,CAAoB,CAACN,CAAD,CADpB,CAEAI,CAAwB,CAACJ,CAAD,CALlCJ,QAUDgB,CAAAA,EASX,QAASS,CAAAA,CAAT,CAAoBV,CAApB,CAA2B,IACV,IAATA,EAAAA,CAAK,EAAYA,CAAK,GAAKf,MAAM,CAACkB,gBAC3B5B,CAAAA,KAGPoC,CAAAA,CAAO,CAAGC,CAAQ,CAAC/C,GAAT+C,CAAaZ,CAAbY,QACC,KAAXD,EAAAA,IACAA,CAAO,CAAGb,CAAa,CAACY,CAAU,CAACzB,MAAM,CAAC4B,cAAP5B,CAAsBe,CAAtBf,CAAD,CAAX,CAA2Ce,CAA3C,EACvBY,CAAQ,CAACnC,GAATmC,CAAaZ,CAAbY,CAAoBD,CAApBC,GAEGD,EAUJ,QAASG,CAAAA,CAAT,CAAmBtC,CAAnB,CAAgCd,CAAhC,CAAuC,IACpCqD,CAAAA,CAAO,CAAGL,CAAU,CAACzB,MAAM,CAAC4B,cAAP5B,CAAsBvB,CAAtBuB,CAAD,QACnB,IAAI8B,CAAAA,CAAJ,CAAYvC,CAAZ,CAAyBd,CAAzB,EASJ,QAASsD,CAAAA,CAAT,CAAmBtD,CAAnB,CAA0B,OACtBD,CAAAA,CAAE,CAACC,CAAD,CAAFD,CAAUoB,iBAUd,QAASoC,CAAAA,CAAT,CAAuBvD,CAAvB,CAA8BgB,CAA9B,CAA0C,CAC7CjB,CAAE,CAACC,CAAD,CAAFD,CAAUiB,UAAVjB,CAAuBiB,EAUpB,QAASwC,CAAAA,CAAT,CAA0BxD,CAA1B,CAAiCiB,CAAjC,CAAgD,CACnDlB,CAAE,CAACC,CAAD,CAAFD,CAAUkB,aAAVlB,CAA0BkB,EAUvB,QAASwC,CAAAA,CAAT,CAA4BzD,CAA5B,CAAmCQ,CAAnC,CAAoD,CACvDT,CAAE,CAACC,CAAD,CAAFD,CAAUS,eAAVT,CAA4BS,EC3bhC,QAASkD,CAAAA,CAAT,CAAkBC,CAAlB,CAAqB,OACJ,KAANA,GAAAA,CAAC,EAA0B,QAAb,GAAAC,EAAOD,GAShC,QAASE,CAAAA,CAAT,CAAsB/C,CAAtB,CAAmC,IACzBgD,CAAAA,CAAS,CAAGC,CAAY,CAAC5D,GAAb4D,CAAiBjD,CAAjBiD,KACD,IAAbD,EAAAA,OACM,IAAIE,CAAAA,SAAJ,CACF,kEADE,QAIHF,CAAAA,EASX,QAASG,CAAAA,CAAT,CAAwCC,CAAxC,CAAmD,OACxC,CACH/D,GADG,WACG,QACI2D,CAAAA,CAAS,CAAGD,CAAY,CAAC,IAAD,CAD5B,CAEEM,CAAI,CAAGL,CAAS,CAAC3D,GAAV2D,CAAcI,CAAdJ,CAFT,CAGa,IAARK,EAAAA,CAHL,EAGmB,IACbA,IAAAA,CAAI,CAACC,mBACED,CAAAA,CAAI,CAACE,SAEhBF,CAAI,CAAGA,CAAI,CAACG,WAET,KAVR,CAAA,CAaHvD,GAbG,UAaCsD,EAAU,CACc,UAApB,QAAOA,CAAAA,CAAP,EAAmCX,CAAQ,CAACW,CAAD,CADrC,GAENA,CAAQ,CAAG,IAFL,SAIJP,CAAAA,CAAS,CAAGD,CAAY,CAAC,IAAD,CAJpB,CAONU,CAAI,CAAG,IAPD,CAQNJ,CAAI,CAAGL,CAAS,CAAC3D,GAAV2D,CAAcI,CAAdJ,CARD,CASK,IAARK,EAAAA,CATG,EAUFA,IAAAA,CAAI,CAACC,YAVH,CAYW,IAATG,GAAAA,CAZF,CAcuB,IAAdJ,GAAAA,CAAI,CAACG,IAdd,CAiBER,CAAS,CAACU,MAAVV,CAAiBI,CAAjBJ,CAjBF,CAeEA,CAAS,CAAC/C,GAAV+C,CAAcI,CAAdJ,CAAyBK,CAAI,CAACG,IAA9BR,CAfF,CAaES,CAAI,CAACD,IAALC,CAAYJ,CAAI,CAACG,IAbnB,CAoBFC,CAAI,CAAGJ,CApBL,CAuBNA,CAAI,CAAGA,CAAI,CAACG,IAvBN,IA2BO,IAAbD,GAAAA,EAAmB,IACbI,CAAAA,CAAO,CAAG,CACZJ,QAAQ,CAARA,CADY,CAEZD,YAAY,EAFA,CAGZM,OAAO,GAHK,CAIZC,IAAI,GAJQ,CAKZL,IAAI,CAAE,IALM,EAOH,IAATC,GAAAA,CARe,CASfT,CAAS,CAAC/C,GAAV+C,CAAcI,CAAdJ,CAAyBW,CAAzBX,CATe,CAWfS,CAAI,CAACD,IAALC,CAAYE,EAnDrB,CAAA,CAuDHzC,YAAY,GAvDT,CAwDHN,UAAU,GAxDP,EAkEX,QAASkD,CAAAA,CAAT,CAA8BC,CAA9B,CAAoDX,CAApD,CAA+D,CAC3D3C,MAAM,CAACC,cAAPD,CACIsD,CADJtD,aAES2C,EAFT3C,CAGI0C,CAA8B,CAACC,CAAD,CAHlC3C,EAaJ,QAASuD,CAAAA,CAAT,CAAiCC,CAAjC,CAA6C,SAEhCC,CAAAA,GAAoB,CACzBC,CAAW,CAACzC,IAAZyC,CAAiB,IAAjBA,EAGJD,CAAiB,CAACvC,SAAlBuC,CAA8BzD,MAAM,CAACmB,MAAPnB,CAAc0D,CAAW,CAACxC,SAA1BlB,CAAqC,CAC/DoB,WAAW,CAAE,CACTlB,KAAK,CAAEuD,CADE,CAEThD,YAAY,GAFH,CAGTY,QAAQ,GAHC,CADkD,CAArCrB,CANW,KAcpC,GAAIM,CAAAA,CAAC,CAAG,EAAGA,CAAC,CAAGkD,CAAU,CAACjD,OAAQ,EAAED,EACrC+C,CAAoB,CAACI,CAAiB,CAACvC,SAAnB,CAA8BsC,CAAU,CAAClD,CAAD,CAAxC,CAApB+C,OAGGI,CAAAA,EAgBX,QAASC,CAAAA,CAAT,EAAuB,IAEf,eAAgBA,CAAAA,aAChBlB,CAAAA,CAAY,CAAChD,GAAbgD,CAAiB,IAAjBA,CAAuB,GAAImB,CAAAA,GAA3BnB,KAGqB,CAArB5B,GAAAA,SAAS,CAACL,MAAVK,EAA0BgD,KAAK,CAACC,OAAND,CAAchD,SAAS,CAAC,CAAD,CAAvBgD,QACnBL,CAAAA,CAAuB,CAAC3C,SAAS,CAAC,CAAD,CAAV,KAEX,CAAnBA,CAAAA,SAAS,CAACL,OAAY,QAChBuD,CAAAA,CAAK,CAAOF,KAAP,CAAahD,SAAS,CAACL,MAAvB,EACFD,CAAC,CAAG,EAAGA,CAAC,CAAGM,SAAS,CAACL,OAAQ,EAAED,EACpCwD,CAAK,CAACxD,CAAD,CAALwD,CAAWlD,SAAS,CAACN,CAAD,CAApBwD,OAEGP,CAAAA,CAAuB,CAACO,CAAD,OAE5B,IAAIrB,CAAAA,SAAJ,CAAc,mCAAd,KD5KJ9D,CAAAA,CAAW,CAAG,GAAIoF,CAAAA,QAOlBpC,CAAQ,CAAG,GAAIoC,CAAAA,QAkFrBzE,CAAK,CAAC4B,SAAN5B,CAAkB,IAKV0E,CAAAA,MAAO,OACAxF,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASC,KAATD,CAAewF,IANZ,CAAA,IAaVC,CAAAA,QAAS,OACFzF,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASe,WAdN,CAAA,IAqBVG,CAAAA,eAAgB,OACTlB,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASkB,aAtBN,CAAA,CA4BdwE,YA5Bc,WA4BC,IACLxE,CAAAA,CAAa,CAAGlB,CAAE,CAAC,IAAD,CAAFA,CAASkB,cADpB,MAEU,KAAjBA,EAAAA,CAFO,CAGA,EAHA,CAKJ,CAACA,CAAD,CAjCG,CAAA,IAwCVyE,CAAAA,MAAO,OACA,EAzCG,CAAA,IAgDVC,CAAAA,iBAAkB,OACX,EAjDG,CAAA,IAwDVC,CAAAA,WAAY,OACL,EAzDG,CAAA,IAgEVC,CAAAA,gBAAiB,OACV,EAjEG,CAAA,IAwEV7E,CAAAA,YAAa,OACNjB,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASiB,UAzEN,CAAA,CAgFd8E,eAhFc,WAgFI,IACRvF,CAAAA,CAAI,CAAGR,CAAE,CAAC,IAAD,EAEfQ,CAAI,CAACW,OAALX,GAHc,CAI4B,UAAtC,QAAOA,CAAAA,CAAI,CAACP,KAALO,CAAWuF,eAJR,EAKVvF,CAAI,CAACP,KAALO,CAAWuF,eAAXvF,EArFM,CAAA,CA6FdwF,wBA7Fc,WA6Fa,IACjBxF,CAAAA,CAAI,CAAGR,CAAE,CAAC,IAAD,EAEfQ,CAAI,CAACW,OAALX,GAHuB,CAIvBA,CAAI,CAACY,gBAALZ,GAJuB,CAK4B,UAA/C,QAAOA,CAAAA,CAAI,CAACP,KAALO,CAAWwF,wBALC,EAMnBxF,CAAI,CAACP,KAALO,CAAWwF,wBAAXxF,EAnGM,CAAA,IA2GVyF,CAAAA,SAAU,SACKjG,CAAE,CAAC,IAAD,CAAFA,CAASC,KAATD,CAAeiG,OA5GpB,CAAA,IAmHVvF,CAAAA,YAAa,SACEV,CAAE,CAAC,IAAD,CAAFA,CAASC,KAATD,CAAeU,UApHpB,CAAA,CA2HdE,cA3Hc,WA2HG,CACbL,CAAa,CAACP,CAAE,CAAC,IAAD,CAAH,CA5HH,CAAA,IAmIVkG,CAAAA,kBAAmB,OACZlG,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASW,QApIN,CAAA,IA2IVwF,CAAAA,UAAW,SACInG,CAAE,CAAC,IAAD,CAAFA,CAASC,KAATD,CAAemG,QA5IpB,CAAA,IAmJV9E,CAAAA,WAAY,OACLrB,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASqB,SApJN,CAAA,IA4JV+E,CAAAA,YAAa,OACNpG,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASe,WA7JN,CAAA,IAqKVsF,CAAAA,cAAe,OACRrG,CAAAA,CAAE,CAAC,IAAD,CAAFA,CAASmB,OAtKN,CAAA,IAwKVkF,CAAAA,aAAa3E,EAAO,IACfA,MAGClB,CAAAA,CAAI,CAAGR,CAAE,CAAC,IAAD,EAEfQ,CAAI,CAACW,OAALX,IACuC,SAAnC,QAAOA,CAAAA,CAAI,CAACP,KAALO,CAAW6F,eAClB7F,CAAI,CAACP,KAALO,CAAW6F,YAAX7F,KAhLM,CAAA,IAyLV8F,CAAAA,aAAc,OACP,CAACtG,CAAE,CAAC,IAAD,CAAFA,CAASW,QA1LP,CAAA,IA4LV2F,CAAAA,YAAY5E,EAAO,CACdA,CADc,EAEfnB,CAAa,CAACP,CAAE,CAAC,IAAD,CAAH,CA9LP,CAAA,CAyMduG,SAzMc,WAyMF,EAzME,EA+MlB/E,MAAM,CAACC,cAAPD,CAAsBV,CAAK,CAAC4B,SAA5BlB,CAAuC,aAAvCA,CAAsD,CAClDE,KAAK,CAAEZ,CAD2C,CAElDmB,YAAY,GAFsC,CAGlDY,QAAQ,GAH0C,CAAtDrB,EAOsB,WAAlB,QAAOgF,CAAAA,MAAP,EAAyD,WAAxB,QAAOA,CAAAA,MAAM,CAAC1F,QAC/CU,MAAM,CAACiF,cAAPjF,CAAsBV,CAAK,CAAC4B,SAA5BlB,CAAuCgF,MAAM,CAAC1F,KAAP0F,CAAa9D,SAApDlB,EAGA2B,CAAQ,CAACnC,GAATmC,CAAaqD,MAAM,CAAC1F,KAAP0F,CAAa9D,SAA1BS,CAAqCrC,CAArCqC,MChTEa,CAAAA,CAAY,CAAG,GAAIuB,CAAAA,QAGnBmB,CAAO,CAAG,EACVC,CAAM,CAAG,KA0KfzB,CAAW,CAACxC,SAAZwC,CAAwB,CAQpB0B,gBARoB,UAQHzC,EAAWG,EAAUuC,EAAS,IAC3B,IAAZvC,EAAAA,MAGoB,UAApB,QAAOA,CAAAA,CAAP,EAAkC,CAACX,CAAQ,CAACW,CAAD,OACrC,IAAIL,CAAAA,SAAJ,CAAc,+CAAd,KAGJF,CAAAA,CAAS,CAAGD,CAAY,CAAC,IAAD,EACxBgD,CAAY,CAAGnD,CAAQ,CAACkD,CAAD,EACvBE,CAAO,CAAGD,CAAY,GACdD,CAAO,CAACE,OADM,GAEdF,EACRxC,CAAY,CAAG0C,CAAO,CAAGL,CAAH,CAAaC,EACnCjC,CAAO,CAAG,CACZJ,QAAQ,CAARA,CADY,CAEZD,YAAY,CAAZA,CAFY,CAGZM,OAAO,CAAEmC,CAAY,IAAYD,CAAO,CAAClC,OAH7B,CAIZC,IAAI,CAAEkC,CAAY,IAAYD,CAAO,CAACjC,IAJ1B,CAKZL,IAAI,CAAE,IALM,EASZH,CAAI,CAAGL,CAAS,CAAC3D,GAAV2D,CAAcI,CAAdJ,KACPK,SAAAA,aACAL,CAAAA,CAAS,CAAC/C,GAAV+C,CAAcI,CAAdJ,CAAyBW,CAAzBX,SAKAS,CAAAA,CAAI,CAAG,KACI,IAARJ,EAAAA,GAAc,IAEbA,CAAI,CAACE,QAALF,GAAkBE,CAAlBF,EACAA,CAAI,CAACC,YAALD,GAAsBC,SAK1BG,CAAI,CAAGJ,CARU,CASjBA,CAAI,CAAGA,CAAI,CAACG,IAxC2B,CA4C3CC,CAAI,CAACD,IAALC,CAAYE,EApDI,CAAA,CA8DpBsC,mBA9DoB,UA8DA7C,EAAWG,EAAUuC,EAAS,IAC9B,IAAZvC,EAAAA,SAIEP,CAAAA,CAAS,CAAGD,CAAY,CAAC,IAAD,EACxBiD,CAAO,CAAGpD,CAAQ,CAACkD,CAAD,CAARlD,GACFkD,CAAO,CAACE,OADNpD,GAEFkD,EACRxC,CAAY,CAAG0C,CAAO,CAAGL,CAAH,CAAaC,EAErCnC,CAAI,CAAG,KACPJ,CAAI,CAAGL,CAAS,CAAC3D,GAAV2D,CAAcI,CAAdJ,EACI,IAARK,EAAAA,GAAc,IAEbA,CAAI,CAACE,QAALF,GAAkBE,CAAlBF,EACAA,CAAI,CAACC,YAALD,GAAsBC,cAET,IAATG,GAAAA,EAEqB,IAAdJ,GAAAA,CAAI,CAACG,KAGZR,CAAS,CAACU,MAAVV,CAAiBI,CAAjBJ,EAFAA,CAAS,CAAC/C,GAAV+C,CAAcI,CAAdJ,CAAyBK,CAAI,CAACG,IAA9BR,EAFAS,CAAI,CAACD,IAALC,CAAYJ,CAAI,CAACG,MASzBC,CAAI,CAAGJ,CAfU,CAgBjBA,CAAI,CAAGA,CAAI,CAACG,KA3FA,CAAA,CAoGpB0C,aApGoB,UAoGNhH,EAAO,IACJ,IAATA,EAAAA,CAAK,EAAkC,QAAtB,QAAOA,CAAAA,CAAK,CAACuF,UACxB,IAAIvB,CAAAA,SAAJ,CAAc,oCAAd,EAFO,GAMXF,CAAAA,CAAS,CAAGD,CAAY,CAAC,IAAD,CANb,CAOXK,CAAS,CAAGlE,CAAK,CAACuF,IAPP,CAQbpB,CAAI,CAAGL,CAAS,CAAC3D,GAAV2D,CAAcI,CAAdJ,CARM,IASL,IAARK,EAAAA,WATa,OAcX8C,CAAAA,CAAY,CAAG7D,CAAS,CAAC,IAAD,CAAOpD,CAAP,CAdb,CAkBbuE,CAAI,CAAG,IAlBM,CAmBF,IAARJ,EAAAA,CAnBU,EAmBI,IAEbA,CAAI,CAACQ,KACQ,IAATJ,GAAAA,EAEqB,IAAdJ,GAAAA,CAAI,CAACG,KAGZR,CAAS,CAACU,MAAVV,CAAiBI,CAAjBJ,EAFAA,CAAS,CAAC/C,GAAV+C,CAAcI,CAAdJ,CAAyBK,CAAI,CAACG,IAA9BR,EAFAS,CAAI,CAACD,IAALC,CAAYJ,CAAI,CAACG,KAOrBC,CAAI,CAAGJ,EAIXV,CAAkB,CACdwD,CADc,CAEd9C,CAAI,CAACO,OAALP,CAAeA,CAAI,CAACE,QAApBF,CAA+B,IAFjB,EAIW,UAAzB,QAAOA,CAAAA,CAAI,CAACE,YACR,CACAF,CAAI,CAACE,QAALF,CAAc3B,IAAd2B,CAAmB,IAAnBA,CAAyB8C,CAAzB9C,CADJ,CAEE,MAAO+C,CAAP,CAAY,CAEa,WAAnB,QAAO9G,CAAAA,OAAP,EACyB,UAAzB,QAAOA,CAAAA,OAAO,CAACQ,KAHT,EAKNR,OAAO,CAACQ,KAARR,CAAc8G,CAAd9G,MAIR+D,CAAAA,CAAI,CAACC,YAALD,GA/TE,CA+TFA,EACqC,UAArC,QAAOA,CAAAA,CAAI,CAACE,QAALF,CAAcgD,aAErBhD,CAAI,CAACE,QAALF,CAAcgD,WAAdhD,CAA0B8C,CAA1B9C,KAIAb,CAAS,CAAC2D,CAAD,QAIb9C,CAAI,CAAGA,CAAI,CAACG,WAEhBb,CAAAA,CAAkB,CAACwD,CAAD,CAAe,IAAf,EAClB1D,CAAa,CAAC0D,CAAD,CAAe,CAAf,EACbzD,CAAgB,CAACyD,CAAD,CAAe,IAAf,EAET,CAACA,CAAY,CAAChB,iBAvKL,EA4KxB1E,MAAM,CAACC,cAAPD,CAAsB0D,CAAW,CAACxC,SAAlClB,CAA6C,aAA7CA,CAA4D,CACxDE,KAAK,CAAEwD,CADiD,CAExDjD,YAAY,GAF4C,CAGxDY,QAAQ,GAHgD,CAA5DrB,EAQsB,WAAlB,QAAOgF,CAAAA,MAAP,EAC8B,WAA9B,QAAOA,CAAAA,MAAM,CAACtB,aAEd1D,MAAM,CAACiF,cAAPjF,CAAsB0D,CAAW,CAACxC,SAAlClB,CAA6CgF,MAAM,CAACtB,WAAPsB,CAAmB9D,SAAhElB"} \ No newline at end of file diff --git a/deps/npm/node_modules/event-target-shim/index.d.ts b/deps/npm/node_modules/event-target-shim/index.d.ts deleted file mode 100644 index a30309782f93c0..00000000000000 --- a/deps/npm/node_modules/event-target-shim/index.d.ts +++ /dev/null @@ -1,399 +0,0 @@ -export as namespace EventTargetShim - -/** - * `Event` interface. - * @see https://dom.spec.whatwg.org/#event - */ -export interface Event { - /** - * The type of this event. - */ - readonly type: string - - /** - * The target of this event. - */ - readonly target: EventTarget<{}, {}, "standard"> | null - - /** - * The current target of this event. - */ - readonly currentTarget: EventTarget<{}, {}, "standard"> | null - - /** - * The target of this event. - * @deprecated - */ - readonly srcElement: any | null - - /** - * The composed path of this event. - */ - composedPath(): EventTarget<{}, {}, "standard">[] - - /** - * Constant of NONE. - */ - readonly NONE: number - - /** - * Constant of CAPTURING_PHASE. - */ - readonly CAPTURING_PHASE: number - - /** - * Constant of BUBBLING_PHASE. - */ - readonly BUBBLING_PHASE: number - - /** - * Constant of AT_TARGET. - */ - readonly AT_TARGET: number - - /** - * Indicates which phase of the event flow is currently being evaluated. - */ - readonly eventPhase: number - - /** - * Stop event bubbling. - */ - stopPropagation(): void - - /** - * Stop event bubbling. - */ - stopImmediatePropagation(): void - - /** - * Initialize event. - * @deprecated - */ - initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void - - /** - * The flag indicating bubbling. - */ - readonly bubbles: boolean - - /** - * Stop event bubbling. - * @deprecated - */ - cancelBubble: boolean - - /** - * Set or get cancellation flag. - * @deprecated - */ - returnValue: boolean - - /** - * The flag indicating whether the event can be canceled. - */ - readonly cancelable: boolean - - /** - * Cancel this event. - */ - preventDefault(): void - - /** - * The flag to indicating whether the event was canceled. - */ - readonly defaultPrevented: boolean - - /** - * The flag to indicating if event is composed. - */ - readonly composed: boolean - - /** - * Indicates whether the event was dispatched by the user agent. - */ - readonly isTrusted: boolean - - /** - * The unix time of this event. - */ - readonly timeStamp: number -} - -/** - * The constructor of `EventTarget` interface. - */ -export type EventTargetConstructor< - TEvents extends EventTarget.EventDefinition = {}, - TEventAttributes extends EventTarget.EventDefinition = {}, - TMode extends EventTarget.Mode = "loose" -> = { - prototype: EventTarget - new(): EventTarget -} - -/** - * `EventTarget` interface. - * @see https://dom.spec.whatwg.org/#interface-eventtarget - */ -export type EventTarget< - TEvents extends EventTarget.EventDefinition = {}, - TEventAttributes extends EventTarget.EventDefinition = {}, - TMode extends EventTarget.Mode = "loose" -> = EventTarget.EventAttributes & { - /** - * Add a given listener to this event target. - * @param eventName The event name to add. - * @param listener The listener to add. - * @param options The options for this listener. - */ - addEventListener>( - type: TEventType, - listener: - | EventTarget.Listener> - | null, - options?: boolean | EventTarget.AddOptions - ): void - - /** - * Remove a given listener from this event target. - * @param eventName The event name to remove. - * @param listener The listener to remove. - * @param options The options for this listener. - */ - removeEventListener>( - type: TEventType, - listener: - | EventTarget.Listener> - | null, - options?: boolean | EventTarget.RemoveOptions - ): void - - /** - * Dispatch a given event. - * @param event The event to dispatch. - * @returns `false` if canceled. - */ - dispatchEvent>( - event: EventTarget.EventData - ): boolean -} - -export const EventTarget: EventTargetConstructor & { - /** - * Create an `EventTarget` instance with detailed event definition. - * - * The detailed event definition requires to use `defineEventAttribute()` - * function later. - * - * Unfortunately, the second type parameter `TEventAttributes` was needed - * because we cannot compute string literal types. - * - * @example - * const signal = new EventTarget<{ abort: Event }, { onabort: Event }>() - * defineEventAttribute(signal, "abort") - */ - new < - TEvents extends EventTarget.EventDefinition, - TEventAttributes extends EventTarget.EventDefinition, - TMode extends EventTarget.Mode = "loose" - >(): EventTarget - - /** - * Define an `EventTarget` constructor with attribute events and detailed event definition. - * - * Unfortunately, the second type parameter `TEventAttributes` was needed - * because we cannot compute string literal types. - * - * @example - * class AbortSignal extends EventTarget<{ abort: Event }, { onabort: Event }>("abort") { - * abort(): void {} - * } - * - * @param events Optional event attributes (e.g. passing in `"click"` adds `onclick` to prototype). - */ - < - TEvents extends EventTarget.EventDefinition = {}, - TEventAttributes extends EventTarget.EventDefinition = {}, - TMode extends EventTarget.Mode = "loose" - >(events: string[]): EventTargetConstructor< - TEvents, - TEventAttributes, - TMode - > - - /** - * Define an `EventTarget` constructor with attribute events and detailed event definition. - * - * Unfortunately, the second type parameter `TEventAttributes` was needed - * because we cannot compute string literal types. - * - * @example - * class AbortSignal extends EventTarget<{ abort: Event }, { onabort: Event }>("abort") { - * abort(): void {} - * } - * - * @param events Optional event attributes (e.g. passing in `"click"` adds `onclick` to prototype). - */ - < - TEvents extends EventTarget.EventDefinition = {}, - TEventAttributes extends EventTarget.EventDefinition = {}, - TMode extends EventTarget.Mode = "loose" - >(event0: string, ...events: string[]): EventTargetConstructor< - TEvents, - TEventAttributes, - TMode - > -} - -export namespace EventTarget { - /** - * Options of `removeEventListener()` method. - */ - export interface RemoveOptions { - /** - * The flag to indicate that the listener is for the capturing phase. - */ - capture?: boolean - } - - /** - * Options of `addEventListener()` method. - */ - export interface AddOptions extends RemoveOptions { - /** - * The flag to indicate that the listener doesn't support - * `event.preventDefault()` operation. - */ - passive?: boolean - /** - * The flag to indicate that the listener will be removed on the first - * event. - */ - once?: boolean - } - - /** - * The type of regular listeners. - */ - export interface FunctionListener { - (event: TEvent): void - } - - /** - * The type of object listeners. - */ - export interface ObjectListener { - handleEvent(event: TEvent): void - } - - /** - * The type of listeners. - */ - export type Listener = - | FunctionListener - | ObjectListener - - /** - * Event definition. - */ - export type EventDefinition = { - readonly [key: string]: Event - } - - /** - * Mapped type for event attributes. - */ - export type EventAttributes = { - [P in keyof TEventAttributes]: - | FunctionListener - | null - } - - /** - * The type of event data for `dispatchEvent()` method. - */ - export type EventData< - TEvents extends EventDefinition, - TEventType extends keyof TEvents | string, - TMode extends Mode - > = - TEventType extends keyof TEvents - ? ( - // Require properties which are not generated automatically. - & Pick< - TEvents[TEventType], - Exclude - > - // Properties which are generated automatically are optional. - & Partial> - ) - : ( - TMode extends "standard" - ? Event - : Event | NonStandardEvent - ) - - /** - * The string literal types of the properties which are generated - * automatically in `dispatchEvent()` method. - */ - export type OmittableEventKeys = Exclude - - /** - * The type of event data. - */ - export type NonStandardEvent = { - [key: string]: any - type: string - } - - /** - * The type of listeners. - */ - export type PickEvent< - TEvents extends EventDefinition, - TEventType extends keyof TEvents | string, - > = - TEventType extends keyof TEvents - ? TEvents[TEventType] - : Event - - /** - * Event type candidates. - */ - export type EventType< - TEvents extends EventDefinition, - TMode extends Mode - > = - TMode extends "strict" - ? keyof TEvents - : keyof TEvents | string - - /** - * - `"strict"` ..... Methods don't accept unknown events. - * `dispatchEvent()` accepts partial objects. - * - `"loose"` ...... Methods accept unknown events. - * `dispatchEvent()` accepts partial objects. - * - `"standard"` ... Methods accept unknown events. - * `dispatchEvent()` doesn't accept partial objects. - */ - export type Mode = "strict" | "standard" | "loose" -} - -/** - * Specialized `type` property. - */ -export type Type = { type: T } - -/** - * Define an event attribute (e.g. `eventTarget.onclick`). - * @param prototype The event target prototype to define an event attribute. - * @param eventName The event name to define. - */ -export function defineEventAttribute( - prototype: EventTarget, - eventName: string -): void - -export default EventTarget diff --git a/deps/npm/node_modules/fastest-levenshtein/esm/mod.d.ts b/deps/npm/node_modules/fastest-levenshtein/esm/mod.d.ts deleted file mode 100644 index 50927ef5005803..00000000000000 --- a/deps/npm/node_modules/fastest-levenshtein/esm/mod.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const distance: (a: string, b: string) => number; -declare const closest: (str: string, arr: readonly string[]) => string; -export { closest, distance }; -//# sourceMappingURL=mod.d.ts.map \ No newline at end of file diff --git a/deps/npm/node_modules/fastest-levenshtein/esm/mod.d.ts.map b/deps/npm/node_modules/fastest-levenshtein/esm/mod.d.ts.map deleted file mode 100644 index 7fd5c175637b30..00000000000000 --- a/deps/npm/node_modules/fastest-levenshtein/esm/mod.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../mod.ts"],"names":[],"mappings":"AAiHA,QAAA,MAAM,QAAQ,MAAO,MAAM,KAAK,MAAM,KAAG,MAaxC,CAAC;AAEF,QAAA,MAAM,OAAO,QAAS,MAAM,OAAO,SAAS,MAAM,EAAE,KAAG,MAWtD,CAAC;AAEF,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC"} \ No newline at end of file diff --git a/deps/npm/node_modules/fastest-levenshtein/mod.d.ts b/deps/npm/node_modules/fastest-levenshtein/mod.d.ts deleted file mode 100644 index b1b5ce7f7de951..00000000000000 --- a/deps/npm/node_modules/fastest-levenshtein/mod.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -declare const distance: (a: string, b: string) => number; -declare const closest: (str: string, arr: readonly string[]) => string; -export { closest, distance }; diff --git a/deps/npm/node_modules/fastest-levenshtein/test.ts b/deps/npm/node_modules/fastest-levenshtein/test.ts deleted file mode 100644 index 41939bcdc8e2be..00000000000000 --- a/deps/npm/node_modules/fastest-levenshtein/test.ts +++ /dev/null @@ -1,67 +0,0 @@ -const { closest, distance } = require("./mod.js"); - -const levenshtein = (a, b) => { - if (a.length === 0) { - return b.length; - } - if (b.length === 0) { - return a.length; - } - - if (a.length > b.length) { - const tmp = a; - a = b; - b = tmp; - } - - const row = []; - for (let i = 0; i <= a.length; i++) { - row[i] = i; - } - - for (let i = 1; i <= b.length; i++) { - let prev = i; - for (let j = 1; j <= a.length; j++) { - let val = 0; - if (b.charAt(i - 1) === a.charAt(j - 1)) { - val = row[j - 1]; - } else { - val = Math.min(row[j - 1] + 1, prev + 1, row[j] + 1); - } - row[j - 1] = prev; - prev = val; - } - row[a.length] = prev; - } - - return row[a.length]; -}; - -const makeid = (length) => { - let result = ""; - const characters = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; - const charactersLength = characters.length; - for (let i = 0; i < length; i++) { - result += characters.charAt(Math.floor(Math.random() * charactersLength)); - } - return result; -}; - -test("test compare", () => { - for (let i = 0; i < 1000; i++) { - const rnd_num1 = (Math.random() * 1000) | 0; - const rnd_num2 = (Math.random() * 1000) | 0; - const rnd_string1 = makeid(rnd_num1); - const rnd_string2 = makeid(rnd_num2); - const actual = distance(rnd_string1, rnd_string2); - const expected = levenshtein(rnd_string1, rnd_string2); - expect(actual).toBe(expected); - } -}); - -test("test find", () => { - const actual = closest("fast", ["slow", "faster", "fastest"]); - const expected = "faster"; - expect(actual).toBe(expected); -}); diff --git a/deps/npm/node_modules/glob/LICENSE b/deps/npm/node_modules/glob/LICENSE index 39e8fe16f665ae..ec7df93329abf3 100644 --- a/deps/npm/node_modules/glob/LICENSE +++ b/deps/npm/node_modules/glob/LICENSE @@ -1,6 +1,6 @@ The ISC License -Copyright (c) 2009-2022 Isaac Z. Schlueter and Contributors +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 diff --git a/deps/npm/node_modules/glob/common.js b/deps/npm/node_modules/glob/common.js deleted file mode 100644 index 61a4452f097dcd..00000000000000 --- a/deps/npm/node_modules/glob/common.js +++ /dev/null @@ -1,244 +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").isAbsolute -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.windowsPathsNoEscape = !!options.windowsPathsNoEscape || - options.allowWindowsEscape === false - if (self.windowsPathsNoEscape) { - pattern = pattern.replace(/\\/g, '/') - } - - 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 = path.resolve(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) - - // 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) - self.nomount = !!options.nomount - - if (process.platform === "win32") { - self.root = self.root.replace(/\\/g, "/") - self.cwd = self.cwd.replace(/\\/g, "/") - self.cwdAbs = self.cwdAbs.replace(/\\/g, "/") - } - - // disable comments and negation in Minimatch. - // Note that they are not supported in Glob itself anyway. - options.nonegate = true - options.nocomment = true - - 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/glob/dist/cjs/glob.js b/deps/npm/node_modules/glob/dist/cjs/glob.js new file mode 100644 index 00000000000000..5e1d25ed4b33d0 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/glob.js @@ -0,0 +1,228 @@ +"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) { + 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; + const mmo = { + // default nocase based on platform + ...opts, + dot: this.dot, + matchBase: this.matchBase, + nobrace: this.nobrace, + nocase: this.nocase, + nocaseMagicOnly: true, + nocomment: true, + noext: this.noext, + nonegate: true, + optimizationLevel: 2, + platform: this.platform, + windowsPathsNoEscape: this.windowsPathsNoEscape, + }; + 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/glob/dist/cjs/has-magic.js b/deps/npm/node_modules/glob/dist/cjs/has-magic.js new file mode 100644 index 00000000000000..0918bd57e0f1c2 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/has-magic.js @@ -0,0 +1,27 @@ +"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/glob/dist/cjs/ignore.js b/deps/npm/node_modules/glob/dist/cjs/ignore.js new file mode 100644 index 00000000000000..0cbcca335e1cca --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/ignore.js @@ -0,0 +1,103 @@ +"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/glob/dist/cjs/index-cjs.js b/deps/npm/node_modules/glob/dist/cjs/index-cjs.js new file mode 100644 index 00000000000000..e2b324783e8076 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/index-cjs.js @@ -0,0 +1,7 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +const index_js_1 = __importDefault(require("./index.js")); +module.exports = Object.assign(index_js_1.default, { default: index_js_1.default, glob: index_js_1.default }); +//# sourceMappingURL=index-cjs.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/glob/dist/cjs/index.js b/deps/npm/node_modules/glob/dist/cjs/index.js new file mode 100644 index 00000000000000..0b6842da937af4 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/index.js @@ -0,0 +1,68 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.hasMagic = exports.Glob = exports.unescape = exports.escape = exports.sync = exports.iterate = exports.iterateSync = exports.stream = exports.streamSync = exports.globIterate = exports.globIterateSync = exports.glob = 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(); +} +exports.glob = glob; +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.default = Object.assign(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, +}); +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/glob/dist/cjs/package.json b/deps/npm/node_modules/glob/dist/cjs/package.json new file mode 100644 index 00000000000000..5bbefffbabee39 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/package.json @@ -0,0 +1,3 @@ +{ + "type": "commonjs" +} diff --git a/deps/npm/node_modules/glob/dist/cjs/pattern.js b/deps/npm/node_modules/glob/dist/cjs/pattern.js new file mode 100644 index 00000000000000..181371293d8605 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/pattern.js @@ -0,0 +1,219 @@ +"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/glob/dist/cjs/processor.js b/deps/npm/node_modules/glob/dist/cjs/processor.js new file mode 100644 index 00000000000000..bd067e9b9033dc --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/processor.js @@ -0,0 +1,309 @@ +"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/glob/dist/cjs/walker.js b/deps/npm/node_modules/glob/dist/cjs/walker.js new file mode 100644 index 00000000000000..8c31172cc92fba --- /dev/null +++ b/deps/npm/node_modules/glob/dist/cjs/walker.js @@ -0,0 +1,360 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +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 = __importDefault(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.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) { + this.matchEmit(e.fullpath() + mark); + } + else { + const rel = e.relative(); + const pre = this.opts.dotRelative && !rel.startsWith('..' + this.#sep) + ? '.' + this.#sep + : ''; + this.matchEmit(!rel && mark ? '.' + 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.default({ + 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/glob/dist/mjs/glob.js b/deps/npm/node_modules/glob/dist/mjs/glob.js new file mode 100644 index 00000000000000..e1eaf6f4f51697 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/mjs/glob.js @@ -0,0 +1,224 @@ +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) { + 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; + const mmo = { + // default nocase based on platform + ...opts, + dot: this.dot, + matchBase: this.matchBase, + nobrace: this.nobrace, + nocase: this.nocase, + nocaseMagicOnly: true, + nocomment: true, + noext: this.noext, + nonegate: true, + optimizationLevel: 2, + platform: this.platform, + windowsPathsNoEscape: this.windowsPathsNoEscape, + }; + 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/glob/dist/mjs/has-magic.js b/deps/npm/node_modules/glob/dist/mjs/has-magic.js new file mode 100644 index 00000000000000..ba2321ab868d02 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/mjs/has-magic.js @@ -0,0 +1,23 @@ +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/glob/dist/mjs/ignore.js b/deps/npm/node_modules/glob/dist/mjs/ignore.js new file mode 100644 index 00000000000000..2dbaa16a11460e --- /dev/null +++ b/deps/npm/node_modules/glob/dist/mjs/ignore.js @@ -0,0 +1,99 @@ +// 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/glob/dist/mjs/index.js b/deps/npm/node_modules/glob/dist/mjs/index.js new file mode 100644 index 00000000000000..df9deead1144ce --- /dev/null +++ b/deps/npm/node_modules/glob/dist/mjs/index.js @@ -0,0 +1,55 @@ +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(); +} +export 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 default Object.assign(glob, { + glob, + globSync, + sync, + globStream, + stream, + globStreamSync, + streamSync, + globIterate, + iterate, + globIterateSync, + iterateSync, + Glob, + hasMagic, + escape, + unescape, +}); +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/glob/dist/mjs/package.json b/deps/npm/node_modules/glob/dist/mjs/package.json new file mode 100644 index 00000000000000..3dbc1ca591c055 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/mjs/package.json @@ -0,0 +1,3 @@ +{ + "type": "module" +} diff --git a/deps/npm/node_modules/glob/dist/mjs/pattern.js b/deps/npm/node_modules/glob/dist/mjs/pattern.js new file mode 100644 index 00000000000000..60aa415d92fd12 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/mjs/pattern.js @@ -0,0 +1,215 @@ +// 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/glob/dist/mjs/processor.js b/deps/npm/node_modules/glob/dist/mjs/processor.js new file mode 100644 index 00000000000000..dd2228ad6761a5 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/mjs/processor.js @@ -0,0 +1,302 @@ +// 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/glob/dist/mjs/walker.js b/deps/npm/node_modules/glob/dist/mjs/walker.js new file mode 100644 index 00000000000000..349314e297a106 --- /dev/null +++ b/deps/npm/node_modules/glob/dist/mjs/walker.js @@ -0,0 +1,351 @@ +/** + * 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.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) { + this.matchEmit(e.fullpath() + mark); + } + else { + const rel = e.relative(); + const pre = this.opts.dotRelative && !rel.startsWith('..' + this.#sep) + ? '.' + this.#sep + : ''; + this.matchEmit(!rel && mark ? '.' + 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/glob/glob.js b/deps/npm/node_modules/glob/glob.js deleted file mode 100644 index 2112a957dc5016..00000000000000 --- a/deps/npm/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').isAbsolute -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/glob/node_modules/minimatch/LICENSE b/deps/npm/node_modules/glob/node_modules/minimatch/LICENSE deleted file mode 100644 index 1493534e60dce4..00000000000000 --- a/deps/npm/node_modules/glob/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/glob/node_modules/minimatch/lib/path.js b/deps/npm/node_modules/glob/node_modules/minimatch/lib/path.js deleted file mode 100644 index ffe453d9e05577..00000000000000 --- a/deps/npm/node_modules/glob/node_modules/minimatch/lib/path.js +++ /dev/null @@ -1,4 +0,0 @@ -const isWindows = typeof process === 'object' && - process && - process.platform === 'win32' -module.exports = isWindows ? { sep: '\\' } : { sep: '/' } diff --git a/deps/npm/node_modules/glob/node_modules/minimatch/minimatch.js b/deps/npm/node_modules/glob/node_modules/minimatch/minimatch.js deleted file mode 100644 index 6c8bfc35181c6d..00000000000000 --- a/deps/npm/node_modules/glob/node_modules/minimatch/minimatch.js +++ /dev/null @@ -1,944 +0,0 @@ -const minimatch = module.exports = (p, pattern, options = {}) => { - assertValidPattern(pattern) - - // shortcut: comments match nothing. - if (!options.nocomment && pattern.charAt(0) === '#') { - return false - } - - return new Minimatch(pattern, options).match(p) -} - -module.exports = minimatch - -const path = require('./lib/path.js') -minimatch.sep = path.sep - -const GLOBSTAR = Symbol('globstar **') -minimatch.GLOBSTAR = GLOBSTAR -const expand = require('brace-expansion') - -const 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() -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 = '(?:(?!(?:\\\/|^)\\.).)*?' - -// "abc" -> { a:true, b:true, c:true } -const charSet = s => s.split('').reduce((set, c) => { - set[c] = true - return set -}, {}) - -// characters that need to be escaped in RegExp. -const reSpecials = charSet('().*{}+?[]^$\\!') - -// characters that indicate we have to add the pattern start -const addPatternStartSet = charSet('[.(') - -// normalizes slashes. -const slashSplit = /\/+/ - -minimatch.filter = (pattern, options = {}) => - (p, i, list) => minimatch(p, pattern, options) - -const ext = (a, b = {}) => { - const t = {} - Object.keys(a).forEach(k => t[k] = a[k]) - Object.keys(b).forEach(k => t[k] = b[k]) - return t -} - -minimatch.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)) - m.Minimatch = class Minimatch extends orig.Minimatch { - constructor (pattern, options) { - super(pattern, ext(def, options)) - } - } - m.Minimatch.defaults = options => orig.defaults(ext(def, options)).Minimatch - m.filter = (pattern, options) => orig.filter(pattern, ext(def, options)) - m.defaults = options => orig.defaults(ext(def, options)) - m.makeRe = (pattern, options) => orig.makeRe(pattern, ext(def, options)) - m.braceExpand = (pattern, options) => orig.braceExpand(pattern, ext(def, options)) - m.match = (list, pattern, options) => orig.match(list, pattern, ext(def, options)) - - return m -} - - - - - -// 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 = (pattern, options) => braceExpand(pattern, options) - -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) -} - -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') - } -} - -// 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 SUBPARSE = Symbol('subparse') - -minimatch.makeRe = (pattern, options) => - new Minimatch(pattern, options || {}).makeRe() - -minimatch.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 -} - -// replace stuff like \* with * -const globUnescape = s => s.replace(/\\(.)/g, '$1') -const charUnescape = s => s.replace(/\\([^-\]])/g, '$1') -const regExpEscape = s => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&') -const braExpEscape = s => s.replace(/[[\]\\]/g, '\\$&') - -class Minimatch { - constructor (pattern, options) { - assertValidPattern(pattern) - - if (!options) options = {} - - this.options = options - this.set = [] - this.pattern = pattern - this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || - options.allowWindowsEscape === false - if (this.windowsPathsNoEscape) { - this.pattern = this.pattern.replace(/\\/g, '/') - } - this.regexp = null - this.negate = false - this.comment = false - this.empty = false - this.partial = !!options.partial - - // make the set of regexps etc. - this.make() - } - - 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 - let set = this.globSet = this.braceExpand() - - if (options.debug) this.debug = (...args) => console.error(...args) - - 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(s => s.split(slashSplit)) - - this.debug(this.pattern, set) - - // glob --> regexps - set = set.map((s, si, set) => s.map(this.parse, this)) - - this.debug(this.pattern, set) - - // filter out everything that didn't compile properly. - set = set.filter(s => s.indexOf(false) === -1) - - this.debug(this.pattern, set) - - this.set = set - } - - parseNegate () { - if (this.options.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) { - 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?') - } - - braceExpand () { - return braceExpand(this.pattern, this.options) - } - - parse (pattern, isSub) { - assertValidPattern(pattern) - - const options = this.options - - // shortcuts - if (pattern === '**') { - if (!options.noglobstar) - return GLOBSTAR - else - pattern = '*' - } - if (pattern === '') return '' - - let re = '' - let hasMagic = false - let escaping = false - // ? => one single character - const patternListStack = [] - const negativeLists = [] - let stateChar - let inClass = false - let reClassStart = -1 - let classStart = -1 - let cs - let pl - let sp - // . and .. never match anything that doesn't start with ., - // even when options.dot is set. However, if the pattern - // starts with ., then traversal patterns can match. - let dotTravAllowed = pattern.charAt(0) === '.' - let dotFileAllowed = options.dot || dotTravAllowed - const patternStart = () => - dotTravAllowed - ? '' - : dotFileAllowed - ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))' - : '(?!\\.)' - const subPatternStart = (p) => - p.charAt(0) === '.' - ? '' - : options.dot - ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))' - : '(?!\\.)' - - - const 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 - } - this.debug('clearStateChar %j %j', stateChar, re) - stateChar = false - } - } - - for (let i = 0, c; (i < pattern.length) && (c = pattern.charAt(i)); i++) { - this.debug('%s\t%s %s %j', pattern, i, re, c) - - // skip over any that are escaped. - if (escaping) { - /* istanbul ignore next - completely not allowed, even escaped. */ - if (c === '/') { - return false - } - - if (reSpecials[c]) { - re += '\\' - } - re += c - escaping = false - continue - } - - switch (c) { - /* istanbul ignore next */ - case '/': { - // Should already be path-split by now. - return false - } - - case '\\': - if (inClass && pattern.charAt(i + 1) === '-') { - re += c - continue - } - - 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. - this.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 - } - - const plEntry = { - type: stateChar, - start: i - 1, - reStart: re.length, - open: plTypes[stateChar].open, - close: plTypes[stateChar].close, - } - this.debug(this.pattern, '\t', plEntry) - patternListStack.push(plEntry) - // negation is (?:(?!(?:js)(?:))[^/]*) - re += plEntry.open - // next entry starts with a dot maybe? - if (plEntry.start === 0 && plEntry.type !== '!') { - dotTravAllowed = true - re += subPatternStart(pattern.slice(i + 1)) - } - this.debug('plType %j %j', stateChar, re) - stateChar = false - continue - } - - case ')': { - const plEntry = patternListStack[patternListStack.length - 1] - if (inClass || !plEntry) { - re += '\\)' - continue - } - patternListStack.pop() - - // closing an extglob - clearStateChar() - hasMagic = true - pl = plEntry - // negation is (?:(?!js)[^/]*) - // The others are (?:) - re += pl.close - if (pl.type === '!') { - negativeLists.push(Object.assign(pl, { reEnd: re.length })) - } - continue - } - - case '|': { - const plEntry = patternListStack[patternListStack.length - 1] - if (inClass || !plEntry) { - re += '\\|' - continue - } - - clearStateChar() - re += '|' - // next subpattern can start with a dot? - if (plEntry.start === 0 && plEntry.type !== '!') { - dotTravAllowed = true - re += subPatternStart(pattern.slice(i + 1)) - } - 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 - continue - } - - // 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. - cs = pattern.substring(classStart + 1, i) - try { - RegExp('[' + braExpEscape(charUnescape(cs)) + ']') - // looks good, finish up the class. - re += c - } catch (er) { - // out of order ranges in JS are errors, but in glob syntax, - // they're just a range that matches nothing. - re = re.substring(0, reClassStart) + '(?:$.)' // match nothing ever - } - hasMagic = true - inClass = false - continue - - default: - // swallow any state char that wasn't consumed - clearStateChar() - - if (reSpecials[c] && !(c === '^' && inClass)) { - re += '\\' - } - - re += c - break - - } // 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.slice(classStart + 1) - sp = this.parse(cs, SUBPARSE) - re = re.substring(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()) { - let tail - 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, (_, $1, $2) => { - /* istanbul ignore else - should already be done */ - 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) - const 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 - const addPatternStart = addPatternStartSet[re.charAt(0)] - - // 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 (let n = negativeLists.length - 1; n > -1; n--) { - const nl = negativeLists[n] - - const nlBefore = re.slice(0, nl.reStart) - const nlFirst = re.slice(nl.reStart, nl.reEnd - 8) - let nlAfter = re.slice(nl.reEnd) - const nlLast = re.slice(nl.reEnd - 8, nl.reEnd) + 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. - const closeParensBefore = nlBefore.split(')').length - const openParensBefore = nlBefore.split('(').length - closeParensBefore - let cleanAfter = nlAfter - for (let i = 0; i < openParensBefore; i++) { - cleanAfter = cleanAfter.replace(/\)[+*?]?/, '') - } - nlAfter = cleanAfter - - const dollar = nlAfter === '' && isSub !== SUBPARSE ? '(?:$|\\/)' : '' - - re = nlBefore + nlFirst + nlAfter + dollar + nlLast - } - - // 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] - } - - // if it's nocase, and the lcase/uppercase don't match, it's magic - if (options.nocase && !hasMagic) { - hasMagic = pattern.toUpperCase() !== pattern.toLowerCase() - } - - // 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) - } - - const flags = options.nocase ? 'i' : '' - try { - return Object.assign(new RegExp('^' + re + '$', flags), { - _glob: pattern, - _src: re, - }) - } 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('$.') - } - } - - 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 = options.nocase ? 'i' : '' - - // coalesce globstars and regexpify non-globstar patterns - // if it's the only item, then we just do one twoStar - // if it's the first, and there are more, prepend (\/|twoStar\/)? to next - // if it's the last, append (\/twoStar|) to previous - // if it's in the middle, append (\/|\/twoStar\/) to previous - // then filter out GLOBSTAR symbols - let re = set.map(pattern => { - pattern = pattern.map(p => - typeof p === 'string' ? regExpEscape(p) - : p === GLOBSTAR ? GLOBSTAR - : p._src - ).reduce((set, p) => { - if (!(set[set.length - 1] === GLOBSTAR && p === GLOBSTAR)) { - set.push(p) - } - return set - }, []) - pattern.forEach((p, i) => { - if (p !== GLOBSTAR || pattern[i-1] === GLOBSTAR) { - return - } - if (i === 0) { - if (pattern.length > 1) { - pattern[i+1] = '(?:\\\/|' + twoStar + '\\\/)?' + pattern[i+1] - } else { - pattern[i] = twoStar - } - } else if (i === pattern.length - 1) { - pattern[i-1] += '(?:\\\/|' + twoStar + ')?' - } else { - pattern[i-1] += '(?:\\\/|\\\/' + twoStar + '\\\/)' + pattern[i+1] - pattern[i+1] = GLOBSTAR - } - }) - return pattern.filter(p => p !== GLOBSTAR).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 - } - - 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 (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. - - 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 - for (let i = f.length - 1; i >= 0; i--) { - filename = f[i] - if (filename) break - } - - for (let i = 0; i < set.length; i++) { - const pattern = set[i] - let file = f - 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 - } -} - -minimatch.Minimatch = Minimatch diff --git a/deps/npm/node_modules/glob/node_modules/minimatch/package.json b/deps/npm/node_modules/glob/node_modules/minimatch/package.json deleted file mode 100644 index c8809dbb3119d9..00000000000000 --- a/deps/npm/node_modules/glob/node_modules/minimatch/package.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "author": "Isaac Z. Schlueter (http://blog.izs.me)", - "name": "minimatch", - "description": "a glob matcher in javascript", - "publishConfig": { - "tag": "legacy-v5" - }, - "version": "5.1.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" - }, - "main": "minimatch.js", - "scripts": { - "test": "tap", - "snap": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags" - }, - "engines": { - "node": ">=10" - }, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "devDependencies": { - "tap": "^16.3.2" - }, - "license": "ISC", - "files": [ - "minimatch.js", - "lib" - ] -} diff --git a/deps/npm/node_modules/glob/package.json b/deps/npm/node_modules/glob/package.json index ca0fd916211b51..b0bb7f3711b867 100644 --- a/deps/npm/node_modules/glob/package.json +++ b/deps/npm/node_modules/glob/package.json @@ -1,55 +1,98 @@ { "author": "Isaac Z. Schlueter (http://blog.izs.me/)", "name": "glob", - "description": "a little globber", - "version": "8.1.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "version": "9.3.1", "repository": { "type": "git", "url": "git://github.com/isaacs/node-glob.git" }, - "main": "glob.js", + "main": "./dist/cjs/index-cjs.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/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, "files": [ - "glob.js", - "sync.js", - "common.js" + "dist" ], - "engines": { - "node": ">=12" + "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", + "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": { "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "minimatch": "^7.4.1", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" }, "devDependencies": { - "memfs": "^3.2.0", - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^16.0.1", - "tick": "0.0.6" + "@types/node": "^18.11.18", + "@types/tap": "^15.0.7", + "c8": "^7.12.0", + "eslint-config-prettier": "^8.6.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.js", - "after": "test/zz-cleanup.js", - "statements": 90, - "branches": 90, - "functions": 90, - "lines": 90, - "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" + "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/glob/sync.js b/deps/npm/node_modules/glob/sync.js deleted file mode 100644 index af4600dd595081..00000000000000 --- a/deps/npm/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').isAbsolute -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/graceful-fs/package.json b/deps/npm/node_modules/graceful-fs/package.json index 305785687247ce..87babf0248563c 100644 --- a/deps/npm/node_modules/graceful-fs/package.json +++ b/deps/npm/node_modules/graceful-fs/package.json @@ -1,7 +1,7 @@ { "name": "graceful-fs", "description": "A drop-in replacement for fs, making various improvements.", - "version": "4.2.10", + "version": "4.2.11", "repository": { "type": "git", "url": "https://github.com/isaacs/node-graceful-fs" @@ -38,7 +38,7 @@ "import-fresh": "^2.0.0", "mkdirp": "^0.5.0", "rimraf": "^2.2.8", - "tap": "^12.7.0" + "tap": "^16.3.4" }, "files": [ "fs.js", @@ -46,5 +46,8 @@ "legacy-streams.js", "polyfills.js", "clone.js" - ] + ], + "tap": { + "reporter": "classic" + } } diff --git a/deps/npm/node_modules/graceful-fs/polyfills.js b/deps/npm/node_modules/graceful-fs/polyfills.js index 46dea36cc490f4..453f1a9e702d1a 100644 --- a/deps/npm/node_modules/graceful-fs/polyfills.js +++ b/deps/npm/node_modules/graceful-fs/polyfills.js @@ -101,7 +101,7 @@ function patch (fs) { var backoff = 0; fs$rename(from, to, function CB (er) { if (er - && (er.code === "EACCES" || er.code === "EPERM") + && (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY") && Date.now() - start < 60000) { setTimeout(function() { fs.stat(to, function (stater, st) { diff --git a/deps/npm/node_modules/has-flag/index.d.ts b/deps/npm/node_modules/has-flag/index.d.ts deleted file mode 100644 index a0a48c89112785..00000000000000 --- a/deps/npm/node_modules/has-flag/index.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -/** -Check if [`argv`](https://nodejs.org/docs/latest/api/process.html#process_process_argv) has a specific flag. - -@param flag - CLI flag to look for. The `--` prefix is optional. -@param argv - CLI arguments. Default: `process.argv`. -@returns Whether the flag exists. - -@example -``` -// $ ts-node foo.ts -f --unicorn --foo=bar -- --rainbow - -// foo.ts -import hasFlag = require('has-flag'); - -hasFlag('unicorn'); -//=> true - -hasFlag('--unicorn'); -//=> true - -hasFlag('f'); -//=> true - -hasFlag('-f'); -//=> true - -hasFlag('foo=bar'); -//=> true - -hasFlag('foo'); -//=> false - -hasFlag('rainbow'); -//=> false -``` -*/ -declare function hasFlag(flag: string, argv?: string[]): boolean; - -export = hasFlag; diff --git a/deps/npm/node_modules/http-proxy-agent/dist/agent.d.ts b/deps/npm/node_modules/http-proxy-agent/dist/agent.d.ts deleted file mode 100644 index 3f043f7f9f7561..00000000000000 --- a/deps/npm/node_modules/http-proxy-agent/dist/agent.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -/// -import net from 'net'; -import { Agent, ClientRequest, RequestOptions } from 'agent-base'; -import { HttpProxyAgentOptions } from '.'; -interface HttpProxyAgentClientRequest extends ClientRequest { - path: string; - output?: string[]; - outputData?: { - data: string; - }[]; - _header?: string | null; - _implicitHeader(): void; -} -/** - * The `HttpProxyAgent` implements an HTTP Agent subclass that connects - * to the specified "HTTP proxy server" in order to proxy HTTP requests. - * - * @api public - */ -export default class HttpProxyAgent extends Agent { - private secureProxy; - private proxy; - constructor(_opts: string | HttpProxyAgentOptions); - /** - * Called when the node-core HTTP client library is creating a - * new HTTP request. - * - * @api protected - */ - callback(req: HttpProxyAgentClientRequest, opts: RequestOptions): Promise; -} -export {}; diff --git a/deps/npm/node_modules/http-proxy-agent/dist/agent.js.map b/deps/npm/node_modules/http-proxy-agent/dist/agent.js.map deleted file mode 100644 index bd3b56aa6dfdbc..00000000000000 --- a/deps/npm/node_modules/http-proxy-agent/dist/agent.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"agent.js","sourceRoot":"","sources":["../src/agent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,8CAAsB;AACtB,8CAAsB;AACtB,8CAAsB;AACtB,kDAAgC;AAChC,6DAAqC;AACrC,2CAAkE;AAGlE,MAAM,KAAK,GAAG,IAAA,eAAW,EAAC,kBAAkB,CAAC,CAAC;AAY9C,SAAS,OAAO,CAAC,QAAwB;IACxC,OAAO,OAAO,QAAQ,KAAK,QAAQ,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC;AAC3E,CAAC;AAED;;;;;GAKG;AACH,MAAqB,cAAe,SAAQ,kBAAK;IAIhD,YAAY,KAAqC;QAChD,IAAI,IAA2B,CAAC;QAChC,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC9B,IAAI,GAAG,aAAG,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;SACxB;aAAM;YACN,IAAI,GAAG,KAAK,CAAC;SACb;QACD,IAAI,CAAC,IAAI,EAAE;YACV,MAAM,IAAI,KAAK,CACd,8DAA8D,CAC9D,CAAC;SACF;QACD,KAAK,CAAC,0CAA0C,EAAE,IAAI,CAAC,CAAC;QACxD,KAAK,CAAC,IAAI,CAAC,CAAC;QAEZ,MAAM,KAAK,qBAA+B,IAAI,CAAE,CAAC;QAEjD,wDAAwD;QACxD,uBAAuB;QACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,IAAI,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;QAE/D,+DAA+D;QAC/D,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,CAAC;QAC1C,IAAI,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,EAAE;YACnC,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;SACtC;QACD,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,EAAE;YAC9B,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;SACzC;QAED,IAAI,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,EAAE;YAC7B,kEAAkE;YAClE,8DAA8D;YAC9D,iEAAiE;YACjE,8BAA8B;YAC9B,OAAO,KAAK,CAAC,IAAI,CAAC;YAClB,OAAO,KAAK,CAAC,QAAQ,CAAC;SACtB;QAED,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACpB,CAAC;IAED;;;;;OAKG;IACG,QAAQ,CACb,GAAgC,EAChC,IAAoB;;YAEpB,MAAM,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,IAAI,CAAC;YACpC,MAAM,MAAM,GAAG,aAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;YAEnC,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE;gBACrB,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC;aAC1B;YAED,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE;gBACrB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC;aACrD;YAED,IAAI,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,OAAO,IAAI,CAAC,IAAI,EAAE;gBAC5C,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;aAChC;YAED,IAAI,MAAM,CAAC,IAAI,KAAK,IAAI,EAAE;gBACzB,yDAAyD;gBACzD,2CAA2C;gBAC3C,MAAM,CAAC,IAAI,GAAG,EAAE,CAAC;aACjB;YAED,0DAA0D;YAC1D,0DAA0D;YAC1D,GAAG,CAAC,IAAI,GAAG,aAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAE9B,wDAAwD;YACxD,IAAI,KAAK,CAAC,IAAI,EAAE;gBACf,GAAG,CAAC,SAAS,CACZ,qBAAqB,EACrB,SAAS,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CACrD,CAAC;aACF;YAED,kDAAkD;YAClD,IAAI,MAAkB,CAAC;YACvB,IAAI,WAAW,EAAE;gBAChB,KAAK,CAAC,2BAA2B,EAAE,KAAK,CAAC,CAAC;gBAC1C,MAAM,GAAG,aAAG,CAAC,OAAO,CAAC,KAA8B,CAAC,CAAC;aACrD;iBAAM;gBACN,KAAK,CAAC,2BAA2B,EAAE,KAAK,CAAC,CAAC;gBAC1C,MAAM,GAAG,aAAG,CAAC,OAAO,CAAC,KAA2B,CAAC,CAAC;aAClD;YAED,mEAAmE;YACnE,mEAAmE;YACnE,kEAAkE;YAClE,IAAI,GAAG,CAAC,OAAO,EAAE;gBAChB,IAAI,KAAa,CAAC;gBAClB,IAAI,YAAoB,CAAC;gBACzB,KAAK,CAAC,oDAAoD,CAAC,CAAC;gBAC5D,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC;gBACnB,GAAG,CAAC,eAAe,EAAE,CAAC;gBACtB,IAAI,GAAG,CAAC,MAAM,IAAI,GAAG,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE;oBACxC,YAAY;oBACZ,KAAK,CACJ,+DAA+D,CAC/D,CAAC;oBACF,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;oBACtB,YAAY,GAAG,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;oBAC7C,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,OAAO,GAAG,KAAK,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC;oBAC5D,KAAK,CAAC,mBAAmB,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;iBACvC;qBAAM,IAAI,GAAG,CAAC,UAAU,IAAI,GAAG,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,EAAE;oBACvD,aAAa;oBACb,KAAK,CACJ,+DAA+D,CAC/D,CAAC;oBACF,KAAK,GAAG,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;oBAC/B,YAAY,GAAG,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;oBAC7C,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI;wBACrB,GAAG,CAAC,OAAO,GAAG,KAAK,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC;oBAC7C,KAAK,CAAC,mBAAmB,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;iBACnD;aACD;YAED,mEAAmE;YACnE,mEAAmE;YACnE,qEAAqE;YACrE,qDAAqD;YACrD,MAAM,IAAA,cAAI,EAAC,MAAM,EAAE,SAAS,CAAC,CAAC;YAE9B,OAAO,MAAM,CAAC;QACf,CAAC;KAAA;CACD;AA1ID,iCA0IC"} \ No newline at end of file diff --git a/deps/npm/node_modules/http-proxy-agent/dist/index.d.ts b/deps/npm/node_modules/http-proxy-agent/dist/index.d.ts deleted file mode 100644 index 24bdb52efcedcb..00000000000000 --- a/deps/npm/node_modules/http-proxy-agent/dist/index.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/// -import net from 'net'; -import tls from 'tls'; -import { Url } from 'url'; -import { AgentOptions } from 'agent-base'; -import _HttpProxyAgent from './agent'; -declare function createHttpProxyAgent(opts: string | createHttpProxyAgent.HttpProxyAgentOptions): _HttpProxyAgent; -declare namespace createHttpProxyAgent { - interface BaseHttpProxyAgentOptions { - secureProxy?: boolean; - host?: string | null; - path?: string | null; - port?: string | number | null; - } - export interface HttpProxyAgentOptions extends AgentOptions, BaseHttpProxyAgentOptions, Partial> { - } - export type HttpProxyAgent = _HttpProxyAgent; - export const HttpProxyAgent: typeof _HttpProxyAgent; - export {}; -} -export = createHttpProxyAgent; diff --git a/deps/npm/node_modules/http-proxy-agent/dist/index.js.map b/deps/npm/node_modules/http-proxy-agent/dist/index.js.map deleted file mode 100644 index e07dae5b08455a..00000000000000 --- a/deps/npm/node_modules/http-proxy-agent/dist/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAIA,oDAAsC;AAEtC,SAAS,oBAAoB,CAC5B,IAAyD;IAEzD,OAAO,IAAI,eAAe,CAAC,IAAI,CAAC,CAAC;AAClC,CAAC;AAED,WAAU,oBAAoB;IAmBhB,mCAAc,GAAG,eAAe,CAAC;IAE9C,oBAAoB,CAAC,SAAS,GAAG,eAAe,CAAC,SAAS,CAAC;AAC5D,CAAC,EAtBS,oBAAoB,KAApB,oBAAoB,QAsB7B;AAED,iBAAS,oBAAoB,CAAC"} \ No newline at end of file diff --git a/deps/npm/node_modules/https-proxy-agent/dist/agent.d.ts b/deps/npm/node_modules/https-proxy-agent/dist/agent.d.ts deleted file mode 100644 index 4f1c63624117f0..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/agent.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/// -import net from 'net'; -import { Agent, ClientRequest, RequestOptions } from 'agent-base'; -import { HttpsProxyAgentOptions } from '.'; -/** - * 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 - */ -export default class HttpsProxyAgent extends Agent { - private secureProxy; - private proxy; - constructor(_opts: string | HttpsProxyAgentOptions); - /** - * Called when the node-core HTTP client library is creating a - * new HTTP request. - * - * @api protected - */ - callback(req: ClientRequest, opts: RequestOptions): Promise; -} diff --git a/deps/npm/node_modules/https-proxy-agent/dist/agent.js.map b/deps/npm/node_modules/https-proxy-agent/dist/agent.js.map deleted file mode 100644 index 0af6c17a3e78a3..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/agent.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"agent.js","sourceRoot":"","sources":["../src/agent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,8CAAsB;AACtB,8CAAsB;AACtB,8CAAsB;AACtB,oDAA4B;AAC5B,kDAAgC;AAEhC,2CAAkE;AAElE,kFAAwD;AAExD,MAAM,KAAK,GAAG,eAAW,CAAC,yBAAyB,CAAC,CAAC;AAErD;;;;;;;;;;;;;GAaG;AACH,MAAqB,eAAgB,SAAQ,kBAAK;IAIjD,YAAY,KAAsC;QACjD,IAAI,IAA4B,CAAC;QACjC,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC9B,IAAI,GAAG,aAAG,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;SACxB;aAAM;YACN,IAAI,GAAG,KAAK,CAAC;SACb;QACD,IAAI,CAAC,IAAI,EAAE;YACV,MAAM,IAAI,KAAK,CACd,8DAA8D,CAC9D,CAAC;SACF;QACD,KAAK,CAAC,2CAA2C,EAAE,IAAI,CAAC,CAAC;QACzD,KAAK,CAAC,IAAI,CAAC,CAAC;QAEZ,MAAM,KAAK,qBAAgC,IAAI,CAAE,CAAC;QAElD,wDAAwD;QACxD,uBAAuB;QACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,IAAI,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;QAE/D,+DAA+D;QAC/D,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,CAAC;QAC1C,IAAI,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,EAAE;YACnC,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;SACtC;QACD,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,EAAE;YAC9B,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;SACzC;QAED,sCAAsC;QACtC,sEAAsE;QACtE,IAAI,IAAI,CAAC,WAAW,IAAI,CAAC,CAAC,eAAe,IAAI,KAAK,CAAC,EAAE;YACpD,KAAK,CAAC,aAAa,GAAG,CAAC,UAAU,CAAC,CAAC;SACnC;QAED,IAAI,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,EAAE;YAC7B,kEAAkE;YAClE,8DAA8D;YAC9D,iEAAiE;YACjE,8BAA8B;YAC9B,OAAO,KAAK,CAAC,IAAI,CAAC;YAClB,OAAO,KAAK,CAAC,QAAQ,CAAC;SACtB;QAED,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACpB,CAAC;IAED;;;;;OAKG;IACG,QAAQ,CACb,GAAkB,EAClB,IAAoB;;YAEpB,MAAM,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,IAAI,CAAC;YAEpC,kDAAkD;YAClD,IAAI,MAAkB,CAAC;YACvB,IAAI,WAAW,EAAE;gBAChB,KAAK,CAAC,2BAA2B,EAAE,KAAK,CAAC,CAAC;gBAC1C,MAAM,GAAG,aAAG,CAAC,OAAO,CAAC,KAA8B,CAAC,CAAC;aACrD;iBAAM;gBACN,KAAK,CAAC,2BAA2B,EAAE,KAAK,CAAC,CAAC;gBAC1C,MAAM,GAAG,aAAG,CAAC,OAAO,CAAC,KAA2B,CAAC,CAAC;aAClD;YAED,MAAM,OAAO,qBAA6B,KAAK,CAAC,OAAO,CAAE,CAAC;YAC1D,MAAM,QAAQ,GAAG,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;YAC7C,IAAI,OAAO,GAAG,WAAW,QAAQ,eAAe,CAAC;YAEjD,wDAAwD;YACxD,IAAI,KAAK,CAAC,IAAI,EAAE;gBACf,OAAO,CAAC,qBAAqB,CAAC,GAAG,SAAS,MAAM,CAAC,IAAI,CACpD,KAAK,CAAC,IAAI,CACV,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;aACvB;YAED,iDAAiD;YACjD,0CAA0C;YAC1C,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc,EAAE,GAAG,IAAI,CAAC;YAC1C,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE,cAAc,CAAC,EAAE;gBACzC,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;aACnB;YACD,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;YAEpB,OAAO,CAAC,UAAU,GAAG,OAAO,CAAC;YAC7B,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE;gBACxC,OAAO,IAAI,GAAG,IAAI,KAAK,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC;aAC3C;YAED,MAAM,oBAAoB,GAAG,8BAAkB,CAAC,MAAM,CAAC,CAAC;YAExD,MAAM,CAAC,KAAK,CAAC,GAAG,OAAO,MAAM,CAAC,CAAC;YAE/B,MAAM,EACL,UAAU,EACV,QAAQ,EACR,GAAG,MAAM,oBAAoB,CAAC;YAE/B,IAAI,UAAU,KAAK,GAAG,EAAE;gBACvB,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;gBAE3B,IAAI,IAAI,CAAC,cAAc,EAAE;oBACxB,sDAAsD;oBACtD,8CAA8C;oBAC9C,KAAK,CAAC,oCAAoC,CAAC,CAAC;oBAC5C,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,IAAI,CAAC;oBAChD,OAAO,aAAG,CAAC,OAAO,iCACd,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,CAAC,KACjD,MAAM;wBACN,UAAU,IACT,CAAC;iBACH;gBAED,OAAO,MAAM,CAAC;aACd;YAED,oEAAoE;YACpE,kEAAkE;YAClE,iEAAiE;YACjE,qBAAqB;YAErB,iEAAiE;YACjE,0DAA0D;YAC1D,oEAAoE;YACpE,mBAAmB;YACnB,EAAE;YACF,4CAA4C;YAC5C,MAAM,CAAC,OAAO,EAAE,CAAC;YAEjB,MAAM,UAAU,GAAG,IAAI,aAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;YACvD,UAAU,CAAC,QAAQ,GAAG,IAAI,CAAC;YAE3B,oEAAoE;YACpE,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAa,EAAE,EAAE;gBACpC,KAAK,CAAC,2CAA2C,CAAC,CAAC;gBACnD,gBAAM,CAAC,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;gBAEpC,gEAAgE;gBAChE,8DAA8D;gBAC9D,YAAY;gBACZ,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;gBACjB,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACd,CAAC,CAAC,CAAC;YAEH,OAAO,UAAU,CAAC;QACnB,CAAC;KAAA;CACD;AA3JD,kCA2JC;AAED,SAAS,MAAM,CAAC,MAAkC;IACjD,MAAM,CAAC,MAAM,EAAE,CAAC;AACjB,CAAC;AAED,SAAS,aAAa,CAAC,IAAY,EAAE,MAAe;IACnD,OAAO,OAAO,CAAC,CAAC,CAAC,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC;AACtE,CAAC;AAED,SAAS,OAAO,CAAC,QAAwB;IACxC,OAAO,OAAO,QAAQ,KAAK,QAAQ,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC;AAC3E,CAAC;AAED,SAAS,IAAI,CACZ,GAAM,EACN,GAAG,IAAO;IAIV,MAAM,GAAG,GAAG,EAEX,CAAC;IACF,IAAI,GAAqB,CAAC;IAC1B,KAAK,GAAG,IAAI,GAAG,EAAE;QAChB,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;YACxB,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;SACpB;KACD;IACD,OAAO,GAAG,CAAC;AACZ,CAAC"} \ No newline at end of file diff --git a/deps/npm/node_modules/https-proxy-agent/dist/index.d.ts b/deps/npm/node_modules/https-proxy-agent/dist/index.d.ts deleted file mode 100644 index 0d60062ee20794..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/index.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/// -import net from 'net'; -import tls from 'tls'; -import { Url } from 'url'; -import { AgentOptions } from 'agent-base'; -import { OutgoingHttpHeaders } from 'http'; -import _HttpsProxyAgent from './agent'; -declare function createHttpsProxyAgent(opts: string | createHttpsProxyAgent.HttpsProxyAgentOptions): _HttpsProxyAgent; -declare namespace createHttpsProxyAgent { - interface BaseHttpsProxyAgentOptions { - headers?: OutgoingHttpHeaders; - secureProxy?: boolean; - host?: string | null; - path?: string | null; - port?: string | number | null; - } - export interface HttpsProxyAgentOptions extends AgentOptions, BaseHttpsProxyAgentOptions, Partial> { - } - export type HttpsProxyAgent = _HttpsProxyAgent; - export const HttpsProxyAgent: typeof _HttpsProxyAgent; - export {}; -} -export = createHttpsProxyAgent; diff --git a/deps/npm/node_modules/https-proxy-agent/dist/index.js.map b/deps/npm/node_modules/https-proxy-agent/dist/index.js.map deleted file mode 100644 index f3ce559de0200d..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAKA,oDAAuC;AAEvC,SAAS,qBAAqB,CAC7B,IAA2D;IAE3D,OAAO,IAAI,eAAgB,CAAC,IAAI,CAAC,CAAC;AACnC,CAAC;AAED,WAAU,qBAAqB;IAoBjB,qCAAe,GAAG,eAAgB,CAAC;IAEhD,qBAAqB,CAAC,SAAS,GAAG,eAAgB,CAAC,SAAS,CAAC;AAC9D,CAAC,EAvBS,qBAAqB,KAArB,qBAAqB,QAuB9B;AAED,iBAAS,qBAAqB,CAAC"} \ No newline at end of file diff --git a/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts b/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts deleted file mode 100644 index 7565674a338cb1..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -/// -import { Readable } from 'stream'; -export interface ProxyResponse { - statusCode: number; - buffered: Buffer; -} -export default function parseProxyResponse(socket: Readable): Promise; diff --git a/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map b/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map deleted file mode 100644 index bacdb84b9ec2fd..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"parse-proxy-response.js","sourceRoot":"","sources":["../src/parse-proxy-response.ts"],"names":[],"mappings":";;;;;AAAA,kDAAgC;AAGhC,MAAM,KAAK,GAAG,eAAW,CAAC,wCAAwC,CAAC,CAAC;AAOpE,SAAwB,kBAAkB,CACzC,MAAgB;IAEhB,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QACtC,+EAA+E;QAC/E,gFAAgF;QAChF,8EAA8E;QAC9E,8BAA8B;QAC9B,IAAI,aAAa,GAAG,CAAC,CAAC;QACtB,MAAM,OAAO,GAAa,EAAE,CAAC;QAE7B,SAAS,IAAI;YACZ,MAAM,CAAC,GAAG,MAAM,CAAC,IAAI,EAAE,CAAC;YACxB,IAAI,CAAC;gBAAE,MAAM,CAAC,CAAC,CAAC,CAAC;;gBACZ,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;QACpC,CAAC;QAED,SAAS,OAAO;YACf,MAAM,CAAC,cAAc,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;YACpC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;YACxC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;YACxC,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;QACzC,CAAC;QAED,SAAS,OAAO,CAAC,GAAW;YAC3B,KAAK,CAAC,sBAAsB,EAAE,GAAG,CAAC,CAAC;QACpC,CAAC;QAED,SAAS,KAAK;YACb,KAAK,CAAC,OAAO,CAAC,CAAC;QAChB,CAAC;QAED,SAAS,OAAO,CAAC,GAAU;YAC1B,OAAO,EAAE,CAAC;YACV,KAAK,CAAC,YAAY,EAAE,GAAG,CAAC,CAAC;YACzB,MAAM,CAAC,GAAG,CAAC,CAAC;QACb,CAAC;QAED,SAAS,MAAM,CAAC,CAAS;YACxB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAChB,aAAa,IAAI,CAAC,CAAC,MAAM,CAAC;YAE1B,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC;YACvD,MAAM,YAAY,GAAG,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;YAElD,IAAI,YAAY,KAAK,CAAC,CAAC,EAAE;gBACxB,iBAAiB;gBACjB,KAAK,CAAC,8CAA8C,CAAC,CAAC;gBACtD,IAAI,EAAE,CAAC;gBACP,OAAO;aACP;YAED,MAAM,SAAS,GAAG,QAAQ,CAAC,QAAQ,CAClC,OAAO,EACP,CAAC,EACD,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CACxB,CAAC;YACF,MAAM,UAAU,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;YAC5C,KAAK,CAAC,+BAA+B,EAAE,SAAS,CAAC,CAAC;YAClD,OAAO,CAAC;gBACP,UAAU;gBACV,QAAQ;aACR,CAAC,CAAC;QACJ,CAAC;QAED,MAAM,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAC5B,MAAM,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAC5B,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;QAExB,IAAI,EAAE,CAAC;IACR,CAAC,CAAC,CAAC;AACJ,CAAC;AAvED,qCAuEC"} \ No newline at end of file diff --git a/deps/npm/node_modules/iconv-lite/lib/index.d.ts b/deps/npm/node_modules/iconv-lite/lib/index.d.ts deleted file mode 100644 index 99f200f4ab04c3..00000000000000 --- a/deps/npm/node_modules/iconv-lite/lib/index.d.ts +++ /dev/null @@ -1,41 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. - * REQUIREMENT: This definition is dependent on the @types/node definition. - * Install with `npm install @types/node --save-dev` - *--------------------------------------------------------------------------------------------*/ - -declare module 'iconv-lite' { - // Basic API - export function decode(buffer: Buffer, encoding: string, options?: Options): string; - - export function encode(content: string, encoding: string, options?: Options): Buffer; - - export function encodingExists(encoding: string): boolean; - - // Stream API - export function decodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream; - - export function encodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream; - - // Low-level stream APIs - export function getEncoder(encoding: string, options?: Options): EncoderStream; - - export function getDecoder(encoding: string, options?: Options): DecoderStream; -} - -export interface Options { - stripBOM?: boolean; - addBOM?: boolean; - defaultEncoding?: string; -} - -export interface EncoderStream { - write(str: string): Buffer; - end(): Buffer | undefined; -} - -export interface DecoderStream { - write(buf: Buffer): string; - end(): string | undefined; -} diff --git a/deps/npm/node_modules/ieee754/index.d.ts b/deps/npm/node_modules/ieee754/index.d.ts deleted file mode 100644 index 8d4f440975987c..00000000000000 --- a/deps/npm/node_modules/ieee754/index.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -declare namespace ieee754 { - export function read( - buffer: Uint8Array, offset: number, isLE: boolean, mLen: number, - nBytes: number): number; - export function write( - buffer: Uint8Array, value: number, offset: number, isLE: boolean, - mLen: number, nBytes: number): void; - } - - export = ieee754; \ No newline at end of file diff --git a/deps/npm/node_modules/ignore-walk/package.json b/deps/npm/node_modules/ignore-walk/package.json index 97a2854857939b..ae68746218cd8d 100644 --- a/deps/npm/node_modules/ignore-walk/package.json +++ b/deps/npm/node_modules/ignore-walk/package.json @@ -1,24 +1,19 @@ { "name": "ignore-walk", - "version": "6.0.1", + "version": "6.0.2", "description": "Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.", "main": "lib/index.js", "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.3", - "mkdirp": "^1.0.4", + "@npmcli/template-oss": "4.12.0", "mutate-fs": "^2.1.1", - "rimraf": "^3.0.2", "tap": "^16.0.1" }, "scripts": { "test": "tap", "posttest": "npm run lint", "lint": "eslint \"**/*.js\"", - "eslint": "eslint", "lintfix": "npm run lint -- --fix", - "npmclilint": "npmcli-lint", - "postsnap": "npm run lintfix --", "postlint": "template-oss-check", "template-oss-apply": "template-oss-apply --force", "test:windows-coverage": "npm pkg set tap.statements=99 --json && npm pkg set tap.branches=98 --json && npm pkg set tap.lines=99 --json", @@ -43,7 +38,7 @@ "lib/" ], "dependencies": { - "minimatch": "^6.1.6" + "minimatch": "^7.4.2" }, "tap": { "test-env": "LC_ALL=sk", @@ -61,7 +56,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.3", + "version": "4.12.0", "content": "scripts/template-oss" } } diff --git a/deps/npm/node_modules/indent-string/index.d.ts b/deps/npm/node_modules/indent-string/index.d.ts deleted file mode 100644 index 118523115645a0..00000000000000 --- a/deps/npm/node_modules/indent-string/index.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -declare namespace indentString { - interface Options { - /** - The string to use for the indent. - - @default ' ' - */ - readonly indent?: string; - - /** - Also indent empty lines. - - @default false - */ - readonly includeEmptyLines?: boolean; - } -} - -/** -Indent each line in a string. - -@param string - The string to indent. -@param count - How many times you want `options.indent` repeated. Default: `1`. - -@example -``` -import indentString = require('indent-string'); - -indentString('Unicorns\nRainbows', 4); -//=> ' Unicorns\n Rainbows' - -indentString('Unicorns\nRainbows', 4, {indent: '♥'}); -//=> '♥♥♥♥Unicorns\n♥♥♥♥Rainbows' -``` -*/ -declare function indentString( - string: string, - count?: number, - options?: indentString.Options -): string; - -export = indentString; diff --git a/deps/npm/node_modules/ip-regex/index.d.ts b/deps/npm/node_modules/ip-regex/index.d.ts deleted file mode 100644 index 0999ed287f790f..00000000000000 --- a/deps/npm/node_modules/ip-regex/index.d.ts +++ /dev/null @@ -1,70 +0,0 @@ -declare namespace ip { - interface Options { - /** - Only match an exact string. Useful with `RegExp#test()` to check if a string is an IP address. *(`false` matches any IP address in a string)* - - @default false - */ - readonly exact?: boolean; - - /** - Include boundaries in the regex. When `true`, `192.168.0.2000000000` will report as an invalid IPv4 address. If this option is not set, the mentioned IPv4 address would report as valid (ignoring the trailing zeros). - - @default false - */ - readonly includeBoundaries?: boolean; - } -} - -declare const ip: { - /** - Regular expression for matching IP addresses. - - @returns A regex for matching both IPv4 and IPv6. - - @example - ``` - import ipRegex = require('ip-regex'); - - // Contains an IP address? - ipRegex().test('unicorn 192.168.0.1'); - //=> true - - // Is an IP address? - ipRegex({exact: true}).test('unicorn 192.168.0.1'); - //=> false - - 'unicorn 192.168.0.1 cake 1:2:3:4:5:6:7:8 rainbow'.match(ipRegex()); - //=> ['192.168.0.1', '1:2:3:4:5:6:7:8'] - - // Contains an IP address? - ipRegex({includeBoundaries: true}).test('192.168.0.2000000000'); - //=> false - - // Matches an IP address? - '192.168.0.2000000000'.match(ipRegex({includeBoundaries: true})); - //=> null - ``` - */ - (options?: ip.Options): RegExp; - - /** - @returns A regex for matching IPv4. - */ - v4(options?: ip.Options): RegExp; - - /** - @returns A regex for matching IPv6. - - @example - ``` - import ipRegex = require('ip-regex'); - - ipRegex.v6({exact: true}).test('1:2:3:4:5:6:7:8'); - //=> true - ``` - */ - v6(options?: ip.Options): RegExp; -}; - -export = ip; diff --git a/deps/npm/node_modules/is-cidr/index.d.ts b/deps/npm/node_modules/is-cidr/index.d.ts deleted file mode 100644 index c4ba96a1fe82bc..00000000000000 --- a/deps/npm/node_modules/is-cidr/index.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -declare const isCidr: { - /** - Check if `string` is a IPv4 or IPv6 CIDR address. - @returns Either `4`, `6` (indicating the IP version) or `0` if the string is not a CIDR. - @example - ``` - import isCidr = require('is-cidr'); - isCidr('192.168.0.1/24'); //=> 4 - isCidr('1:2:3:4:5:6:7:8/64'); //=> 6 - isCidr('10.0.0.0'); //=> 0 - ``` - */ - (string: string): 6 | 4 | 0; - - /** - Check if `string` is a IPv4 CIDR address. - */ - v4(string: string): boolean; - - /** - Check if `string` is a IPv6 CIDR address. - @example - ``` - import isCidr = require('is-cidr'); - isCidr.v6('10.0.0.0/24'); //=> false - ``` - */ - v6(string: string): boolean; -}; - -export = isCidr; diff --git a/deps/npm/node_modules/is-fullwidth-code-point/index.d.ts b/deps/npm/node_modules/is-fullwidth-code-point/index.d.ts deleted file mode 100644 index 729d2020516f0b..00000000000000 --- a/deps/npm/node_modules/is-fullwidth-code-point/index.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** -Check if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms). - -@param codePoint - The [code point](https://en.wikipedia.org/wiki/Code_point) of a character. - -@example -``` -import isFullwidthCodePoint from 'is-fullwidth-code-point'; - -isFullwidthCodePoint('谢'.codePointAt(0)); -//=> true - -isFullwidthCodePoint('a'.codePointAt(0)); -//=> false -``` -*/ -export default function isFullwidthCodePoint(codePoint: number): boolean; diff --git a/deps/npm/node_modules/just-diff-apply/index.d.ts b/deps/npm/node_modules/just-diff-apply/index.d.ts deleted file mode 100644 index 7547b722f484fb..00000000000000 --- a/deps/npm/node_modules/just-diff-apply/index.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -// Definitions by: Eddie Atkinson - -type Operation = "add" | "replace" | "remove" | "move"; - -type DiffOps = Array<{ - op: Operation; - path: Array; - value?: any; -}>; -type PathConverter = (path: string) => string[]; - -export function diffApply( - obj: T, - diff: DiffOps, - pathConverter?: PathConverter -): T; -export const jsonPatchPathConverter: PathConverter; diff --git a/deps/npm/node_modules/just-diff-apply/index.tests.ts b/deps/npm/node_modules/just-diff-apply/index.tests.ts deleted file mode 100644 index d02ba89b838cdd..00000000000000 --- a/deps/npm/node_modules/just-diff-apply/index.tests.ts +++ /dev/null @@ -1,108 +0,0 @@ -import * as diffObj from "./index"; - -const { diffApply, jsonPatchPathConverter } = diffObj; -const obj1 = { - a: 2, - b: 3, - c: { - d: 5 - } -}; -const arr1 = [1, "bee"]; - -const objOps: diffObj.DiffOps = [ - { - op: "replace", - path: ["a"], - value: 10 - }, - { - op: "remove", - path: ["b"] - }, - { - op: "add", - path: ["e"], - value: 15 - }, - { - op: "remove", - path: ["c", "d"] - } -]; - -const arrOps: diffObj.DiffOps = [ - { - op: "replace", - path: [1], - value: 10 - }, - { - op: "remove", - path: [2] - }, - { - op: "add", - path: [7], - value: 15 - } -]; - -//OK -diffApply(obj1, objOps); -diffApply(obj1, []); -diffApply(arr1, arrOps); -diffApply(arr1, []); -diffApply(obj1, objOps, jsonPatchPathConverter); -diffApply(arr1, arrOps, jsonPatchPathConverter); - -// not OK -// @ts-expect-error -diffApply(obj1); -// @ts-expect-error -diffApply(arr2); -// @ts-expect-error -diffApply("a"); -// @ts-expect-error -diffApply(true); - -// @ts-expect-error -diffApply(obj1, 1); -// @ts-expect-error -diffApply(3, arr2); -// @ts-expect-error -diffApply(obj1, "a"); -// @ts-expect-error -diffApply("b", arr2); - -// @ts-expect-error -diffApply(obj1, [{ op: "delete", path: ["a"] }]); -// @ts-expect-error -diffApply(obj1, [{ op: "delete", path: ["a"] }], jsonPatchPathConverter); -// @ts-expect-error -diffApply(obj1, "a", jsonPatchPathConverter); -// @ts-expect-error -diffApply(obj1, ["a", "b", "c"], jsonPatchPathConverter); - -// @ts-expect-error -diff("a", jsonPatchPathConverter); -// @ts-expect-error -diff(true, jsonPatchPathConverter); - -// @ts-expect-error -diff(obj1, 1, jsonPatchPathConverter); -// @ts-expect-error -diff(3, arr2, jsonPatchPathConverter); -// @ts-expect-error -diff(obj1, "a", jsonPatchPathConverter); -// @ts-expect-error -diff("b", arr2, jsonPatchPathConverter); - -// @ts-expect-error -diff(obj1, obj2, "a"); -// @ts-expect-error -diff(arr1, arr2, 1); -// @ts-expect-error -diff(obj1, arr1, "bee"); -// @ts-expect-error -diff(obj2, arr2, "nope"); diff --git a/deps/npm/node_modules/just-diff/index.cjs b/deps/npm/node_modules/just-diff/index.cjs index 11ad3710b98f4a..5f4fa3400b2074 100644 --- a/deps/npm/node_modules/just-diff/index.cjs +++ b/deps/npm/node_modules/just-diff/index.cjs @@ -79,18 +79,32 @@ function diff(obj1, obj2, pathConverter) { return arr; }); - function getDiff(obj1, obj2, basePath, diffs) { + // we will gather all permutations and return the one with the fewest diffs + var permutations = [{remove: [], replace: [], add: []}]; + + function getDiff({obj1, obj2, basePath, basePathForRemoves, permutation}) { var obj1Keys = Object.keys(obj1); var obj1KeysLength = obj1Keys.length; var obj2Keys = Object.keys(obj2); var obj2KeysLength = obj2Keys.length; var path; + var newPermutation; + + var lengthDelta = obj1.length - obj2.length; + // if both objects are arrays and obj1 length > obj2 length + // we create an additional permutation that trims obj1 from left + if (Array.isArray(obj1) && Array.isArray(obj2) && lengthDelta > 0) { + newPermutation = clonePermutation(permutation); + permutations.push(newPermutation); + } + + // trim from right for (var i = 0; i < obj1KeysLength; i++) { var key = Array.isArray(obj1) ? Number(obj1Keys[i]) : obj1Keys[i]; if (!(key in obj2)) { - path = basePath.concat(key); - diffs.remove.push({ + path = basePathForRemoves.concat(key); + permutation.remove.push({ op: 'remove', path: pathConverter(path), }); @@ -99,55 +113,120 @@ function diff(obj1, obj2, pathConverter) { for (var i = 0; i < obj2KeysLength; i++) { var key = Array.isArray(obj2) ? Number(obj2Keys[i]) : obj2Keys[i]; - var obj1AtKey = obj1[key]; - var obj2AtKey = obj2[key]; - if (!(key in obj1)) { - path = basePath.concat(key); - var obj2Value = obj2[key]; - diffs.add.push({ - op: 'add', + pushReplaces({ + key, + obj1, + obj2, + path: basePath.concat(key), + pathForRemoves: basePath.concat(key), + permutation, + }); + } + + // if we created a new permutation above it means we should also try trimming from left + if (newPermutation) { + for (var i = 0; i < lengthDelta; i++) { + path = basePathForRemoves.concat(i); + newPermutation.remove.push({ + op: 'remove', path: pathConverter(path), - value: obj2Value, }); - } else if (obj1AtKey !== obj2AtKey) { - if ( - Object(obj1AtKey) !== obj1AtKey || - Object(obj2AtKey) !== obj2AtKey - ) { - path = pushReplace(path, basePath, key, diffs, pathConverter, obj2); - } else { - if ( - !Object.keys(obj1AtKey).length && - !Object.keys(obj2AtKey).length && - String(obj1AtKey) != String(obj2AtKey) - ) { - path = pushReplace(path, basePath, key, diffs, pathConverter, obj2); - } else { - getDiff(obj1[key], obj2[key], basePath.concat(key), diffs); - } - } } - } - return diffs; + // now make a copy of obj1 with excess elements left trimmed and see if there any replaces + var obj1Trimmed = obj1.slice(lengthDelta);; + for (var i = 0; i < obj2KeysLength; i++) { + pushReplaces({ + key: i, + obj1: obj1Trimmed, + obj2, + path: basePath.concat(i), + // since list of removes are reversed before presenting result, + // we need to ignore existing parent removes when doing nested removes + pathForRemoves: basePath.concat(i + lengthDelta), + permutation: newPermutation, + }); + } + } } - const finalDiffs = getDiff(obj1, obj2, [], {remove: [], replace: [], add: []}); + + getDiff({ + obj1, + obj2, + basePath: [], + basePathForRemoves: [], + permutation: permutations[0], + }); + + // find the shortest permutation + var finalDiffs = permutations.sort( + (a, b) => diffStepCount(a) > diffStepCount(b) ? 1 : -1 + )[0]; + + // reverse removes since we want to maintain indexes return finalDiffs.remove .reverse() .concat(finalDiffs.replace) .concat(finalDiffs.add); + + function pushReplaces({key, obj1, obj2, path, pathForRemoves, permutation}) { + var obj1AtKey = obj1[key]; + var obj2AtKey = obj2[key]; + + if(!(key in obj1) && obj2AtKey) { + var obj2Value = obj2AtKey; + permutation.add.push({ + op: 'add', + path: pathConverter(path), + value: obj2Value, + }); + } else if(obj1AtKey !== obj2AtKey) { + if(Object(obj1AtKey) !== obj1AtKey || + Object(obj2AtKey) !== obj2AtKey || differentTypes(obj1AtKey, obj2AtKey) + ) { + pushReplace(path, permutation, obj2AtKey); + } else { + if(!Object.keys(obj1AtKey).length && + !Object.keys(obj2AtKey).length && + String(obj1AtKey) != String(obj2AtKey)) { + pushReplace(path, permutation, obj2AtKey); + } else { + getDiff({ + obj1: obj1[key], + obj2: obj2[key], + basePath: path, + basePathForRemoves: pathForRemoves, + permutation}); + } + } + } + } + + function pushReplace(path, diffs, newValue) { + diffs.replace.push({ + op: 'replace', + path: pathConverter(path), + value: newValue, + }); + } } -function pushReplace(path, basePath, key, diffs, pathConverter, obj2) { - path = basePath.concat(key); - diffs.replace.push({ - op: 'replace', - path: pathConverter(path), - value: obj2[key], - }); - return path; +function clonePermutation(permutation) { + return { + remove: permutation.remove.slice(0), + replace: permutation.replace.slice(0), + add: permutation.add.slice(0), + }; +} + +function diffStepCount(permutation) { + return permutation.remove.length + permutation.replace.length + permutation.add.length; } function jsonPatchPathConverter(arrayPath) { return [''].concat(arrayPath).join('/'); } + +function differentTypes(a, b) { + return Object.prototype.toString.call(a) != Object.prototype.toString.call(b); +} diff --git a/deps/npm/node_modules/just-diff/index.d.ts b/deps/npm/node_modules/just-diff/index.d.ts deleted file mode 100644 index 576ddc54957fcc..00000000000000 --- a/deps/npm/node_modules/just-diff/index.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -// Definitions by: Cameron Hunter -// Modified by: Angus Croll -type Operation = "add" | "replace" | "remove"; - -type JSONPatchPathConverter = ( - arrayPath: Array -) => OUTPUT; - -export function diff( - a: object | Array, - b: object | Array, -): Array<{ op: Operation; path: Array; value: any }>; - -export function diff( - a: object | Array, - b: object | Array, - jsonPatchPathConverter: JSONPatchPathConverter -): Array<{ op: Operation; path: PATH; value: any }>; - -export const jsonPatchPathConverter: JSONPatchPathConverter; \ No newline at end of file diff --git a/deps/npm/node_modules/just-diff/index.mjs b/deps/npm/node_modules/just-diff/index.mjs index a0c5834475fea6..7c32c57f507011 100644 --- a/deps/npm/node_modules/just-diff/index.mjs +++ b/deps/npm/node_modules/just-diff/index.mjs @@ -74,18 +74,32 @@ function diff(obj1, obj2, pathConverter) { return arr; }); - function getDiff(obj1, obj2, basePath, diffs) { + // we will gather all permutations and return the one with the fewest diffs + var permutations = [{remove: [], replace: [], add: []}]; + + function getDiff({obj1, obj2, basePath, basePathForRemoves, permutation}) { var obj1Keys = Object.keys(obj1); var obj1KeysLength = obj1Keys.length; var obj2Keys = Object.keys(obj2); var obj2KeysLength = obj2Keys.length; var path; + var newPermutation; + + var lengthDelta = obj1.length - obj2.length; + // if both objects are arrays and obj1 length > obj2 length + // we create an additional permutation that trims obj1 from left + if (Array.isArray(obj1) && Array.isArray(obj2) && lengthDelta > 0) { + newPermutation = clonePermutation(permutation); + permutations.push(newPermutation); + } + + // trim from right for (var i = 0; i < obj1KeysLength; i++) { var key = Array.isArray(obj1) ? Number(obj1Keys[i]) : obj1Keys[i]; if (!(key in obj2)) { - path = basePath.concat(key); - diffs.remove.push({ + path = basePathForRemoves.concat(key); + permutation.remove.push({ op: 'remove', path: pathConverter(path), }); @@ -94,57 +108,121 @@ function diff(obj1, obj2, pathConverter) { for (var i = 0; i < obj2KeysLength; i++) { var key = Array.isArray(obj2) ? Number(obj2Keys[i]) : obj2Keys[i]; - var obj1AtKey = obj1[key]; - var obj2AtKey = obj2[key]; - if (!(key in obj1)) { - path = basePath.concat(key); - var obj2Value = obj2[key]; - diffs.add.push({ - op: 'add', + pushReplaces({ + key, + obj1, + obj2, + path: basePath.concat(key), + pathForRemoves: basePath.concat(key), + permutation, + }); + } + + // if we created a new permutation above it means we should also try trimming from left + if (newPermutation) { + for (var i = 0; i < lengthDelta; i++) { + path = basePathForRemoves.concat(i); + newPermutation.remove.push({ + op: 'remove', path: pathConverter(path), - value: obj2Value, }); - } else if (obj1AtKey !== obj2AtKey) { - if ( - Object(obj1AtKey) !== obj1AtKey || - Object(obj2AtKey) !== obj2AtKey - ) { - path = pushReplace(path, basePath, key, diffs, pathConverter, obj2); - } else { - if ( - !Object.keys(obj1AtKey).length && - !Object.keys(obj2AtKey).length && - String(obj1AtKey) != String(obj2AtKey) - ) { - path = pushReplace(path, basePath, key, diffs, pathConverter, obj2); - } else { - getDiff(obj1[key], obj2[key], basePath.concat(key), diffs); - } - } } - } - return diffs; + // now make a copy of obj1 with excess elements left trimmed and see if there any replaces + var obj1Trimmed = obj1.slice(lengthDelta); for (var i = 0; i < obj2KeysLength; i++) { + pushReplaces({ + key: i, + obj1: obj1Trimmed, + obj2, + path: basePath.concat(i), + // since list of removes are reversed before presenting result, + // we need to ignore existing parent removes when doing nested removes + pathForRemoves: basePath.concat(i + lengthDelta), + permutation: newPermutation, + }); + } + } } - const finalDiffs = getDiff(obj1, obj2, [], {remove: [], replace: [], add: []}); + + getDiff({ + obj1, + obj2, + basePath: [], + basePathForRemoves: [], + permutation: permutations[0], + }); + + // find the shortest permutation + var finalDiffs = permutations.sort( + (a, b) => diffStepCount(a) > diffStepCount(b) ? 1 : -1 + )[0]; + + // reverse removes since we want to maintain indexes return finalDiffs.remove .reverse() .concat(finalDiffs.replace) .concat(finalDiffs.add); + + function pushReplaces({key, obj1, obj2, path, pathForRemoves, permutation}) { + var obj1AtKey = obj1[key]; + var obj2AtKey = obj2[key]; + + if(!(key in obj1) && obj2AtKey) { + var obj2Value = obj2AtKey; + permutation.add.push({ + op: 'add', + path: pathConverter(path), + value: obj2Value, + }); + } else if(obj1AtKey !== obj2AtKey) { + if(Object(obj1AtKey) !== obj1AtKey || + Object(obj2AtKey) !== obj2AtKey || differentTypes(obj1AtKey, obj2AtKey) + ) { + pushReplace(path, permutation, obj2AtKey); + } else { + if(!Object.keys(obj1AtKey).length && + !Object.keys(obj2AtKey).length && + String(obj1AtKey) != String(obj2AtKey)) { + pushReplace(path, permutation, obj2AtKey); + } else { + getDiff({ + obj1: obj1[key], + obj2: obj2[key], + basePath: path, + basePathForRemoves: pathForRemoves, + permutation}); + } + } + } + } + + function pushReplace(path, diffs, newValue) { + diffs.replace.push({ + op: 'replace', + path: pathConverter(path), + value: newValue, + }); + } } -function pushReplace(path, basePath, key, diffs, pathConverter, obj2) { - path = basePath.concat(key); - diffs.replace.push({ - op: 'replace', - path: pathConverter(path), - value: obj2[key], - }); - return path; +function clonePermutation(permutation) { + return { + remove: permutation.remove.slice(0), + replace: permutation.replace.slice(0), + add: permutation.add.slice(0), + }; +} + +function diffStepCount(permutation) { + return permutation.remove.length + permutation.replace.length + permutation.add.length; } function jsonPatchPathConverter(arrayPath) { return [''].concat(arrayPath).join('/'); } +function differentTypes(a, b) { + return Object.prototype.toString.call(a) != Object.prototype.toString.call(b); +} + export {diff, jsonPatchPathConverter}; diff --git a/deps/npm/node_modules/just-diff/index.tests.ts b/deps/npm/node_modules/just-diff/index.tests.ts deleted file mode 100644 index 91eaecd8d49e8b..00000000000000 --- a/deps/npm/node_modules/just-diff/index.tests.ts +++ /dev/null @@ -1,65 +0,0 @@ -import * as diffObj from './index' - -const {diff, jsonPatchPathConverter} = diffObj; -const obj1 = {a: 2, b: 3}; -const obj2 = {a: 2, c: 1}; -const arr1 = [1, 'bee']; -const arr2 = [2, 'bee']; - - -//OK -diff(obj1, obj2); -diff(arr1, arr2); -diff(obj1, arr1); -diff(obj2, arr2); -diff(/yes/, arr1); -diff(new Date(), arr2); - - -diff(obj1, obj2, jsonPatchPathConverter); -diff(arr1, arr2, jsonPatchPathConverter); -diff(obj1, arr1, jsonPatchPathConverter); -diff(obj2, arr2, jsonPatchPathConverter); - -// not OK -// @ts-expect-error -diff(obj1); -// @ts-expect-error -diff(arr2); -// @ts-expect-error -diff('a'); -// @ts-expect-error -diff(true); - -// @ts-expect-error -diff(obj1, 1); -// @ts-expect-error -diff(3, arr2); -// @ts-expect-error -diff(obj1, 'a'); -// @ts-expect-error -diff('b', arr2); - -// @ts-expect-error -diff('a', jsonPatchPathConverter); -// @ts-expect-error -diff(true, jsonPatchPathConverter); - -// @ts-expect-error -diff(obj1, 1, jsonPatchPathConverter); -// @ts-expect-error -diff(3, arr2, jsonPatchPathConverter); -// @ts-expect-error -diff(obj1, 'a', jsonPatchPathConverter); -// @ts-expect-error -diff('b', arr2, jsonPatchPathConverter); - -// @ts-expect-error -diff(obj1, obj2, 'a'); -// @ts-expect-error -diff(arr1, arr2, 1); -// @ts-expect-error -diff(obj1, arr1, 'bee'); -// @ts-expect-error -diff(obj2, arr2, 'nope'); - diff --git a/deps/npm/node_modules/just-diff/package.json b/deps/npm/node_modules/just-diff/package.json index 4456df5db5215a..f0def5fa12dff1 100644 --- a/deps/npm/node_modules/just-diff/package.json +++ b/deps/npm/node_modules/just-diff/package.json @@ -1,6 +1,6 @@ { "name": "just-diff", - "version": "5.2.0", + "version": "6.0.0", "description": "Return an object representing the diffs between two objects. Supports jsonPatch protocol", "type": "module", "exports": { diff --git a/deps/npm/node_modules/libnpmaccess/package.json b/deps/npm/node_modules/libnpmaccess/package.json index ae4cb8b21eb4bb..15581fe03ae4d0 100644 --- a/deps/npm/node_modules/libnpmaccess/package.json +++ b/deps/npm/node_modules/libnpmaccess/package.json @@ -17,7 +17,7 @@ "devDependencies": { "@npmcli/eslint-config": "^4.0.0", "@npmcli/mock-registry": "^1.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "nock": "^13.3.0", "tap": "^16.3.4" }, @@ -41,7 +41,7 @@ ], "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmdiff/package.json b/deps/npm/node_modules/libnpmdiff/package.json index cdd01c25c3ae54..127b177e81d040 100644 --- a/deps/npm/node_modules/libnpmdiff/package.json +++ b/deps/npm/node_modules/libnpmdiff/package.json @@ -1,6 +1,6 @@ { "name": "libnpmdiff", - "version": "5.0.11", + "version": "5.0.14", "description": "The registry diff", "repository": { "type": "git", @@ -42,23 +42,23 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "tap": "^16.3.4" }, "dependencies": { - "@npmcli/arborist": "^6.2.3", + "@npmcli/arborist": "^6.2.6", "@npmcli/disparity-colors": "^3.0.0", - "@npmcli/installed-package-contents": "^2.0.0", + "@npmcli/installed-package-contents": "^2.0.2", "binary-extensions": "^2.2.0", "diff": "^5.1.0", - "minimatch": "^6.1.6", + "minimatch": "^7.4.2", "npm-package-arg": "^10.1.0", "pacote": "^15.0.8", "tar": "^6.1.13" }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmexec/package.json b/deps/npm/node_modules/libnpmexec/package.json index f13b16ed17e529..e693225783007b 100644 --- a/deps/npm/node_modules/libnpmexec/package.json +++ b/deps/npm/node_modules/libnpmexec/package.json @@ -1,6 +1,6 @@ { "name": "libnpmexec", - "version": "5.0.11", + "version": "5.0.14", "files": [ "bin/", "lib/" @@ -52,7 +52,7 @@ "devDependencies": { "@npmcli/eslint-config": "^4.0.0", "@npmcli/mock-registry": "^1.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "bin-links": "^4.0.1", "just-extend": "^6.2.0", "just-safe-set": "^4.2.1", @@ -60,7 +60,7 @@ "tap": "^16.3.4" }, "dependencies": { - "@npmcli/arborist": "^6.2.3", + "@npmcli/arborist": "^6.2.6", "@npmcli/run-script": "^6.0.0", "chalk": "^4.1.0", "ci-info": "^3.7.1", @@ -75,7 +75,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" } } diff --git a/deps/npm/node_modules/libnpmfund/package.json b/deps/npm/node_modules/libnpmfund/package.json index 36ec66de751031..1713142b519790 100644 --- a/deps/npm/node_modules/libnpmfund/package.json +++ b/deps/npm/node_modules/libnpmfund/package.json @@ -1,6 +1,6 @@ { "name": "libnpmfund", - "version": "4.0.11", + "version": "4.0.14", "main": "lib/index.js", "files": [ "bin/", @@ -41,18 +41,18 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "tap": "^16.3.4" }, "dependencies": { - "@npmcli/arborist": "^6.2.3" + "@npmcli/arborist": "^6.2.6" }, "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.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmhook/package.json b/deps/npm/node_modules/libnpmhook/package.json index 493b64359cc220..24f2d309ffd982 100644 --- a/deps/npm/node_modules/libnpmhook/package.json +++ b/deps/npm/node_modules/libnpmhook/package.json @@ -35,7 +35,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "nock": "^13.3.0", "tap": "^16.3.4" }, @@ -44,7 +44,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmorg/package.json b/deps/npm/node_modules/libnpmorg/package.json index 97d957492eae91..00d3f9f72e80c4 100644 --- a/deps/npm/node_modules/libnpmorg/package.json +++ b/deps/npm/node_modules/libnpmorg/package.json @@ -28,7 +28,7 @@ ], "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "minipass": "^4.0.2", "nock": "^13.3.0", "tap": "^16.3.4" @@ -49,7 +49,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmpack/package.json b/deps/npm/node_modules/libnpmpack/package.json index ef256ad38df7af..df17d29d07fdac 100644 --- a/deps/npm/node_modules/libnpmpack/package.json +++ b/deps/npm/node_modules/libnpmpack/package.json @@ -1,6 +1,6 @@ { "name": "libnpmpack", - "version": "5.0.11", + "version": "5.0.14", "description": "Programmatic API for the bits behind npm pack", "author": "GitHub Inc.", "main": "lib/index.js", @@ -23,7 +23,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "nock": "^13.3.0", "spawk": "^1.7.1", "tap": "^16.3.4" @@ -36,7 +36,7 @@ "bugs": "https://github.com/npm/libnpmpack/issues", "homepage": "https://npmjs.com/package/libnpmpack", "dependencies": { - "@npmcli/arborist": "^6.2.3", + "@npmcli/arborist": "^6.2.6", "@npmcli/run-script": "^6.0.0", "npm-package-arg": "^10.1.0", "pacote": "^15.0.8" @@ -46,7 +46,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmpublish/lib/provenance.js b/deps/npm/node_modules/libnpmpublish/lib/provenance.js index d11d210478b651..1eb870da5f24f7 100644 --- a/deps/npm/node_modules/libnpmpublish/lib/provenance.js +++ b/deps/npm/node_modules/libnpmpublish/lib/provenance.js @@ -4,39 +4,40 @@ const INTOTO_PAYLOAD_TYPE = 'application/vnd.in-toto+json' const INTOTO_STATEMENT_TYPE = 'https://in-toto.io/Statement/v0.1' const SLSA_PREDICATE_TYPE = 'https://slsa.dev/provenance/v0.2' -const BUILDER_ID_PREFIX = 'https://github.com/npm/cli' +const BUILDER_ID = 'https://github.com/actions/runner' const BUILD_TYPE_PREFIX = 'https://github.com/npm/cli/gha' -const BUILD_TYPE_VERSION = 'v1' +const BUILD_TYPE_VERSION = 'v2' const generateProvenance = async (subject, opts) => { const { env } = process + /* istanbul ignore next - not covering missing env var case */ + const [workflowPath] = (env.GITHUB_WORKFLOW_REF || '') + .replace(env.GITHUB_REPOSITORY + '/', '') + .split('@') const payload = { _type: INTOTO_STATEMENT_TYPE, subject, predicateType: SLSA_PREDICATE_TYPE, predicate: { - buildType: `${BUILD_TYPE_PREFIX}@${BUILD_TYPE_VERSION}`, - builder: { id: `${BUILDER_ID_PREFIX}@${opts.npmVersion}` }, + buildType: `${BUILD_TYPE_PREFIX}/${BUILD_TYPE_VERSION}`, + builder: { id: BUILDER_ID }, invocation: { configSource: { uri: `git+${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}@${env.GITHUB_REF}`, digest: { sha1: env.GITHUB_SHA, }, - entryPoint: env.GITHUB_WORKFLOW_REF, + entryPoint: workflowPath, }, parameters: {}, environment: { - GITHUB_ACTOR_ID: env.GITHUB_ACTOR_ID, GITHUB_EVENT_NAME: env.GITHUB_EVENT_NAME, GITHUB_REF: env.GITHUB_REF, - GITHUB_REF_TYPE: env.GITHUB_REF_TYPE, GITHUB_REPOSITORY: env.GITHUB_REPOSITORY, GITHUB_REPOSITORY_ID: env.GITHUB_REPOSITORY_ID, GITHUB_REPOSITORY_OWNER_ID: env.GITHUB_REPOSITORY_OWNER_ID, GITHUB_RUN_ATTEMPT: env.GITHUB_RUN_ATTEMPT, GITHUB_RUN_ID: env.GITHUB_RUN_ID, - GITHUB_RUN_NUMBER: env.GITHUB_RUN_NUMBER, GITHUB_SHA: env.GITHUB_SHA, GITHUB_WORKFLOW_REF: env.GITHUB_WORKFLOW_REF, GITHUB_WORKFLOW_SHA: env.GITHUB_WORKFLOW_SHA, @@ -53,7 +54,7 @@ const generateProvenance = async (subject, opts) => { }, materials: [ { - uri: `git+${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}`, + uri: `git+${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}@${env.GITHUB_REF}`, digest: { sha1: env.GITHUB_SHA, }, diff --git a/deps/npm/node_modules/libnpmpublish/lib/publish.js b/deps/npm/node_modules/libnpmpublish/lib/publish.js index 353688a10eac19..89ca01662cdb57 100644 --- a/deps/npm/node_modules/libnpmpublish/lib/publish.js +++ b/deps/npm/node_modules/libnpmpublish/lib/publish.js @@ -1,6 +1,7 @@ const { fixer } = require('normalize-package-data') const npmFetch = require('npm-registry-fetch') const npa = require('npm-package-arg') +const log = require('proc-log') const semver = require('semver') const { URL } = require('url') const ssri = require('ssri') @@ -8,6 +9,8 @@ const ciInfo = require('ci-info') const { generateProvenance } = require('./provenance') +const TLOG_BASE_URL = 'https://search.sigstore.dev/' + const publish = async (manifest, tarballData, opts) => { if (manifest.private) { throw Object.assign( @@ -141,15 +144,23 @@ const buildMetadata = async (registry, manifest, tarballData, spec, opts) => { digest: { sha512: integrity.sha512[0].hexDigest() }, } - // Ensure that we're running in GHA and an OIDC token is available, - // currently the only supported build environment - if (ciInfo.name !== 'GitHub Actions' || !process.env.ACTIONS_ID_TOKEN_REQUEST_URL) { + // Ensure that we're running in GHA, currently the only supported build environment + if (ciInfo.name !== 'GitHub Actions') { throw Object.assign( new Error('Automatic provenance generation not supported outside of GitHub Actions'), { code: 'EUSAGE' } ) } + // Ensure that the GHA OIDC token is available + if (!process.env.ACTIONS_ID_TOKEN_REQUEST_URL) { + throw Object.assign( + /* eslint-disable-next-line max-len */ + new Error('Provenance generation in GitHub Actions requires "write" access to the "id-token" permission'), + { code: 'EUSAGE' } + ) + } + const visibility = await npmFetch.json(`${registry}/-/package/${spec.escapedName}/visibility`, opts) if (!visibility.public && opts.provenance === true && opts.access !== 'public') { @@ -161,6 +172,16 @@ const buildMetadata = async (registry, manifest, tarballData, spec, opts) => { } const provenanceBundle = await generateProvenance([subject], opts) + /* eslint-disable-next-line max-len */ + log.notice('publish', 'Signed provenance statement with source and build information from GitHub Actions') + + const tlogEntry = provenanceBundle?.verificationMaterial?.tlogEntries[0] + /* istanbul ignore else */ + if (tlogEntry) { + const logUrl = `${TLOG_BASE_URL}?logIndex=${tlogEntry.logIndex}` + log.notice('publish', `Provenance statement published to transparency log: ${logUrl}`) + } + const serializedBundle = JSON.stringify(provenanceBundle) root._attachments[provenanceBundleName] = { content_type: provenanceBundle.mediaType, diff --git a/deps/npm/node_modules/libnpmpublish/package.json b/deps/npm/node_modules/libnpmpublish/package.json index 1b6a53eae61561..1557b8403d1043 100644 --- a/deps/npm/node_modules/libnpmpublish/package.json +++ b/deps/npm/node_modules/libnpmpublish/package.json @@ -1,6 +1,6 @@ { "name": "libnpmpublish", - "version": "7.1.0", + "version": "7.1.3", "description": "Programmatic API for the bits behind npm publish and unpublish", "author": "GitHub Inc.", "main": "lib/index.js", @@ -25,7 +25,7 @@ "devDependencies": { "@npmcli/eslint-config": "^4.0.0", "@npmcli/mock-registry": "^1.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "lodash.clonedeep": "^4.5.0", "nock": "^13.3.0", "tap": "^16.3.4" @@ -42,6 +42,7 @@ "normalize-package-data": "^5.0.0", "npm-package-arg": "^10.1.0", "npm-registry-fetch": "^14.0.3", + "proc-log": "^3.0.0", "semver": "^7.3.7", "sigstore": "^1.0.0", "ssri": "^10.0.1" @@ -51,7 +52,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmsearch/package.json b/deps/npm/node_modules/libnpmsearch/package.json index 51e1d0adf9348f..765c6897360b6b 100644 --- a/deps/npm/node_modules/libnpmsearch/package.json +++ b/deps/npm/node_modules/libnpmsearch/package.json @@ -26,7 +26,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "nock": "^13.3.0", "tap": "^16.3.4" }, @@ -45,7 +45,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmteam/package.json b/deps/npm/node_modules/libnpmteam/package.json index 4d98dc9dc52f32..ff4f5a7852a82a 100644 --- a/deps/npm/node_modules/libnpmteam/package.json +++ b/deps/npm/node_modules/libnpmteam/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "nock": "^13.3.0", "tap": "^16.3.4" }, @@ -39,7 +39,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" }, "tap": { diff --git a/deps/npm/node_modules/libnpmversion/package.json b/deps/npm/node_modules/libnpmversion/package.json index 8fce14cebff382..46362ae10b1044 100644 --- a/deps/npm/node_modules/libnpmversion/package.json +++ b/deps/npm/node_modules/libnpmversion/package.json @@ -32,7 +32,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.4", + "@npmcli/template-oss": "4.12.1", "require-inject": "^1.4.4", "tap": "^16.3.4" }, @@ -48,7 +48,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.4", + "version": "4.12.1", "content": "../../scripts/template-oss/index.js" } } diff --git a/deps/npm/node_modules/lru-cache/index.d.ts b/deps/npm/node_modules/lru-cache/index.d.ts deleted file mode 100644 index e8af7c4de82f99..00000000000000 --- a/deps/npm/node_modules/lru-cache/index.d.ts +++ /dev/null @@ -1,667 +0,0 @@ -// Project: https://github.com/isaacs/node-lru-cache -// Based initially on @types/lru-cache -// https://github.com/DefinitelyTyped/DefinitelyTyped -// used under the terms of the MIT License, shown below. -// -// DefinitelyTyped license: -// ------ -// MIT License -// -// Copyright (c) Microsoft Corporation. -// -// 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 -// ------ -// -// Changes by Isaac Z. Schlueter released under the terms found in the -// LICENSE file within this project. - -/** - * Integer greater than 0, representing some number of milliseconds, or the - * time at which a TTL started counting from. - */ -declare type LRUMilliseconds = number - -/** - * An integer greater than 0, reflecting the calculated size of items - */ -declare type LRUSize = number - -/** - * An integer greater than 0, reflecting a number of items - */ -declare type LRUCount = number - -declare class LRUCache implements Iterable<[K, V]> { - constructor(options: LRUCache.Options) - - /** - * Number of items in the cache. - * Alias for {@link size} - * - * @deprecated since 7.0 use {@link size} instead - */ - public readonly length: LRUCount - - public readonly max: LRUCount - public readonly maxSize: LRUSize - public readonly maxEntrySize: LRUSize - public readonly sizeCalculation: - | LRUCache.SizeCalculator - | undefined - public readonly dispose: LRUCache.Disposer - /** - * @since 7.4.0 - */ - public readonly disposeAfter: LRUCache.Disposer | null - public readonly noDisposeOnSet: boolean - public readonly ttl: LRUMilliseconds - public readonly ttlResolution: LRUMilliseconds - public readonly ttlAutopurge: boolean - public readonly allowStale: boolean - public readonly updateAgeOnGet: boolean - /** - * @since 7.11.0 - */ - public readonly noDeleteOnStaleGet: boolean - /** - * @since 7.6.0 - */ - public readonly fetchMethod: LRUCache.Fetcher | null - - /** - * The total number of items held in the cache at the current moment. - */ - public readonly size: LRUCount - - /** - * The total size of items in cache when using size tracking. - */ - public readonly calculatedSize: LRUSize - - /** - * Add a value to the cache. - */ - public set( - key: K, - value: V, - options?: LRUCache.SetOptions - ): this - - /** - * Return a value from the cache. Will update the recency of the cache entry - * found. - * - * If the key is not found, {@link get} will return `undefined`. This can be - * confusing when setting values specifically to `undefined`, as in - * `cache.set(key, undefined)`. Use {@link has} to determine whether a key is - * present in the cache at all. - */ - public get(key: K, options?: LRUCache.GetOptions): V | undefined - - /** - * Like {@link get} but doesn't update recency or delete stale items. - * Returns `undefined` if the item is stale, unless {@link allowStale} is set - * either on the cache or in the options object. - */ - public peek(key: K, options?: LRUCache.PeekOptions): V | undefined - - /** - * Check if a key is in the cache, without updating the recency of use. - * Will return false if the item is stale, even though it is technically - * in the cache. - * - * Will not update item age unless {@link updateAgeOnHas} is set in the - * options or constructor. - */ - public has(key: K, options?: LRUCache.HasOptions): boolean - - /** - * Deletes a key out of the cache. - * Returns true if the key was deleted, false otherwise. - */ - public delete(key: K): boolean - - /** - * Clear the cache entirely, throwing away all values. - */ - public clear(): void - - /** - * Delete any stale entries. Returns true if anything was removed, false - * otherwise. - */ - public purgeStale(): boolean - - /** - * Find a value for which the supplied fn method returns a truthy value, - * similar to Array.find(). fn is called as fn(value, key, cache). - */ - public find( - callbackFn: ( - value: V, - key: K, - cache: this - ) => boolean | undefined | void, - options?: LRUCache.GetOptions - ): V | undefined - - /** - * Call the supplied function on each item in the cache, in order from - * most recently used to least recently used. fn is called as - * fn(value, key, cache). Does not update age or recenty of use. - */ - public forEach( - callbackFn: (this: T, value: V, key: K, cache: this) => void, - thisArg?: T - ): void - - /** - * The same as {@link forEach} but items are iterated over in reverse - * order. (ie, less recently used items are iterated over first.) - */ - public rforEach( - callbackFn: (this: T, value: V, key: K, cache: this) => void, - thisArg?: T - ): void - - /** - * Return a generator yielding the keys in the cache, - * in order from most recently used to least recently used. - */ - public keys(): Generator - - /** - * Inverse order version of {@link keys} - * - * Return a generator yielding the keys in the cache, - * in order from least recently used to most recently used. - */ - public rkeys(): Generator - - /** - * Return a generator yielding the values in the cache, - * in order from most recently used to least recently used. - */ - public values(): Generator - - /** - * Inverse order version of {@link values} - * - * Return a generator yielding the values in the cache, - * in order from least recently used to most recently used. - */ - public rvalues(): Generator - - /** - * Return a generator yielding `[key, value]` pairs, - * in order from most recently used to least recently used. - */ - public entries(): Generator<[K, V], void, void> - - /** - * Inverse order version of {@link entries} - * - * Return a generator yielding `[key, value]` pairs, - * in order from least recently used to most recently used. - */ - public rentries(): Generator<[K, V], void, void> - - /** - * Iterating over the cache itself yields the same results as - * {@link entries} - */ - public [Symbol.iterator](): Generator<[K, V], void, void> - - /** - * Return an array of [key, entry] objects which can be passed to - * cache.load() - */ - public dump(): Array<[K, LRUCache.Entry]> - - /** - * Reset the cache and load in the items in entries in the order listed. - * Note that the shape of the resulting cache may be different if the - * same options are not used in both caches. - */ - public load( - cacheEntries: ReadonlyArray<[K, LRUCache.Entry]> - ): void - - /** - * Evict the least recently used item, returning its value or `undefined` - * if cache is empty. - */ - public pop(): V | undefined - - /** - * Deletes a key out of the cache. - * - * @deprecated since 7.0 use delete() instead - */ - public del(key: K): boolean - - /** - * Clear the cache entirely, throwing away all values. - * - * @deprecated since 7.0 use clear() instead - */ - public reset(): void - - /** - * Manually iterates over the entire cache proactively pruning old entries. - * - * @deprecated since 7.0 use purgeStale() instead - */ - public prune(): boolean - - /** - * since: 7.6.0 - */ - public fetch( - key: K, - options?: LRUCache.FetchOptions - ): Promise - - /** - * since: 7.6.0 - */ - public getRemainingTTL(key: K): LRUMilliseconds -} - -declare namespace LRUCache { - type DisposeReason = 'evict' | 'set' | 'delete' - - type SizeCalculator = (value: V, key: K) => LRUSize - type Disposer = ( - value: V, - key: K, - reason: DisposeReason - ) => void - type Fetcher = ( - key: K, - staleValue: V | undefined, - options: FetcherOptions - ) => Promise | V | void | undefined - - interface DeprecatedOptions { - /** - * alias for ttl - * - * @deprecated since 7.0 use options.ttl instead - */ - maxAge?: LRUMilliseconds - - /** - * alias for {@link sizeCalculation} - * - * @deprecated since 7.0 use {@link sizeCalculation} instead - */ - length?: SizeCalculator - - /** - * alias for allowStale - * - * @deprecated since 7.0 use options.allowStale instead - */ - stale?: boolean - } - - interface LimitedByCount { - /** - * The number of most recently used items to keep. - * Note that we may store fewer items than this if maxSize is hit. - */ - max: LRUCount - } - - type MaybeMaxEntrySizeLimit = - | { - /** - * The maximum allowed size for any single item in the cache. - * - * If a larger item is passed to {@link set} or returned by a - * {@link fetchMethod}, then it will not be stored in the cache. - */ - maxEntrySize: LRUSize - sizeCalculation?: SizeCalculator - } - | {} - - interface LimitedBySize { - /** - * If you wish to track item size, you must provide a maxSize - * note that we still will only keep up to max *actual items*, - * if max is set, so size tracking may cause fewer than max items - * to be stored. At the extreme, a single item of maxSize size - * will cause everything else in the cache to be dropped when it - * is added. Use with caution! - * - * Note also that size tracking can negatively impact performance, - * though for most cases, only minimally. - */ - maxSize: LRUSize - - /** - * Function to calculate size of items. Useful if storing strings or - * buffers or other items where memory size depends on the object itself. - * - * Items larger than {@link maxEntrySize} will not be stored in the cache. - * - * Note that when {@link maxSize} or {@link maxEntrySize} are set, every - * item added MUST have a size specified, either via a `sizeCalculation` in - * the constructor, or `sizeCalculation` or {@link size} options to - * {@link set}. - */ - sizeCalculation?: SizeCalculator - } - - interface LimitedByTTL { - /** - * Max time in milliseconds for items to live in cache before they are - * considered stale. Note that stale items are NOT preemptively removed - * by default, and MAY live in the cache, contributing to its LRU max, - * long after they have expired. - * - * Also, as this cache is optimized for LRU/MRU operations, some of - * the staleness/TTL checks will reduce performance, as they will incur - * overhead by deleting items. - * - * Must be an integer number of ms, defaults to 0, which means "no TTL" - */ - ttl: LRUMilliseconds - - /** - * Boolean flag to tell the cache to not update the TTL when - * setting a new value for an existing key (ie, when updating a value - * rather than inserting a new value). Note that the TTL value is - * _always_ set (if provided) when adding a new entry into the cache. - * - * @default false - * @since 7.4.0 - */ - noUpdateTTL?: boolean - - /** - * Minimum amount of time in ms in which to check for staleness. - * Defaults to 1, which means that the current time is checked - * at most once per millisecond. - * - * Set to 0 to check the current time every time staleness is tested. - * (This reduces performance, and is theoretically unnecessary.) - * - * Setting this to a higher value will improve performance somewhat - * while using ttl tracking, albeit at the expense of keeping stale - * items around a bit longer than their TTLs would indicate. - * - * @default 1 - * @since 7.1.0 - */ - ttlResolution?: LRUMilliseconds - - /** - * Preemptively remove stale items from the cache. - * Note that this may significantly degrade performance, - * especially if the cache is storing a large number of items. - * It is almost always best to just leave the stale items in - * the cache, and let them fall out as new items are added. - * - * Note that this means that {@link allowStale} is a bit pointless, - * as stale items will be deleted almost as soon as they expire. - * - * Use with caution! - * - * @default false - * @since 7.1.0 - */ - ttlAutopurge?: boolean - - /** - * Return stale items from {@link get} before disposing of them. - * Return stale values from {@link fetch} while performing a call - * to the {@link fetchMethod} in the background. - * - * @default false - */ - allowStale?: boolean - - /** - * Update the age of items on {@link get}, renewing their TTL - * - * @default false - */ - updateAgeOnGet?: boolean - - /** - * Do not delete stale items when they are retrieved with {@link get}. - * Note that the {@link get} return value will still be `undefined` unless - * allowStale is true. - * - * @default false - * @since 7.11.0 - */ - noDeleteOnStaleGet?: boolean - - /** - * Update the age of items on {@link has}, renewing their TTL - * - * @default false - */ - updateAgeOnHas?: boolean - } - - type SafetyBounds = - | LimitedByCount - | LimitedBySize - | LimitedByTTL - - // options shared by all three of the limiting scenarios - interface SharedOptions { - /** - * Function that is called on items when they are dropped from the cache. - * This can be handy if you want to close file descriptors or do other - * cleanup tasks when items are no longer accessible. Called with `key, - * value`. It's called before actually removing the item from the - * internal cache, so it is *NOT* safe to re-add them. - * Use {@link disposeAfter} if you wish to dispose items after they have - * been full removed, when it is safe to add them back to the cache. - */ - dispose?: Disposer - - /** - * The same as dispose, but called *after* the entry is completely - * removed and the cache is once again in a clean state. It is safe to - * add an item right back into the cache at this point. - * However, note that it is *very* easy to inadvertently create infinite - * recursion this way. - * - * @since 7.3.0 - */ - disposeAfter?: Disposer - - /** - * Set to true to suppress calling the dispose() function if the entry - * key is still accessible within the cache. - * This may be overridden by passing an options object to {@link set}. - * - * @default false - */ - noDisposeOnSet?: boolean - - /** - * Function that is used to make background asynchronous fetches. Called - * with `fetchMethod(key, staleValue, { signal, options, context })`. - * - * If `fetchMethod` is not provided, then {@link fetch} is - * equivalent to `Promise.resolve(cache.get(key))`. - * - * The `fetchMethod` should ONLY return `undefined` in cases where the - * abort controller has sent an abort signal. - * - * @since 7.6.0 - */ - fetchMethod?: LRUCache.Fetcher - - /** - * Set to true to suppress the deletion of stale data when a - * {@link fetchMethod} throws an error or returns a rejected promise - * - * @default false - * @since 7.10.0 - */ - noDeleteOnFetchRejection?: boolean - - /** - * Set to true to allow returning stale data when a {@link fetchMethod} - * throws an error or returns a rejected promise. Note that this - * differs from using {@link allowStale} in that stale data will - * ONLY be returned in the case that the fetch fails, not any other - * times. - * - * @default false - * @since 7.16.0 - */ - allowStaleOnFetchRejection?: boolean - - /** - * Set to any value in the constructor or {@link fetch} options to - * pass arbitrary data to the {@link fetchMethod} in the {@link context} - * options field. - * - * @since 7.12.0 - */ - fetchContext?: any - } - - type Options = SharedOptions & - DeprecatedOptions & - SafetyBounds & - MaybeMaxEntrySizeLimit - - /** - * options which override the options set in the LRUCache constructor - * when making calling {@link set}. - */ - interface SetOptions { - /** - * A value for the size of the entry, prevents calls to - * {@link sizeCalculation}. - * - * Items larger than {@link maxEntrySize} will not be stored in the cache. - * - * Note that when {@link maxSize} or {@link maxEntrySize} are set, every - * item added MUST have a size specified, either via a `sizeCalculation` in - * the constructor, or {@link sizeCalculation} or `size` options to - * {@link set}. - */ - size?: LRUSize - /** - * Overrides the {@link sizeCalculation} method set in the constructor. - * - * Items larger than {@link maxEntrySize} will not be stored in the cache. - * - * Note that when {@link maxSize} or {@link maxEntrySize} are set, every - * item added MUST have a size specified, either via a `sizeCalculation` in - * the constructor, or `sizeCalculation` or {@link size} options to - * {@link set}. - */ - sizeCalculation?: SizeCalculator - ttl?: LRUMilliseconds - start?: LRUMilliseconds - noDisposeOnSet?: boolean - noUpdateTTL?: boolean - } - - /** - * options which override the options set in the LRUCAche constructor - * when calling {@link has}. - */ - interface HasOptions { - updateAgeOnHas?: boolean - } - - /** - * options which override the options set in the LRUCache constructor - * when calling {@link get}. - */ - interface GetOptions { - allowStale?: boolean - updateAgeOnGet?: boolean - noDeleteOnStaleGet?: boolean - } - - /** - * options which override the options set in the LRUCache constructor - * when calling {@link peek}. - */ - interface PeekOptions { - allowStale?: boolean - } - - /** - * Options object passed to the {@link fetchMethod} - * - * May be mutated by the {@link fetchMethod} to affect the behavior of the - * resulting {@link set} operation on resolution, or in the case of - * {@link noDeleteOnFetchRejection} and {@link allowStaleOnFetchRejection}, - * the handling of failure. - */ - interface FetcherFetchOptions { - allowStale?: boolean - updateAgeOnGet?: boolean - noDeleteOnStaleGet?: boolean - size?: LRUSize - sizeCalculation?: SizeCalculator - ttl?: LRUMilliseconds - noDisposeOnSet?: boolean - noUpdateTTL?: boolean - noDeleteOnFetchRejection?: boolean - allowStaleOnFetchRejection?: boolean - } - - /** - * options which override the options set in the LRUCache constructor - * when calling {@link fetch}. - * - * This is the union of GetOptions and SetOptions, plus - * {@link noDeleteOnFetchRejection}, {@link allowStaleOnFetchRejection}, - * {@link forceRefresh}, and {@link fetchContext} - */ - interface FetchOptions extends FetcherFetchOptions { - forceRefresh?: boolean - fetchContext?: any - } - - interface FetcherOptions { - signal: AbortSignal - options: FetcherFetchOptions - /** - * Object provided in the {@link fetchContext} option - */ - context: any - } - - interface Entry { - value: V - ttl?: LRUMilliseconds - size?: LRUSize - start?: LRUMilliseconds - } -} - -export = LRUCache diff --git a/deps/npm/node_modules/lru-cache/index.js b/deps/npm/node_modules/lru-cache/index.js index f4be3476d4dbc1..48e99fe5e5a70c 100644 --- a/deps/npm/node_modules/lru-cache/index.js +++ b/deps/npm/node_modules/lru-cache/index.js @@ -18,7 +18,8 @@ const AC = hasAbortController this.signal = new AS() } abort(reason = new Error('This operation was aborted')) { - this.signal.reason = reason + this.signal.reason = this.signal.reason || reason + this.signal.aborted = true this.signal.dispatchEvent({ type: 'abort', target: this.signal, @@ -168,6 +169,8 @@ class LRUCache { noDeleteOnFetchRejection, noDeleteOnStaleGet, allowStaleOnFetchRejection, + allowStaleOnFetchAbort, + ignoreFetchAbort, } = options // deprecated options, don't trigger a warning for getting them if @@ -238,6 +241,8 @@ class LRUCache { 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) { @@ -331,6 +336,15 @@ class LRUCache { 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 @@ -372,6 +386,7 @@ class LRUCache { } } updateItemAge(_index) {} + statusTTL(_status, _index) {} setItemTTL(_index, _ttl, _start) {} isStale(_index) { return false @@ -411,7 +426,7 @@ class LRUCache { } return size } - this.addItemSize = (index, size) => { + this.addItemSize = (index, size, status) => { this.sizes[index] = size if (this.maxSize) { const maxSize = this.maxSize - this.sizes[index] @@ -420,6 +435,10 @@ class LRUCache { } } this.calculatedSize += this.sizes[index] + if (status) { + status.entrySize = size + status.totalCalculatedSize = this.calculatedSize + } } } removeItemSize(_index) {} @@ -469,19 +488,30 @@ class LRUCache { } isValidIndex(index) { - return this.keyMap.get(this.keyList[index]) === index + return ( + index !== undefined && + this.keyMap.get(this.keyList[index]) === index + ) } *entries() { for (const i of this.indexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + 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.isBackgroundFetch(this.valList[i])) { + if ( + this.valList[i] !== undefined && + this.keyList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield [this.keyList[i], this.valList[i]] } } @@ -489,14 +519,20 @@ class LRUCache { *keys() { for (const i of this.indexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + if ( + this.keyList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield this.keyList[i] } } } *rkeys() { for (const i of this.rindexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + if ( + this.keyList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield this.keyList[i] } } @@ -504,14 +540,20 @@ class LRUCache { *values() { for (const i of this.indexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + if ( + this.valList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield this.valList[i] } } } *rvalues() { for (const i of this.rindexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + if ( + this.valList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield this.valList[i] } } @@ -521,9 +563,14 @@ class LRUCache { return this.entries() } - find(fn, getOptions = {}) { + find(fn, getOptions) { for (const i of this.indexes()) { - if (fn(this.valList[i], this.keyList[i], this)) { + 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) } } @@ -531,13 +578,23 @@ class LRUCache { forEach(fn, thisp = this) { for (const i of this.indexes()) { - fn.call(thisp, this.valList[i], this.keyList[i], this) + 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()) { - fn.call(thisp, this.valList[i], this.keyList[i], this) + 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) } } @@ -608,12 +665,17 @@ class LRUCache { 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) @@ -630,7 +692,10 @@ class LRUCache { this.prev[index] = this.tail this.tail = index this.size++ - this.addItemSize(index, size) + this.addItemSize(index, size, status) + if (status) { + status.set = 'add' + } noUpdateTTL = false } else { // update @@ -649,7 +714,17 @@ class LRUCache { } this.removeItemSize(index) this.valList[index] = v - this.addItemSize(index, size) + 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) { @@ -658,6 +733,7 @@ class LRUCache { if (!noUpdateTTL) { this.setItemTTL(index, ttl, start) } + this.statusTTL(status, index) if (this.disposeAfter) { while (this.disposed.length) { this.disposeAfter(...this.disposed.shift()) @@ -713,15 +789,22 @@ class LRUCache { return head } - has(k, { updateAgeOnHas = this.updateAgeOnHas } = {}) { + 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 } @@ -742,51 +825,109 @@ class LRUCache { 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 => { - if (!ac.signal.aborted) { - this.set(k, v, fetchOpts.options) - return v - } else { - return eb(ac.signal.reason) + 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 noDelete = - options.noDeleteOnFetchRejection || - options.allowStaleOnFetchRejection const del = !noDelete || p.__staleWhileFetching === undefined if (del) { this.delete(k) - } else { + } 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 (options.allowStaleOnFetchRejection) { + 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) => { - ac.signal.addEventListener('abort', () => res()) - this.fetchMethod(k, v, fetchOpts).then(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) { - this.set(k, p, fetchOpts.options) + // internal, don't expose status. + this.set(k, p, { ...fetchOpts.options, status: undefined }) index = this.keyMap.get(k) } else { this.valList[index] = p @@ -825,16 +966,21 @@ class LRUCache { // 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, }) } @@ -849,38 +995,53 @@ class LRUCache { 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)) { - return allowStale && v.__staleWhileFetching !== undefined - ? v.__staleWhileFetching - : (v.__returned = 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. - if (!forceRefresh && !this.isStale(index)) { + 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) - return allowStale && p.__staleWhileFetching !== undefined - ? p.__staleWhileFetching - : (p.__returned = p) + 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) } } @@ -890,28 +1051,39 @@ class LRUCache { 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, - // so we just return undefined + // 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 undefined + return value.__staleWhileFetching } this.moveToTail(index) if (updateAgeOnGet) { @@ -919,6 +1091,8 @@ class LRUCache { } return value } + } else if (status) { + status.get = 'miss' } } diff --git a/deps/npm/node_modules/lru-cache/index.mjs b/deps/npm/node_modules/lru-cache/index.mjs index e69e77fbb34566..4a0b4813ec5157 100644 --- a/deps/npm/node_modules/lru-cache/index.mjs +++ b/deps/npm/node_modules/lru-cache/index.mjs @@ -18,7 +18,8 @@ const AC = hasAbortController this.signal = new AS() } abort(reason = new Error('This operation was aborted')) { - this.signal.reason = reason + this.signal.reason = this.signal.reason || reason + this.signal.aborted = true this.signal.dispatchEvent({ type: 'abort', target: this.signal, @@ -168,6 +169,8 @@ class LRUCache { noDeleteOnFetchRejection, noDeleteOnStaleGet, allowStaleOnFetchRejection, + allowStaleOnFetchAbort, + ignoreFetchAbort, } = options // deprecated options, don't trigger a warning for getting them if @@ -238,6 +241,8 @@ class LRUCache { 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) { @@ -331,6 +336,15 @@ class LRUCache { 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 @@ -372,6 +386,7 @@ class LRUCache { } } updateItemAge(_index) {} + statusTTL(_status, _index) {} setItemTTL(_index, _ttl, _start) {} isStale(_index) { return false @@ -411,7 +426,7 @@ class LRUCache { } return size } - this.addItemSize = (index, size) => { + this.addItemSize = (index, size, status) => { this.sizes[index] = size if (this.maxSize) { const maxSize = this.maxSize - this.sizes[index] @@ -420,6 +435,10 @@ class LRUCache { } } this.calculatedSize += this.sizes[index] + if (status) { + status.entrySize = size + status.totalCalculatedSize = this.calculatedSize + } } } removeItemSize(_index) {} @@ -469,19 +488,30 @@ class LRUCache { } isValidIndex(index) { - return this.keyMap.get(this.keyList[index]) === index + return ( + index !== undefined && + this.keyMap.get(this.keyList[index]) === index + ) } *entries() { for (const i of this.indexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + 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.isBackgroundFetch(this.valList[i])) { + if ( + this.valList[i] !== undefined && + this.keyList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield [this.keyList[i], this.valList[i]] } } @@ -489,14 +519,20 @@ class LRUCache { *keys() { for (const i of this.indexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + if ( + this.keyList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield this.keyList[i] } } } *rkeys() { for (const i of this.rindexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + if ( + this.keyList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield this.keyList[i] } } @@ -504,14 +540,20 @@ class LRUCache { *values() { for (const i of this.indexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + if ( + this.valList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield this.valList[i] } } } *rvalues() { for (const i of this.rindexes()) { - if (!this.isBackgroundFetch(this.valList[i])) { + if ( + this.valList[i] !== undefined && + !this.isBackgroundFetch(this.valList[i]) + ) { yield this.valList[i] } } @@ -521,9 +563,14 @@ class LRUCache { return this.entries() } - find(fn, getOptions = {}) { + find(fn, getOptions) { for (const i of this.indexes()) { - if (fn(this.valList[i], this.keyList[i], this)) { + 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) } } @@ -531,13 +578,23 @@ class LRUCache { forEach(fn, thisp = this) { for (const i of this.indexes()) { - fn.call(thisp, this.valList[i], this.keyList[i], this) + 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()) { - fn.call(thisp, this.valList[i], this.keyList[i], this) + 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) } } @@ -608,12 +665,17 @@ class LRUCache { 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) @@ -630,7 +692,10 @@ class LRUCache { this.prev[index] = this.tail this.tail = index this.size++ - this.addItemSize(index, size) + this.addItemSize(index, size, status) + if (status) { + status.set = 'add' + } noUpdateTTL = false } else { // update @@ -649,7 +714,17 @@ class LRUCache { } this.removeItemSize(index) this.valList[index] = v - this.addItemSize(index, size) + 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) { @@ -658,6 +733,7 @@ class LRUCache { if (!noUpdateTTL) { this.setItemTTL(index, ttl, start) } + this.statusTTL(status, index) if (this.disposeAfter) { while (this.disposed.length) { this.disposeAfter(...this.disposed.shift()) @@ -713,15 +789,22 @@ class LRUCache { return head } - has(k, { updateAgeOnHas = this.updateAgeOnHas } = {}) { + 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 } @@ -742,51 +825,109 @@ class LRUCache { 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 => { - if (!ac.signal.aborted) { - this.set(k, v, fetchOpts.options) - return v - } else { - return eb(ac.signal.reason) + 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 noDelete = - options.noDeleteOnFetchRejection || - options.allowStaleOnFetchRejection const del = !noDelete || p.__staleWhileFetching === undefined if (del) { this.delete(k) - } else { + } 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 (options.allowStaleOnFetchRejection) { + 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) => { - ac.signal.addEventListener('abort', () => res()) - this.fetchMethod(k, v, fetchOpts).then(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) { - this.set(k, p, fetchOpts.options) + // internal, don't expose status. + this.set(k, p, { ...fetchOpts.options, status: undefined }) index = this.keyMap.get(k) } else { this.valList[index] = p @@ -825,16 +966,21 @@ class LRUCache { // 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, }) } @@ -849,38 +995,53 @@ class LRUCache { 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)) { - return allowStale && v.__staleWhileFetching !== undefined - ? v.__staleWhileFetching - : (v.__returned = 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. - if (!forceRefresh && !this.isStale(index)) { + 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) - return allowStale && p.__staleWhileFetching !== undefined - ? p.__staleWhileFetching - : (p.__returned = p) + 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) } } @@ -890,28 +1051,39 @@ class LRUCache { 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, - // so we just return undefined + // 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 undefined + return value.__staleWhileFetching } this.moveToTail(index) if (updateAgeOnGet) { @@ -919,6 +1091,8 @@ class LRUCache { } return value } + } else if (status) { + status.get = 'miss' } } diff --git a/deps/npm/node_modules/lru-cache/package.json b/deps/npm/node_modules/lru-cache/package.json index fb90c93901b093..9684991727e7a2 100644 --- a/deps/npm/node_modules/lru-cache/package.json +++ b/deps/npm/node_modules/lru-cache/package.json @@ -1,7 +1,7 @@ { "name": "lru-cache", "description": "A cache object that deletes the least-recently-used items.", - "version": "7.16.2", + "version": "7.18.3", "author": "Isaac Z. Schlueter ", "keywords": [ "mru", @@ -13,7 +13,7 @@ "build": "npm run prepare", "pretest": "npm run prepare", "presnap": "npm run prepare", - "prepare": "node ./scripts/transpile-to-esm.mjs", + "prepare": "node ./scripts/transpile-to-esm.js", "size": "size-limit", "test": "tap", "snap": "tap", diff --git a/deps/npm/node_modules/minimatch/dist/cjs/_parse.js b/deps/npm/node_modules/minimatch/dist/cjs/_parse.js new file mode 100644 index 00000000000000..4387a26171dfe8 --- /dev/null +++ b/deps/npm/node_modules/minimatch/dist/cjs/_parse.js @@ -0,0 +1,300 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.parse = void 0; +// parse a single path portion +const brace_expressions_js_1 = require("./brace-expressions.js"); +const assert_valid_pattern_js_1 = require("./assert-valid-pattern.js"); +const globUnescape = (s) => s.replace(/\\(.)/g, '$1'); +const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&'); +// "abc" -> { a:true, b:true, c:true } +const charSet = (s) => s.split('').reduce((set, c) => { + set[c] = true; + return set; +}, {}); +const plTypes = { + '!': { open: '(?:(?!(?:', close: '))[^/]*?)' }, + '?': { open: '(?:', close: ')?' }, + '+': { open: '(?:', close: ')+' }, + '*': { open: '(?:', close: ')*' }, + '@': { open: '(?:', close: ')' }, +}; +// characters that need to be escaped in RegExp. +const reSpecials = charSet('().*{}+?[]^$\\!'); +// characters that indicate we have to add the pattern start +const addPatternStartSet = charSet('[.('); +// any single thing other than / +// don't need to escape / when using new RegExp() +const qmark = '[^/]'; +// * => any number of characters +const star = qmark + '*?'; +// TODO: take an offset and length, so we can sub-parse the extglobs +const parse = (options, pattern, debug) => { + (0, assert_valid_pattern_js_1.assertValidPattern)(pattern); + if (pattern === '') + return ''; + let re = ''; + let hasMagic = false; + let escaping = false; + // ? => one single character + const patternListStack = []; + const negativeLists = []; + let stateChar = false; + let uflag = false; + let pl; + // . and .. never match anything that doesn't start with ., + // even when options.dot is set. However, if the pattern + // starts with ., then traversal patterns can match. + let dotTravAllowed = pattern.charAt(0) === '.'; + let dotFileAllowed = options.dot || dotTravAllowed; + const patternStart = () => dotTravAllowed + ? '' + : dotFileAllowed + ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))' + : '(?!\\.)'; + const subPatternStart = (p) => p.charAt(0) === '.' + ? '' + : options.dot + ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))' + : '(?!\\.)'; + const 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; + } + debug('clearStateChar %j %j', stateChar, re); + stateChar = false; + } + }; + for (let i = 0, c; i < pattern.length && (c = pattern.charAt(i)); i++) { + debug('%s\t%s %s %j', pattern, i, re, c); + // skip over any that are escaped. + if (escaping) { + // completely not allowed, even escaped. + // should be impossible. + /* c8 ignore start */ + if (c === '/') { + return false; + } + /* c8 ignore stop */ + if (reSpecials[c]) { + re += '\\'; + } + re += c; + escaping = false; + continue; + } + switch (c) { + // Should already be path-split by now. + /* c8 ignore start */ + case '/': { + return false; + } + /* c8 ignore stop */ + case '\\': + clearStateChar(); + escaping = true; + continue; + // the various stateChar values + // for the "extglob" stuff. + case '?': + case '*': + case '+': + case '@': + case '!': + debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c); + // 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. + 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 (!stateChar) { + re += '\\('; + continue; + } + const plEntry = { + type: stateChar, + start: i - 1, + reStart: re.length, + open: plTypes[stateChar].open, + close: plTypes[stateChar].close, + }; + debug(pattern, '\t', plEntry); + patternListStack.push(plEntry); + // negation is (?:(?!(?:js)(?:))[^/]*) + re += plEntry.open; + // next entry starts with a dot maybe? + if (plEntry.start === 0 && plEntry.type !== '!') { + dotTravAllowed = true; + re += subPatternStart(pattern.slice(i + 1)); + } + debug('plType %j %j', stateChar, re); + stateChar = false; + continue; + } + case ')': { + const plEntry = patternListStack[patternListStack.length - 1]; + if (!plEntry) { + re += '\\)'; + continue; + } + patternListStack.pop(); + // closing an extglob + clearStateChar(); + hasMagic = true; + pl = plEntry; + // negation is (?:(?!js)[^/]*) + // The others are (?:) + re += pl.close; + if (pl.type === '!') { + negativeLists.push(Object.assign(pl, { reEnd: re.length })); + } + continue; + } + case '|': { + const plEntry = patternListStack[patternListStack.length - 1]; + if (!plEntry) { + re += '\\|'; + continue; + } + clearStateChar(); + re += '|'; + // next subpattern can start with a dot? + if (plEntry.start === 0 && plEntry.type !== '!') { + dotTravAllowed = true; + re += subPatternStart(pattern.slice(i + 1)); + } + continue; + } + // these are mostly the same in regexp and glob + case '[': + // swallow any state-tracking char before the [ + clearStateChar(); + const [src, needUflag, consumed, magic] = (0, brace_expressions_js_1.parseClass)(pattern, i); + if (consumed) { + re += src; + uflag = uflag || needUflag; + i += consumed - 1; + hasMagic = hasMagic || magic; + } + else { + re += '\\['; + } + continue; + case ']': + re += '\\' + c; + continue; + default: + // swallow any state char that wasn't consumed + clearStateChar(); + re += regExpEscape(c); + break; + } // switch + } // for + // 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()) { + let tail; + tail = re.slice(pl.reStart + pl.open.length); + debug(pattern, 'setting tail', re, pl); + // maybe some even number of \, then maybe 1 \, followed by a | + tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, (_, $1, $2) => { + if (!$2) { + // the | isn't already escaped, so escape it. + $2 = '\\'; + // should already be done + /* c8 ignore start */ + } + /* c8 ignore stop */ + // 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 + '|'; + }); + debug('tail=%j\n %s', tail, tail, pl, re); + const 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 + const addPatternStart = addPatternStartSet[re.charAt(0)]; + // 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 (let n = negativeLists.length - 1; n > -1; n--) { + const nl = negativeLists[n]; + const nlBefore = re.slice(0, nl.reStart); + const nlFirst = re.slice(nl.reStart, nl.reEnd - 8); + let nlAfter = re.slice(nl.reEnd); + const nlLast = re.slice(nl.reEnd - 8, nl.reEnd) + 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. + const closeParensBefore = nlBefore.split(')').length; + const openParensBefore = nlBefore.split('(').length - closeParensBefore; + let cleanAfter = nlAfter; + for (let i = 0; i < openParensBefore; i++) { + cleanAfter = cleanAfter.replace(/\)[+*?]?/, ''); + } + nlAfter = cleanAfter; + const dollar = nlAfter === '' ? '(?:$|\\/)' : ''; + re = nlBefore + nlFirst + nlAfter + dollar + nlLast; + } + // 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; + } + // if it's nocase, and the lcase/uppercase don't match, it's magic + if (options.nocase && !hasMagic && !options.nocaseMagicOnly) { + hasMagic = pattern.toUpperCase() !== pattern.toLowerCase(); + } + // 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(re); + } + return re; +}; +exports.parse = parse; +//# sourceMappingURL=_parse.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js b/deps/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js new file mode 100644 index 00000000000000..5fc86bbd0116c9 --- /dev/null +++ b/deps/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js @@ -0,0 +1,14 @@ +"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/minimatch/dist/cjs/brace-expressions.js b/deps/npm/node_modules/minimatch/dist/cjs/brace-expressions.js new file mode 100644 index 00000000000000..0e13eefc4cfee2 --- /dev/null +++ b/deps/npm/node_modules/minimatch/dist/cjs/brace-expressions.js @@ -0,0 +1,152 @@ +"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/minimatch/dist/cjs/escape.js b/deps/npm/node_modules/minimatch/dist/cjs/escape.js new file mode 100644 index 00000000000000..02a4f8a8e0a588 --- /dev/null +++ b/deps/npm/node_modules/minimatch/dist/cjs/escape.js @@ -0,0 +1,22 @@ +"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/minimatch/dist/cjs/extglob.js b/deps/npm/node_modules/minimatch/dist/cjs/extglob.js new file mode 100644 index 00000000000000..8d7607b7f7ead4 --- /dev/null +++ b/deps/npm/node_modules/minimatch/dist/cjs/extglob.js @@ -0,0 +1,4 @@ +"use strict"; +// translate an extglob into a regular expression +Object.defineProperty(exports, "__esModule", { value: true }); +//# sourceMappingURL=extglob.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/minimatch/dist/cjs/index-cjs.d.ts b/deps/npm/node_modules/minimatch/dist/cjs/index-cjs.d.ts deleted file mode 100644 index 29fdd1d95838fd..00000000000000 --- a/deps/npm/node_modules/minimatch/dist/cjs/index-cjs.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -declare const _default: { - (p: string, pattern: string, options?: import("./index.js").MinimatchOptions): boolean; - sep: string; - GLOBSTAR: typeof import("./index.js").GLOBSTAR; - filter: (pattern: string, options?: import("./index.js").MinimatchOptions) => (p: string) => boolean; - defaults: (def: import("./index.js").MinimatchOptions) => any; - braceExpand: (pattern: string, options?: import("./index.js").MinimatchOptions) => string[]; - makeRe: (pattern: string, options?: import("./index.js").MinimatchOptions) => false | import("./index.js").MMRegExp; - match: (list: string[], pattern: string, options?: import("./index.js").MinimatchOptions) => string[]; - Minimatch: typeof import("./index.js").Minimatch; -} & { - default: { - (p: string, pattern: string, options?: import("./index.js").MinimatchOptions): boolean; - sep: string; - GLOBSTAR: typeof import("./index.js").GLOBSTAR; - filter: (pattern: string, options?: import("./index.js").MinimatchOptions) => (p: string) => boolean; - defaults: (def: import("./index.js").MinimatchOptions) => any; - braceExpand: (pattern: string, options?: import("./index.js").MinimatchOptions) => string[]; - makeRe: (pattern: string, options?: import("./index.js").MinimatchOptions) => false | import("./index.js").MMRegExp; - match: (list: string[], pattern: string, options?: import("./index.js").MinimatchOptions) => string[]; - Minimatch: typeof import("./index.js").Minimatch; - }; - minimatch: { - (p: string, pattern: string, options?: import("./index.js").MinimatchOptions): boolean; - sep: string; - GLOBSTAR: typeof import("./index.js").GLOBSTAR; - filter: (pattern: string, options?: import("./index.js").MinimatchOptions) => (p: string) => boolean; - defaults: (def: import("./index.js").MinimatchOptions) => any; - braceExpand: (pattern: string, options?: import("./index.js").MinimatchOptions) => string[]; - makeRe: (pattern: string, options?: import("./index.js").MinimatchOptions) => false | import("./index.js").MMRegExp; - match: (list: string[], pattern: string, options?: import("./index.js").MinimatchOptions) => string[]; - Minimatch: typeof import("./index.js").Minimatch; - }; -}; -export = _default; diff --git a/deps/npm/node_modules/minimatch/dist/cjs/index-cjs.js.map b/deps/npm/node_modules/minimatch/dist/cjs/index-cjs.js.map deleted file mode 100644 index 1a054859a1341b..00000000000000 --- a/deps/npm/node_modules/minimatch/dist/cjs/index-cjs.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index-cjs.js","sourceRoot":"","sources":["../../src/index-cjs.ts"],"names":[],"mappings":";;;;AAAA,0DAAkC;AAElC,iBAAS,MAAM,CAAC,MAAM,CAAC,kBAAS,EAAE,EAAE,OAAO,EAAE,kBAAS,EAAE,SAAS,EAAT,kBAAS,EAAE,CAAC,CAAA"} \ No newline at end of file diff --git a/deps/npm/node_modules/minimatch/dist/cjs/index.d.ts b/deps/npm/node_modules/minimatch/dist/cjs/index.d.ts deleted file mode 100644 index cca07a8280d896..00000000000000 --- a/deps/npm/node_modules/minimatch/dist/cjs/index.d.ts +++ /dev/null @@ -1,71 +0,0 @@ -export interface MinimatchOptions { - nobrace?: boolean; - nocomment?: boolean; - nonegate?: boolean; - debug?: boolean; - noglobstar?: boolean; - noext?: boolean; - nonull?: boolean; - windowsPathsNoEscape?: boolean; - allowWindowsEscape?: boolean; - partial?: boolean; - dot?: boolean; - nocase?: boolean; - nocaseMagicOnly?: boolean; - matchBase?: boolean; - flipNegate?: boolean; - preserveMultipleSlashes?: boolean; -} -export declare const minimatch: { - (p: string, pattern: string, options?: MinimatchOptions): boolean; - sep: string; - GLOBSTAR: typeof GLOBSTAR; - filter: (pattern: string, options?: MinimatchOptions) => (p: string) => boolean; - defaults: (def: MinimatchOptions) => typeof minimatch; - braceExpand: (pattern: string, options?: MinimatchOptions) => string[]; - makeRe: (pattern: string, options?: MinimatchOptions) => false | MMRegExp; - match: (list: string[], pattern: string, options?: MinimatchOptions) => string[]; - Minimatch: typeof Minimatch; -}; -export default minimatch; -export declare const sep: string; -export declare const GLOBSTAR: unique symbol; -export declare const filter: (pattern: string, options?: MinimatchOptions) => (p: string) => boolean; -export declare const defaults: (def: MinimatchOptions) => typeof minimatch; -export declare const braceExpand: (pattern: string, options?: MinimatchOptions) => string[]; -declare const SUBPARSE: unique symbol; -export declare const makeRe: (pattern: string, options?: MinimatchOptions) => false | MMRegExp; -export declare const match: (list: string[], pattern: string, options?: MinimatchOptions) => string[]; -export type MMRegExp = RegExp & { - _src?: string; - _glob?: string; -}; -type SubparseReturn = [string, boolean]; -type ParseReturnFiltered = string | MMRegExp | typeof GLOBSTAR; -type ParseReturn = ParseReturnFiltered | false; -export declare class Minimatch { - options: MinimatchOptions; - set: ParseReturnFiltered[][]; - pattern: string; - windowsPathsNoEscape: boolean; - nonegate: boolean; - negate: boolean; - comment: boolean; - empty: boolean; - preserveMultipleSlashes: boolean; - partial: boolean; - globSet: string[]; - globParts: string[][]; - regexp: false | null | MMRegExp; - constructor(pattern: string, options?: MinimatchOptions); - debug(..._: any[]): void; - make(): void; - parseNegate(): void; - matchOne(file: string[], pattern: ParseReturn[], partial?: boolean): boolean; - braceExpand(): string[]; - parse(pattern: string, isSub?: typeof SUBPARSE): ParseReturn | SubparseReturn; - makeRe(): false | MMRegExp; - slashSplit(p: string): string[]; - match(f: string, partial?: boolean): boolean; - static defaults(def: MinimatchOptions): typeof Minimatch; -} diff --git a/deps/npm/node_modules/minimatch/dist/cjs/index.js b/deps/npm/node_modules/minimatch/dist/cjs/index.js index 63fc3bdd0b109a..3bb6c3dee58b86 100644 --- a/deps/npm/node_modules/minimatch/dist/cjs/index.js +++ b/deps/npm/node_modules/minimatch/dist/cjs/index.js @@ -3,7 +3,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.Minimatch = exports.match = exports.makeRe = exports.braceExpand = exports.defaults = exports.filter = exports.GLOBSTAR = exports.sep = exports.minimatch = void 0; +exports.unescape = exports.escape = 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 brace_expressions_js_1 = require("./brace-expressions.js"); +const escape_js_1 = require("./escape.js"); +const unescape_js_1 = require("./unescape.js"); const minimatch = (p, pattern, options = {}) => { assertValidPattern(pattern); // shortcut: comments match nothing. @@ -66,20 +70,21 @@ const qmarksTestNoExtDot = ([$0]) => { return (f) => f.length === len && f !== '.' && f !== '..'; }; /* c8 ignore start */ -const platform = typeof process === 'object' && process +const defaultPlatform = (typeof process === 'object' && process ? (typeof process.env === 'object' && process.env && process.env.__MINIMATCH_TESTING_PLATFORM__) || process.platform - : 'posix'; -const isWindows = platform === 'win32'; -const path = isWindows ? { sep: '\\' } : { sep: '/' }; + : 'posix'); +const path = { + win32: { sep: '\\' }, + posix: { sep: '/' }, +}; /* c8 ignore stop */ -exports.sep = path.sep; +exports.sep = defaultPlatform === 'win32' ? path.win32.sep : path.posix.sep; exports.minimatch.sep = exports.sep; exports.GLOBSTAR = Symbol('globstar **'); exports.minimatch.GLOBSTAR = exports.GLOBSTAR; -const brace_expansion_1 = __importDefault(require("brace-expansion")); const plTypes = { '!': { open: '(?:(?!(?:', close: '))[^/]*?)' }, '?': { open: '(?:', close: ')?' }, @@ -127,6 +132,8 @@ const defaults = (def) => { return orig.defaults(ext(def, options)).Minimatch; } }, + 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)), @@ -180,7 +187,6 @@ const assertValidPattern = (pattern) => { // 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 SUBPARSE = Symbol('subparse'); const makeRe = (pattern, options = {}) => new Minimatch(pattern, options).makeRe(); exports.makeRe = makeRe; exports.minimatch.makeRe = exports.makeRe; @@ -196,9 +202,8 @@ exports.match = match; exports.minimatch.match = exports.match; // replace stuff like \* with * const globUnescape = (s) => s.replace(/\\(.)/g, '$1'); -const charUnescape = (s) => s.replace(/\\([^-\]])/g, '$1'); +const globMagic = /[?*]|[+@!]\(.*?\)|\[|\]/; const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&'); -const braExpEscape = (s) => s.replace(/[[\]\\]/g, '\\$&'); class Minimatch { options; set; @@ -212,12 +217,18 @@ class Minimatch { 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) { @@ -230,12 +241,29 @@ class Minimatch { 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; @@ -252,73 +280,46 @@ class Minimatch { // step 1: figure out negation, etc. this.parseNegate(); // step 2: expand braces - this.globSet = this.braceExpand(); + 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. + // 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)); - // consecutive globstars are an unncessary perf killer - // also, **/*/... is equivalent to */**/..., so swap all of those - // this turns a pattern like **/*/**/*/x into */*/**/x - // and a pattern like **/x/**/*/y becomes **/x/*/**/y - // the *later* we can push the **, the more efficient it is, - // because we can avoid having to do a recursive walk until - // the walked tree is as shallow as possible. - // Note that this is only true up to the last pattern, though, because - // a/*/** will only match a/b if b is a dir, but a/**/* will match a/b - // regardless, since it's "0 or more path segments" if it's not final. - if (this.options.noglobstar) { - // ** is * anyway - this.globParts = rawGlobParts; - } - else { - // do this swap BEFORE the reduce, so that we can turn a string - // of **/*/**/* into */*/**/** and then reduce the **'s into one - for (const parts of rawGlobParts) { - let swapped; - do { - swapped = false; - for (let i = 0; i < parts.length - 1; i++) { - if (parts[i] === '*' && parts[i - 1] === '**') { - parts[i] = '**'; - parts[i - 1] = '*'; - swapped = true; - } - } - } while (swapped); - } - this.globParts = rawGlobParts.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; - }); - } + this.globParts = this.preprocess(rawGlobParts); this.debug(this.pattern, this.globParts); // glob --> regexps - let set = this.globParts.map((s, _, __) => s.map(ss => this.parse(ss))); + 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 (isWindows) { + if (this.isWindows) { for (let i = 0; i < this.set.length; i++) { const p = this.set[i]; if (p[0] === '' && @@ -332,6 +333,276 @@ class Minimatch { } 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;
    @@ -355,7 +626,7 @@ class Minimatch {
             const options = this.options;
             // a UNC pattern like //?/c:/* can match a path like c:/x
             // and vice versa
    -        if (isWindows) {
    +        if (this.isWindows) {
                 const fileUNC = file[0] === '' &&
                     file[1] === '' &&
                     file[2] === '?' &&
    @@ -389,6 +660,12 @@ class Minimatch {
                     }
                 }
             }
    +        // 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++) {
    @@ -536,50 +813,44 @@ class Minimatch {
         braceExpand() {
             return (0, exports.braceExpand)(this.pattern, this.options);
         }
    -    parse(pattern, isSub) {
    +    parse(pattern) {
             assertValidPattern(pattern);
             const options = this.options;
             // shortcuts
    -        if (pattern === '**') {
    -            if (!options.noglobstar)
    -                return exports.GLOBSTAR;
    -            else
    -                pattern = '*';
    -        }
    +        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 (isSub !== SUBPARSE) {
    -            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;
    -            }
    +        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;
             }
             let re = '';
             let hasMagic = false;
    @@ -588,12 +859,8 @@ class Minimatch {
             const patternListStack = [];
             const negativeLists = [];
             let stateChar = false;
    -        let inClass = false;
    -        let reClassStart = -1;
    -        let classStart = -1;
    -        let cs;
    +        let uflag = false;
             let pl;
    -        let sp;
             // . and .. never match anything that doesn't start with .,
             // even when options.dot is set.  However, if the pattern
             // starts with ., then traversal patterns can match.
    @@ -656,10 +923,6 @@ class Minimatch {
                     }
                     /* c8 ignore stop */
                     case '\\':
    -                    if (inClass && pattern.charAt(i + 1) === '-') {
    -                        re += c;
    -                        continue;
    -                    }
                         clearStateChar();
                         escaping = true;
                         continue;
    @@ -671,15 +934,6 @@ class Minimatch {
                     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.
    @@ -693,10 +947,6 @@ class Minimatch {
                             clearStateChar();
                         continue;
                     case '(': {
    -                    if (inClass) {
    -                        re += '(';
    -                        continue;
    -                    }
                         if (!stateChar) {
                             re += '\\(';
                             continue;
    @@ -723,7 +973,7 @@ class Minimatch {
                     }
                     case ')': {
                         const plEntry = patternListStack[patternListStack.length - 1];
    -                    if (inClass || !plEntry) {
    +                    if (!plEntry) {
                             re += '\\)';
                             continue;
                         }
    @@ -742,7 +992,7 @@ class Minimatch {
                     }
                     case '|': {
                         const plEntry = patternListStack[patternListStack.length - 1];
    -                    if (inClass || !plEntry) {
    +                    if (!plEntry) {
                             re += '\\|';
                             continue;
                         }
    @@ -759,67 +1009,27 @@ class Minimatch {
                     case '[':
                         // swallow any state-tracking char before the [
                         clearStateChar();
    -                    if (inClass) {
    -                        re += '\\' + c;
    -                        continue;
    +                    const [src, needUflag, consumed, magic] = (0, brace_expressions_js_1.parseClass)(pattern, i);
    +                    if (consumed) {
    +                        re += src;
    +                        uflag = uflag || needUflag;
    +                        i += consumed - 1;
    +                        hasMagic = hasMagic || magic;
    +                    }
    +                    else {
    +                        re += '\\[';
                         }
    -                    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;
    -                        continue;
    -                    }
    -                    // 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.
    -                    cs = pattern.substring(classStart + 1, i);
    -                    try {
    -                        RegExp('[' + braExpEscape(charUnescape(cs)) + ']');
    -                        // looks good, finish up the class.
    -                        re += c;
    -                    }
    -                    catch (er) {
    -                        // out of order ranges in JS are errors, but in glob syntax,
    -                        // they're just a range that matches nothing.
    -                        re = re.substring(0, reClassStart) + '(?:$.)'; // match nothing ever
    -                    }
    -                    hasMagic = true;
    -                    inClass = false;
    +                    re += '\\' + c;
                         continue;
                     default:
                         // swallow any state char that wasn't consumed
                         clearStateChar();
    -                    if (reSpecials[c] && !(c === '^' && inClass)) {
    -                        re += '\\';
    -                    }
    -                    re += c;
    +                    re += regExpEscape(c);
                         break;
                 } // 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.slice(classStart + 1);
    -            sp = this.parse(cs, SUBPARSE);
    -            re = re.substring(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
    @@ -882,7 +1092,7 @@ class Minimatch {
                     cleanAfter = cleanAfter.replace(/\)[+*?]?/, '');
                 }
                 nlAfter = cleanAfter;
    -            const dollar = nlAfter === '' && isSub !== SUBPARSE ? '(?:$|\\/)' : '';
    +            const dollar = nlAfter === '' ? '(?:$|\\/)' : '';
                 re = nlBefore + nlFirst + nlAfter + dollar + nlLast;
             }
             // if the re is not "" at this point, then we need to make sure
    @@ -894,10 +1104,6 @@ class Minimatch {
             if (addPatternStart) {
                 re = patternStart() + re;
             }
    -        // parsing just a piece of a larger pattern.
    -        if (isSub === SUBPARSE) {
    -            return [re, hasMagic];
    -        }
             // if it's nocase, and the lcase/uppercase don't match, it's magic
             if (options.nocase && !hasMagic && !options.nocaseMagicOnly) {
                 hasMagic = pattern.toUpperCase() !== pattern.toLowerCase();
    @@ -906,9 +1112,9 @@ class Minimatch {
             // unescape anything in it, though, so that it'll be
             // an exact match against a file etc.
             if (!hasMagic) {
    -            return globUnescape(pattern);
    +            return globUnescape(re);
             }
    -        const flags = options.nocase ? 'i' : '';
    +        const flags = (options.nocase ? 'i' : '') + (uflag ? 'u' : '');
             try {
                 const ext = fastTest
                     ? {
    @@ -1018,7 +1224,7 @@ class Minimatch {
             if (this.preserveMultipleSlashes) {
                 return p.split('/');
             }
    -        else if (isWindows && /^\/\/[^\/]+/.test(p)) {
    +        else if (this.isWindows && /^\/\/[^\/]+/.test(p)) {
                 // add an extra '' for the one we lose
                 return ['', ...p.split(/\/+/)];
             }
    @@ -1041,8 +1247,8 @@ class Minimatch {
             }
             const options = this.options;
             // windows: need to use /, not \
    -        if (path.sep !== '/') {
    -            f = f.split(path.sep).join('/');
    +        if (this.isWindows) {
    +            f = f.split('\\').join('/');
             }
             // treat the test path as a set of pathparts.
             const ff = this.slashSplit(f);
    @@ -1086,5 +1292,13 @@ class Minimatch {
         }
     }
     exports.Minimatch = Minimatch;
    +/* c8 ignore start */
    +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.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/minimatch/dist/cjs/index.js.map b/deps/npm/node_modules/minimatch/dist/cjs/index.js.map
    deleted file mode 100644
    index 0f561db44c2027..00000000000000
    --- a/deps/npm/node_modules/minimatch/dist/cjs/index.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;AAmBO,MAAM,SAAS,GAAG,CACvB,CAAS,EACT,OAAe,EACf,UAA4B,EAAE,EAC9B,EAAE;IACF,kBAAkB,CAAC,OAAO,CAAC,CAAA;IAE3B,oCAAoC;IACpC,IAAI,CAAC,OAAO,CAAC,SAAS,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;QACnD,OAAO,KAAK,CAAA;KACb;IAED,OAAO,IAAI,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;AACjD,CAAC,CAAA;AAbY,QAAA,SAAS,aAarB;AAED,kBAAe,iBAAS,CAAA;AAExB,wDAAwD;AACxD,MAAM,YAAY,GAAG,uBAAuB,CAAA;AAC5C,MAAM,cAAc,GAAG,CAAC,GAAW,EAAE,EAAE,CAAC,CAAC,CAAS,EAAE,EAAE,CACpD,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACvC,MAAM,iBAAiB,GAAG,CAAC,GAAW,EAAE,EAAE,CAAC,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACzE,MAAM,oBAAoB,GAAG,CAAC,GAAW,EAAE,EAAE;IAC3C,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAA;IACvB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAC3E,CAAC,CAAA;AACD,MAAM,uBAAuB,GAAG,CAAC,GAAW,EAAE,EAAE;IAC9C,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAA;IACvB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACrD,CAAC,CAAA;AACD,MAAM,aAAa,GAAG,YAAY,CAAA;AAClC,MAAM,eAAe,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAC5E,MAAM,kBAAkB,GAAG,CAAC,CAAS,EAAE,EAAE,CACvC,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAC5C,MAAM,SAAS,GAAG,SAAS,CAAA;AAC3B,MAAM,WAAW,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;AAC/E,MAAM,MAAM,GAAG,OAAO,CAAA;AACtB,MAAM,QAAQ,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;AACpE,MAAM,WAAW,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,CAAA;AAC5E,MAAM,QAAQ,GAAG,wBAAwB,CAAA;AACzC,MAAM,gBAAgB,GAAG,CAAC,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAmB,EAAE,EAAE;IAC5D,MAAM,KAAK,GAAG,eAAe,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACnC,IAAI,CAAC,GAAG;QAAE,OAAO,KAAK,CAAA;IACtB,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAA;IACvB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACjE,CAAC,CAAA;AACD,MAAM,mBAAmB,GAAG,CAAC,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAmB,EAAE,EAAE;IAC/D,MAAM,KAAK,GAAG,kBAAkB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACtC,IAAI,CAAC,GAAG;QAAE,OAAO,KAAK,CAAA;IACtB,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAA;IACvB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACjE,CAAC,CAAA;AACD,MAAM,aAAa,GAAG,CAAC,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAmB,EAAE,EAAE;IACzD,MAAM,KAAK,GAAG,kBAAkB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACtC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAS,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAClE,CAAC,CAAA;AACD,MAAM,UAAU,GAAG,CAAC,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAmB,EAAE,EAAE;IACtD,MAAM,KAAK,GAAG,eAAe,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACnC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAS,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAClE,CAAC,CAAA;AACD,MAAM,eAAe,GAAG,CAAC,CAAC,EAAE,CAAmB,EAAE,EAAE;IACjD,MAAM,GAAG,GAAG,EAAE,CAAC,MAAM,CAAA;IACrB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,GAAG,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;AAC9D,CAAC,CAAA;AACD,MAAM,kBAAkB,GAAG,CAAC,CAAC,EAAE,CAAmB,EAAE,EAAE;IACpD,MAAM,GAAG,GAAG,EAAE,CAAC,MAAM,CAAA;IACrB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,CAAA;AACnE,CAAC,CAAA;AAED,qBAAqB;AACrB,MAAM,QAAQ,GACZ,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO;IACpC,CAAC,CAAC,CAAC,OAAO,OAAO,CAAC,GAAG,KAAK,QAAQ;QAC9B,OAAO,CAAC,GAAG;QACX,OAAO,CAAC,GAAG,CAAC,8BAA8B,CAAC;QAC7C,OAAO,CAAC,QAAQ;IAClB,CAAC,CAAC,OAAO,CAAA;AACb,MAAM,SAAS,GAAG,QAAQ,KAAK,OAAO,CAAA;AACtC,MAAM,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAA;AACrD,oBAAoB;AAEP,QAAA,GAAG,GAAG,IAAI,CAAC,GAAG,CAAA;AAC3B,iBAAS,CAAC,GAAG,GAAG,WAAG,CAAA;AAEN,QAAA,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAA;AAC7C,iBAAS,CAAC,QAAQ,GAAG,gBAAQ,CAAA;AAC7B,sEAAoC;AAEpC,MAAM,OAAO,GAAG;IACd,GAAG,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE;IAC9C,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE;IACjC,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE;IACjC,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE;IACjC,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE;CACjC,CAAA;AAGD,gCAAgC;AAChC,iDAAiD;AACjD,MAAM,KAAK,GAAG,MAAM,CAAA;AAEpB,gCAAgC;AAChC,MAAM,IAAI,GAAG,KAAK,GAAG,IAAI,CAAA;AAEzB,4DAA4D;AAC5D,+DAA+D;AAC/D,6CAA6C;AAC7C,MAAM,UAAU,GAAG,yCAAyC,CAAA;AAE5D,kCAAkC;AAClC,6CAA6C;AAC7C,MAAM,YAAY,GAAG,yBAAyB,CAAA;AAE9C,sCAAsC;AACtC,MAAM,OAAO,GAAG,CAAC,CAAS,EAAE,EAAE,CAC5B,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,GAA6B,EAAE,CAAC,EAAE,EAAE;IACtD,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAA;IACb,OAAO,GAAG,CAAA;AACZ,CAAC,EAAE,EAAE,CAAC,CAAA;AAER,gDAAgD;AAChD,MAAM,UAAU,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAA;AAE7C,4DAA4D;AAC5D,MAAM,kBAAkB,GAAG,OAAO,CAAC,KAAK,CAAC,CAAA;AAElC,MAAM,MAAM,GACjB,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CACpD,CAAC,CAAS,EAAE,EAAE,CACZ,IAAA,iBAAS,EAAC,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC,CAAA;AAHrB,QAAA,MAAM,UAGe;AAClC,iBAAS,CAAC,MAAM,GAAG,cAAM,CAAA;AAEzB,MAAM,GAAG,GAAG,CAAC,CAAmB,EAAE,IAAsB,EAAE,EAAE,EAAE,CAC5D,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;AAElB,MAAM,QAAQ,GAAG,CAAC,GAAqB,EAAoB,EAAE;IAClE,IAAI,CAAC,GAAG,IAAI,OAAO,GAAG,KAAK,QAAQ,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE;QAC/D,OAAO,iBAAS,CAAA;KACjB;IAED,MAAM,IAAI,GAAG,iBAAS,CAAA;IAEtB,MAAM,CAAC,GAAG,CAAC,CAAS,EAAE,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CACvE,IAAI,CAAC,CAAC,EAAE,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,CAAA;IAErC,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE;QACtB,SAAS,EAAE,MAAM,SAAU,SAAQ,IAAI,CAAC,SAAS;YAC/C,YAAY,OAAe,EAAE,UAA4B,EAAE;gBACzD,KAAK,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,CAAA;YACnC,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,OAAyB;gBACvC,OAAO,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAA;YACnD,CAAC;SACF;QAED,MAAM,EAAE,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CAC1D,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAEzC,QAAQ,EAAE,CAAC,OAAyB,EAAE,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAEzE,MAAM,EAAE,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CAC1D,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAEzC,WAAW,EAAE,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CAC/D,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAE9C,KAAK,EAAE,CAAC,IAAc,EAAE,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CACzE,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAE9C,GAAG,EAAE,IAAI,CAAC,GAAG;QACb,QAAQ,EAAE,gBAA2B;KACtC,CAAC,CAAA;AACJ,CAAC,CAAA;AArCY,QAAA,QAAQ,YAqCpB;AACD,iBAAS,CAAC,QAAQ,GAAG,gBAAQ,CAAA;AAE7B,mBAAmB;AACnB,qBAAqB;AACrB,mBAAmB;AACnB,8BAA8B;AAC9B,mCAAmC;AACnC,2CAA2C;AAC3C,EAAE;AACF,iCAAiC;AACjC,qBAAqB;AACrB,iBAAiB;AACV,MAAM,WAAW,GAAG,CACzB,OAAe,EACf,UAA4B,EAAE,EAC9B,EAAE;IACF,kBAAkB,CAAC,OAAO,CAAC,CAAA;IAE3B,wDAAwD;IACxD,wDAAwD;IACxD,IAAI,OAAO,CAAC,OAAO,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE;QACxD,+BAA+B;QAC/B,OAAO,CAAC,OAAO,CAAC,CAAA;KACjB;IAED,OAAO,IAAA,yBAAM,EAAC,OAAO,CAAC,CAAA;AACxB,CAAC,CAAA;AAdY,QAAA,WAAW,eAcvB;AACD,iBAAS,CAAC,WAAW,GAAG,mBAAW,CAAA;AAEnC,MAAM,kBAAkB,GAAG,IAAI,GAAG,EAAE,CAAA;AACpC,MAAM,kBAAkB,GAA2B,CACjD,OAAY,EACe,EAAE;IAC7B,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE;QAC/B,MAAM,IAAI,SAAS,CAAC,iBAAiB,CAAC,CAAA;KACvC;IAED,IAAI,OAAO,CAAC,MAAM,GAAG,kBAAkB,EAAE;QACvC,MAAM,IAAI,SAAS,CAAC,qBAAqB,CAAC,CAAA;KAC3C;AACH,CAAC,CAAA;AAED,yCAAyC;AACzC,kDAAkD;AAClD,oEAAoE;AACpE,oEAAoE;AACpE,6DAA6D;AAC7D,kEAAkE;AAClE,EAAE;AACF,0EAA0E;AAC1E,wEAAwE;AACxE,qEAAqE;AACrE,8DAA8D;AAC9D,MAAM,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,CAAA;AAE5B,MAAM,MAAM,GAAG,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CACxE,IAAI,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,MAAM,EAAE,CAAA;AAD7B,QAAA,MAAM,UACuB;AAC1C,iBAAS,CAAC,MAAM,GAAG,cAAM,CAAA;AAElB,MAAM,KAAK,GAAG,CACnB,IAAc,EACd,OAAe,EACf,UAA4B,EAAE,EAC9B,EAAE;IACF,MAAM,EAAE,GAAG,IAAI,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;IAC1C,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAA;IACpC,IAAI,EAAE,CAAC,OAAO,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE;QACrC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;KACnB;IACD,OAAO,IAAI,CAAA;AACb,CAAC,CAAA;AAXY,QAAA,KAAK,SAWjB;AACD,iBAAS,CAAC,KAAK,GAAG,aAAK,CAAA;AAEvB,+BAA+B;AAC/B,MAAM,YAAY,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;AAC7D,MAAM,YAAY,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,aAAa,EAAE,IAAI,CAAC,CAAA;AAClE,MAAM,YAAY,GAAG,CAAC,CAAS,EAAE,EAAE,CACjC,CAAC,CAAC,OAAO,CAAC,0BAA0B,EAAE,MAAM,CAAC,CAAA;AAC/C,MAAM,YAAY,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,MAAM,CAAC,CAAA;AAsBjE,MAAa,SAAS;IACpB,OAAO,CAAkB;IACzB,GAAG,CAAyB;IAC5B,OAAO,CAAQ;IAEf,oBAAoB,CAAS;IAC7B,QAAQ,CAAS;IACjB,MAAM,CAAS;IACf,OAAO,CAAS;IAChB,KAAK,CAAS;IACd,uBAAuB,CAAS;IAChC,OAAO,CAAS;IAChB,OAAO,CAAU;IACjB,SAAS,CAAY;IAErB,MAAM,CAAyB;IAC/B,YAAY,OAAe,EAAE,UAA4B,EAAE;QACzD,kBAAkB,CAAC,OAAO,CAAC,CAAA;QAE3B,OAAO,GAAG,OAAO,IAAI,EAAE,CAAA;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,oBAAoB;YACvB,CAAC,CAAC,OAAO,CAAC,oBAAoB,IAAI,OAAO,CAAC,kBAAkB,KAAK,KAAK,CAAA;QACxE,IAAI,IAAI,CAAC,oBAAoB,EAAE;YAC7B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;SAChD;QACD,IAAI,CAAC,uBAAuB,GAAG,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAA;QAChE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAA;QAClB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;QACnB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAA;QAClC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAA;QACpB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;QAClB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,OAAO,CAAC,OAAO,CAAA;QAEhC,IAAI,CAAC,OAAO,GAAG,EAAE,CAAA;QACjB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAA;QACnB,IAAI,CAAC,GAAG,GAAG,EAAE,CAAA;QAEb,+BAA+B;QAC/B,IAAI,CAAC,IAAI,EAAE,CAAA;IACb,CAAC;IAED,KAAK,CAAC,GAAG,CAAQ,IAAG,CAAC;IAErB,IAAI;QACF,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAC5B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,6CAA6C;QAC7C,IAAI,CAAC,OAAO,CAAC,SAAS,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;YACnD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAA;YACnB,OAAM;SACP;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;YACjB,OAAM;SACP;QAED,oCAAoC;QACpC,IAAI,CAAC,WAAW,EAAE,CAAA;QAElB,wBAAwB;QACxB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,WAAW,EAAE,CAAA;QAEjC,IAAI,OAAO,CAAC,KAAK,EAAE;YACjB,IAAI,CAAC,KAAK,GAAG,CAAC,GAAG,IAAW,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAA;SACxD;QAED,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAA;QAEtC,4EAA4E;QAC5E,qBAAqB;QACrB,8DAA8D;QAC9D,oDAAoD;QACpD,wCAAwC;QACxC,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAA;QAE9D,sDAAsD;QACtD,iEAAiE;QACjE,sDAAsD;QACtD,qDAAqD;QACrD,4DAA4D;QAC5D,2DAA2D;QAC3D,6CAA6C;QAC7C,sEAAsE;QACtE,sEAAsE;QACtE,sEAAsE;QACtE,IAAI,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE;YAC3B,iBAAiB;YACjB,IAAI,CAAC,SAAS,GAAG,YAAY,CAAA;SAC9B;aAAM;YACL,+DAA+D;YAC/D,gEAAgE;YAChE,KAAK,MAAM,KAAK,IAAI,YAAY,EAAE;gBAChC,IAAI,OAAgB,CAAA;gBACpB,GAAG;oBACD,OAAO,GAAG,KAAK,CAAA;oBACf,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;wBACzC,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,EAAE;4BAC7C,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAA;4BACf,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAA;4BAClB,OAAO,GAAG,IAAI,CAAA;yBACf;qBACF;iBACF,QAAQ,OAAO,EAAC;aAClB;YACD,IAAI,CAAC,SAAS,GAAG,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE;gBACxC,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC,GAAa,EAAE,IAAI,EAAE,EAAE;oBAC3C,MAAM,IAAI,GAAG,GAAG,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;oBAChC,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,IAAI,EAAE;wBAClC,OAAO,GAAG,CAAA;qBACX;oBACD,IAAI,IAAI,KAAK,IAAI,EAAE;wBACjB,IAAI,IAAI,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,GAAG,IAAI,IAAI,KAAK,IAAI,EAAE;4BAC1D,GAAG,CAAC,GAAG,EAAE,CAAA;4BACT,OAAO,GAAG,CAAA;yBACX;qBACF;oBACD,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;oBACd,OAAO,GAAG,CAAA;gBACZ,CAAC,EAAE,EAAE,CAAC,CAAA;gBACN,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,CAAA;YAC1C,CAAC,CAAC,CAAA;SACH;QAED,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC,CAAA;QAExC,mBAAmB;QACnB,IAAI,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;QAEvE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,CAAA;QAE7B,sDAAsD;QACtD,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC,MAAM,CACnB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CACF,CAAA;QAE5B,2CAA2C;QAC3C,IAAI,SAAS,EAAE;YACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBACxC,MAAM,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;gBACrB,IACE,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE;oBACX,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE;oBACX,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG;oBAC5B,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,QAAQ;oBACxB,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EACtB;oBACA,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAA;iBACX;aACF;SACF;QAED,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,GAAG,CAAC,CAAA;IACpC,CAAC;IAED,WAAW;QACT,IAAI,IAAI,CAAC,QAAQ;YAAE,OAAM;QAEzB,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAC5B,IAAI,MAAM,GAAG,KAAK,CAAA;QAClB,IAAI,YAAY,GAAG,CAAC,CAAA;QAEpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC,EAAE,EAAE;YACpE,MAAM,GAAG,CAAC,MAAM,CAAA;YAChB,YAAY,EAAE,CAAA;SACf;QAED,IAAI,YAAY;YAAE,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAAA;QAC5D,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED,+CAA+C;IAC/C,yCAAyC;IACzC,uDAAuD;IACvD,mDAAmD;IACnD,mBAAmB;IACnB,QAAQ,CAAC,IAAc,EAAE,OAAsB,EAAE,UAAmB,KAAK;QACvE,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,yDAAyD;QACzD,iBAAiB;QACjB,IAAI,SAAS,EAAE;YACb,MAAM,OAAO,GACX,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE;gBACd,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE;gBACd,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG;gBACf,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,QAAQ;gBAC3B,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;YAC3B,MAAM,UAAU,GACd,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE;gBACjB,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE;gBACjB,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG;gBAClB,OAAO,OAAO,CAAC,CAAC,CAAC,KAAK,QAAQ;gBAC9B,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;YAE9B,IAAI,OAAO,IAAI,UAAU,EAAE;gBACzB,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAW,CAAA;gBAC5B,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,CAAW,CAAA;gBAC/B,IAAI,EAAE,CAAC,WAAW,EAAE,KAAK,EAAE,CAAC,WAAW,EAAE,EAAE;oBACzC,IAAI,CAAC,CAAC,CAAC,GAAG,EAAE,CAAA;iBACb;aACF;iBAAM,IAAI,UAAU,IAAI,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,QAAQ,EAAE;gBACpD,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,CAAW,CAAA;gBAC/B,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;gBAClB,IAAI,EAAE,CAAC,WAAW,EAAE,KAAK,EAAE,CAAC,WAAW,EAAE,EAAE;oBACzC,OAAO,CAAC,CAAC,CAAC,GAAG,EAAE,CAAA;oBACf,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;iBAC3B;aACF;iBAAM,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,CAAC,CAAC,KAAK,QAAQ,EAAE;gBACpD,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;gBAClB,IAAI,EAAE,CAAC,WAAW,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,EAAE;oBACjD,OAAO,CAAC,CAAC,CAAC,GAAG,EAAE,CAAA;oBACf,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;iBACrB;aACF;SACF;QAED,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAA;QAC/C,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,CAAA;QAEnD,KACE,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,GAAG,OAAO,CAAC,MAAM,EACzD,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAClB,EAAE,EAAE,EAAE,EAAE,EAAE,EACV;YACA,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,CAAA;YAC3B,IAAI,CAAC,GAAG,OAAO,CAAC,EAAE,CAAC,CAAA;YACnB,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,CAAA;YAEhB,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;YAEzB,wBAAwB;YACxB,wCAAwC;YACxC,qBAAqB;YACrB,IAAI,CAAC,KAAK,KAAK,EAAE;gBACf,OAAO,KAAK,CAAA;aACb;YACD,oBAAoB;YAEpB,IAAI,CAAC,KAAK,gBAAQ,EAAE;gBAClB,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;gBAEvC,OAAO;gBACP,yCAAyC;gBACzC,cAAc;gBACd,cAAc;gBACd,cAAc;gBACd,QAAQ;gBACR,iDAAiD;gBACjD,wDAAwD;gBACxD,yBAAyB;gBACzB,sDAAsD;gBACtD,6BAA6B;gBAC7B,EAAE;gBACF,mCAAmC;gBACnC,gBAAgB;gBAChB,eAAe;gBACf,kCAAkC;gBAClC,oBAAoB;gBACpB,mBAAmB;gBACnB,qCAAqC;gBACrC,mCAAmC;gBACnC,iCAAiC;gBACjC,kCAAkC;gBAClC,IAAI,EAAE,GAAG,EAAE,CAAA;gBACX,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAA;gBACf,IAAI,EAAE,KAAK,EAAE,EAAE;oBACb,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,CAAA;oBAC3B,8CAA8C;oBAC9C,yBAAyB;oBACzB,2CAA2C;oBAC3C,sBAAsB;oBACtB,sDAAsD;oBACtD,uBAAuB;oBACvB,OAAO,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE;wBACpB,IACE,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG;4BAChB,IAAI,CAAC,EAAE,CAAC,KAAK,IAAI;4BACjB,CAAC,CAAC,OAAO,CAAC,GAAG,IAAI,IAAI,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;4BAE5C,OAAO,KAAK,CAAA;qBACf;oBACD,OAAO,IAAI,CAAA;iBACZ;gBAED,mDAAmD;gBACnD,OAAO,EAAE,GAAG,EAAE,EAAE;oBACd,IAAI,SAAS,GAAG,IAAI,CAAC,EAAE,CAAC,CAAA;oBAExB,IAAI,CAAC,KAAK,CAAC,kBAAkB,EAAE,IAAI,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,SAAS,CAAC,CAAA;oBAEhE,qDAAqD;oBACrD,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,EAAE;wBAC7D,IAAI,CAAC,KAAK,CAAC,uBAAuB,EAAE,EAAE,EAAE,EAAE,EAAE,SAAS,CAAC,CAAA;wBACtD,iBAAiB;wBACjB,OAAO,IAAI,CAAA;qBACZ;yBAAM;wBACL,kCAAkC;wBAClC,iDAAiD;wBACjD,IACE,SAAS,KAAK,GAAG;4BACjB,SAAS,KAAK,IAAI;4BAClB,CAAC,CAAC,OAAO,CAAC,GAAG,IAAI,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,EAC7C;4BACA,IAAI,CAAC,KAAK,CAAC,eAAe,EAAE,IAAI,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAA;4BAClD,MAAK;yBACN;wBAED,uCAAuC;wBACvC,IAAI,CAAC,KAAK,CAAC,0CAA0C,CAAC,CAAA;wBACtD,EAAE,EAAE,CAAA;qBACL;iBACF;gBAED,sBAAsB;gBACtB,mEAAmE;gBACnE,qBAAqB;gBACrB,IAAI,OAAO,EAAE;oBACX,kBAAkB;oBAClB,IAAI,CAAC,KAAK,CAAC,0BAA0B,EAAE,IAAI,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAA;oBAC7D,IAAI,EAAE,KAAK,EAAE,EAAE;wBACb,OAAO,IAAI,CAAA;qBACZ;iBACF;gBACD,oBAAoB;gBACpB,OAAO,KAAK,CAAA;aACb;YAED,0BAA0B;YAC1B,gDAAgD;YAChD,qDAAqD;YACrD,IAAI,GAAY,CAAA;YAChB,IAAI,OAAO,CAAC,KAAK,QAAQ,EAAE;gBACzB,GAAG,GAAG,CAAC,KAAK,CAAC,CAAA;gBACb,IAAI,CAAC,KAAK,CAAC,cAAc,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAA;aACtC;iBAAM;gBACL,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;gBACf,IAAI,CAAC,KAAK,CAAC,eAAe,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAA;aACvC;YAED,IAAI,CAAC,GAAG;gBAAE,OAAO,KAAK,CAAA;SACvB;QAED,oDAAoD;QACpD,oDAAoD;QACpD,2CAA2C;QAC3C,kDAAkD;QAClD,oDAAoD;QACpD,uDAAuD;QACvD,oDAAoD;QACpD,yDAAyD;QACzD,6BAA6B;QAC7B,yCAAyC;QAEzC,gEAAgE;QAChE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;YAC1B,oDAAoD;YACpD,gBAAgB;YAChB,OAAO,IAAI,CAAA;SACZ;aAAM,IAAI,EAAE,KAAK,EAAE,EAAE;YACpB,+CAA+C;YAC/C,iDAAiD;YACjD,uBAAuB;YACvB,OAAO,OAAO,CAAA;SACf;aAAM,IAAI,EAAE,KAAK,EAAE,EAAE;YACpB,4CAA4C;YAC5C,oDAAoD;YACpD,iDAAiD;YACjD,wBAAwB;YACxB,OAAO,EAAE,KAAK,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,CAAA;YAEvC,qBAAqB;SACtB;aAAM;YACL,yBAAyB;YACzB,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,CAAA;SACxB;QACD,oBAAoB;IACtB,CAAC;IAED,WAAW;QACT,OAAO,IAAA,mBAAW,EAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAA;IAChD,CAAC;IAED,KAAK,CACH,OAAe,EACf,KAAuB;QAEvB,kBAAkB,CAAC,OAAO,CAAC,CAAA;QAE3B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,YAAY;QACZ,IAAI,OAAO,KAAK,IAAI,EAAE;YACpB,IAAI,CAAC,OAAO,CAAC,UAAU;gBAAE,OAAO,gBAAQ,CAAA;;gBACnC,OAAO,GAAG,GAAG,CAAA;SACnB;QACD,IAAI,OAAO,KAAK,EAAE;YAAE,OAAO,EAAE,CAAA;QAE7B,uDAAuD;QACvD,0DAA0D;QAC1D,IAAI,CAA0B,CAAA;QAC9B,IAAI,QAAQ,GAAoC,IAAI,CAAA;QACpD,IAAI,KAAK,KAAK,QAAQ,EAAE;YACtB,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE;gBAC/B,QAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAA;aAChD;iBAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,EAAE;gBAC5C,QAAQ,GAAG,CACT,OAAO,CAAC,MAAM;oBACZ,CAAC,CAAC,OAAO,CAAC,GAAG;wBACX,CAAC,CAAC,uBAAuB;wBACzB,CAAC,CAAC,oBAAoB;oBACxB,CAAC,CAAC,OAAO,CAAC,GAAG;wBACb,CAAC,CAAC,iBAAiB;wBACnB,CAAC,CAAC,cAAc,CACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;aACR;iBAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,EAAE;gBACxC,QAAQ,GAAG,CACT,OAAO,CAAC,MAAM;oBACZ,CAAC,CAAC,OAAO,CAAC,GAAG;wBACX,CAAC,CAAC,mBAAmB;wBACrB,CAAC,CAAC,gBAAgB;oBACpB,CAAC,CAAC,OAAO,CAAC,GAAG;wBACb,CAAC,CAAC,aAAa;wBACf,CAAC,CAAC,UAAU,CACf,CAAC,CAAC,CAAC,CAAA;aACL;iBAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,EAAE;gBAC7C,QAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,kBAAkB,CAAC,CAAC,CAAC,eAAe,CAAA;aAC9D;iBAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,EAAE;gBACzC,QAAQ,GAAG,WAAW,CAAA;aACvB;SACF;QAED,IAAI,EAAE,GAAG,EAAE,CAAA;QACX,IAAI,QAAQ,GAAG,KAAK,CAAA;QACpB,IAAI,QAAQ,GAAG,KAAK,CAAA;QACpB,4BAA4B;QAC5B,MAAM,gBAAgB,GAAuB,EAAE,CAAA;QAC/C,MAAM,aAAa,GAA+B,EAAE,CAAA;QACpD,IAAI,SAAS,GAAsB,KAAK,CAAA;QACxC,IAAI,OAAO,GAAG,KAAK,CAAA;QACnB,IAAI,YAAY,GAAG,CAAC,CAAC,CAAA;QACrB,IAAI,UAAU,GAAG,CAAC,CAAC,CAAA;QACnB,IAAI,EAAU,CAAA;QACd,IAAI,EAAgC,CAAA;QACpC,IAAI,EAAkB,CAAA;QACtB,2DAA2D;QAC3D,yDAAyD;QACzD,oDAAoD;QACpD,IAAI,cAAc,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAA;QAC9C,IAAI,cAAc,GAAG,OAAO,CAAC,GAAG,IAAI,cAAc,CAAA;QAClD,MAAM,YAAY,GAAG,GAAG,EAAE,CACxB,cAAc;YACZ,CAAC,CAAC,EAAE;YACJ,CAAC,CAAC,cAAc;gBAChB,CAAC,CAAC,gCAAgC;gBAClC,CAAC,CAAC,SAAS,CAAA;QACf,MAAM,eAAe,GAAG,CAAC,CAAS,EAAE,EAAE,CACpC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG;YACjB,CAAC,CAAC,EAAE;YACJ,CAAC,CAAC,OAAO,CAAC,GAAG;gBACb,CAAC,CAAC,gCAAgC;gBAClC,CAAC,CAAC,SAAS,CAAA;QAEf,MAAM,cAAc,GAAG,GAAG,EAAE;YAC1B,IAAI,SAAS,EAAE;gBACb,uCAAuC;gBACvC,qCAAqC;gBACrC,QAAQ,SAAS,EAAE;oBACjB,KAAK,GAAG;wBACN,EAAE,IAAI,IAAI,CAAA;wBACV,QAAQ,GAAG,IAAI,CAAA;wBACf,MAAK;oBACP,KAAK,GAAG;wBACN,EAAE,IAAI,KAAK,CAAA;wBACX,QAAQ,GAAG,IAAI,CAAA;wBACf,MAAK;oBACP;wBACE,EAAE,IAAI,IAAI,GAAG,SAAS,CAAA;wBACtB,MAAK;iBACR;gBACD,IAAI,CAAC,KAAK,CAAC,sBAAsB,EAAE,SAAS,EAAE,EAAE,CAAC,CAAA;gBACjD,SAAS,GAAG,KAAK,CAAA;aAClB;QACH,CAAC,CAAA;QAED,KACE,IAAI,CAAC,GAAG,CAAC,EAAE,CAAS,EACpB,CAAC,GAAG,OAAO,CAAC,MAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,EAC7C,CAAC,EAAE,EACH;YACA,IAAI,CAAC,KAAK,CAAC,cAAc,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAA;YAE7C,kCAAkC;YAClC,IAAI,QAAQ,EAAE;gBACZ,wCAAwC;gBACxC,wBAAwB;gBACxB,qBAAqB;gBACrB,IAAI,CAAC,KAAK,GAAG,EAAE;oBACb,OAAO,KAAK,CAAA;iBACb;gBACD,oBAAoB;gBAEpB,IAAI,UAAU,CAAC,CAAC,CAAC,EAAE;oBACjB,EAAE,IAAI,IAAI,CAAA;iBACX;gBACD,EAAE,IAAI,CAAC,CAAA;gBACP,QAAQ,GAAG,KAAK,CAAA;gBAChB,SAAQ;aACT;YAED,QAAQ,CAAC,EAAE;gBACT,uCAAuC;gBACvC,qBAAqB;gBACrB,KAAK,GAAG,CAAC,CAAC;oBACR,OAAO,KAAK,CAAA;iBACb;gBACD,oBAAoB;gBAEpB,KAAK,IAAI;oBACP,IAAI,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,GAAG,EAAE;wBAC5C,EAAE,IAAI,CAAC,CAAA;wBACP,SAAQ;qBACT;oBAED,cAAc,EAAE,CAAA;oBAChB,QAAQ,GAAG,IAAI,CAAA;oBACf,SAAQ;gBAEV,+BAA+B;gBAC/B,2BAA2B;gBAC3B,KAAK,GAAG,CAAC;gBACT,KAAK,GAAG,CAAC;gBACT,KAAK,GAAG,CAAC;gBACT,KAAK,GAAG,CAAC;gBACT,KAAK,GAAG;oBACN,IAAI,CAAC,KAAK,CAAC,4BAA4B,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAA;oBAE3D,wDAAwD;oBACxD,qCAAqC;oBACrC,IAAI,OAAO,EAAE;wBACX,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAA;wBACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,UAAU,GAAG,CAAC;4BAAE,CAAC,GAAG,GAAG,CAAA;wBAC9C,EAAE,IAAI,CAAC,CAAA;wBACP,SAAQ;qBACT;oBAED,gDAAgD;oBAChD,mDAAmD;oBACnD,oDAAoD;oBACpD,IAAI,CAAC,KAAK,CAAC,wBAAwB,EAAE,SAAS,CAAC,CAAA;oBAC/C,cAAc,EAAE,CAAA;oBAChB,SAAS,GAAG,CAAC,CAAA;oBACb,0DAA0D;oBAC1D,+DAA+D;oBAC/D,yBAAyB;oBACzB,IAAI,OAAO,CAAC,KAAK;wBAAE,cAAc,EAAE,CAAA;oBACnC,SAAQ;gBAEV,KAAK,GAAG,CAAC,CAAC;oBACR,IAAI,OAAO,EAAE;wBACX,EAAE,IAAI,GAAG,CAAA;wBACT,SAAQ;qBACT;oBAED,IAAI,CAAC,SAAS,EAAE;wBACd,EAAE,IAAI,KAAK,CAAA;wBACX,SAAQ;qBACT;oBAED,MAAM,OAAO,GAAqB;wBAChC,IAAI,EAAE,SAAS;wBACf,KAAK,EAAE,CAAC,GAAG,CAAC;wBACZ,OAAO,EAAE,EAAE,CAAC,MAAM;wBAClB,IAAI,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC,IAAI;wBAC7B,KAAK,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC,KAAK;qBAChC,CAAA;oBACD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;oBACvC,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;oBAC9B,4CAA4C;oBAC5C,EAAE,IAAI,OAAO,CAAC,IAAI,CAAA;oBAClB,sCAAsC;oBACtC,IAAI,OAAO,CAAC,KAAK,KAAK,CAAC,IAAI,OAAO,CAAC,IAAI,KAAK,GAAG,EAAE;wBAC/C,cAAc,GAAG,IAAI,CAAA;wBACrB,EAAE,IAAI,eAAe,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;qBAC5C;oBACD,IAAI,CAAC,KAAK,CAAC,cAAc,EAAE,SAAS,EAAE,EAAE,CAAC,CAAA;oBACzC,SAAS,GAAG,KAAK,CAAA;oBACjB,SAAQ;iBACT;gBAED,KAAK,GAAG,CAAC,CAAC;oBACR,MAAM,OAAO,GAAG,gBAAgB,CAAC,gBAAgB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;oBAC7D,IAAI,OAAO,IAAI,CAAC,OAAO,EAAE;wBACvB,EAAE,IAAI,KAAK,CAAA;wBACX,SAAQ;qBACT;oBACD,gBAAgB,CAAC,GAAG,EAAE,CAAA;oBAEtB,qBAAqB;oBACrB,cAAc,EAAE,CAAA;oBAChB,QAAQ,GAAG,IAAI,CAAA;oBACf,EAAE,GAAG,OAAO,CAAA;oBACZ,8BAA8B;oBAC9B,qCAAqC;oBACrC,EAAE,IAAI,EAAE,CAAC,KAAK,CAAA;oBACd,IAAI,EAAE,CAAC,IAAI,KAAK,GAAG,EAAE;wBACnB,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;qBAC5D;oBACD,SAAQ;iBACT;gBAED,KAAK,GAAG,CAAC,CAAC;oBACR,MAAM,OAAO,GAAG,gBAAgB,CAAC,gBAAgB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;oBAC7D,IAAI,OAAO,IAAI,CAAC,OAAO,EAAE;wBACvB,EAAE,IAAI,KAAK,CAAA;wBACX,SAAQ;qBACT;oBAED,cAAc,EAAE,CAAA;oBAChB,EAAE,IAAI,GAAG,CAAA;oBACT,wCAAwC;oBACxC,IAAI,OAAO,CAAC,KAAK,KAAK,CAAC,IAAI,OAAO,CAAC,IAAI,KAAK,GAAG,EAAE;wBAC/C,cAAc,GAAG,IAAI,CAAA;wBACrB,EAAE,IAAI,eAAe,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;qBAC5C;oBACD,SAAQ;iBACT;gBAED,+CAA+C;gBAC/C,KAAK,GAAG;oBACN,+CAA+C;oBAC/C,cAAc,EAAE,CAAA;oBAEhB,IAAI,OAAO,EAAE;wBACX,EAAE,IAAI,IAAI,GAAG,CAAC,CAAA;wBACd,SAAQ;qBACT;oBAED,OAAO,GAAG,IAAI,CAAA;oBACd,UAAU,GAAG,CAAC,CAAA;oBACd,YAAY,GAAG,EAAE,CAAC,MAAM,CAAA;oBACxB,EAAE,IAAI,CAAC,CAAA;oBACP,SAAQ;gBAEV,KAAK,GAAG;oBACN,0CAA0C;oBAC1C,mCAAmC;oBACnC,qCAAqC;oBACrC,0CAA0C;oBAC1C,IAAI,CAAC,KAAK,UAAU,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE;wBACpC,EAAE,IAAI,IAAI,GAAG,CAAC,CAAA;wBACd,SAAQ;qBACT;oBAED,sDAAsD;oBACtD,oDAAoD;oBACpD,qDAAqD;oBACrD,4BAA4B;oBAC5B,sDAAsD;oBACtD,wDAAwD;oBACxD,kDAAkD;oBAClD,EAAE,GAAG,OAAO,CAAC,SAAS,CAAC,UAAU,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;oBACzC,IAAI;wBACF,MAAM,CAAC,GAAG,GAAG,YAAY,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,GAAG,GAAG,CAAC,CAAA;wBAClD,mCAAmC;wBACnC,EAAE,IAAI,CAAC,CAAA;qBACR;oBAAC,OAAO,EAAE,EAAE;wBACX,4DAA4D;wBAC5D,6CAA6C;wBAC7C,EAAE,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,YAAY,CAAC,GAAG,QAAQ,CAAA,CAAC,qBAAqB;qBACpE;oBACD,QAAQ,GAAG,IAAI,CAAA;oBACf,OAAO,GAAG,KAAK,CAAA;oBACf,SAAQ;gBAEV;oBACE,8CAA8C;oBAC9C,cAAc,EAAE,CAAA;oBAEhB,IAAI,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,EAAE;wBAC5C,EAAE,IAAI,IAAI,CAAA;qBACX;oBAED,EAAE,IAAI,CAAC,CAAA;oBACP,MAAK;aACR,CAAC,SAAS;SACZ,CAAC,MAAM;QAER,8CAA8C;QAC9C,yCAAyC;QACzC,IAAI,OAAO,EAAE;YACX,4CAA4C;YAC5C,+CAA+C;YAC/C,qDAAqD;YACrD,gDAAgD;YAChD,EAAE,GAAG,OAAO,CAAC,KAAK,CAAC,UAAU,GAAG,CAAC,CAAC,CAAA;YAClC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,EAAE,QAAQ,CAAmB,CAAA;YAC/C,EAAE,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,YAAY,CAAC,GAAG,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;YAClD,QAAQ,GAAG,QAAQ,IAAI,EAAE,CAAC,CAAC,CAAC,CAAA;SAC7B;QAED,uDAAuD;QACvD,kBAAkB;QAClB,kEAAkE;QAClE,wEAAwE;QACxE,mEAAmE;QACnE,qCAAqC;QACrC,KAAK,EAAE,GAAG,gBAAgB,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,gBAAgB,CAAC,GAAG,EAAE,EAAE;YACjE,IAAI,IAAY,CAAA;YAChB,IAAI,GAAG,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;YAC5C,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,cAAc,EAAE,EAAE,EAAE,EAAE,CAAC,CAAA;YAChD,+DAA+D;YAC/D,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,2BAA2B,EAAE,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;gBAC7D,IAAI,CAAC,EAAE,EAAE;oBACP,6CAA6C;oBAC7C,EAAE,GAAG,IAAI,CAAA;oBACT,yBAAyB;oBACzB,qBAAqB;iBACtB;gBACD,oBAAoB;gBAEpB,iEAAiE;gBACjE,mEAAmE;gBACnE,qEAAqE;gBACrE,yDAAyD;gBACzD,EAAE;gBACF,wCAAwC;gBACxC,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,CAAA;YAC3B,CAAC,CAAC,CAAA;YAEF,IAAI,CAAC,KAAK,CAAC,gBAAgB,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,CAAA;YAChD,MAAM,CAAC,GACL,EAAE,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,GAAG,EAAE,CAAC,IAAI,CAAA;YAEnE,QAAQ,GAAG,IAAI,CAAA;YACf,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAA;SAChD;QAED,2DAA2D;QAC3D,cAAc,EAAE,CAAA;QAChB,IAAI,QAAQ,EAAE;YACZ,cAAc;YACd,EAAE,IAAI,MAAM,CAAA;SACb;QAED,2DAA2D;QAC3D,iDAAiD;QACjD,MAAM,eAAe,GAAG,kBAAkB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAA;QAExD,wDAAwD;QACxD,4DAA4D;QAC5D,yDAAyD;QACzD,0DAA0D;QAC1D,eAAe;QACf,KAAK,IAAI,CAAC,GAAG,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;YAClD,MAAM,EAAE,GAAG,aAAa,CAAC,CAAC,CAAC,CAAA;YAE3B,MAAM,QAAQ,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,CAAA;YACxC,MAAM,OAAO,GAAG,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,KAAK,GAAG,CAAC,CAAC,CAAA;YAClD,IAAI,OAAO,GAAG,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;YAChC,MAAM,MAAM,GAAG,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,GAAG,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC,GAAG,OAAO,CAAA;YAEzD,gEAAgE;YAChE,wEAAwE;YACxE,+BAA+B;YAC/B,MAAM,iBAAiB,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,CAAA;YACpD,MAAM,gBAAgB,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,iBAAiB,CAAA;YACvE,IAAI,UAAU,GAAG,OAAO,CAAA;YACxB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,gBAAgB,EAAE,CAAC,EAAE,EAAE;gBACzC,UAAU,GAAG,UAAU,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;aAChD;YACD,OAAO,GAAG,UAAU,CAAA;YAEpB,MAAM,MAAM,GAAG,OAAO,KAAK,EAAE,IAAI,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAA;YAEtE,EAAE,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,CAAA;SACpD;QAED,+DAA+D;QAC/D,+CAA+C;QAC/C,oDAAoD;QACpD,IAAI,EAAE,KAAK,EAAE,IAAI,QAAQ,EAAE;YACzB,EAAE,GAAG,OAAO,GAAG,EAAE,CAAA;SAClB;QAED,IAAI,eAAe,EAAE;YACnB,EAAE,GAAG,YAAY,EAAE,GAAG,EAAE,CAAA;SACzB;QAED,4CAA4C;QAC5C,IAAI,KAAK,KAAK,QAAQ,EAAE;YACtB,OAAO,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAA;SACtB;QAED,kEAAkE;QAClE,IAAI,OAAO,CAAC,MAAM,IAAI,CAAC,QAAQ,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE;YAC3D,QAAQ,GAAG,OAAO,CAAC,WAAW,EAAE,KAAK,OAAO,CAAC,WAAW,EAAE,CAAA;SAC3D;QAED,2CAA2C;QAC3C,oDAAoD;QACpD,qCAAqC;QACrC,IAAI,CAAC,QAAQ,EAAE;YACb,OAAO,YAAY,CAAC,OAAO,CAAC,CAAA;SAC7B;QAED,MAAM,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QACvC,IAAI;YACF,MAAM,GAAG,GAAG,QAAQ;gBAClB,CAAC,CAAC;oBACE,KAAK,EAAE,OAAO;oBACd,IAAI,EAAE,EAAE;oBACR,IAAI,EAAE,QAAQ;iBACf;gBACH,CAAC,CAAC;oBACE,KAAK,EAAE,OAAO;oBACd,IAAI,EAAE,EAAE;iBACT,CAAA;YACL,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,MAAM,CAAC,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,KAAK,CAAC,EAAE,GAAG,CAAC,CAAA;YAC5D,qBAAqB;SACtB;QAAC,OAAO,EAAE,EAAE;YACX,uBAAuB;YACvB,+DAA+D;YAC/D,+DAA+D;YAC/D,kEAAkE;YAClE,iCAAiC;YACjC,IAAI,CAAC,KAAK,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAA;YAChC,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,CAAA;SACxB;QACD,oBAAoB;IACtB,CAAC;IAED,MAAM;QACJ,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,KAAK,KAAK;YAAE,OAAO,IAAI,CAAC,MAAM,CAAA;QAE5D,mDAAmD;QACnD,4BAA4B;QAC5B,EAAE;QACF,wDAAwD;QACxD,yDAAyD;QACzD,2CAA2C;QAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAA;QAEpB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;YACnB,OAAO,IAAI,CAAC,MAAM,CAAA;SACnB;QACD,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,MAAM,OAAO,GAAG,OAAO,CAAC,UAAU;YAChC,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,OAAO,CAAC,GAAG;gBACb,CAAC,CAAC,UAAU;gBACZ,CAAC,CAAC,YAAY,CAAA;QAChB,MAAM,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QAEvC,kCAAkC;QAClC,kDAAkD;QAClD,sEAAsE;QACtE,iDAAiD;QACjD,8DAA8D;QAC9D,mCAAmC;QACnC,IAAI,EAAE,GAAG,GAAG;aACT,GAAG,CAAC,OAAO,CAAC,EAAE;YACb,MAAM,EAAE,GAAiC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CACvD,OAAO,CAAC,KAAK,QAAQ;gBACnB,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC;gBACjB,CAAC,CAAC,CAAC,KAAK,gBAAQ;oBAChB,CAAC,CAAC,gBAAQ;oBACV,CAAC,CAAC,CAAC,CAAC,IAAI,CACqB,CAAA;YACjC,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;gBAClB,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;gBACtB,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;gBACtB,IAAI,CAAC,KAAK,gBAAQ,IAAI,IAAI,KAAK,gBAAQ,EAAE;oBACvC,OAAM;iBACP;gBACD,IAAI,IAAI,KAAK,SAAS,EAAE;oBACtB,IAAI,IAAI,KAAK,SAAS,IAAI,IAAI,KAAK,gBAAQ,EAAE;wBAC3C,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,SAAS,GAAG,OAAO,GAAG,OAAO,GAAG,IAAI,CAAA;qBACjD;yBAAM;wBACL,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAA;qBAChB;iBACF;qBAAM,IAAI,IAAI,KAAK,SAAS,EAAE;oBAC7B,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,GAAG,OAAO,GAAG,IAAI,CAAA;iBAC9C;qBAAM,IAAI,IAAI,KAAK,gBAAQ,EAAE;oBAC5B,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,GAAG,YAAY,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,CAAA;oBACzD,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,gBAAQ,CAAA;iBACrB;YACH,CAAC,CAAC,CAAA;YACF,OAAO,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,gBAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QACjD,CAAC,CAAC;aACD,IAAI,CAAC,GAAG,CAAC,CAAA;QAEZ,4BAA4B;QAC5B,gDAAgD;QAChD,EAAE,GAAG,MAAM,GAAG,EAAE,GAAG,IAAI,CAAA;QAEvB,gDAAgD;QAChD,IAAI,IAAI,CAAC,MAAM;YAAE,EAAE,GAAG,MAAM,GAAG,EAAE,GAAG,MAAM,CAAA;QAE1C,IAAI;YACF,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,CAAA;YACnC,qBAAqB;SACtB;QAAC,OAAO,EAAE,EAAE;YACX,uBAAuB;YACvB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;SACpB;QACD,oBAAoB;QACpB,OAAO,IAAI,CAAC,MAAM,CAAA;IACpB,CAAC;IAED,UAAU,CAAC,CAAS;QAClB,mDAAmD;QACnD,6DAA6D;QAC7D,8CAA8C;QAC9C,0CAA0C;QAC1C,IAAI,IAAI,CAAC,uBAAuB,EAAE;YAChC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;SACpB;aAAM,IAAI,SAAS,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAC7C,sCAAsC;YACtC,OAAO,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAA;SAC/B;aAAM;YACL,OAAO,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SACtB;IACH,CAAC;IAED,KAAK,CAAC,CAAS,EAAE,OAAO,GAAG,IAAI,CAAC,OAAO;QACrC,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,CAAA;QACpC,8CAA8C;QAC9C,iBAAiB;QACjB,IAAI,IAAI,CAAC,OAAO,EAAE;YAChB,OAAO,KAAK,CAAA;SACb;QACD,IAAI,IAAI,CAAC,KAAK,EAAE;YACd,OAAO,CAAC,KAAK,EAAE,CAAA;SAChB;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,EAAE;YACxB,OAAO,IAAI,CAAA;SACZ;QAED,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,gCAAgC;QAChC,IAAI,IAAI,CAAC,GAAG,KAAK,GAAG,EAAE;YACpB,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SAChC;QAED,6CAA6C;QAC7C,MAAM,EAAE,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAA;QAC7B,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,EAAE,CAAC,CAAA;QAErC,0DAA0D;QAC1D,2DAA2D;QAC3D,mCAAmC;QACnC,uCAAuC;QAEvC,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAA;QACpB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,KAAK,EAAE,GAAG,CAAC,CAAA;QAEpC,0EAA0E;QAC1E,IAAI,QAAQ,GAAW,EAAE,CAAC,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;QACxC,IAAI,CAAC,QAAQ,EAAE;YACb,KAAK,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,QAAQ,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;gBACpD,QAAQ,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;aACjB;SACF;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACnC,MAAM,OAAO,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;YACtB,IAAI,IAAI,GAAG,EAAE,CAAA;YACb,IAAI,OAAO,CAAC,SAAS,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;gBAC7C,IAAI,GAAG,CAAC,QAAQ,CAAC,CAAA;aAClB;YACD,MAAM,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC,CAAA;YACjD,IAAI,GAAG,EAAE;gBACP,IAAI,OAAO,CAAC,UAAU,EAAE;oBACtB,OAAO,IAAI,CAAA;iBACZ;gBACD,OAAO,CAAC,IAAI,CAAC,MAAM,CAAA;aACpB;SACF;QAED,2DAA2D;QAC3D,8BAA8B;QAC9B,IAAI,OAAO,CAAC,UAAU,EAAE;YACtB,OAAO,KAAK,CAAA;SACb;QACD,OAAO,IAAI,CAAC,MAAM,CAAA;IACpB,CAAC;IAED,MAAM,CAAC,QAAQ,CAAC,GAAqB;QACnC,OAAO,iBAAS,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,SAAS,CAAA;IAC1C,CAAC;CACF;AAt+BD,8BAs+BC;AAED,iBAAS,CAAC,SAAS,GAAG,SAAS,CAAA"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/minimatch/dist/cjs/parse.js b/deps/npm/node_modules/minimatch/dist/cjs/parse.js
    new file mode 100644
    index 00000000000000..2fff625bcbb6e9
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/cjs/parse.js
    @@ -0,0 +1,650 @@
    +"use strict";
    +// parse a single path portion
    +Object.defineProperty(exports, "__esModule", { value: true });
    +exports.AST = void 0;
    +const brace_expressions_1 = require("./brace-expressions");
    +const types = new Set(['!', '?', '+', '*', '@']);
    +const isExtglobType = (c) => types.has(c);
    +// characters that indicate a start of pattern needs the "no dots" bit
    +const addPatternStart = new Set(['[', '.']);
    +const justDots = new Set(['..', '.']);
    +const reSpecials = new Set('().*{}+?[]^$\\!');
    +const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
    +// any single thing other than /
    +// don't need to escape / when using new RegExp()
    +const qmark = '[^/]';
    +// * => any number of characters
    +const star = qmark + '*?';
    +class AST {
    +    type;
    +    #root;
    +    #parts = [];
    +    #parent;
    +    #parentIndex;
    +    #negs;
    +    #filledNegs = false;
    +    #options;
    +    constructor(type, parent, options = {}) {
    +        this.type = type;
    +        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;
    +    }
    +    fillNegs() {
    +        if (this !== this.#root) {
    +            this.#root.fillNegs();
    +            return this;
    +        }
    +        if (this.#filledNegs)
    +            return this;
    +        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() : [this.type, ...this.#parts];
    +        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;
    +        return this.#parentIndex === 0;
    +    }
    +    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();
    +        return (this.#parentIndex === (this.#parent ? this.#parent.#parts.length : 0) - 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;
    +        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 (!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 (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 === ')') {
    +                part.push(acc);
    +                acc = '';
    +                ast.push(...parts, part);
    +                return i;
    +            }
    +            acc += c;
    +        }
    +        // if we got here, it was a malformed extglob! not an extglob, but
    +        // maybe something else in there.
    +        ast.type = null;
    +        ast.#parts = [str.substring(pos)];
    +        return i;
    +    }
    +    static fromGlob(pattern, options = {}) {
    +        const ast = new AST(null, undefined, options);
    +        AST.#parseAST(pattern, ast, 0, options);
    +        console.log('parsed', pattern, JSON.stringify(ast));
    +        return ast;
    +    }
    +    toRegExpSource() {
    +        if (this.#root === this)
    +            this.fillNegs();
    +        if (!this.type) {
    +            const src = this.#parts
    +                .map(p => {
    +                if (typeof p === 'string')
    +                    return AST.#parseGlob(p, this.#options);
    +                else
    +                    return p.toRegExpSource();
    +            })
    +                .join('');
    +            let start = '';
    +            if (this.isStart() && typeof this.#parts[0] === 'string') {
    +                // '.' and '..' cannot match unless the pattern is that exactly
    +                const dotTravAllowed = this.#parts.length === 1 && justDots.has(this.#parts[0]);
    +                if (dotTravAllowed) {
    +                    start = '(?:^|\\/)';
    +                }
    +                else {
    +                    const dotsAllowed = this.#options.dot ||
    +                        // no need to prevent dots if it can't match a dot, or if a sub-pattern
    +                        // will be preventing it anyway.
    +                        !addPatternStart.has(src.charAt(0));
    +                    start = dotsAllowed ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))' : '(?!\\.)';
    +                }
    +            }
    +            let end = '';
    +            if (this.isEnd() &&
    +                (this === this.#root ||
    +                    (this.#root.#filledNegs && this.#parent?.type === '!'))) {
    +                end = '(?:$|\\/)';
    +            }
    +            return start + src + end;
    +        }
    +        // some kind of extglob
    +        const start = this.type === '!' ? '(?:(?!(?:' : '(?:';
    +        const body = this.#parts
    +            .map(p => {
    +            /* c8 ignore start */
    +            if (typeof p === 'string') {
    +                throw new Error('string type in extglob ast??');
    +            }
    +            /* c8 ignore stop */
    +            return p.toRegExpSource();
    +        })
    +            .join('|');
    +        const close = this.type === '!'
    +            ? '))[^/]*?)'
    +            : this.type === '@'
    +                ? ')'
    +                : `)${this.type}`;
    +        return start + body + close;
    +    }
    +    static #parseGlob(glob, options) {
    +        let escaping = false;
    +        let re = '';
    +        let uflag = false;
    +        let hasMagic = 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_1.parseClass)(glob, i);
    +                if (consumed) {
    +                    re += src;
    +                    uflag = uflag || needUflag;
    +                    i += consumed - 1;
    +                    hasMagic = hasMagic || magic;
    +                    continue;
    +                }
    +            }
    +            if (c === '*') {
    +                re += star;
    +                hasMagic = true;
    +                continue;
    +            }
    +            if (c === '?') {
    +                re += qmark;
    +                hasMagic = true;
    +                continue;
    +            }
    +            re += regExpEscape(c);
    +        }
    +        return re;
    +    }
    +}
    +exports.AST = AST;
    +const pattern = 'a@(i|w!(x|y)z+(l|m)|j)';
    +const ast = AST.fromGlob(pattern).fillNegs();
    +console.log('negged', pattern, JSON.stringify(ast));
    +console.log('to re src', pattern, ast.toRegExpSource());
    +// // the type (exttype or null for strings), and array of children tokens
    +//
    +// // append everything after a negative extglob to each of the parts
    +// // of the negative extglob node.  So, eg, [a, [!, x, y], z]
    +//
    +// //
    +// //
    +// //
    +// //
    +//
    +// const globUnescape = (s: string) => s.replace(/\\(.)/g, '$1')
    +// const regExpEscape = (s: string) =>
    +//   s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
    +//
    +// // "abc" -> { a:true, b:true, c:true }
    +// const charSet = (s: string) =>
    +//   s.split('').reduce((set: { [k: string]: boolean }, c) => {
    +//     set[c] = true
    +//     return set
    +//   }, {})
    +//
    +// // characters that need to be escaped in RegExp.
    +// const reSpecials = charSet('().*{}+?[]^$\\!')
    +//
    +// // characters that indicate we have to add the pattern start
    +// const addPatternStartSet = charSet('[.(')
    +//
    +// // any single thing other than /
    +// // don't need to escape / when using new RegExp()
    +// const qmark = '[^/]'
    +//
    +// // * => any number of characters
    +// const star = qmark + '*?'
    +//
    +// // TODO: take an offset and length, so we can sub-parse the extglobs
    +// const parse = (
    +//   options: MinimatchOptions,
    +//   pattern: string,
    +//   debug: (...a: any[]) => void
    +// ): false | string => {
    +//   assertValidPattern(pattern)
    +//
    +//   if (pattern === '') return ''
    +//
    +//   let re = ''
    +//   let hasMagic = false
    +//   let escaping = false
    +//   // ? => one single character
    +//   let uflag = false
    +//
    +//   // . and .. never match anything that doesn't start with .,
    +//   // even when options.dot is set.  However, if the pattern
    +//   // starts with ., then traversal patterns can match.
    +//   let dotTravAllowed = pattern.charAt(0) === '.'
    +//   let dotFileAllowed = options.dot || dotTravAllowed
    +//   const patternStart = () =>
    +//     dotTravAllowed
    +//       ? ''
    +//       : dotFileAllowed
    +//       ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))'
    +//       : '(?!\\.)'
    +//   const subPatternStart = (p: string) =>
    +//     p.charAt(0) === '.'
    +//       ? ''
    +//       : options.dot
    +//       ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))'
    +//       : '(?!\\.)'
    +//
    +//   const 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
    +//       }
    +//       debug('clearStateChar %j %j', stateChar, re)
    +//       stateChar = false
    +//     }
    +//   }
    +//
    +//   for (
    +//     let i = 0, c: string;
    +//     i < pattern.length && (c = pattern.charAt(i));
    +//     i++
    +//   ) {
    +//     debug('%s\t%s %s %j', pattern, i, re, c)
    +//
    +//     // skip over any that are escaped.
    +//     if (escaping) {
    +//       // completely not allowed, even escaped.
    +//       // should be impossible.
    +//       /* c8 ignore start */
    +//       if (c === '/') {
    +//         return false
    +//       }
    +//       /* c8 ignore stop */
    +//
    +//       if (reSpecials[c]) {
    +//         re += '\\'
    +//       }
    +//       re += c
    +//       escaping = false
    +//       continue
    +//     }
    +//
    +//     switch (c) {
    +//       // Should already be path-split by now.
    +//       /* c8 ignore start */
    +//       case '/': {
    +//         return false
    +//       }
    +//       /* c8 ignore stop */
    +//
    +//       case '\\':
    +//         clearStateChar()
    +//         escaping = true
    +//         continue
    +//
    +//       // the various stateChar values
    +//       // for the "extglob" stuff.
    +//       case '?':
    +//       case '*':
    +//       case '+':
    +//       case '@':
    +//       case '!':
    +//         debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c)
    +//
    +//         // 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.
    +//         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 (!stateChar) {
    +//           re += '\\('
    +//           continue
    +//         }
    +//
    +//         const plEntry: PatternListEntry = {
    +//           type: stateChar,
    +//           start: i - 1,
    +//           reStart: re.length,
    +//           open: plTypes[stateChar].open,
    +//           close: plTypes[stateChar].close,
    +//         }
    +//         debug(pattern, '\t', plEntry)
    +//         patternListStack.push(plEntry)
    +//         // negation is (?:(?!(?:js)(?:))[^/]*)
    +//         re += plEntry.open
    +//         // next entry starts with a dot maybe?
    +//         if (plEntry.start === 0 && plEntry.type !== '!') {
    +//           dotTravAllowed = true
    +//           re += subPatternStart(pattern.slice(i + 1))
    +//         }
    +//         debug('plType %j %j', stateChar, re)
    +//         stateChar = false
    +//         continue
    +//       }
    +//
    +//       case ')': {
    +//         const plEntry = patternListStack[patternListStack.length - 1]
    +//         if (!plEntry) {
    +//           re += '\\)'
    +//           continue
    +//         }
    +//         patternListStack.pop()
    +//
    +//         // closing an extglob
    +//         clearStateChar()
    +//         hasMagic = true
    +//         pl = plEntry
    +//         // negation is (?:(?!js)[^/]*)
    +//         // The others are (?:)
    +//         re += pl.close
    +//         if (pl.type === '!') {
    +//           negativeLists.push(Object.assign(pl, { reEnd: re.length }))
    +//         }
    +//         continue
    +//       }
    +//
    +//       case '|': {
    +//         const plEntry = patternListStack[patternListStack.length - 1]
    +//         if (!plEntry) {
    +//           re += '\\|'
    +//           continue
    +//         }
    +//
    +//         clearStateChar()
    +//         re += '|'
    +//         // next subpattern can start with a dot?
    +//         if (plEntry.start === 0 && plEntry.type !== '!') {
    +//           dotTravAllowed = true
    +//           re += subPatternStart(pattern.slice(i + 1))
    +//         }
    +//         continue
    +//       }
    +//
    +//       // these are mostly the same in regexp and glob
    +//       case '[':
    +//         // swallow any state-tracking char before the [
    +//         clearStateChar()
    +//         const [src, needUflag, consumed, magic] = parseClass(pattern, i)
    +//         if (consumed) {
    +//           re += src
    +//           uflag = uflag || needUflag
    +//           i += consumed - 1
    +//           hasMagic = hasMagic || magic
    +//         } else {
    +//           re += '\\['
    +//         }
    +//         continue
    +//
    +//       case ']':
    +//         re += '\\' + c
    +//         continue
    +//
    +//       default:
    +//         // swallow any state char that wasn't consumed
    +//         clearStateChar()
    +//
    +//         re += regExpEscape(c)
    +//         break
    +//     } // switch
    +//   } // for
    +//
    +//   // 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()) {
    +//     let tail: string
    +//     tail = re.slice(pl.reStart + pl.open.length)
    +//     debug(pattern, 'setting tail', re, pl)
    +//     // maybe some even number of \, then maybe 1 \, followed by a |
    +//     tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, (_, $1, $2) => {
    +//       if (!$2) {
    +//         // the | isn't already escaped, so escape it.
    +//         $2 = '\\'
    +//         // should already be done
    +//         /* c8 ignore start */
    +//       }
    +//       /* c8 ignore stop */
    +//
    +//       // 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 + '|'
    +//     })
    +//
    +//     debug('tail=%j\n   %s', tail, tail, pl, re)
    +//     const 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
    +//   const addPatternStart = addPatternStartSet[re.charAt(0)]
    +//
    +//   // 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 (let n = negativeLists.length - 1; n > -1; n--) {
    +//     const nl = negativeLists[n]
    +//
    +//     const nlBefore = re.slice(0, nl.reStart)
    +//     const nlFirst = re.slice(nl.reStart, nl.reEnd - 8)
    +//     let nlAfter = re.slice(nl.reEnd)
    +//     const nlLast = re.slice(nl.reEnd - 8, nl.reEnd) + 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.
    +//     const closeParensBefore = nlBefore.split(')').length
    +//     const openParensBefore = nlBefore.split('(').length - closeParensBefore
    +//     let cleanAfter = nlAfter
    +//     for (let i = 0; i < openParensBefore; i++) {
    +//       cleanAfter = cleanAfter.replace(/\)[+*?]?/, '')
    +//     }
    +//     nlAfter = cleanAfter
    +//
    +//     const dollar = nlAfter === '' ? '(?:$|\\/)' : ''
    +//
    +//     re = nlBefore + nlFirst + nlAfter + dollar + nlLast
    +//   }
    +//
    +//   // 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
    +//   }
    +//
    +//   // if it's nocase, and the lcase/uppercase don't match, it's magic
    +//   if (options.nocase && !hasMagic && !options.nocaseMagicOnly) {
    +//     hasMagic = pattern.toUpperCase() !== pattern.toLowerCase()
    +//   }
    +//
    +//   // 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(re)
    +//   }
    +//
    +//   return re
    +// }
    +//# sourceMappingURL=parse.js.map
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/minimatch/dist/cjs/unescape.js b/deps/npm/node_modules/minimatch/dist/cjs/unescape.js
    new file mode 100644
    index 00000000000000..47c36bcee5a02a
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/cjs/unescape.js
    @@ -0,0 +1,24 @@
    +"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/minimatch/dist/mjs/_parse.js b/deps/npm/node_modules/minimatch/dist/mjs/_parse.js
    new file mode 100644
    index 00000000000000..db6a28ab08a74e
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/mjs/_parse.js
    @@ -0,0 +1,296 @@
    +// parse a single path portion
    +import { parseClass } from './brace-expressions.js';
    +import { assertValidPattern } from './assert-valid-pattern.js';
    +const globUnescape = (s) => s.replace(/\\(.)/g, '$1');
    +const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
    +// "abc" -> { a:true, b:true, c:true }
    +const charSet = (s) => s.split('').reduce((set, c) => {
    +    set[c] = true;
    +    return set;
    +}, {});
    +const plTypes = {
    +    '!': { open: '(?:(?!(?:', close: '))[^/]*?)' },
    +    '?': { open: '(?:', close: ')?' },
    +    '+': { open: '(?:', close: ')+' },
    +    '*': { open: '(?:', close: ')*' },
    +    '@': { open: '(?:', close: ')' },
    +};
    +// characters that need to be escaped in RegExp.
    +const reSpecials = charSet('().*{}+?[]^$\\!');
    +// characters that indicate we have to add the pattern start
    +const addPatternStartSet = charSet('[.(');
    +// any single thing other than /
    +// don't need to escape / when using new RegExp()
    +const qmark = '[^/]';
    +// * => any number of characters
    +const star = qmark + '*?';
    +// TODO: take an offset and length, so we can sub-parse the extglobs
    +export const parse = (options, pattern, debug) => {
    +    assertValidPattern(pattern);
    +    if (pattern === '')
    +        return '';
    +    let re = '';
    +    let hasMagic = false;
    +    let escaping = false;
    +    // ? => one single character
    +    const patternListStack = [];
    +    const negativeLists = [];
    +    let stateChar = false;
    +    let uflag = false;
    +    let pl;
    +    // . and .. never match anything that doesn't start with .,
    +    // even when options.dot is set.  However, if the pattern
    +    // starts with ., then traversal patterns can match.
    +    let dotTravAllowed = pattern.charAt(0) === '.';
    +    let dotFileAllowed = options.dot || dotTravAllowed;
    +    const patternStart = () => dotTravAllowed
    +        ? ''
    +        : dotFileAllowed
    +            ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))'
    +            : '(?!\\.)';
    +    const subPatternStart = (p) => p.charAt(0) === '.'
    +        ? ''
    +        : options.dot
    +            ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))'
    +            : '(?!\\.)';
    +    const 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;
    +            }
    +            debug('clearStateChar %j %j', stateChar, re);
    +            stateChar = false;
    +        }
    +    };
    +    for (let i = 0, c; i < pattern.length && (c = pattern.charAt(i)); i++) {
    +        debug('%s\t%s %s %j', pattern, i, re, c);
    +        // skip over any that are escaped.
    +        if (escaping) {
    +            // completely not allowed, even escaped.
    +            // should be impossible.
    +            /* c8 ignore start */
    +            if (c === '/') {
    +                return false;
    +            }
    +            /* c8 ignore stop */
    +            if (reSpecials[c]) {
    +                re += '\\';
    +            }
    +            re += c;
    +            escaping = false;
    +            continue;
    +        }
    +        switch (c) {
    +            // Should already be path-split by now.
    +            /* c8 ignore start */
    +            case '/': {
    +                return false;
    +            }
    +            /* c8 ignore stop */
    +            case '\\':
    +                clearStateChar();
    +                escaping = true;
    +                continue;
    +            // the various stateChar values
    +            // for the "extglob" stuff.
    +            case '?':
    +            case '*':
    +            case '+':
    +            case '@':
    +            case '!':
    +                debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c);
    +                // 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.
    +                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 (!stateChar) {
    +                    re += '\\(';
    +                    continue;
    +                }
    +                const plEntry = {
    +                    type: stateChar,
    +                    start: i - 1,
    +                    reStart: re.length,
    +                    open: plTypes[stateChar].open,
    +                    close: plTypes[stateChar].close,
    +                };
    +                debug(pattern, '\t', plEntry);
    +                patternListStack.push(plEntry);
    +                // negation is (?:(?!(?:js)(?:))[^/]*)
    +                re += plEntry.open;
    +                // next entry starts with a dot maybe?
    +                if (plEntry.start === 0 && plEntry.type !== '!') {
    +                    dotTravAllowed = true;
    +                    re += subPatternStart(pattern.slice(i + 1));
    +                }
    +                debug('plType %j %j', stateChar, re);
    +                stateChar = false;
    +                continue;
    +            }
    +            case ')': {
    +                const plEntry = patternListStack[patternListStack.length - 1];
    +                if (!plEntry) {
    +                    re += '\\)';
    +                    continue;
    +                }
    +                patternListStack.pop();
    +                // closing an extglob
    +                clearStateChar();
    +                hasMagic = true;
    +                pl = plEntry;
    +                // negation is (?:(?!js)[^/]*)
    +                // The others are (?:)
    +                re += pl.close;
    +                if (pl.type === '!') {
    +                    negativeLists.push(Object.assign(pl, { reEnd: re.length }));
    +                }
    +                continue;
    +            }
    +            case '|': {
    +                const plEntry = patternListStack[patternListStack.length - 1];
    +                if (!plEntry) {
    +                    re += '\\|';
    +                    continue;
    +                }
    +                clearStateChar();
    +                re += '|';
    +                // next subpattern can start with a dot?
    +                if (plEntry.start === 0 && plEntry.type !== '!') {
    +                    dotTravAllowed = true;
    +                    re += subPatternStart(pattern.slice(i + 1));
    +                }
    +                continue;
    +            }
    +            // these are mostly the same in regexp and glob
    +            case '[':
    +                // swallow any state-tracking char before the [
    +                clearStateChar();
    +                const [src, needUflag, consumed, magic] = parseClass(pattern, i);
    +                if (consumed) {
    +                    re += src;
    +                    uflag = uflag || needUflag;
    +                    i += consumed - 1;
    +                    hasMagic = hasMagic || magic;
    +                }
    +                else {
    +                    re += '\\[';
    +                }
    +                continue;
    +            case ']':
    +                re += '\\' + c;
    +                continue;
    +            default:
    +                // swallow any state char that wasn't consumed
    +                clearStateChar();
    +                re += regExpEscape(c);
    +                break;
    +        } // switch
    +    } // for
    +    // 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()) {
    +        let tail;
    +        tail = re.slice(pl.reStart + pl.open.length);
    +        debug(pattern, 'setting tail', re, pl);
    +        // maybe some even number of \, then maybe 1 \, followed by a |
    +        tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, (_, $1, $2) => {
    +            if (!$2) {
    +                // the | isn't already escaped, so escape it.
    +                $2 = '\\';
    +                // should already be done
    +                /* c8 ignore start */
    +            }
    +            /* c8 ignore stop */
    +            // 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 + '|';
    +        });
    +        debug('tail=%j\n   %s', tail, tail, pl, re);
    +        const 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
    +    const addPatternStart = addPatternStartSet[re.charAt(0)];
    +    // 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 (let n = negativeLists.length - 1; n > -1; n--) {
    +        const nl = negativeLists[n];
    +        const nlBefore = re.slice(0, nl.reStart);
    +        const nlFirst = re.slice(nl.reStart, nl.reEnd - 8);
    +        let nlAfter = re.slice(nl.reEnd);
    +        const nlLast = re.slice(nl.reEnd - 8, nl.reEnd) + 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.
    +        const closeParensBefore = nlBefore.split(')').length;
    +        const openParensBefore = nlBefore.split('(').length - closeParensBefore;
    +        let cleanAfter = nlAfter;
    +        for (let i = 0; i < openParensBefore; i++) {
    +            cleanAfter = cleanAfter.replace(/\)[+*?]?/, '');
    +        }
    +        nlAfter = cleanAfter;
    +        const dollar = nlAfter === '' ? '(?:$|\\/)' : '';
    +        re = nlBefore + nlFirst + nlAfter + dollar + nlLast;
    +    }
    +    // 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;
    +    }
    +    // if it's nocase, and the lcase/uppercase don't match, it's magic
    +    if (options.nocase && !hasMagic && !options.nocaseMagicOnly) {
    +        hasMagic = pattern.toUpperCase() !== pattern.toLowerCase();
    +    }
    +    // 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(re);
    +    }
    +    return re;
    +};
    +//# sourceMappingURL=_parse.js.map
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js b/deps/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js
    new file mode 100644
    index 00000000000000..7b534fc30200bb
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js
    @@ -0,0 +1,10 @@
    +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/minimatch/dist/mjs/brace-expressions.js b/deps/npm/node_modules/minimatch/dist/mjs/brace-expressions.js
    new file mode 100644
    index 00000000000000..c629d6ae816e27
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/mjs/brace-expressions.js
    @@ -0,0 +1,148 @@
    +// 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/minimatch/dist/mjs/escape.js b/deps/npm/node_modules/minimatch/dist/mjs/escape.js
    new file mode 100644
    index 00000000000000..16f7c8c7bdc646
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/mjs/escape.js
    @@ -0,0 +1,18 @@
    +/**
    + * 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/minimatch/dist/mjs/extglob.js b/deps/npm/node_modules/minimatch/dist/mjs/extglob.js
    new file mode 100644
    index 00000000000000..4033f4d60e34d5
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/mjs/extglob.js
    @@ -0,0 +1,3 @@
    +// translate an extglob into a regular expression
    +export {};
    +//# sourceMappingURL=extglob.js.map
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/minimatch/dist/mjs/index.d.ts b/deps/npm/node_modules/minimatch/dist/mjs/index.d.ts
    deleted file mode 100644
    index cca07a8280d896..00000000000000
    --- a/deps/npm/node_modules/minimatch/dist/mjs/index.d.ts
    +++ /dev/null
    @@ -1,71 +0,0 @@
    -export interface MinimatchOptions {
    -    nobrace?: boolean;
    -    nocomment?: boolean;
    -    nonegate?: boolean;
    -    debug?: boolean;
    -    noglobstar?: boolean;
    -    noext?: boolean;
    -    nonull?: boolean;
    -    windowsPathsNoEscape?: boolean;
    -    allowWindowsEscape?: boolean;
    -    partial?: boolean;
    -    dot?: boolean;
    -    nocase?: boolean;
    -    nocaseMagicOnly?: boolean;
    -    matchBase?: boolean;
    -    flipNegate?: boolean;
    -    preserveMultipleSlashes?: boolean;
    -}
    -export declare const minimatch: {
    -    (p: string, pattern: string, options?: MinimatchOptions): boolean;
    -    sep: string;
    -    GLOBSTAR: typeof GLOBSTAR;
    -    filter: (pattern: string, options?: MinimatchOptions) => (p: string) => boolean;
    -    defaults: (def: MinimatchOptions) => typeof minimatch;
    -    braceExpand: (pattern: string, options?: MinimatchOptions) => string[];
    -    makeRe: (pattern: string, options?: MinimatchOptions) => false | MMRegExp;
    -    match: (list: string[], pattern: string, options?: MinimatchOptions) => string[];
    -    Minimatch: typeof Minimatch;
    -};
    -export default minimatch;
    -export declare const sep: string;
    -export declare const GLOBSTAR: unique symbol;
    -export declare const filter: (pattern: string, options?: MinimatchOptions) => (p: string) => boolean;
    -export declare const defaults: (def: MinimatchOptions) => typeof minimatch;
    -export declare const braceExpand: (pattern: string, options?: MinimatchOptions) => string[];
    -declare const SUBPARSE: unique symbol;
    -export declare const makeRe: (pattern: string, options?: MinimatchOptions) => false | MMRegExp;
    -export declare const match: (list: string[], pattern: string, options?: MinimatchOptions) => string[];
    -export type MMRegExp = RegExp & {
    -    _src?: string;
    -    _glob?: string;
    -};
    -type SubparseReturn = [string, boolean];
    -type ParseReturnFiltered = string | MMRegExp | typeof GLOBSTAR;
    -type ParseReturn = ParseReturnFiltered | false;
    -export declare class Minimatch {
    -    options: MinimatchOptions;
    -    set: ParseReturnFiltered[][];
    -    pattern: string;
    -    windowsPathsNoEscape: boolean;
    -    nonegate: boolean;
    -    negate: boolean;
    -    comment: boolean;
    -    empty: boolean;
    -    preserveMultipleSlashes: boolean;
    -    partial: boolean;
    -    globSet: string[];
    -    globParts: string[][];
    -    regexp: false | null | MMRegExp;
    -    constructor(pattern: string, options?: MinimatchOptions);
    -    debug(..._: any[]): void;
    -    make(): void;
    -    parseNegate(): void;
    -    matchOne(file: string[], pattern: ParseReturn[], partial?: boolean): boolean;
    -    braceExpand(): string[];
    -    parse(pattern: string, isSub?: typeof SUBPARSE): ParseReturn | SubparseReturn;
    -    makeRe(): false | MMRegExp;
    -    slashSplit(p: string): string[];
    -    match(f: string, partial?: boolean): boolean;
    -    static defaults(def: MinimatchOptions): typeof Minimatch;
    -}
    diff --git a/deps/npm/node_modules/minimatch/dist/mjs/index.js b/deps/npm/node_modules/minimatch/dist/mjs/index.js
    index 59ac1968b5ded3..34d53abafc8ea4 100644
    --- a/deps/npm/node_modules/minimatch/dist/mjs/index.js
    +++ b/deps/npm/node_modules/minimatch/dist/mjs/index.js
    @@ -1,3 +1,7 @@
    +import expand from 'brace-expansion';
    +import { parseClass } from './brace-expressions.js';
    +import { escape } from './escape.js';
    +import { unescape } from './unescape.js';
     export const minimatch = (p, pattern, options = {}) => {
         assertValidPattern(pattern);
         // shortcut: comments match nothing.
    @@ -59,20 +63,21 @@ const qmarksTestNoExtDot = ([$0]) => {
         return (f) => f.length === len && f !== '.' && f !== '..';
     };
     /* c8 ignore start */
    -const platform = typeof process === 'object' && process
    +const defaultPlatform = (typeof process === 'object' && process
         ? (typeof process.env === 'object' &&
             process.env &&
             process.env.__MINIMATCH_TESTING_PLATFORM__) ||
             process.platform
    -    : 'posix';
    -const isWindows = platform === 'win32';
    -const path = isWindows ? { sep: '\\' } : { sep: '/' };
    +    : 'posix');
    +const path = {
    +    win32: { sep: '\\' },
    +    posix: { sep: '/' },
    +};
     /* c8 ignore stop */
    -export const sep = path.sep;
    +export const sep = defaultPlatform === 'win32' ? path.win32.sep : path.posix.sep;
     minimatch.sep = sep;
     export const GLOBSTAR = Symbol('globstar **');
     minimatch.GLOBSTAR = GLOBSTAR;
    -import expand from 'brace-expansion';
     const plTypes = {
         '!': { open: '(?:(?!(?:', close: '))[^/]*?)' },
         '?': { open: '(?:', close: ')?' },
    @@ -119,6 +124,8 @@ export const defaults = (def) => {
                     return orig.defaults(ext(def, options)).Minimatch;
                 }
             },
    +        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)),
    @@ -170,7 +177,6 @@ const assertValidPattern = (pattern) => {
     // 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 SUBPARSE = Symbol('subparse');
     export const makeRe = (pattern, options = {}) => new Minimatch(pattern, options).makeRe();
     minimatch.makeRe = makeRe;
     export const match = (list, pattern, options = {}) => {
    @@ -184,9 +190,8 @@ export const match = (list, pattern, options = {}) => {
     minimatch.match = match;
     // replace stuff like \* with *
     const globUnescape = (s) => s.replace(/\\(.)/g, '$1');
    -const charUnescape = (s) => s.replace(/\\([^-\]])/g, '$1');
    +const globMagic = /[?*]|[+@!]\(.*?\)|\[|\]/;
     const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
    -const braExpEscape = (s) => s.replace(/[[\]\\]/g, '\\$&');
     export class Minimatch {
         options;
         set;
    @@ -200,12 +205,18 @@ export class Minimatch {
         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) {
    @@ -218,12 +229,29 @@ export class Minimatch {
             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;
    @@ -240,73 +268,46 @@ export class Minimatch {
             // step 1: figure out negation, etc.
             this.parseNegate();
             // step 2: expand braces
    -        this.globSet = this.braceExpand();
    +        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.
    +        // 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));
    -        // consecutive globstars are an unncessary perf killer
    -        // also, **/*/... is equivalent to */**/..., so swap all of those
    -        // this turns a pattern like **/*/**/*/x into */*/**/x
    -        // and a pattern like **/x/**/*/y becomes **/x/*/**/y
    -        // the *later* we can push the **, the more efficient it is,
    -        // because we can avoid having to do a recursive walk until
    -        // the walked tree is as shallow as possible.
    -        // Note that this is only true up to the last pattern, though, because
    -        // a/*/** will only match a/b if b is a dir, but a/**/* will match a/b
    -        // regardless, since it's "0 or more path segments" if it's not final.
    -        if (this.options.noglobstar) {
    -            // ** is * anyway
    -            this.globParts = rawGlobParts;
    -        }
    -        else {
    -            // do this swap BEFORE the reduce, so that we can turn a string
    -            // of **/*/**/* into */*/**/** and then reduce the **'s into one
    -            for (const parts of rawGlobParts) {
    -                let swapped;
    -                do {
    -                    swapped = false;
    -                    for (let i = 0; i < parts.length - 1; i++) {
    -                        if (parts[i] === '*' && parts[i - 1] === '**') {
    -                            parts[i] = '**';
    -                            parts[i - 1] = '*';
    -                            swapped = true;
    -                        }
    -                    }
    -                } while (swapped);
    -            }
    -            this.globParts = rawGlobParts.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;
    -            });
    -        }
    +        this.globParts = this.preprocess(rawGlobParts);
             this.debug(this.pattern, this.globParts);
             // glob --> regexps
    -        let set = this.globParts.map((s, _, __) => s.map(ss => this.parse(ss)));
    +        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 (isWindows) {
    +        if (this.isWindows) {
                 for (let i = 0; i < this.set.length; i++) {
                     const p = this.set[i];
                     if (p[0] === '' &&
    @@ -320,6 +321,276 @@ export class Minimatch {
             }
             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;
    @@ -343,7 +614,7 @@ export class Minimatch {
             const options = this.options;
             // a UNC pattern like //?/c:/* can match a path like c:/x
             // and vice versa
    -        if (isWindows) {
    +        if (this.isWindows) {
                 const fileUNC = file[0] === '' &&
                     file[1] === '' &&
                     file[2] === '?' &&
    @@ -377,6 +648,12 @@ export class Minimatch {
                     }
                 }
             }
    +        // 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++) {
    @@ -524,50 +801,44 @@ export class Minimatch {
         braceExpand() {
             return braceExpand(this.pattern, this.options);
         }
    -    parse(pattern, isSub) {
    +    parse(pattern) {
             assertValidPattern(pattern);
             const options = this.options;
             // shortcuts
    -        if (pattern === '**') {
    -            if (!options.noglobstar)
    -                return GLOBSTAR;
    -            else
    -                pattern = '*';
    -        }
    +        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 (isSub !== SUBPARSE) {
    -            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;
    -            }
    +        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;
             }
             let re = '';
             let hasMagic = false;
    @@ -576,12 +847,8 @@ export class Minimatch {
             const patternListStack = [];
             const negativeLists = [];
             let stateChar = false;
    -        let inClass = false;
    -        let reClassStart = -1;
    -        let classStart = -1;
    -        let cs;
    +        let uflag = false;
             let pl;
    -        let sp;
             // . and .. never match anything that doesn't start with .,
             // even when options.dot is set.  However, if the pattern
             // starts with ., then traversal patterns can match.
    @@ -644,10 +911,6 @@ export class Minimatch {
                     }
                     /* c8 ignore stop */
                     case '\\':
    -                    if (inClass && pattern.charAt(i + 1) === '-') {
    -                        re += c;
    -                        continue;
    -                    }
                         clearStateChar();
                         escaping = true;
                         continue;
    @@ -659,15 +922,6 @@ export class Minimatch {
                     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.
    @@ -681,10 +935,6 @@ export class Minimatch {
                             clearStateChar();
                         continue;
                     case '(': {
    -                    if (inClass) {
    -                        re += '(';
    -                        continue;
    -                    }
                         if (!stateChar) {
                             re += '\\(';
                             continue;
    @@ -711,7 +961,7 @@ export class Minimatch {
                     }
                     case ')': {
                         const plEntry = patternListStack[patternListStack.length - 1];
    -                    if (inClass || !plEntry) {
    +                    if (!plEntry) {
                             re += '\\)';
                             continue;
                         }
    @@ -730,7 +980,7 @@ export class Minimatch {
                     }
                     case '|': {
                         const plEntry = patternListStack[patternListStack.length - 1];
    -                    if (inClass || !plEntry) {
    +                    if (!plEntry) {
                             re += '\\|';
                             continue;
                         }
    @@ -747,67 +997,27 @@ export class Minimatch {
                     case '[':
                         // swallow any state-tracking char before the [
                         clearStateChar();
    -                    if (inClass) {
    -                        re += '\\' + c;
    -                        continue;
    +                    const [src, needUflag, consumed, magic] = parseClass(pattern, i);
    +                    if (consumed) {
    +                        re += src;
    +                        uflag = uflag || needUflag;
    +                        i += consumed - 1;
    +                        hasMagic = hasMagic || magic;
    +                    }
    +                    else {
    +                        re += '\\[';
                         }
    -                    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;
    -                        continue;
    -                    }
    -                    // 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.
    -                    cs = pattern.substring(classStart + 1, i);
    -                    try {
    -                        RegExp('[' + braExpEscape(charUnescape(cs)) + ']');
    -                        // looks good, finish up the class.
    -                        re += c;
    -                    }
    -                    catch (er) {
    -                        // out of order ranges in JS are errors, but in glob syntax,
    -                        // they're just a range that matches nothing.
    -                        re = re.substring(0, reClassStart) + '(?:$.)'; // match nothing ever
    -                    }
    -                    hasMagic = true;
    -                    inClass = false;
    +                    re += '\\' + c;
                         continue;
                     default:
                         // swallow any state char that wasn't consumed
                         clearStateChar();
    -                    if (reSpecials[c] && !(c === '^' && inClass)) {
    -                        re += '\\';
    -                    }
    -                    re += c;
    +                    re += regExpEscape(c);
                         break;
                 } // 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.slice(classStart + 1);
    -            sp = this.parse(cs, SUBPARSE);
    -            re = re.substring(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
    @@ -870,7 +1080,7 @@ export class Minimatch {
                     cleanAfter = cleanAfter.replace(/\)[+*?]?/, '');
                 }
                 nlAfter = cleanAfter;
    -            const dollar = nlAfter === '' && isSub !== SUBPARSE ? '(?:$|\\/)' : '';
    +            const dollar = nlAfter === '' ? '(?:$|\\/)' : '';
                 re = nlBefore + nlFirst + nlAfter + dollar + nlLast;
             }
             // if the re is not "" at this point, then we need to make sure
    @@ -882,10 +1092,6 @@ export class Minimatch {
             if (addPatternStart) {
                 re = patternStart() + re;
             }
    -        // parsing just a piece of a larger pattern.
    -        if (isSub === SUBPARSE) {
    -            return [re, hasMagic];
    -        }
             // if it's nocase, and the lcase/uppercase don't match, it's magic
             if (options.nocase && !hasMagic && !options.nocaseMagicOnly) {
                 hasMagic = pattern.toUpperCase() !== pattern.toLowerCase();
    @@ -894,9 +1100,9 @@ export class Minimatch {
             // unescape anything in it, though, so that it'll be
             // an exact match against a file etc.
             if (!hasMagic) {
    -            return globUnescape(pattern);
    +            return globUnescape(re);
             }
    -        const flags = options.nocase ? 'i' : '';
    +        const flags = (options.nocase ? 'i' : '') + (uflag ? 'u' : '');
             try {
                 const ext = fastTest
                     ? {
    @@ -1006,7 +1212,7 @@ export class Minimatch {
             if (this.preserveMultipleSlashes) {
                 return p.split('/');
             }
    -        else if (isWindows && /^\/\/[^\/]+/.test(p)) {
    +        else if (this.isWindows && /^\/\/[^\/]+/.test(p)) {
                 // add an extra '' for the one we lose
                 return ['', ...p.split(/\/+/)];
             }
    @@ -1029,8 +1235,8 @@ export class Minimatch {
             }
             const options = this.options;
             // windows: need to use /, not \
    -        if (path.sep !== '/') {
    -            f = f.split(path.sep).join('/');
    +        if (this.isWindows) {
    +            f = f.split('\\').join('/');
             }
             // treat the test path as a set of pathparts.
             const ff = this.slashSplit(f);
    @@ -1073,5 +1279,11 @@ export class Minimatch {
             return minimatch.defaults(def).Minimatch;
         }
     }
    +/* c8 ignore start */
    +export { escape } from './escape.js';
    +export { unescape } from './unescape.js';
    +/* c8 ignore stop */
     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/minimatch/dist/mjs/index.js.map b/deps/npm/node_modules/minimatch/dist/mjs/index.js.map
    deleted file mode 100644
    index 854172c5bd0f01..00000000000000
    --- a/deps/npm/node_modules/minimatch/dist/mjs/index.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAmBA,MAAM,CAAC,MAAM,SAAS,GAAG,CACvB,CAAS,EACT,OAAe,EACf,UAA4B,EAAE,EAC9B,EAAE;IACF,kBAAkB,CAAC,OAAO,CAAC,CAAA;IAE3B,oCAAoC;IACpC,IAAI,CAAC,OAAO,CAAC,SAAS,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;QACnD,OAAO,KAAK,CAAA;KACb;IAED,OAAO,IAAI,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;AACjD,CAAC,CAAA;AAED,eAAe,SAAS,CAAA;AAExB,wDAAwD;AACxD,MAAM,YAAY,GAAG,uBAAuB,CAAA;AAC5C,MAAM,cAAc,GAAG,CAAC,GAAW,EAAE,EAAE,CAAC,CAAC,CAAS,EAAE,EAAE,CACpD,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACvC,MAAM,iBAAiB,GAAG,CAAC,GAAW,EAAE,EAAE,CAAC,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACzE,MAAM,oBAAoB,GAAG,CAAC,GAAW,EAAE,EAAE;IAC3C,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAA;IACvB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAC3E,CAAC,CAAA;AACD,MAAM,uBAAuB,GAAG,CAAC,GAAW,EAAE,EAAE;IAC9C,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAA;IACvB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACrD,CAAC,CAAA;AACD,MAAM,aAAa,GAAG,YAAY,CAAA;AAClC,MAAM,eAAe,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAC5E,MAAM,kBAAkB,GAAG,CAAC,CAAS,EAAE,EAAE,CACvC,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAC5C,MAAM,SAAS,GAAG,SAAS,CAAA;AAC3B,MAAM,WAAW,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;AAC/E,MAAM,MAAM,GAAG,OAAO,CAAA;AACtB,MAAM,QAAQ,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;AACpE,MAAM,WAAW,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,CAAA;AAC5E,MAAM,QAAQ,GAAG,wBAAwB,CAAA;AACzC,MAAM,gBAAgB,GAAG,CAAC,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAmB,EAAE,EAAE;IAC5D,MAAM,KAAK,GAAG,eAAe,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACnC,IAAI,CAAC,GAAG;QAAE,OAAO,KAAK,CAAA;IACtB,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAA;IACvB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACjE,CAAC,CAAA;AACD,MAAM,mBAAmB,GAAG,CAAC,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAmB,EAAE,EAAE;IAC/D,MAAM,KAAK,GAAG,kBAAkB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACtC,IAAI,CAAC,GAAG;QAAE,OAAO,KAAK,CAAA;IACtB,GAAG,GAAG,GAAG,CAAC,WAAW,EAAE,CAAA;IACvB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AACjE,CAAC,CAAA;AACD,MAAM,aAAa,GAAG,CAAC,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAmB,EAAE,EAAE;IACzD,MAAM,KAAK,GAAG,kBAAkB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACtC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAS,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAClE,CAAC,CAAA;AACD,MAAM,UAAU,GAAG,CAAC,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAmB,EAAE,EAAE;IACtD,MAAM,KAAK,GAAG,eAAe,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACnC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAS,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;AAClE,CAAC,CAAA;AACD,MAAM,eAAe,GAAG,CAAC,CAAC,EAAE,CAAmB,EAAE,EAAE;IACjD,MAAM,GAAG,GAAG,EAAE,CAAC,MAAM,CAAA;IACrB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,GAAG,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;AAC9D,CAAC,CAAA;AACD,MAAM,kBAAkB,GAAG,CAAC,CAAC,EAAE,CAAmB,EAAE,EAAE;IACpD,MAAM,GAAG,GAAG,EAAE,CAAC,MAAM,CAAA;IACrB,OAAO,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,CAAA;AACnE,CAAC,CAAA;AAED,qBAAqB;AACrB,MAAM,QAAQ,GACZ,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO;IACpC,CAAC,CAAC,CAAC,OAAO,OAAO,CAAC,GAAG,KAAK,QAAQ;QAC9B,OAAO,CAAC,GAAG;QACX,OAAO,CAAC,GAAG,CAAC,8BAA8B,CAAC;QAC7C,OAAO,CAAC,QAAQ;IAClB,CAAC,CAAC,OAAO,CAAA;AACb,MAAM,SAAS,GAAG,QAAQ,KAAK,OAAO,CAAA;AACtC,MAAM,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAA;AACrD,oBAAoB;AAEpB,MAAM,CAAC,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAA;AAC3B,SAAS,CAAC,GAAG,GAAG,GAAG,CAAA;AAEnB,MAAM,CAAC,MAAM,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAA;AAC7C,SAAS,CAAC,QAAQ,GAAG,QAAQ,CAAA;AAC7B,OAAO,MAAM,MAAM,iBAAiB,CAAA;AAEpC,MAAM,OAAO,GAAG;IACd,GAAG,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE;IAC9C,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE;IACjC,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE;IACjC,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE;IACjC,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE;CACjC,CAAA;AAGD,gCAAgC;AAChC,iDAAiD;AACjD,MAAM,KAAK,GAAG,MAAM,CAAA;AAEpB,gCAAgC;AAChC,MAAM,IAAI,GAAG,KAAK,GAAG,IAAI,CAAA;AAEzB,4DAA4D;AAC5D,+DAA+D;AAC/D,6CAA6C;AAC7C,MAAM,UAAU,GAAG,yCAAyC,CAAA;AAE5D,kCAAkC;AAClC,6CAA6C;AAC7C,MAAM,YAAY,GAAG,yBAAyB,CAAA;AAE9C,sCAAsC;AACtC,MAAM,OAAO,GAAG,CAAC,CAAS,EAAE,EAAE,CAC5B,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,GAA6B,EAAE,CAAC,EAAE,EAAE;IACtD,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAA;IACb,OAAO,GAAG,CAAA;AACZ,CAAC,EAAE,EAAE,CAAC,CAAA;AAER,gDAAgD;AAChD,MAAM,UAAU,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAA;AAE7C,4DAA4D;AAC5D,MAAM,kBAAkB,GAAG,OAAO,CAAC,KAAK,CAAC,CAAA;AAEzC,MAAM,CAAC,MAAM,MAAM,GACjB,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CACpD,CAAC,CAAS,EAAE,EAAE,CACZ,SAAS,CAAC,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC,CAAA;AAClC,SAAS,CAAC,MAAM,GAAG,MAAM,CAAA;AAEzB,MAAM,GAAG,GAAG,CAAC,CAAmB,EAAE,IAAsB,EAAE,EAAE,EAAE,CAC5D,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;AAEzB,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,GAAqB,EAAoB,EAAE;IAClE,IAAI,CAAC,GAAG,IAAI,OAAO,GAAG,KAAK,QAAQ,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE;QAC/D,OAAO,SAAS,CAAA;KACjB;IAED,MAAM,IAAI,GAAG,SAAS,CAAA;IAEtB,MAAM,CAAC,GAAG,CAAC,CAAS,EAAE,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CACvE,IAAI,CAAC,CAAC,EAAE,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,CAAA;IAErC,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE;QACtB,SAAS,EAAE,MAAM,SAAU,SAAQ,IAAI,CAAC,SAAS;YAC/C,YAAY,OAAe,EAAE,UAA4B,EAAE;gBACzD,KAAK,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,CAAA;YACnC,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,OAAyB;gBACvC,OAAO,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAA;YACnD,CAAC;SACF;QAED,MAAM,EAAE,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CAC1D,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAEzC,QAAQ,EAAE,CAAC,OAAyB,EAAE,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAEzE,MAAM,EAAE,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CAC1D,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAEzC,WAAW,EAAE,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CAC/D,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAE9C,KAAK,EAAE,CAAC,IAAc,EAAE,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CACzE,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAE9C,GAAG,EAAE,IAAI,CAAC,GAAG;QACb,QAAQ,EAAE,QAA2B;KACtC,CAAC,CAAA;AACJ,CAAC,CAAA;AACD,SAAS,CAAC,QAAQ,GAAG,QAAQ,CAAA;AAE7B,mBAAmB;AACnB,qBAAqB;AACrB,mBAAmB;AACnB,8BAA8B;AAC9B,mCAAmC;AACnC,2CAA2C;AAC3C,EAAE;AACF,iCAAiC;AACjC,qBAAqB;AACrB,iBAAiB;AACjB,MAAM,CAAC,MAAM,WAAW,GAAG,CACzB,OAAe,EACf,UAA4B,EAAE,EAC9B,EAAE;IACF,kBAAkB,CAAC,OAAO,CAAC,CAAA;IAE3B,wDAAwD;IACxD,wDAAwD;IACxD,IAAI,OAAO,CAAC,OAAO,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE;QACxD,+BAA+B;QAC/B,OAAO,CAAC,OAAO,CAAC,CAAA;KACjB;IAED,OAAO,MAAM,CAAC,OAAO,CAAC,CAAA;AACxB,CAAC,CAAA;AACD,SAAS,CAAC,WAAW,GAAG,WAAW,CAAA;AAEnC,MAAM,kBAAkB,GAAG,IAAI,GAAG,EAAE,CAAA;AACpC,MAAM,kBAAkB,GAA2B,CACjD,OAAY,EACe,EAAE;IAC7B,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE;QAC/B,MAAM,IAAI,SAAS,CAAC,iBAAiB,CAAC,CAAA;KACvC;IAED,IAAI,OAAO,CAAC,MAAM,GAAG,kBAAkB,EAAE;QACvC,MAAM,IAAI,SAAS,CAAC,qBAAqB,CAAC,CAAA;KAC3C;AACH,CAAC,CAAA;AAED,yCAAyC;AACzC,kDAAkD;AAClD,oEAAoE;AACpE,oEAAoE;AACpE,6DAA6D;AAC7D,kEAAkE;AAClE,EAAE;AACF,0EAA0E;AAC1E,wEAAwE;AACxE,qEAAqE;AACrE,8DAA8D;AAC9D,MAAM,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,CAAA;AAEnC,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,OAAe,EAAE,UAA4B,EAAE,EAAE,EAAE,CACxE,IAAI,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,MAAM,EAAE,CAAA;AAC1C,SAAS,CAAC,MAAM,GAAG,MAAM,CAAA;AAEzB,MAAM,CAAC,MAAM,KAAK,GAAG,CACnB,IAAc,EACd,OAAe,EACf,UAA4B,EAAE,EAC9B,EAAE;IACF,MAAM,EAAE,GAAG,IAAI,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;IAC1C,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAA;IACpC,IAAI,EAAE,CAAC,OAAO,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE;QACrC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;KACnB;IACD,OAAO,IAAI,CAAA;AACb,CAAC,CAAA;AACD,SAAS,CAAC,KAAK,GAAG,KAAK,CAAA;AAEvB,+BAA+B;AAC/B,MAAM,YAAY,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;AAC7D,MAAM,YAAY,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,aAAa,EAAE,IAAI,CAAC,CAAA;AAClE,MAAM,YAAY,GAAG,CAAC,CAAS,EAAE,EAAE,CACjC,CAAC,CAAC,OAAO,CAAC,0BAA0B,EAAE,MAAM,CAAC,CAAA;AAC/C,MAAM,YAAY,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,MAAM,CAAC,CAAA;AAsBjE,MAAM,OAAO,SAAS;IACpB,OAAO,CAAkB;IACzB,GAAG,CAAyB;IAC5B,OAAO,CAAQ;IAEf,oBAAoB,CAAS;IAC7B,QAAQ,CAAS;IACjB,MAAM,CAAS;IACf,OAAO,CAAS;IAChB,KAAK,CAAS;IACd,uBAAuB,CAAS;IAChC,OAAO,CAAS;IAChB,OAAO,CAAU;IACjB,SAAS,CAAY;IAErB,MAAM,CAAyB;IAC/B,YAAY,OAAe,EAAE,UAA4B,EAAE;QACzD,kBAAkB,CAAC,OAAO,CAAC,CAAA;QAE3B,OAAO,GAAG,OAAO,IAAI,EAAE,CAAA;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,oBAAoB;YACvB,CAAC,CAAC,OAAO,CAAC,oBAAoB,IAAI,OAAO,CAAC,kBAAkB,KAAK,KAAK,CAAA;QACxE,IAAI,IAAI,CAAC,oBAAoB,EAAE;YAC7B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;SAChD;QACD,IAAI,CAAC,uBAAuB,GAAG,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAA;QAChE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAA;QAClB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;QACnB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAA;QAClC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAA;QACpB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;QAClB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,OAAO,CAAC,OAAO,CAAA;QAEhC,IAAI,CAAC,OAAO,GAAG,EAAE,CAAA;QACjB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAA;QACnB,IAAI,CAAC,GAAG,GAAG,EAAE,CAAA;QAEb,+BAA+B;QAC/B,IAAI,CAAC,IAAI,EAAE,CAAA;IACb,CAAC;IAED,KAAK,CAAC,GAAG,CAAQ,IAAG,CAAC;IAErB,IAAI;QACF,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAC5B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,6CAA6C;QAC7C,IAAI,CAAC,OAAO,CAAC,SAAS,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;YACnD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAA;YACnB,OAAM;SACP;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;YACjB,OAAM;SACP;QAED,oCAAoC;QACpC,IAAI,CAAC,WAAW,EAAE,CAAA;QAElB,wBAAwB;QACxB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,WAAW,EAAE,CAAA;QAEjC,IAAI,OAAO,CAAC,KAAK,EAAE;YACjB,IAAI,CAAC,KAAK,GAAG,CAAC,GAAG,IAAW,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAA;SACxD;QAED,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAA;QAEtC,4EAA4E;QAC5E,qBAAqB;QACrB,8DAA8D;QAC9D,oDAAoD;QACpD,wCAAwC;QACxC,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAA;QAE9D,sDAAsD;QACtD,iEAAiE;QACjE,sDAAsD;QACtD,qDAAqD;QACrD,4DAA4D;QAC5D,2DAA2D;QAC3D,6CAA6C;QAC7C,sEAAsE;QACtE,sEAAsE;QACtE,sEAAsE;QACtE,IAAI,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE;YAC3B,iBAAiB;YACjB,IAAI,CAAC,SAAS,GAAG,YAAY,CAAA;SAC9B;aAAM;YACL,+DAA+D;YAC/D,gEAAgE;YAChE,KAAK,MAAM,KAAK,IAAI,YAAY,EAAE;gBAChC,IAAI,OAAgB,CAAA;gBACpB,GAAG;oBACD,OAAO,GAAG,KAAK,CAAA;oBACf,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;wBACzC,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,EAAE;4BAC7C,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAA;4BACf,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAA;4BAClB,OAAO,GAAG,IAAI,CAAA;yBACf;qBACF;iBACF,QAAQ,OAAO,EAAC;aAClB;YACD,IAAI,CAAC,SAAS,GAAG,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE;gBACxC,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC,GAAa,EAAE,IAAI,EAAE,EAAE;oBAC3C,MAAM,IAAI,GAAG,GAAG,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;oBAChC,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,IAAI,EAAE;wBAClC,OAAO,GAAG,CAAA;qBACX;oBACD,IAAI,IAAI,KAAK,IAAI,EAAE;wBACjB,IAAI,IAAI,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,GAAG,IAAI,IAAI,KAAK,IAAI,EAAE;4BAC1D,GAAG,CAAC,GAAG,EAAE,CAAA;4BACT,OAAO,GAAG,CAAA;yBACX;qBACF;oBACD,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;oBACd,OAAO,GAAG,CAAA;gBACZ,CAAC,EAAE,EAAE,CAAC,CAAA;gBACN,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,CAAA;YAC1C,CAAC,CAAC,CAAA;SACH;QAED,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC,CAAA;QAExC,mBAAmB;QACnB,IAAI,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;QAEvE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,CAAA;QAE7B,sDAAsD;QACtD,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC,MAAM,CACnB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CACF,CAAA;QAE5B,2CAA2C;QAC3C,IAAI,SAAS,EAAE;YACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBACxC,MAAM,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;gBACrB,IACE,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE;oBACX,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE;oBACX,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG;oBAC5B,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,QAAQ;oBACxB,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EACtB;oBACA,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAA;iBACX;aACF;SACF;QAED,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,GAAG,CAAC,CAAA;IACpC,CAAC;IAED,WAAW;QACT,IAAI,IAAI,CAAC,QAAQ;YAAE,OAAM;QAEzB,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAC5B,IAAI,MAAM,GAAG,KAAK,CAAA;QAClB,IAAI,YAAY,GAAG,CAAC,CAAA;QAEpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC,EAAE,EAAE;YACpE,MAAM,GAAG,CAAC,MAAM,CAAA;YAChB,YAAY,EAAE,CAAA;SACf;QAED,IAAI,YAAY;YAAE,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAAA;QAC5D,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED,+CAA+C;IAC/C,yCAAyC;IACzC,uDAAuD;IACvD,mDAAmD;IACnD,mBAAmB;IACnB,QAAQ,CAAC,IAAc,EAAE,OAAsB,EAAE,UAAmB,KAAK;QACvE,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,yDAAyD;QACzD,iBAAiB;QACjB,IAAI,SAAS,EAAE;YACb,MAAM,OAAO,GACX,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE;gBACd,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE;gBACd,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG;gBACf,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,QAAQ;gBAC3B,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;YAC3B,MAAM,UAAU,GACd,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE;gBACjB,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE;gBACjB,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG;gBAClB,OAAO,OAAO,CAAC,CAAC,CAAC,KAAK,QAAQ;gBAC9B,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;YAE9B,IAAI,OAAO,IAAI,UAAU,EAAE;gBACzB,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAW,CAAA;gBAC5B,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,CAAW,CAAA;gBAC/B,IAAI,EAAE,CAAC,WAAW,EAAE,KAAK,EAAE,CAAC,WAAW,EAAE,EAAE;oBACzC,IAAI,CAAC,CAAC,CAAC,GAAG,EAAE,CAAA;iBACb;aACF;iBAAM,IAAI,UAAU,IAAI,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,QAAQ,EAAE;gBACpD,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,CAAW,CAAA;gBAC/B,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;gBAClB,IAAI,EAAE,CAAC,WAAW,EAAE,KAAK,EAAE,CAAC,WAAW,EAAE,EAAE;oBACzC,OAAO,CAAC,CAAC,CAAC,GAAG,EAAE,CAAA;oBACf,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;iBAC3B;aACF;iBAAM,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,CAAC,CAAC,KAAK,QAAQ,EAAE;gBACpD,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;gBAClB,IAAI,EAAE,CAAC,WAAW,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,EAAE;oBACjD,OAAO,CAAC,CAAC,CAAC,GAAG,EAAE,CAAA;oBACf,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;iBACrB;aACF;SACF;QAED,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAA;QAC/C,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,CAAA;QAEnD,KACE,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,GAAG,OAAO,CAAC,MAAM,EACzD,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAClB,EAAE,EAAE,EAAE,EAAE,EAAE,EACV;YACA,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,CAAA;YAC3B,IAAI,CAAC,GAAG,OAAO,CAAC,EAAE,CAAC,CAAA;YACnB,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,CAAA;YAEhB,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;YAEzB,wBAAwB;YACxB,wCAAwC;YACxC,qBAAqB;YACrB,IAAI,CAAC,KAAK,KAAK,EAAE;gBACf,OAAO,KAAK,CAAA;aACb;YACD,oBAAoB;YAEpB,IAAI,CAAC,KAAK,QAAQ,EAAE;gBAClB,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;gBAEvC,OAAO;gBACP,yCAAyC;gBACzC,cAAc;gBACd,cAAc;gBACd,cAAc;gBACd,QAAQ;gBACR,iDAAiD;gBACjD,wDAAwD;gBACxD,yBAAyB;gBACzB,sDAAsD;gBACtD,6BAA6B;gBAC7B,EAAE;gBACF,mCAAmC;gBACnC,gBAAgB;gBAChB,eAAe;gBACf,kCAAkC;gBAClC,oBAAoB;gBACpB,mBAAmB;gBACnB,qCAAqC;gBACrC,mCAAmC;gBACnC,iCAAiC;gBACjC,kCAAkC;gBAClC,IAAI,EAAE,GAAG,EAAE,CAAA;gBACX,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAA;gBACf,IAAI,EAAE,KAAK,EAAE,EAAE;oBACb,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,CAAA;oBAC3B,8CAA8C;oBAC9C,yBAAyB;oBACzB,2CAA2C;oBAC3C,sBAAsB;oBACtB,sDAAsD;oBACtD,uBAAuB;oBACvB,OAAO,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE;wBACpB,IACE,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG;4BAChB,IAAI,CAAC,EAAE,CAAC,KAAK,IAAI;4BACjB,CAAC,CAAC,OAAO,CAAC,GAAG,IAAI,IAAI,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;4BAE5C,OAAO,KAAK,CAAA;qBACf;oBACD,OAAO,IAAI,CAAA;iBACZ;gBAED,mDAAmD;gBACnD,OAAO,EAAE,GAAG,EAAE,EAAE;oBACd,IAAI,SAAS,GAAG,IAAI,CAAC,EAAE,CAAC,CAAA;oBAExB,IAAI,CAAC,KAAK,CAAC,kBAAkB,EAAE,IAAI,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,SAAS,CAAC,CAAA;oBAEhE,qDAAqD;oBACrD,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,EAAE;wBAC7D,IAAI,CAAC,KAAK,CAAC,uBAAuB,EAAE,EAAE,EAAE,EAAE,EAAE,SAAS,CAAC,CAAA;wBACtD,iBAAiB;wBACjB,OAAO,IAAI,CAAA;qBACZ;yBAAM;wBACL,kCAAkC;wBAClC,iDAAiD;wBACjD,IACE,SAAS,KAAK,GAAG;4BACjB,SAAS,KAAK,IAAI;4BAClB,CAAC,CAAC,OAAO,CAAC,GAAG,IAAI,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,EAC7C;4BACA,IAAI,CAAC,KAAK,CAAC,eAAe,EAAE,IAAI,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAA;4BAClD,MAAK;yBACN;wBAED,uCAAuC;wBACvC,IAAI,CAAC,KAAK,CAAC,0CAA0C,CAAC,CAAA;wBACtD,EAAE,EAAE,CAAA;qBACL;iBACF;gBAED,sBAAsB;gBACtB,mEAAmE;gBACnE,qBAAqB;gBACrB,IAAI,OAAO,EAAE;oBACX,kBAAkB;oBAClB,IAAI,CAAC,KAAK,CAAC,0BAA0B,EAAE,IAAI,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAA;oBAC7D,IAAI,EAAE,KAAK,EAAE,EAAE;wBACb,OAAO,IAAI,CAAA;qBACZ;iBACF;gBACD,oBAAoB;gBACpB,OAAO,KAAK,CAAA;aACb;YAED,0BAA0B;YAC1B,gDAAgD;YAChD,qDAAqD;YACrD,IAAI,GAAY,CAAA;YAChB,IAAI,OAAO,CAAC,KAAK,QAAQ,EAAE;gBACzB,GAAG,GAAG,CAAC,KAAK,CAAC,CAAA;gBACb,IAAI,CAAC,KAAK,CAAC,cAAc,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAA;aACtC;iBAAM;gBACL,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;gBACf,IAAI,CAAC,KAAK,CAAC,eAAe,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAA;aACvC;YAED,IAAI,CAAC,GAAG;gBAAE,OAAO,KAAK,CAAA;SACvB;QAED,oDAAoD;QACpD,oDAAoD;QACpD,2CAA2C;QAC3C,kDAAkD;QAClD,oDAAoD;QACpD,uDAAuD;QACvD,oDAAoD;QACpD,yDAAyD;QACzD,6BAA6B;QAC7B,yCAAyC;QAEzC,gEAAgE;QAChE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;YAC1B,oDAAoD;YACpD,gBAAgB;YAChB,OAAO,IAAI,CAAA;SACZ;aAAM,IAAI,EAAE,KAAK,EAAE,EAAE;YACpB,+CAA+C;YAC/C,iDAAiD;YACjD,uBAAuB;YACvB,OAAO,OAAO,CAAA;SACf;aAAM,IAAI,EAAE,KAAK,EAAE,EAAE;YACpB,4CAA4C;YAC5C,oDAAoD;YACpD,iDAAiD;YACjD,wBAAwB;YACxB,OAAO,EAAE,KAAK,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,CAAA;YAEvC,qBAAqB;SACtB;aAAM;YACL,yBAAyB;YACzB,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,CAAA;SACxB;QACD,oBAAoB;IACtB,CAAC;IAED,WAAW;QACT,OAAO,WAAW,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAA;IAChD,CAAC;IAED,KAAK,CACH,OAAe,EACf,KAAuB;QAEvB,kBAAkB,CAAC,OAAO,CAAC,CAAA;QAE3B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,YAAY;QACZ,IAAI,OAAO,KAAK,IAAI,EAAE;YACpB,IAAI,CAAC,OAAO,CAAC,UAAU;gBAAE,OAAO,QAAQ,CAAA;;gBACnC,OAAO,GAAG,GAAG,CAAA;SACnB;QACD,IAAI,OAAO,KAAK,EAAE;YAAE,OAAO,EAAE,CAAA;QAE7B,uDAAuD;QACvD,0DAA0D;QAC1D,IAAI,CAA0B,CAAA;QAC9B,IAAI,QAAQ,GAAoC,IAAI,CAAA;QACpD,IAAI,KAAK,KAAK,QAAQ,EAAE;YACtB,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE;gBAC/B,QAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAA;aAChD;iBAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,EAAE;gBAC5C,QAAQ,GAAG,CACT,OAAO,CAAC,MAAM;oBACZ,CAAC,CAAC,OAAO,CAAC,GAAG;wBACX,CAAC,CAAC,uBAAuB;wBACzB,CAAC,CAAC,oBAAoB;oBACxB,CAAC,CAAC,OAAO,CAAC,GAAG;wBACb,CAAC,CAAC,iBAAiB;wBACnB,CAAC,CAAC,cAAc,CACnB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;aACR;iBAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,EAAE;gBACxC,QAAQ,GAAG,CACT,OAAO,CAAC,MAAM;oBACZ,CAAC,CAAC,OAAO,CAAC,GAAG;wBACX,CAAC,CAAC,mBAAmB;wBACrB,CAAC,CAAC,gBAAgB;oBACpB,CAAC,CAAC,OAAO,CAAC,GAAG;wBACb,CAAC,CAAC,aAAa;wBACf,CAAC,CAAC,UAAU,CACf,CAAC,CAAC,CAAC,CAAA;aACL;iBAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,EAAE;gBAC7C,QAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,kBAAkB,CAAC,CAAC,CAAC,eAAe,CAAA;aAC9D;iBAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,EAAE;gBACzC,QAAQ,GAAG,WAAW,CAAA;aACvB;SACF;QAED,IAAI,EAAE,GAAG,EAAE,CAAA;QACX,IAAI,QAAQ,GAAG,KAAK,CAAA;QACpB,IAAI,QAAQ,GAAG,KAAK,CAAA;QACpB,4BAA4B;QAC5B,MAAM,gBAAgB,GAAuB,EAAE,CAAA;QAC/C,MAAM,aAAa,GAA+B,EAAE,CAAA;QACpD,IAAI,SAAS,GAAsB,KAAK,CAAA;QACxC,IAAI,OAAO,GAAG,KAAK,CAAA;QACnB,IAAI,YAAY,GAAG,CAAC,CAAC,CAAA;QACrB,IAAI,UAAU,GAAG,CAAC,CAAC,CAAA;QACnB,IAAI,EAAU,CAAA;QACd,IAAI,EAAgC,CAAA;QACpC,IAAI,EAAkB,CAAA;QACtB,2DAA2D;QAC3D,yDAAyD;QACzD,oDAAoD;QACpD,IAAI,cAAc,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAA;QAC9C,IAAI,cAAc,GAAG,OAAO,CAAC,GAAG,IAAI,cAAc,CAAA;QAClD,MAAM,YAAY,GAAG,GAAG,EAAE,CACxB,cAAc;YACZ,CAAC,CAAC,EAAE;YACJ,CAAC,CAAC,cAAc;gBAChB,CAAC,CAAC,gCAAgC;gBAClC,CAAC,CAAC,SAAS,CAAA;QACf,MAAM,eAAe,GAAG,CAAC,CAAS,EAAE,EAAE,CACpC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG;YACjB,CAAC,CAAC,EAAE;YACJ,CAAC,CAAC,OAAO,CAAC,GAAG;gBACb,CAAC,CAAC,gCAAgC;gBAClC,CAAC,CAAC,SAAS,CAAA;QAEf,MAAM,cAAc,GAAG,GAAG,EAAE;YAC1B,IAAI,SAAS,EAAE;gBACb,uCAAuC;gBACvC,qCAAqC;gBACrC,QAAQ,SAAS,EAAE;oBACjB,KAAK,GAAG;wBACN,EAAE,IAAI,IAAI,CAAA;wBACV,QAAQ,GAAG,IAAI,CAAA;wBACf,MAAK;oBACP,KAAK,GAAG;wBACN,EAAE,IAAI,KAAK,CAAA;wBACX,QAAQ,GAAG,IAAI,CAAA;wBACf,MAAK;oBACP;wBACE,EAAE,IAAI,IAAI,GAAG,SAAS,CAAA;wBACtB,MAAK;iBACR;gBACD,IAAI,CAAC,KAAK,CAAC,sBAAsB,EAAE,SAAS,EAAE,EAAE,CAAC,CAAA;gBACjD,SAAS,GAAG,KAAK,CAAA;aAClB;QACH,CAAC,CAAA;QAED,KACE,IAAI,CAAC,GAAG,CAAC,EAAE,CAAS,EACpB,CAAC,GAAG,OAAO,CAAC,MAAM,IAAI,CAAC,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,EAC7C,CAAC,EAAE,EACH;YACA,IAAI,CAAC,KAAK,CAAC,cAAc,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAA;YAE7C,kCAAkC;YAClC,IAAI,QAAQ,EAAE;gBACZ,wCAAwC;gBACxC,wBAAwB;gBACxB,qBAAqB;gBACrB,IAAI,CAAC,KAAK,GAAG,EAAE;oBACb,OAAO,KAAK,CAAA;iBACb;gBACD,oBAAoB;gBAEpB,IAAI,UAAU,CAAC,CAAC,CAAC,EAAE;oBACjB,EAAE,IAAI,IAAI,CAAA;iBACX;gBACD,EAAE,IAAI,CAAC,CAAA;gBACP,QAAQ,GAAG,KAAK,CAAA;gBAChB,SAAQ;aACT;YAED,QAAQ,CAAC,EAAE;gBACT,uCAAuC;gBACvC,qBAAqB;gBACrB,KAAK,GAAG,CAAC,CAAC;oBACR,OAAO,KAAK,CAAA;iBACb;gBACD,oBAAoB;gBAEpB,KAAK,IAAI;oBACP,IAAI,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,GAAG,EAAE;wBAC5C,EAAE,IAAI,CAAC,CAAA;wBACP,SAAQ;qBACT;oBAED,cAAc,EAAE,CAAA;oBAChB,QAAQ,GAAG,IAAI,CAAA;oBACf,SAAQ;gBAEV,+BAA+B;gBAC/B,2BAA2B;gBAC3B,KAAK,GAAG,CAAC;gBACT,KAAK,GAAG,CAAC;gBACT,KAAK,GAAG,CAAC;gBACT,KAAK,GAAG,CAAC;gBACT,KAAK,GAAG;oBACN,IAAI,CAAC,KAAK,CAAC,4BAA4B,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,CAAA;oBAE3D,wDAAwD;oBACxD,qCAAqC;oBACrC,IAAI,OAAO,EAAE;wBACX,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAA;wBACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,UAAU,GAAG,CAAC;4BAAE,CAAC,GAAG,GAAG,CAAA;wBAC9C,EAAE,IAAI,CAAC,CAAA;wBACP,SAAQ;qBACT;oBAED,gDAAgD;oBAChD,mDAAmD;oBACnD,oDAAoD;oBACpD,IAAI,CAAC,KAAK,CAAC,wBAAwB,EAAE,SAAS,CAAC,CAAA;oBAC/C,cAAc,EAAE,CAAA;oBAChB,SAAS,GAAG,CAAC,CAAA;oBACb,0DAA0D;oBAC1D,+DAA+D;oBAC/D,yBAAyB;oBACzB,IAAI,OAAO,CAAC,KAAK;wBAAE,cAAc,EAAE,CAAA;oBACnC,SAAQ;gBAEV,KAAK,GAAG,CAAC,CAAC;oBACR,IAAI,OAAO,EAAE;wBACX,EAAE,IAAI,GAAG,CAAA;wBACT,SAAQ;qBACT;oBAED,IAAI,CAAC,SAAS,EAAE;wBACd,EAAE,IAAI,KAAK,CAAA;wBACX,SAAQ;qBACT;oBAED,MAAM,OAAO,GAAqB;wBAChC,IAAI,EAAE,SAAS;wBACf,KAAK,EAAE,CAAC,GAAG,CAAC;wBACZ,OAAO,EAAE,EAAE,CAAC,MAAM;wBAClB,IAAI,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC,IAAI;wBAC7B,KAAK,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC,KAAK;qBAChC,CAAA;oBACD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,OAAO,CAAC,CAAA;oBACvC,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;oBAC9B,4CAA4C;oBAC5C,EAAE,IAAI,OAAO,CAAC,IAAI,CAAA;oBAClB,sCAAsC;oBACtC,IAAI,OAAO,CAAC,KAAK,KAAK,CAAC,IAAI,OAAO,CAAC,IAAI,KAAK,GAAG,EAAE;wBAC/C,cAAc,GAAG,IAAI,CAAA;wBACrB,EAAE,IAAI,eAAe,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;qBAC5C;oBACD,IAAI,CAAC,KAAK,CAAC,cAAc,EAAE,SAAS,EAAE,EAAE,CAAC,CAAA;oBACzC,SAAS,GAAG,KAAK,CAAA;oBACjB,SAAQ;iBACT;gBAED,KAAK,GAAG,CAAC,CAAC;oBACR,MAAM,OAAO,GAAG,gBAAgB,CAAC,gBAAgB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;oBAC7D,IAAI,OAAO,IAAI,CAAC,OAAO,EAAE;wBACvB,EAAE,IAAI,KAAK,CAAA;wBACX,SAAQ;qBACT;oBACD,gBAAgB,CAAC,GAAG,EAAE,CAAA;oBAEtB,qBAAqB;oBACrB,cAAc,EAAE,CAAA;oBAChB,QAAQ,GAAG,IAAI,CAAA;oBACf,EAAE,GAAG,OAAO,CAAA;oBACZ,8BAA8B;oBAC9B,qCAAqC;oBACrC,EAAE,IAAI,EAAE,CAAC,KAAK,CAAA;oBACd,IAAI,EAAE,CAAC,IAAI,KAAK,GAAG,EAAE;wBACnB,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;qBAC5D;oBACD,SAAQ;iBACT;gBAED,KAAK,GAAG,CAAC,CAAC;oBACR,MAAM,OAAO,GAAG,gBAAgB,CAAC,gBAAgB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;oBAC7D,IAAI,OAAO,IAAI,CAAC,OAAO,EAAE;wBACvB,EAAE,IAAI,KAAK,CAAA;wBACX,SAAQ;qBACT;oBAED,cAAc,EAAE,CAAA;oBAChB,EAAE,IAAI,GAAG,CAAA;oBACT,wCAAwC;oBACxC,IAAI,OAAO,CAAC,KAAK,KAAK,CAAC,IAAI,OAAO,CAAC,IAAI,KAAK,GAAG,EAAE;wBAC/C,cAAc,GAAG,IAAI,CAAA;wBACrB,EAAE,IAAI,eAAe,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;qBAC5C;oBACD,SAAQ;iBACT;gBAED,+CAA+C;gBAC/C,KAAK,GAAG;oBACN,+CAA+C;oBAC/C,cAAc,EAAE,CAAA;oBAEhB,IAAI,OAAO,EAAE;wBACX,EAAE,IAAI,IAAI,GAAG,CAAC,CAAA;wBACd,SAAQ;qBACT;oBAED,OAAO,GAAG,IAAI,CAAA;oBACd,UAAU,GAAG,CAAC,CAAA;oBACd,YAAY,GAAG,EAAE,CAAC,MAAM,CAAA;oBACxB,EAAE,IAAI,CAAC,CAAA;oBACP,SAAQ;gBAEV,KAAK,GAAG;oBACN,0CAA0C;oBAC1C,mCAAmC;oBACnC,qCAAqC;oBACrC,0CAA0C;oBAC1C,IAAI,CAAC,KAAK,UAAU,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE;wBACpC,EAAE,IAAI,IAAI,GAAG,CAAC,CAAA;wBACd,SAAQ;qBACT;oBAED,sDAAsD;oBACtD,oDAAoD;oBACpD,qDAAqD;oBACrD,4BAA4B;oBAC5B,sDAAsD;oBACtD,wDAAwD;oBACxD,kDAAkD;oBAClD,EAAE,GAAG,OAAO,CAAC,SAAS,CAAC,UAAU,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;oBACzC,IAAI;wBACF,MAAM,CAAC,GAAG,GAAG,YAAY,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,GAAG,GAAG,CAAC,CAAA;wBAClD,mCAAmC;wBACnC,EAAE,IAAI,CAAC,CAAA;qBACR;oBAAC,OAAO,EAAE,EAAE;wBACX,4DAA4D;wBAC5D,6CAA6C;wBAC7C,EAAE,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,YAAY,CAAC,GAAG,QAAQ,CAAA,CAAC,qBAAqB;qBACpE;oBACD,QAAQ,GAAG,IAAI,CAAA;oBACf,OAAO,GAAG,KAAK,CAAA;oBACf,SAAQ;gBAEV;oBACE,8CAA8C;oBAC9C,cAAc,EAAE,CAAA;oBAEhB,IAAI,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,EAAE;wBAC5C,EAAE,IAAI,IAAI,CAAA;qBACX;oBAED,EAAE,IAAI,CAAC,CAAA;oBACP,MAAK;aACR,CAAC,SAAS;SACZ,CAAC,MAAM;QAER,8CAA8C;QAC9C,yCAAyC;QACzC,IAAI,OAAO,EAAE;YACX,4CAA4C;YAC5C,+CAA+C;YAC/C,qDAAqD;YACrD,gDAAgD;YAChD,EAAE,GAAG,OAAO,CAAC,KAAK,CAAC,UAAU,GAAG,CAAC,CAAC,CAAA;YAClC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,EAAE,QAAQ,CAAmB,CAAA;YAC/C,EAAE,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,YAAY,CAAC,GAAG,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;YAClD,QAAQ,GAAG,QAAQ,IAAI,EAAE,CAAC,CAAC,CAAC,CAAA;SAC7B;QAED,uDAAuD;QACvD,kBAAkB;QAClB,kEAAkE;QAClE,wEAAwE;QACxE,mEAAmE;QACnE,qCAAqC;QACrC,KAAK,EAAE,GAAG,gBAAgB,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,gBAAgB,CAAC,GAAG,EAAE,EAAE;YACjE,IAAI,IAAY,CAAA;YAChB,IAAI,GAAG,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;YAC5C,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,cAAc,EAAE,EAAE,EAAE,EAAE,CAAC,CAAA;YAChD,+DAA+D;YAC/D,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,2BAA2B,EAAE,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;gBAC7D,IAAI,CAAC,EAAE,EAAE;oBACP,6CAA6C;oBAC7C,EAAE,GAAG,IAAI,CAAA;oBACT,yBAAyB;oBACzB,qBAAqB;iBACtB;gBACD,oBAAoB;gBAEpB,iEAAiE;gBACjE,mEAAmE;gBACnE,qEAAqE;gBACrE,yDAAyD;gBACzD,EAAE;gBACF,wCAAwC;gBACxC,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,CAAA;YAC3B,CAAC,CAAC,CAAA;YAEF,IAAI,CAAC,KAAK,CAAC,gBAAgB,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,CAAA;YAChD,MAAM,CAAC,GACL,EAAE,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,GAAG,EAAE,CAAC,IAAI,CAAA;YAEnE,QAAQ,GAAG,IAAI,CAAA;YACf,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAA;SAChD;QAED,2DAA2D;QAC3D,cAAc,EAAE,CAAA;QAChB,IAAI,QAAQ,EAAE;YACZ,cAAc;YACd,EAAE,IAAI,MAAM,CAAA;SACb;QAED,2DAA2D;QAC3D,iDAAiD;QACjD,MAAM,eAAe,GAAG,kBAAkB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAA;QAExD,wDAAwD;QACxD,4DAA4D;QAC5D,yDAAyD;QACzD,0DAA0D;QAC1D,eAAe;QACf,KAAK,IAAI,CAAC,GAAG,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;YAClD,MAAM,EAAE,GAAG,aAAa,CAAC,CAAC,CAAC,CAAA;YAE3B,MAAM,QAAQ,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,CAAA;YACxC,MAAM,OAAO,GAAG,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,KAAK,GAAG,CAAC,CAAC,CAAA;YAClD,IAAI,OAAO,GAAG,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;YAChC,MAAM,MAAM,GAAG,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,GAAG,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC,GAAG,OAAO,CAAA;YAEzD,gEAAgE;YAChE,wEAAwE;YACxE,+BAA+B;YAC/B,MAAM,iBAAiB,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,CAAA;YACpD,MAAM,gBAAgB,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,iBAAiB,CAAA;YACvE,IAAI,UAAU,GAAG,OAAO,CAAA;YACxB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,gBAAgB,EAAE,CAAC,EAAE,EAAE;gBACzC,UAAU,GAAG,UAAU,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAA;aAChD;YACD,OAAO,GAAG,UAAU,CAAA;YAEpB,MAAM,MAAM,GAAG,OAAO,KAAK,EAAE,IAAI,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAA;YAEtE,EAAE,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,CAAA;SACpD;QAED,+DAA+D;QAC/D,+CAA+C;QAC/C,oDAAoD;QACpD,IAAI,EAAE,KAAK,EAAE,IAAI,QAAQ,EAAE;YACzB,EAAE,GAAG,OAAO,GAAG,EAAE,CAAA;SAClB;QAED,IAAI,eAAe,EAAE;YACnB,EAAE,GAAG,YAAY,EAAE,GAAG,EAAE,CAAA;SACzB;QAED,4CAA4C;QAC5C,IAAI,KAAK,KAAK,QAAQ,EAAE;YACtB,OAAO,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAA;SACtB;QAED,kEAAkE;QAClE,IAAI,OAAO,CAAC,MAAM,IAAI,CAAC,QAAQ,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE;YAC3D,QAAQ,GAAG,OAAO,CAAC,WAAW,EAAE,KAAK,OAAO,CAAC,WAAW,EAAE,CAAA;SAC3D;QAED,2CAA2C;QAC3C,oDAAoD;QACpD,qCAAqC;QACrC,IAAI,CAAC,QAAQ,EAAE;YACb,OAAO,YAAY,CAAC,OAAO,CAAC,CAAA;SAC7B;QAED,MAAM,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QACvC,IAAI;YACF,MAAM,GAAG,GAAG,QAAQ;gBAClB,CAAC,CAAC;oBACE,KAAK,EAAE,OAAO;oBACd,IAAI,EAAE,EAAE;oBACR,IAAI,EAAE,QAAQ;iBACf;gBACH,CAAC,CAAC;oBACE,KAAK,EAAE,OAAO;oBACd,IAAI,EAAE,EAAE;iBACT,CAAA;YACL,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,MAAM,CAAC,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,KAAK,CAAC,EAAE,GAAG,CAAC,CAAA;YAC5D,qBAAqB;SACtB;QAAC,OAAO,EAAE,EAAE;YACX,uBAAuB;YACvB,+DAA+D;YAC/D,+DAA+D;YAC/D,kEAAkE;YAClE,iCAAiC;YACjC,IAAI,CAAC,KAAK,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAA;YAChC,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,CAAA;SACxB;QACD,oBAAoB;IACtB,CAAC;IAED,MAAM;QACJ,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,KAAK,KAAK;YAAE,OAAO,IAAI,CAAC,MAAM,CAAA;QAE5D,mDAAmD;QACnD,4BAA4B;QAC5B,EAAE;QACF,wDAAwD;QACxD,yDAAyD;QACzD,2CAA2C;QAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAA;QAEpB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;YACnB,OAAO,IAAI,CAAC,MAAM,CAAA;SACnB;QACD,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,MAAM,OAAO,GAAG,OAAO,CAAC,UAAU;YAChC,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,OAAO,CAAC,GAAG;gBACb,CAAC,CAAC,UAAU;gBACZ,CAAC,CAAC,YAAY,CAAA;QAChB,MAAM,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QAEvC,kCAAkC;QAClC,kDAAkD;QAClD,sEAAsE;QACtE,iDAAiD;QACjD,8DAA8D;QAC9D,mCAAmC;QACnC,IAAI,EAAE,GAAG,GAAG;aACT,GAAG,CAAC,OAAO,CAAC,EAAE;YACb,MAAM,EAAE,GAAiC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CACvD,OAAO,CAAC,KAAK,QAAQ;gBACnB,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC;gBACjB,CAAC,CAAC,CAAC,KAAK,QAAQ;oBAChB,CAAC,CAAC,QAAQ;oBACV,CAAC,CAAC,CAAC,CAAC,IAAI,CACqB,CAAA;YACjC,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;gBAClB,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;gBACtB,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;gBACtB,IAAI,CAAC,KAAK,QAAQ,IAAI,IAAI,KAAK,QAAQ,EAAE;oBACvC,OAAM;iBACP;gBACD,IAAI,IAAI,KAAK,SAAS,EAAE;oBACtB,IAAI,IAAI,KAAK,SAAS,IAAI,IAAI,KAAK,QAAQ,EAAE;wBAC3C,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,SAAS,GAAG,OAAO,GAAG,OAAO,GAAG,IAAI,CAAA;qBACjD;yBAAM;wBACL,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAA;qBAChB;iBACF;qBAAM,IAAI,IAAI,KAAK,SAAS,EAAE;oBAC7B,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,GAAG,OAAO,GAAG,IAAI,CAAA;iBAC9C;qBAAM,IAAI,IAAI,KAAK,QAAQ,EAAE;oBAC5B,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,GAAG,YAAY,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,CAAA;oBACzD,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,QAAQ,CAAA;iBACrB;YACH,CAAC,CAAC,CAAA;YACF,OAAO,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;QACjD,CAAC,CAAC;aACD,IAAI,CAAC,GAAG,CAAC,CAAA;QAEZ,4BAA4B;QAC5B,gDAAgD;QAChD,EAAE,GAAG,MAAM,GAAG,EAAE,GAAG,IAAI,CAAA;QAEvB,gDAAgD;QAChD,IAAI,IAAI,CAAC,MAAM;YAAE,EAAE,GAAG,MAAM,GAAG,EAAE,GAAG,MAAM,CAAA;QAE1C,IAAI;YACF,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,CAAA;YACnC,qBAAqB;SACtB;QAAC,OAAO,EAAE,EAAE;YACX,uBAAuB;YACvB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;SACpB;QACD,oBAAoB;QACpB,OAAO,IAAI,CAAC,MAAM,CAAA;IACpB,CAAC;IAED,UAAU,CAAC,CAAS;QAClB,mDAAmD;QACnD,6DAA6D;QAC7D,8CAA8C;QAC9C,0CAA0C;QAC1C,IAAI,IAAI,CAAC,uBAAuB,EAAE;YAChC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;SACpB;aAAM,IAAI,SAAS,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE;YAC7C,sCAAsC;YACtC,OAAO,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAA;SAC/B;aAAM;YACL,OAAO,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SACtB;IACH,CAAC;IAED,KAAK,CAAC,CAAS,EAAE,OAAO,GAAG,IAAI,CAAC,OAAO;QACrC,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,CAAA;QACpC,8CAA8C;QAC9C,iBAAiB;QACjB,IAAI,IAAI,CAAC,OAAO,EAAE;YAChB,OAAO,KAAK,CAAA;SACb;QACD,IAAI,IAAI,CAAC,KAAK,EAAE;YACd,OAAO,CAAC,KAAK,EAAE,CAAA;SAChB;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,EAAE;YACxB,OAAO,IAAI,CAAA;SACZ;QAED,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE5B,gCAAgC;QAChC,IAAI,IAAI,CAAC,GAAG,KAAK,GAAG,EAAE;YACpB,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SAChC;QAED,6CAA6C;QAC7C,MAAM,EAAE,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAA;QAC7B,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,EAAE,CAAC,CAAA;QAErC,0DAA0D;QAC1D,2DAA2D;QAC3D,mCAAmC;QACnC,uCAAuC;QAEvC,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAA;QACpB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,KAAK,EAAE,GAAG,CAAC,CAAA;QAEpC,0EAA0E;QAC1E,IAAI,QAAQ,GAAW,EAAE,CAAC,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;QACxC,IAAI,CAAC,QAAQ,EAAE;YACb,KAAK,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,QAAQ,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;gBACpD,QAAQ,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;aACjB;SACF;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACnC,MAAM,OAAO,GAAG,GAAG,CAAC,CAAC,CAAC,CAAA;YACtB,IAAI,IAAI,GAAG,EAAE,CAAA;YACb,IAAI,OAAO,CAAC,SAAS,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;gBAC7C,IAAI,GAAG,CAAC,QAAQ,CAAC,CAAA;aAClB;YACD,MAAM,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC,CAAA;YACjD,IAAI,GAAG,EAAE;gBACP,IAAI,OAAO,CAAC,UAAU,EAAE;oBACtB,OAAO,IAAI,CAAA;iBACZ;gBACD,OAAO,CAAC,IAAI,CAAC,MAAM,CAAA;aACpB;SACF;QAED,2DAA2D;QAC3D,8BAA8B;QAC9B,IAAI,OAAO,CAAC,UAAU,EAAE;YACtB,OAAO,KAAK,CAAA;SACb;QACD,OAAO,IAAI,CAAC,MAAM,CAAA;IACpB,CAAC;IAED,MAAM,CAAC,QAAQ,CAAC,GAAqB;QACnC,OAAO,SAAS,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,SAAS,CAAA;IAC1C,CAAC;CACF;AAED,SAAS,CAAC,SAAS,GAAG,SAAS,CAAA"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/minimatch/dist/mjs/parse.js b/deps/npm/node_modules/minimatch/dist/mjs/parse.js
    new file mode 100644
    index 00000000000000..70a26dee58f30b
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/mjs/parse.js
    @@ -0,0 +1,646 @@
    +// parse a single path portion
    +import { parseClass } from './brace-expressions';
    +const types = new Set(['!', '?', '+', '*', '@']);
    +const isExtglobType = (c) => types.has(c);
    +// characters that indicate a start of pattern needs the "no dots" bit
    +const addPatternStart = new Set(['[', '.']);
    +const justDots = new Set(['..', '.']);
    +const reSpecials = new Set('().*{}+?[]^$\\!');
    +const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
    +// any single thing other than /
    +// don't need to escape / when using new RegExp()
    +const qmark = '[^/]';
    +// * => any number of characters
    +const star = qmark + '*?';
    +export class AST {
    +    type;
    +    #root;
    +    #parts = [];
    +    #parent;
    +    #parentIndex;
    +    #negs;
    +    #filledNegs = false;
    +    #options;
    +    constructor(type, parent, options = {}) {
    +        this.type = type;
    +        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;
    +    }
    +    fillNegs() {
    +        if (this !== this.#root) {
    +            this.#root.fillNegs();
    +            return this;
    +        }
    +        if (this.#filledNegs)
    +            return this;
    +        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() : [this.type, ...this.#parts];
    +        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;
    +        return this.#parentIndex === 0;
    +    }
    +    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();
    +        return (this.#parentIndex === (this.#parent ? this.#parent.#parts.length : 0) - 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;
    +        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 (!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 (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 === ')') {
    +                part.push(acc);
    +                acc = '';
    +                ast.push(...parts, part);
    +                return i;
    +            }
    +            acc += c;
    +        }
    +        // if we got here, it was a malformed extglob! not an extglob, but
    +        // maybe something else in there.
    +        ast.type = null;
    +        ast.#parts = [str.substring(pos)];
    +        return i;
    +    }
    +    static fromGlob(pattern, options = {}) {
    +        const ast = new AST(null, undefined, options);
    +        AST.#parseAST(pattern, ast, 0, options);
    +        console.log('parsed', pattern, JSON.stringify(ast));
    +        return ast;
    +    }
    +    toRegExpSource() {
    +        if (this.#root === this)
    +            this.fillNegs();
    +        if (!this.type) {
    +            const src = this.#parts
    +                .map(p => {
    +                if (typeof p === 'string')
    +                    return AST.#parseGlob(p, this.#options);
    +                else
    +                    return p.toRegExpSource();
    +            })
    +                .join('');
    +            let start = '';
    +            if (this.isStart() && typeof this.#parts[0] === 'string') {
    +                // '.' and '..' cannot match unless the pattern is that exactly
    +                const dotTravAllowed = this.#parts.length === 1 && justDots.has(this.#parts[0]);
    +                if (dotTravAllowed) {
    +                    start = '(?:^|\\/)';
    +                }
    +                else {
    +                    const dotsAllowed = this.#options.dot ||
    +                        // no need to prevent dots if it can't match a dot, or if a sub-pattern
    +                        // will be preventing it anyway.
    +                        !addPatternStart.has(src.charAt(0));
    +                    start = dotsAllowed ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))' : '(?!\\.)';
    +                }
    +            }
    +            let end = '';
    +            if (this.isEnd() &&
    +                (this === this.#root ||
    +                    (this.#root.#filledNegs && this.#parent?.type === '!'))) {
    +                end = '(?:$|\\/)';
    +            }
    +            return start + src + end;
    +        }
    +        // some kind of extglob
    +        const start = this.type === '!' ? '(?:(?!(?:' : '(?:';
    +        const body = this.#parts
    +            .map(p => {
    +            /* c8 ignore start */
    +            if (typeof p === 'string') {
    +                throw new Error('string type in extglob ast??');
    +            }
    +            /* c8 ignore stop */
    +            return p.toRegExpSource();
    +        })
    +            .join('|');
    +        const close = this.type === '!'
    +            ? '))[^/]*?)'
    +            : this.type === '@'
    +                ? ')'
    +                : `)${this.type}`;
    +        return start + body + close;
    +    }
    +    static #parseGlob(glob, options) {
    +        let escaping = false;
    +        let re = '';
    +        let uflag = false;
    +        let hasMagic = 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 === '*') {
    +                re += star;
    +                hasMagic = true;
    +                continue;
    +            }
    +            if (c === '?') {
    +                re += qmark;
    +                hasMagic = true;
    +                continue;
    +            }
    +            re += regExpEscape(c);
    +        }
    +        return re;
    +    }
    +}
    +const pattern = 'a@(i|w!(x|y)z+(l|m)|j)';
    +const ast = AST.fromGlob(pattern).fillNegs();
    +console.log('negged', pattern, JSON.stringify(ast));
    +console.log('to re src', pattern, ast.toRegExpSource());
    +// // the type (exttype or null for strings), and array of children tokens
    +//
    +// // append everything after a negative extglob to each of the parts
    +// // of the negative extglob node.  So, eg, [a, [!, x, y], z]
    +//
    +// //
    +// //
    +// //
    +// //
    +//
    +// const globUnescape = (s: string) => s.replace(/\\(.)/g, '$1')
    +// const regExpEscape = (s: string) =>
    +//   s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
    +//
    +// // "abc" -> { a:true, b:true, c:true }
    +// const charSet = (s: string) =>
    +//   s.split('').reduce((set: { [k: string]: boolean }, c) => {
    +//     set[c] = true
    +//     return set
    +//   }, {})
    +//
    +// // characters that need to be escaped in RegExp.
    +// const reSpecials = charSet('().*{}+?[]^$\\!')
    +//
    +// // characters that indicate we have to add the pattern start
    +// const addPatternStartSet = charSet('[.(')
    +//
    +// // any single thing other than /
    +// // don't need to escape / when using new RegExp()
    +// const qmark = '[^/]'
    +//
    +// // * => any number of characters
    +// const star = qmark + '*?'
    +//
    +// // TODO: take an offset and length, so we can sub-parse the extglobs
    +// const parse = (
    +//   options: MinimatchOptions,
    +//   pattern: string,
    +//   debug: (...a: any[]) => void
    +// ): false | string => {
    +//   assertValidPattern(pattern)
    +//
    +//   if (pattern === '') return ''
    +//
    +//   let re = ''
    +//   let hasMagic = false
    +//   let escaping = false
    +//   // ? => one single character
    +//   let uflag = false
    +//
    +//   // . and .. never match anything that doesn't start with .,
    +//   // even when options.dot is set.  However, if the pattern
    +//   // starts with ., then traversal patterns can match.
    +//   let dotTravAllowed = pattern.charAt(0) === '.'
    +//   let dotFileAllowed = options.dot || dotTravAllowed
    +//   const patternStart = () =>
    +//     dotTravAllowed
    +//       ? ''
    +//       : dotFileAllowed
    +//       ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))'
    +//       : '(?!\\.)'
    +//   const subPatternStart = (p: string) =>
    +//     p.charAt(0) === '.'
    +//       ? ''
    +//       : options.dot
    +//       ? '(?!(?:^|\\/)\\.{1,2}(?:$|\\/))'
    +//       : '(?!\\.)'
    +//
    +//   const 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
    +//       }
    +//       debug('clearStateChar %j %j', stateChar, re)
    +//       stateChar = false
    +//     }
    +//   }
    +//
    +//   for (
    +//     let i = 0, c: string;
    +//     i < pattern.length && (c = pattern.charAt(i));
    +//     i++
    +//   ) {
    +//     debug('%s\t%s %s %j', pattern, i, re, c)
    +//
    +//     // skip over any that are escaped.
    +//     if (escaping) {
    +//       // completely not allowed, even escaped.
    +//       // should be impossible.
    +//       /* c8 ignore start */
    +//       if (c === '/') {
    +//         return false
    +//       }
    +//       /* c8 ignore stop */
    +//
    +//       if (reSpecials[c]) {
    +//         re += '\\'
    +//       }
    +//       re += c
    +//       escaping = false
    +//       continue
    +//     }
    +//
    +//     switch (c) {
    +//       // Should already be path-split by now.
    +//       /* c8 ignore start */
    +//       case '/': {
    +//         return false
    +//       }
    +//       /* c8 ignore stop */
    +//
    +//       case '\\':
    +//         clearStateChar()
    +//         escaping = true
    +//         continue
    +//
    +//       // the various stateChar values
    +//       // for the "extglob" stuff.
    +//       case '?':
    +//       case '*':
    +//       case '+':
    +//       case '@':
    +//       case '!':
    +//         debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c)
    +//
    +//         // 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.
    +//         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 (!stateChar) {
    +//           re += '\\('
    +//           continue
    +//         }
    +//
    +//         const plEntry: PatternListEntry = {
    +//           type: stateChar,
    +//           start: i - 1,
    +//           reStart: re.length,
    +//           open: plTypes[stateChar].open,
    +//           close: plTypes[stateChar].close,
    +//         }
    +//         debug(pattern, '\t', plEntry)
    +//         patternListStack.push(plEntry)
    +//         // negation is (?:(?!(?:js)(?:))[^/]*)
    +//         re += plEntry.open
    +//         // next entry starts with a dot maybe?
    +//         if (plEntry.start === 0 && plEntry.type !== '!') {
    +//           dotTravAllowed = true
    +//           re += subPatternStart(pattern.slice(i + 1))
    +//         }
    +//         debug('plType %j %j', stateChar, re)
    +//         stateChar = false
    +//         continue
    +//       }
    +//
    +//       case ')': {
    +//         const plEntry = patternListStack[patternListStack.length - 1]
    +//         if (!plEntry) {
    +//           re += '\\)'
    +//           continue
    +//         }
    +//         patternListStack.pop()
    +//
    +//         // closing an extglob
    +//         clearStateChar()
    +//         hasMagic = true
    +//         pl = plEntry
    +//         // negation is (?:(?!js)[^/]*)
    +//         // The others are (?:)
    +//         re += pl.close
    +//         if (pl.type === '!') {
    +//           negativeLists.push(Object.assign(pl, { reEnd: re.length }))
    +//         }
    +//         continue
    +//       }
    +//
    +//       case '|': {
    +//         const plEntry = patternListStack[patternListStack.length - 1]
    +//         if (!plEntry) {
    +//           re += '\\|'
    +//           continue
    +//         }
    +//
    +//         clearStateChar()
    +//         re += '|'
    +//         // next subpattern can start with a dot?
    +//         if (plEntry.start === 0 && plEntry.type !== '!') {
    +//           dotTravAllowed = true
    +//           re += subPatternStart(pattern.slice(i + 1))
    +//         }
    +//         continue
    +//       }
    +//
    +//       // these are mostly the same in regexp and glob
    +//       case '[':
    +//         // swallow any state-tracking char before the [
    +//         clearStateChar()
    +//         const [src, needUflag, consumed, magic] = parseClass(pattern, i)
    +//         if (consumed) {
    +//           re += src
    +//           uflag = uflag || needUflag
    +//           i += consumed - 1
    +//           hasMagic = hasMagic || magic
    +//         } else {
    +//           re += '\\['
    +//         }
    +//         continue
    +//
    +//       case ']':
    +//         re += '\\' + c
    +//         continue
    +//
    +//       default:
    +//         // swallow any state char that wasn't consumed
    +//         clearStateChar()
    +//
    +//         re += regExpEscape(c)
    +//         break
    +//     } // switch
    +//   } // for
    +//
    +//   // 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()) {
    +//     let tail: string
    +//     tail = re.slice(pl.reStart + pl.open.length)
    +//     debug(pattern, 'setting tail', re, pl)
    +//     // maybe some even number of \, then maybe 1 \, followed by a |
    +//     tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, (_, $1, $2) => {
    +//       if (!$2) {
    +//         // the | isn't already escaped, so escape it.
    +//         $2 = '\\'
    +//         // should already be done
    +//         /* c8 ignore start */
    +//       }
    +//       /* c8 ignore stop */
    +//
    +//       // 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 + '|'
    +//     })
    +//
    +//     debug('tail=%j\n   %s', tail, tail, pl, re)
    +//     const 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
    +//   const addPatternStart = addPatternStartSet[re.charAt(0)]
    +//
    +//   // 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 (let n = negativeLists.length - 1; n > -1; n--) {
    +//     const nl = negativeLists[n]
    +//
    +//     const nlBefore = re.slice(0, nl.reStart)
    +//     const nlFirst = re.slice(nl.reStart, nl.reEnd - 8)
    +//     let nlAfter = re.slice(nl.reEnd)
    +//     const nlLast = re.slice(nl.reEnd - 8, nl.reEnd) + 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.
    +//     const closeParensBefore = nlBefore.split(')').length
    +//     const openParensBefore = nlBefore.split('(').length - closeParensBefore
    +//     let cleanAfter = nlAfter
    +//     for (let i = 0; i < openParensBefore; i++) {
    +//       cleanAfter = cleanAfter.replace(/\)[+*?]?/, '')
    +//     }
    +//     nlAfter = cleanAfter
    +//
    +//     const dollar = nlAfter === '' ? '(?:$|\\/)' : ''
    +//
    +//     re = nlBefore + nlFirst + nlAfter + dollar + nlLast
    +//   }
    +//
    +//   // 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
    +//   }
    +//
    +//   // if it's nocase, and the lcase/uppercase don't match, it's magic
    +//   if (options.nocase && !hasMagic && !options.nocaseMagicOnly) {
    +//     hasMagic = pattern.toUpperCase() !== pattern.toLowerCase()
    +//   }
    +//
    +//   // 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(re)
    +//   }
    +//
    +//   return re
    +// }
    +//# sourceMappingURL=parse.js.map
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/minimatch/dist/mjs/unescape.js b/deps/npm/node_modules/minimatch/dist/mjs/unescape.js
    new file mode 100644
    index 00000000000000..0faf9a2b7306f7
    --- /dev/null
    +++ b/deps/npm/node_modules/minimatch/dist/mjs/unescape.js
    @@ -0,0 +1,20 @@
    +/**
    + * 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/minimatch/package.json b/deps/npm/node_modules/minimatch/package.json
    index 58f289adf75e76..95364b15482463 100644
    --- a/deps/npm/node_modules/minimatch/package.json
    +++ b/deps/npm/node_modules/minimatch/package.json
    @@ -2,7 +2,7 @@
       "author": "Isaac Z. Schlueter  (http://blog.izs.me)",
       "name": "minimatch",
       "description": "a glob matcher in javascript",
    -  "version": "6.2.0",
    +  "version": "7.4.3",
       "repository": {
         "type": "git",
         "url": "git://github.com/isaacs/minimatch.git"
    @@ -17,7 +17,7 @@
             "default": "./dist/mjs/index.js"
           },
           "require": {
    -        "types": "./dist/cjs/index-cjs.d.ts",
    +        "types": "./dist/cjs/index.d.ts",
             "default": "./dist/cjs/index-cjs.js"
           }
         }
    diff --git a/deps/npm/node_modules/minipass-collect/node_modules/minipass/index.d.ts b/deps/npm/node_modules/minipass-collect/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 65faf63686c213..00000000000000
    --- a/deps/npm/node_modules/minipass-collect/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,155 +0,0 @@
    -/// 
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  interface Pipe {
    -    src: Minipass
    -    dest: Writable
    -    opts: PipeOptions
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Not technically private or readonly, but not safe to mutate.
    -   */
    -  private readonly buffer: RType[]
    -  private readonly pipes: Minipass.Pipe[]
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Iterator
    -  [Symbol.asyncIterator](): AsyncIterator
    -}
    -
    -export = Minipass
    diff --git a/deps/npm/node_modules/minipass-flush/node_modules/minipass/index.d.ts b/deps/npm/node_modules/minipass-flush/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 65faf63686c213..00000000000000
    --- a/deps/npm/node_modules/minipass-flush/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,155 +0,0 @@
    -/// 
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  interface Pipe {
    -    src: Minipass
    -    dest: Writable
    -    opts: PipeOptions
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Not technically private or readonly, but not safe to mutate.
    -   */
    -  private readonly buffer: RType[]
    -  private readonly pipes: Minipass.Pipe[]
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Iterator
    -  [Symbol.asyncIterator](): AsyncIterator
    -}
    -
    -export = Minipass
    diff --git a/deps/npm/node_modules/minipass-json-stream/node_modules/minipass/index.d.ts b/deps/npm/node_modules/minipass-json-stream/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 65faf63686c213..00000000000000
    --- a/deps/npm/node_modules/minipass-json-stream/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,155 +0,0 @@
    -/// 
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  interface Pipe {
    -    src: Minipass
    -    dest: Writable
    -    opts: PipeOptions
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Not technically private or readonly, but not safe to mutate.
    -   */
    -  private readonly buffer: RType[]
    -  private readonly pipes: Minipass.Pipe[]
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Iterator
    -  [Symbol.asyncIterator](): AsyncIterator
    -}
    -
    -export = Minipass
    diff --git a/deps/npm/node_modules/minipass-pipeline/node_modules/minipass/index.d.ts b/deps/npm/node_modules/minipass-pipeline/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 65faf63686c213..00000000000000
    --- a/deps/npm/node_modules/minipass-pipeline/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,155 +0,0 @@
    -/// 
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  interface Pipe {
    -    src: Minipass
    -    dest: Writable
    -    opts: PipeOptions
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Not technically private or readonly, but not safe to mutate.
    -   */
    -  private readonly buffer: RType[]
    -  private readonly pipes: Minipass.Pipe[]
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Iterator
    -  [Symbol.asyncIterator](): AsyncIterator
    -}
    -
    -export = Minipass
    diff --git a/deps/npm/node_modules/minipass-sized/node_modules/minipass/index.d.ts b/deps/npm/node_modules/minipass-sized/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 65faf63686c213..00000000000000
    --- a/deps/npm/node_modules/minipass-sized/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,155 +0,0 @@
    -/// 
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  interface Pipe {
    -    src: Minipass
    -    dest: Writable
    -    opts: PipeOptions
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Not technically private or readonly, but not safe to mutate.
    -   */
    -  private readonly buffer: RType[]
    -  private readonly pipes: Minipass.Pipe[]
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Iterator
    -  [Symbol.asyncIterator](): AsyncIterator
    -}
    -
    -export = Minipass
    diff --git a/deps/npm/node_modules/minipass/index.d.ts b/deps/npm/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 93a06eb357109b..00000000000000
    --- a/deps/npm/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,147 +0,0 @@
    -/// 
    -
    -// Note: marking anything protected or private in the exported
    -// class will limit Minipass's ability to be used as the base
    -// for mixin classes.
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Generator
    -  [Symbol.asyncIterator](): AsyncGenerator
    -}
    -
    -export = Minipass
    diff --git a/deps/npm/node_modules/minipass/index.js b/deps/npm/node_modules/minipass/index.js
    index 5d45de8d39f76e..5e192c2824586c 100644
    --- a/deps/npm/node_modules/minipass/index.js
    +++ b/deps/npm/node_modules/minipass/index.js
    @@ -8,7 +8,8 @@ const proc =
           }
     const EE = require('events')
     const Stream = require('stream')
    -const SD = require('string_decoder').StringDecoder
    +const stringdecoder = require('string_decoder')
    +const SD = stringdecoder.StringDecoder
     
     const EOF = Symbol('EOF')
     const MAYBE_EMIT_END = Symbol('maybeEmitEnd')
    @@ -38,6 +39,9 @@ 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)
     
    @@ -93,7 +97,7 @@ class PipeProxyErrors extends Pipe {
       }
     }
     
    -module.exports = class Minipass extends Stream {
    +class Minipass extends Stream {
       constructor(options) {
         super()
         this[FLOWING] = false
    @@ -122,6 +126,14 @@ module.exports = class Minipass extends Stream {
         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() {
    @@ -168,7 +180,20 @@ module.exports = class Minipass extends Stream {
         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]) {
    @@ -342,21 +367,20 @@ module.exports = class Minipass extends Stream {
       }
     
       [BUFFERSHIFT]() {
    -    if (this[BUFFER].length) {
    -      if (this[OBJECTMODE]) this[BUFFERLENGTH] -= 1
    -      else this[BUFFERLENGTH] -= this[BUFFER][0].length
    -    }
    +    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]()))
    +    do {} while (this[FLUSHCHUNK](this[BUFFERSHIFT]()) && this[BUFFER].length)
     
         if (!noDrain && !this[BUFFER].length && !this[EOF]) this.emit('drain')
       }
     
       [FLUSHCHUNK](chunk) {
    -    return chunk ? (this.emit('data', chunk), this.flowing) : false
    +    this.emit('data', chunk)
    +    return this.flowing
       }
     
       pipe(dest, opts) {
    @@ -437,7 +461,7 @@ module.exports = class Minipass extends Stream {
         if (ev !== 'error' && ev !== 'close' && ev !== DESTROYED && this[DESTROYED])
           return
         else if (ev === 'data') {
    -      return !data
    +      return !this[OBJECTMODE] && !data
             ? false
             : this[ASYNC]
             ? defer(() => this[EMITDATA](data))
    @@ -454,7 +478,10 @@ module.exports = class Minipass extends Stream {
         } else if (ev === 'error') {
           this[EMITTED_ERROR] = data
           super.emit(ERROR, data)
    -      const ret = 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') {
    @@ -566,18 +593,21 @@ module.exports = class Minipass extends Stream {
           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 })
           }
    @@ -608,6 +638,7 @@ module.exports = class Minipass extends Stream {
         const stop = () => {
           this.pause()
           this.removeListener(ERROR, stop)
    +      this.removeListener(DESTROYED, stop)
           this.removeListener('end', stop)
           stopped = true
           return { done: true }
    @@ -620,6 +651,7 @@ module.exports = class Minipass extends Stream {
         }
         this.once('end', stop)
         this.once(ERROR, stop)
    +    this.once(DESTROYED, stop)
     
         return {
           next,
    @@ -659,8 +691,12 @@ module.exports = class Minipass extends Stream {
           (s instanceof Minipass ||
             s instanceof Stream ||
             (s instanceof EE &&
    -          (typeof s.pipe === 'function' || // readable
    -            (typeof s.write === 'function' && typeof s.end === 'function')))) // writable
    +          // readable
    +          (typeof s.pipe === 'function' ||
    +            // writable
    +            (typeof s.write === 'function' && typeof s.end === 'function'))))
         )
       }
     }
    +
    +module.exports = Minipass
    diff --git a/deps/npm/node_modules/minipass/index.mjs b/deps/npm/node_modules/minipass/index.mjs
    new file mode 100644
    index 00000000000000..d5c58fc9814c00
    --- /dev/null
    +++ b/deps/npm/node_modules/minipass/index.mjs
    @@ -0,0 +1,702 @@
    +'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)
    +  }
    +}
    +
    +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'))))
    +    )
    +  }
    +}
    +
    +export default Minipass
    diff --git a/deps/npm/node_modules/minipass/package.json b/deps/npm/node_modules/minipass/package.json
    index 43051ad5b6c831..1286b88ed5d8fc 100644
    --- a/deps/npm/node_modules/minipass/package.json
    +++ b/deps/npm/node_modules/minipass/package.json
    @@ -1,12 +1,27 @@
     {
       "name": "minipass",
    -  "version": "4.0.3",
    +  "version": "4.2.5",
       "description": "minimal implementation of a PassThrough stream",
    -  "main": "index.js",
    -  "types": "index.d.ts",
    +  "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",
    @@ -15,6 +30,10 @@
         "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",
    @@ -34,7 +53,8 @@
       "license": "ISC",
       "files": [
         "index.d.ts",
    -    "index.js"
    +    "index.js",
    +    "index.mjs"
       ],
       "tap": {
         "check-coverage": true
    diff --git a/deps/npm/node_modules/minizlib/node_modules/minipass/index.d.ts b/deps/npm/node_modules/minizlib/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 65faf63686c213..00000000000000
    --- a/deps/npm/node_modules/minizlib/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,155 +0,0 @@
    -/// 
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  interface Pipe {
    -    src: Minipass
    -    dest: Writable
    -    opts: PipeOptions
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Not technically private or readonly, but not safe to mutate.
    -   */
    -  private readonly buffer: RType[]
    -  private readonly pipes: Minipass.Pipe[]
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Iterator
    -  [Symbol.asyncIterator](): AsyncIterator
    -}
    -
    -export = Minipass
    diff --git a/deps/npm/node_modules/node-gyp/node_modules/minipass/index.d.ts b/deps/npm/node_modules/node-gyp/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 65faf63686c213..00000000000000
    --- a/deps/npm/node_modules/node-gyp/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,155 +0,0 @@
    -/// 
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  interface Pipe {
    -    src: Minipass
    -    dest: Writable
    -    opts: PipeOptions
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Not technically private or readonly, but not safe to mutate.
    -   */
    -  private readonly buffer: RType[]
    -  private readonly pipes: Minipass.Pipe[]
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Iterator
    -  [Symbol.asyncIterator](): AsyncIterator
    -}
    -
    -export = Minipass
    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
    index 67525192250f6d..19abfa604d5ef7 100644
    --- 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
    @@ -18,60 +18,48 @@
     // 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);
    -  }
    -
    +  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
    @@ -98,20 +86,20 @@ Object.defineProperty(Duplex.prototype, 'writableLength', {
       get: function get() {
         return this._writableState.length;
       }
    -}); // the no-half-open enforcer
    +});
     
    +// 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.
    +  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
    @@ -121,7 +109,6 @@ Object.defineProperty(Duplex.prototype, 'destroyed', {
         if (this._readableState === undefined || this._writableState === undefined) {
           return false;
         }
    -
         return this._readableState.destroyed && this._writableState.destroyed;
       },
       set: function set(value) {
    @@ -129,10 +116,10 @@ Object.defineProperty(Duplex.prototype, 'destroyed', {
         // has not been initialized yet
         if (this._readableState === undefined || this._writableState === undefined) {
           return;
    -    } // backward compatibility, the user is explicitly
    -    // managing destroyed
    -
    +    }
     
    +    // backward compatibility, the user is explicitly
    +    // managing destroyed
         this._readableState.destroyed = value;
         this._writableState.destroyed = value;
       }
    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
    index 32e7414c5a8271..24a6bdde2903fa 100644
    --- 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
    @@ -18,22 +18,20 @@
     // 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
    index 192d451488f208..df1f608d532606 100644
    --- 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
    @@ -18,49 +18,40 @@
     // 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 = global.Uint8Array || function () {};
    -
    +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 {
    @@ -68,60 +59,57 @@ if (debugUtil && debugUtil.debuglog) {
     }
     /**/
     
    -
     var BufferList = require('./internal/streams/buffer_list');
    -
     var destroyImpl = require('./internal/streams/destroy');
    -
     var _require = require('./internal/streams/state'),
    -    getHighWaterMark = _require.getHighWaterMark;
    -
    +  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.
    -
    +  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
    +  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
    +  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;
     
    -  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex; // object stream flag. Used to make read(n) ignore n and to
    +  // 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
    +  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);
     
    -  this.highWaterMark = getHighWaterMark(this, options, 'readableHighWaterMark', isDuplex); // A linked list is used to store data chunks instead of an array because the
    +  // 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;
    @@ -129,61 +117,66 @@ function ReadableState(options, stream, isDuplex) {
       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
    +  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;
     
    -  this.sync = true; // whenever we return null, then we set a flag to say
    +  // 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.paused = true;
     
    -  this.emitClose = options.emitClose !== false; // Should .destroy() be called after 'end' (and potentially 'finish')
    +  // Should close be emitted on destroy. Defaults to true.
    +  this.emitClose = options.emitClose !== false;
     
    -  this.autoDestroy = !!options.autoDestroy; // has it been destroyed
    +  // Should .destroy() be called after 'end' (and potentially 'finish')
    +  this.autoDestroy = !!options.autoDestroy;
     
    -  this.destroyed = false; // Crypto is kind of old and crusty.  Historically, its default string
    +  // 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';
     
    -  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
    +  // 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
    +  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._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
    @@ -193,7 +186,6 @@ Object.defineProperty(Readable.prototype, 'destroyed', {
         if (this._readableState === undefined) {
           return false;
         }
    -
         return this._readableState.destroyed;
       },
       set: function set(value) {
    @@ -201,69 +193,60 @@ Object.defineProperty(Readable.prototype, 'destroyed', {
         // has not been initialized yet
         if (!this._readableState) {
           return;
    -    } // backward compatibility, the user is explicitly
    -    // managing destroyed
    -
    +    }
     
    +    // 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.
    +};
    +
    +// 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()
    -
    +};
     
    +// 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) {
    @@ -272,7 +255,6 @@ function readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) {
             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);
    @@ -284,14 +266,13 @@ function readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) {
           state.reading = false;
           maybeReadMore(stream, state);
         }
    -  } // We can push more data if we are below the highWaterMark.
    +  }
    +
    +  // 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;
    @@ -302,50 +283,42 @@ function addChunk(stream, state, chunk, addToFront) {
         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.
    -
    +};
     
    +// 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:
    +  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
    -
    +};
     
    +// 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.
    @@ -361,55 +334,54 @@ function computeNewHighWaterMark(n) {
         n |= n >>> 16;
         n++;
       }
    -
       return n;
    -} // This function is designed to be inlinable, so please take care when making
    -// changes to the function body.
    -
    +}
     
    +// 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 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 (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.
    -
    +}
     
    +// 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
    +  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);
     
    -  n = howMuchToRead(n, state); // if we've ended, and we're now clear, then finish it up.
    -
    +  // 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
    +  }
    +
    +  // 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
    @@ -430,40 +402,37 @@ Readable.prototype.read = function (n) {
       // '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.
    -
     
    +  // 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
    +  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.
    -
    +  }
     
    +  // 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
    -
    +    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,
    +    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;
    @@ -471,34 +440,28 @@ Readable.prototype.read = function (n) {
         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 (!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()
    @@ -507,61 +470,56 @@ function onEofChunk(stream, state) {
       } 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
    +}
    +
    +// 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
    +  }
    +
    +  // 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,
    +}
    +
    +// 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.
       //
    @@ -590,49 +548,42 @@ function maybeReadMore_(stream, state) {
         var len = state.length;
         debug('maybeReadMore read 0');
         stream.read(0);
    -    if (len === state.length) // didn't get any data, stop spinning.
    +    if (len === state.length)
    +      // didn't get any data, stop spinning.
           break;
       }
    -
       state.readingMore = false;
    -} // abstract method.  to be overridden in specific implementation classes.
    +}
    +
    +// 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;
    @@ -640,23 +591,21 @@ Readable.prototype.pipe = function (dest, pipeOpts) {
           }
         }
       }
    -
       function onend() {
         debug('onend');
         dest.end();
    -  } // when the dest drains, it reduces the awaitDrain counter
    +  }
    +
    +  // 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
    -
    +    debug('cleanup');
    +    // cleanup event handlers once the pipe is broken
         dest.removeListener('close', onclose);
         dest.removeListener('finish', onfinish);
         dest.removeListener('drain', ondrain);
    @@ -665,22 +614,20 @@ Readable.prototype.pipe = function (dest, pipeOpts) {
         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
    +    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
    @@ -690,87 +637,84 @@ Readable.prototype.pipe = function (dest, pipeOpts) {
             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.
    -
    +  }
     
    +  // 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.
    +  // 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.
    +  // 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 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.
    +    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.
    +  }
     
    +  // slow case. multiple pipe destinations.
     
       if (!dest) {
         // remove all.
    @@ -779,17 +723,13 @@ Readable.prototype.unpipe = function (dest) {
         state.pipes = null;
         state.pipesCount = 0;
         state.flowing = false;
    -
    -    for (var i = 0; i < len; i++) {
    -      dests[i].emit('unpipe', this, {
    -        hasUnpiped: false
    -      });
    -    }
    -
    +    for (var i = 0; i < len; i++) dests[i].emit('unpipe', this, {
    +      hasUnpiped: false
    +    });
         return this;
    -  } // try to find the right one.
    -
    +  }
     
    +  // try to find the right one.
       var index = indexOf(state.pipes, dest);
       if (index === -1) return this;
       state.pipes.splice(index, 1);
    @@ -797,19 +737,19 @@ Readable.prototype.unpipe = function (dest) {
       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
    -
    +};
     
    +// 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
    +    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) {
    @@ -817,7 +757,6 @@ Readable.prototype.on = function (ev, fn) {
           state.flowing = false;
           state.emittedReadable = false;
           debug('on readable', state.length, state.reading);
    -
           if (state.length) {
             emitReadable(this);
           } else if (!state.reading) {
    @@ -825,15 +764,11 @@ Readable.prototype.on = function (ev, fn) {
           }
         }
       }
    -
       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
    @@ -843,13 +778,10 @@ Readable.prototype.removeListener = function (ev, fn) {
         // 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
    @@ -859,121 +791,103 @@ Readable.prototype.removeAllListeners = function (ev) {
         // 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
    +    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.
    -
    +}
     
    +// 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
    +    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);
    +}
     
    -  while (state.flowing && stream.read() !== null) {
    -    ;
    -  }
    -} // wrap an old-style stream as the async data source.
    +// 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.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.
    +  });
     
    +  // 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) {
    @@ -982,37 +896,32 @@ Readable.prototype.wrap = function (stream) {
             };
           }(i);
         }
    -  } // proxy certain important events.
    -
    +  }
     
    +  // 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.
    -
    +  }
     
    +  // 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
    @@ -1044,8 +953,9 @@ Object.defineProperty(Readable.prototype, 'readableFlowing', {
           this._readableState.flowing = state;
         }
       }
    -}); // exposed for testing purposes only.
    +});
     
    +// exposed for testing purposes only.
     Readable._fromList = fromList;
     Object.defineProperty(Readable.prototype, 'readableLength', {
       // making it explicit this property is not enumerable
    @@ -1055,11 +965,12 @@ Object.defineProperty(Readable.prototype, 'readableLength', {
       get: function get() {
         return this._readableState.length;
       }
    -}); // Pluck off n bytes from an array of buffers.
    +});
    +
    +// 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;
    @@ -1074,51 +985,43 @@ function fromList(n, state) {
       }
       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.
    +  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
    index 41a738c4e93599..1ccb7157be8b8c 100644
    --- 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
    @@ -18,6 +18,7 @@
     // 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
    @@ -59,42 +60,36 @@
     // 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;
    -
    +  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`
    +  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);
    @@ -105,26 +100,25 @@ function Transform(options) {
         writecb: null,
         writechunk: null,
         writeencoding: null
    -  }; // start out asking for a readable event once data is transformed.
    +  };
    +
    +  // start out asking for a readable event once data is transformed.
    +  this._readableState.needReadable = true;
     
    -  this._readableState.needReadable = true; // we have implemented the _read method, and done the other things
    +  // 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.
    -
    +  }
     
    +  // 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);
    @@ -133,11 +127,12 @@ function prefinish() {
         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!
    +};
    +
    +// This is the part where you do stuff!
     // override this function in implementation classes.
     // 'chunk' is an input chunk.
     //
    @@ -147,33 +142,27 @@ Transform.prototype.push = function (chunk, encoding) {
     // 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.
    +};
    +
    +// 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
    @@ -181,20 +170,20 @@ Transform.prototype._read = function (n) {
         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 (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);
    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
    index a2634d7c24fd5e..292415e23a192b 100644
    --- 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
    @@ -18,29 +18,29 @@
     // 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
    -
    +}
     
    +// 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);
       };
    @@ -48,155 +48,159 @@ function CorkedRequest(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 = global.Uint8Array || function () {};
    -
    +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;
    -
    +  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;
    -
    +  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
    +  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;
     
    -  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex; // object stream flag to indicate whether or not this stream
    +  // 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
    +  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);
     
    -  this.highWaterMark = getHighWaterMark(this, options, 'writableHighWaterMark', isDuplex); // if _final has been called
    +  // if _final has been called
    +  this.finalCalled = false;
     
    -  this.finalCalled = false; // drain event flag.
    +  // 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;
     
    -  this.needDrain = false; // at the start of calling end()
    +  // has it been destroyed
    +  this.destroyed = false;
     
    -  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?
    +  // 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
    +  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';
     
    -  this.defaultEncoding = options.defaultEncoding || 'utf8'; // not an actual buffer we keep track of, but a measurement
    +  // 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;
     
    -  this.length = 0; // a flag to see when we're in the middle of a write.
    +  // a flag to see when we're in the middle of a write.
    +  this.writing = false;
     
    -  this.writing = false; // when true all writes will be buffered until .uncork() call
    +  // when true all writes will be buffered until .uncork() call
    +  this.corked = 0;
     
    -  this.corked = 0; // a flag to be able to tell if the onwrite cb is called immediately,
    +  // 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;
     
    -  this.sync = true; // a flag to know if we're processing previously buffered items, which
    +  // 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;
     
    -  this.bufferProcessing = false; // the callback that's passed to _write(chunk,cb)
    -
    +  // 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.
    +  // 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.lastBufferedRequest = null;
    +
    +  // number of pending user-supplied write callbacks
       // this must be 0 before 'finish' can be emitted
    +  this.pendingcb = 0;
     
    -  this.pendingcb = 0; // emit prefinish if the only thing we're waiting for is _write cbs
    +  // emit prefinish if the only thing we're waiting for is _write cbs
       // This is relevant for synchronous Transform streams
    +  this.prefinished = false;
     
    -  this.prefinished = false; // True if the error was already emitted and should not be thrown again
    +  // True if the error was already emitted and should not be thrown again
    +  this.errorEmitted = false;
     
    -  this.errorEmitted = false; // Should close be emitted on destroy. Defaults to true.
    +  // Should close be emitted on destroy. Defaults to true.
    +  this.emitClose = options.emitClose !== false;
     
    -  this.emitClose = options.emitClose !== false; // Should .destroy() be called after 'finish' (and potentially 'end')
    +  // Should .destroy() be called after 'finish' (and potentially 'end')
    +  this.autoDestroy = !!options.autoDestroy;
     
    -  this.autoDestroy = !!options.autoDestroy; // count buffered requests
    +  // count buffered requests
    +  this.bufferedRequestCount = 0;
     
    -  this.bufferedRequestCount = 0; // allocate the first CorkedRequest, there is always
    +  // 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', {
    @@ -205,12 +209,11 @@ WritableState.prototype.getBuffer = function 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.
    -
    +})();
     
    +// 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, {
    @@ -225,81 +228,73 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot
         return object instanceof this;
       };
     }
    -
     function Writable(options) {
    -  Duplex = Duplex || require('./_stream_duplex'); // Writable ctor is applied to Duplexes, too.
    +  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._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.
    -
    +}
     
    +// 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
    -
    +  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
    +}
    +
    +// 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)) {
    @@ -308,20 +303,16 @@ Writable.prototype.write = function (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();
    @@ -329,7 +320,6 @@ Writable.prototype.setDefaultEncoding = function setDefaultEncoding(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
    @@ -339,15 +329,12 @@ Object.defineProperty(Writable.prototype, 'writableBuffer', {
         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
    @@ -356,27 +343,25 @@ Object.defineProperty(Writable.prototype, 'writableHighWaterMark', {
       get: function get() {
         return this._writableState.highWaterMark;
       }
    -}); // if we're already writing something, then just put this
    +});
    +
    +// 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.
    -
    +  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 = {
    @@ -386,21 +371,17 @@ function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) {
           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;
    @@ -409,16 +390,14 @@ function doWrite(stream, state, writev, len, chunk, encoding, cb) {
       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
    +    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);
    @@ -427,20 +406,18 @@ function onwriteError(stream, state, sync, er, cb) {
         // it is async
         cb(er);
         stream._writableState.errorEmitted = true;
    -    errorOrDestroy(stream, er); // this can emit finish, but finish must
    +    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;
    @@ -450,11 +427,9 @@ function onwrite(stream, er) {
       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 {
    @@ -462,29 +437,27 @@ function onwrite(stream, er) {
         }
       }
     }
    -
     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
    +}
    +
    +// 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
    -
    +}
     
    +// 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;
    @@ -493,28 +466,25 @@ function clearBuffer(stream, state) {
         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
    +    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
    @@ -525,32 +495,26 @@ function clearBuffer(stream, state) {
           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
    +      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;
    @@ -559,19 +523,18 @@ Writable.prototype.end = function (chunk, encoding, cb) {
         cb = encoding;
         encoding = null;
       }
    +  if (chunk !== null && chunk !== undefined) this.write(chunk, encoding);
     
    -  if (chunk !== null && chunk !== undefined) this.write(chunk, encoding); // .end() fully uncorks
    -
    +  // .end() fully uncorks
       if (state.corked) {
         state.corked = 1;
         this.uncork();
    -  } // ignore unnecessary end() calls.
    -
    +  }
     
    +  // 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
    @@ -581,25 +544,20 @@ Object.defineProperty(Writable.prototype, 'writableLength', {
         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) {
    @@ -612,59 +570,47 @@ function prefinish(stream, state) {
         }
       }
     }
    -
     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.
    -
    +  }
     
    +  // 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
    @@ -674,7 +620,6 @@ Object.defineProperty(Writable.prototype, 'destroyed', {
         if (this._writableState === undefined) {
           return false;
         }
    -
         return this._writableState.destroyed;
       },
       set: function set(value) {
    @@ -682,16 +627,15 @@ Object.defineProperty(Writable.prototype, 'destroyed', {
         // has not been initialized yet
         if (!this._writableState) {
           return;
    -    } // backward compatibility, the user is explicitly
    -    // managing destroyed
    -
    +    }
     
    +    // 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
    index 9fb615a2f3bc44..742c5a4674794d 100644
    --- 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
    @@ -1,11 +1,10 @@
     'use strict';
     
     var _Object$setPrototypeO;
    -
    -function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
    -
    +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');
    @@ -13,22 +12,19 @@ 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
    +    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;
    @@ -37,13 +33,11 @@ function readAndResolve(iter) {
         }
       }
     }
    -
     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 () {
    @@ -51,33 +45,26 @@ function wrapForNext(lastPromise, iter) {
             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
    @@ -92,29 +79,25 @@ var ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf((_Object$setPro
               }
             });
           });
    -    } // if we have multiple next() calls
    +    }
    +
    +    // 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;
       }
    @@ -122,7 +105,6 @@ var ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf((_Object$setPro
       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
    @@ -132,15 +114,12 @@ var ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf((_Object$setPro
             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
    @@ -159,7 +138,6 @@ var createReadableStreamAsyncIterator = function createReadableStreamAsyncIterat
       }), _defineProperty(_Object$create, kHandlePromise, {
         value: function value(resolve, reject) {
           var data = iterator[kStream].read();
    -
           if (data) {
             iterator[kLastPromise] = null;
             iterator[kLastResolve] = null;
    @@ -175,33 +153,28 @@ var createReadableStreamAsyncIterator = function createReadableStreamAsyncIterat
       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
    +      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
    index cdea425f19dd96..69bda497d35f34 100644
    --- 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
    @@ -1,40 +1,28 @@
     'use strict';
     
    -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (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 = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
    -
    -function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
    -
    +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, descriptor.key, descriptor); } }
    -
    -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
    -
    +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _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;
    -
    +  Buffer = _require.Buffer;
     var _require2 = require('util'),
    -    inspect = _require2.inspect;
    -
    +  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 () {
    +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) {
    @@ -78,11 +66,7 @@ function () {
           if (this.length === 0) return '';
           var p = this.head;
           var ret = '' + p.data;
    -
    -      while (p = p.next) {
    -        ret += s + p.data;
    -      }
    -
    +      while (p = p.next) ret += s + p.data;
           return ret;
         }
       }, {
    @@ -92,21 +76,19 @@ function () {
           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.
    +    }
     
    +    // 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);
    @@ -118,15 +100,15 @@ function () {
             // 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.
    +    }
     
    +    // Consumes a specified amount of characters from the buffered data.
       }, {
         key: "_getString",
         value: function _getString(n) {
    @@ -134,13 +116,11 @@ function () {
           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;
    @@ -149,17 +129,15 @@ function () {
                 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.
    +    }
     
    +    // Consumes a specified amount of bytes from the buffered data.
       }, {
         key: "_getBuffer",
         value: function _getBuffer(n) {
    @@ -168,13 +146,11 @@ function () {
           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;
    @@ -183,21 +159,19 @@ function () {
                 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.
    +    }
     
    +    // Make sure the linked list only shows the minimal necessary information.
       }, {
         key: custom,
         value: function value(_, options) {
    -      return inspect(this, _objectSpread({}, options, {
    +      return inspect(this, _objectSpread(_objectSpread({}, options), {}, {
             // Only inspect one level.
             depth: 0,
             // It should not recurse.
    @@ -205,6 +179,5 @@ function () {
           }));
         }
       }]);
    -
       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
    index 3268a16f3b6f23..31a17c4dc46388 100644
    --- 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
    @@ -1,11 +1,10 @@
    -'use strict'; // undocumented cb() API, needed for core, not for public API
    +'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);
    @@ -17,21 +16,20 @@ function destroy(err, cb) {
             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
    +  }
     
    +  // 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 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) {
    @@ -49,21 +47,17 @@ function destroy(err, cb) {
           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;
    @@ -71,7 +65,6 @@ function undestroy() {
         this._readableState.ended = false;
         this._readableState.endEmitted = false;
       }
    -
       if (this._writableState) {
         this._writableState.destroyed = false;
         this._writableState.ended = false;
    @@ -82,22 +75,20 @@ function undestroy() {
         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,
    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
    index 831f286d98fa95..59c671b5af769b 100644
    --- 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
    @@ -1,78 +1,62 @@
     // 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);
    @@ -82,7 +66,6 @@ function eos(stream, opts, callback) {
         stream.on('end', onlegacyfinish);
         stream.on('close', onlegacyfinish);
       }
    -
       stream.on('end', onend);
       stream.on('finish', onfinish);
       if (opts.error !== false) stream.on('error', onerror);
    @@ -100,5 +83,4 @@ function eos(stream, opts, callback) {
         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.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/from.js
    index 6c41284416799c..0a34ee92e3df85 100644
    --- 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
    @@ -1,52 +1,42 @@
     '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); if (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 = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
    -
    -function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
    -
    +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
    +  }, 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 _ref = yield iterator.next(),
    -            value = _ref.value,
    -            done = _ref.done;
    -
    +        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))) {
    +        } else if (readable.push(yield value)) {
               next();
             } else {
               reading = false;
    @@ -57,8 +47,6 @@ function from(Readable, iterable, opts) {
         });
         return _next2.apply(this, arguments);
       }
    -
       return readable;
     }
    -
    -module.exports = from;
    \ No newline at end of file
    +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
    index 6589909889c585..e6f39241f98dd8 100644
    --- 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
    @@ -1,9 +1,9 @@
     // 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 () {
    @@ -12,20 +12,16 @@ function once(callback) {
         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;
    -
    +  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;
    @@ -45,40 +41,34 @@ function destroyer(stream, reading, writing, callback) {
       return function (err) {
         if (closed) return;
         if (destroyed) return;
    -    destroyed = true; // request.destroy just do .end - .abort is what we want
    +    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;
    @@ -93,5 +83,4 @@ function pipeline() {
       });
       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
    index 19887eb8a9070e..3fbf8927e00179 100644
    --- 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
    @@ -1,27 +1,22 @@
     '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
    -
    +  }
     
    +  // 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/package.json b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/package.json
    index 0b0c4bd207ace3..ade59e71aa0f17 100644
    --- 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
    @@ -1,6 +1,6 @@
     {
       "name": "readable-stream",
    -  "version": "3.6.0",
    +  "version": "3.6.2",
       "description": "Streams3, a user-land copy of the stream library from Node.js",
       "main": "readable.js",
       "engines": {
    diff --git a/deps/npm/node_modules/nopt/lib/debug.js b/deps/npm/node_modules/nopt/lib/debug.js
    new file mode 100644
    index 00000000000000..194d0c68818829
    --- /dev/null
    +++ b/deps/npm/node_modules/nopt/lib/debug.js
    @@ -0,0 +1,6 @@
    +/* istanbul ignore next */
    +module.exports = process.env.DEBUG_NOPT || process.env.NOPT_DEBUG
    +  ? function () {
    +    console.error.apply(console, arguments)
    +  }
    +  : function () {}
    diff --git a/deps/npm/node_modules/nopt/lib/nopt-lib.js b/deps/npm/node_modules/nopt/lib/nopt-lib.js
    new file mode 100644
    index 00000000000000..89d269fb43f1a1
    --- /dev/null
    +++ b/deps/npm/node_modules/nopt/lib/nopt-lib.js
    @@ -0,0 +1,428 @@
    +var abbrev = require('abbrev')
    +const debug = require('./debug')
    +const defaultTypeDefs = require('./type-defs')
    +
    +function nopt (args, { types, shorthands, typeDefs, invalidHandler }) {
    +  debug(types, shorthands, args, typeDefs)
    +
    +  var data = {}
    +  var argv = {
    +    remain: [],
    +    cooked: args,
    +    original: args.slice(0),
    +  }
    +
    +  parse(args, data, argv.remain, { typeDefs, types, shorthands })
    +
    +  // now data is full
    +  clean(data, { types, typeDefs, invalidHandler })
    +  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, invalidHandler }) {
    +  const StringType = typeDefs.String.type
    +  const NumberType = typeDefs.Number.type
    +  const ArrayType = typeDefs.Array.type
    +  const BooleanType = typeDefs.Boolean.type
    +  const DateType = typeDefs.Date.type
    +
    +  var remove = {}
    +  var typeDefault = [false, true, null, StringType, ArrayType]
    +
    +  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 === ArrayType) {
    +      type = typeDefault.concat(ArrayType)
    +    }
    +    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(BooleanType)))
    +            || (v === 'false' &&
    +               (~type.indexOf(false) || ~type.indexOf(BooleanType)))) {
    +          v = JSON.parse(v)
    +          debug('jsonable %j', v)
    +        } else if (~type.indexOf(NumberType) && !isNaN(v)) {
    +          debug('convert to number', v)
    +          v = +v
    +        } else if (~type.indexOf(DateType) && !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(BooleanType))) {
    +        v = null
    +      }
    +
    +      var d = {}
    +      d[k] = v
    +      debug('prevalidated val', d, v, types[k])
    +      if (!validate(d, k, v, types[k], { typeDefs })) {
    +        if (invalidHandler) {
    +          invalidHandler(k, v, types[k], data)
    +        } else if (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(ArrayType) === -1) {
    +      debug('VAL HAS NO LENGTH, DELETE IT', val, k, type.indexOf(ArrayType))
    +      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 validate (data, k, val, type, { typeDefs }) {
    +  const ArrayType = typeDefs.Array.type
    +  // arrays are lists of types.
    +  if (Array.isArray(type)) {
    +    for (let i = 0, l = type.length; i < l; i++) {
    +      if (type[i] === ArrayType) {
    +        continue
    +      }
    +      if (validate(data, k, val, type[i], { typeDefs })) {
    +        return true
    +      }
    +    }
    +    delete data[k]
    +    return false
    +  }
    +
    +  // an array of anything?
    +  if (type === ArrayType) {
    +    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)
    +    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) {
    +        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, { typeDefs, types, shorthands }) {
    +  const StringType = typeDefs.String.type
    +  const NumberType = typeDefs.String.type
    +  const ArrayType = typeDefs.Array.type
    +  const BooleanType = typeDefs.Boolean.type
    +
    +  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, shortAbbr, abbrevs, { shorthands })
    +      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 === ArrayType ||
    +        isTypeArray && argType.indexOf(ArrayType) !== -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 === BooleanType ||
    +        isTypeArray && argType.indexOf(BooleanType) !== -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(NumberType)) {
    +            // number
    +            val = +la
    +            i++
    +          } else if (!la.match(/^-[^-]/) && ~argType.indexOf(StringType)) {
    +            // string
    +            val = la
    +            i++
    +          }
    +        }
    +
    +        if (isArray) {
    +          (data[arg] = data[arg] || []).push(val)
    +        } else {
    +          data[arg] = val
    +        }
    +
    +        continue
    +      }
    +
    +      if (argType === StringType) {
    +        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, shortAbbr, abbrevs, { shorthands }) {
    +  // 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]
    +}
    +
    +module.exports = {
    +  nopt,
    +  clean,
    +  parse,
    +  validate,
    +  resolveShort,
    +  typeDefs: defaultTypeDefs,
    +}
    diff --git a/deps/npm/node_modules/nopt/lib/nopt.js b/deps/npm/node_modules/nopt/lib/nopt.js
    index 5829c2fe0f6379..70fd809bc111e6 100644
    --- a/deps/npm/node_modules/nopt/lib/nopt.js
    +++ b/deps/npm/node_modules/nopt/lib/nopt.js
    @@ -1,515 +1,30 @@
    -// info about each config option.
    +const lib = require('./nopt-lib')
    +const defaultTypeDefs = require('./type-defs')
     
    -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')
    +// This is the version of nopt's API that requires setting typeDefs and invalidHandler
    +// on the required `nopt` object since it is a singleton. To not do a breaking change
    +// an API that requires all options be passed in is located in `nopt-lib.js` and
    +// exported here as lib.
    +// TODO(breaking): make API only work in non-singleton mode
     
     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])
    +exports.typeDefs = defaultTypeDefs
    +exports.lib = lib
    +
    +function nopt (types = {}, shorthands = {}, args = process.argv, slice = 2) {
    +  return lib.nopt(args.slice(slice), {
    +    types,
    +    shorthands: shorthands || {},
    +    typeDefs: exports.typeDefs,
    +    invalidHandler: exports.invalidHandler,
       })
     }
     
    -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]
    +function clean (data, types, typeDefs = exports.typeDefs) {
    +  return lib.clean(data, {
    +    types,
    +    typeDefs,
    +    invalidHandler: exports.invalidHandler,
       })
    -
    -  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/nopt/lib/type-defs.js b/deps/npm/node_modules/nopt/lib/type-defs.js
    new file mode 100644
    index 00000000000000..6acf5e0a5b9d46
    --- /dev/null
    +++ b/deps/npm/node_modules/nopt/lib/type-defs.js
    @@ -0,0 +1,91 @@
    +var url = require('url')
    +var path = require('path')
    +var Stream = require('stream').Stream
    +var os = require('os')
    +const debug = require('./debug')
    +
    +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 (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
    +}
    +
    +module.exports = {
    +  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 },
    +  Array: { type: Array },
    +}
    diff --git a/deps/npm/node_modules/nopt/package.json b/deps/npm/node_modules/nopt/package.json
    index f12fb3374b322a..a61cae4535f880 100644
    --- a/deps/npm/node_modules/nopt/package.json
    +++ b/deps/npm/node_modules/nopt/package.json
    @@ -1,6 +1,6 @@
     {
       "name": "nopt",
    -  "version": "7.0.0",
    +  "version": "7.1.0",
       "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.",
       "author": "GitHub Inc.",
       "main": "lib/nopt.js",
    @@ -26,14 +26,13 @@
       },
       "devDependencies": {
         "@npmcli/eslint-config": "^4.0.0",
    -    "@npmcli/template-oss": "4.8.0",
    +    "@npmcli/template-oss": "4.12.0",
         "tap": "^16.3.0"
       },
       "tap": {
    -    "lines": 87,
    -    "functions": 91,
    -    "branches": 81,
    -    "statements": 87,
    +    "lines": 91,
    +    "branches": 87,
    +    "statements": 91,
         "nyc-arg": [
           "--exclude",
           "tap-snapshots/**"
    @@ -49,6 +48,6 @@
       "templateOSS": {
         "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
         "windowsCI": false,
    -    "version": "4.8.0"
    +    "version": "4.12.0"
       }
     }
    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 728e8cf3f86826..37530bb52d19a4 100644
    --- a/deps/npm/node_modules/npm-install-checks/lib/index.js
    +++ b/deps/npm/node_modules/npm-install-checks/lib/index.js
    @@ -20,6 +20,8 @@ const checkEngine = (target, npmVer, nodeVer, force = false) => {
       }
     }
     
    +const isMusl = (file) => file.includes('libc.musl-') || file.includes('ld-musl-')
    +
     const checkPlatform = (target, force = false) => {
       if (force) {
         return
    @@ -30,16 +32,35 @@ const checkPlatform = (target, force = false) => {
       const osOk = target.os ? checkList(platform, target.os) : true
       const cpuOk = target.cpu ? checkList(arch, target.cpu) : true
     
    -  if (!osOk || !cpuOk) {
    +  let libcOk = true
    +  let libcFamily = null
    +  if (target.libc) {
    +    // libc checks only work in linux, any value is a failure if we aren't
    +    if (platform !== 'linux') {
    +      libcOk = false
    +    } else {
    +      const report = process.report.getReport()
    +      if (report.header?.glibcRuntimeVersion) {
    +        libcFamily = 'glibc'
    +      } else if (Array.isArray(report.sharedObjects) && report.sharedObjects.some(isMusl)) {
    +        libcFamily = 'musl'
    +      }
    +      libcOk = libcFamily ? checkList(libcFamily, target.libc) : false
    +    }
    +  }
    +
    +  if (!osOk || !cpuOk || !libcOk) {
         throw Object.assign(new Error('Unsupported platform'), {
           pkgid: target._id,
           current: {
             os: platform,
             cpu: arch,
    +        libc: libcFamily,
           },
           required: {
             os: target.os,
             cpu: target.cpu,
    +        libc: target.libc,
           },
           code: 'EBADPLATFORM',
         })
    diff --git a/deps/npm/node_modules/npm-install-checks/package.json b/deps/npm/node_modules/npm-install-checks/package.json
    index 1003b107763d96..d9304ebf2a284d 100644
    --- a/deps/npm/node_modules/npm-install-checks/package.json
    +++ b/deps/npm/node_modules/npm-install-checks/package.json
    @@ -1,14 +1,14 @@
     {
       "name": "npm-install-checks",
    -  "version": "6.0.0",
    +  "version": "6.1.0",
       "description": "Check the engines and platform fields in package.json",
       "main": "lib/index.js",
       "dependencies": {
         "semver": "^7.1.1"
       },
       "devDependencies": {
    -    "@npmcli/eslint-config": "^3.0.1",
    -    "@npmcli/template-oss": "4.5.1",
    +    "@npmcli/eslint-config": "^4.0.0",
    +    "@npmcli/template-oss": "4.12.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.5.1"
    +    "version": "4.12.0"
       },
       "tap": {
         "nyc-arg": [
    diff --git a/deps/npm/node_modules/p-map/index.d.ts b/deps/npm/node_modules/p-map/index.d.ts
    deleted file mode 100644
    index bcbe0afcee88d9..00000000000000
    --- a/deps/npm/node_modules/p-map/index.d.ts
    +++ /dev/null
    @@ -1,67 +0,0 @@
    -declare namespace pMap {
    -	interface Options {
    -		/**
    -		Number of concurrently pending promises returned by `mapper`.
    -
    -		Must be an integer from 1 and up or `Infinity`.
    -
    -		@default Infinity
    -		*/
    -		readonly concurrency?: number;
    -
    -		/**
    -		When set to `false`, instead of stopping when a promise rejects, it will wait for all the promises to settle and then reject with an [aggregated error](https://github.com/sindresorhus/aggregate-error) containing all the errors from the rejected promises.
    -
    -		@default true
    -		*/
    -		readonly stopOnError?: boolean;
    -	}
    -
    -	/**
    -	Function which is called for every item in `input`. Expected to return a `Promise` or value.
    -
    -	@param element - Iterated element.
    -	@param index - Index of the element in the source array.
    -	*/
    -	type Mapper = (
    -		element: Element,
    -		index: number
    -	) => NewElement | Promise;
    -}
    -
    -/**
    -@param input - Iterated over concurrently in the `mapper` function.
    -@param mapper - Function which is called for every item in `input`. Expected to return a `Promise` or value.
    -@returns A `Promise` that is fulfilled when all promises in `input` and ones returned from `mapper` are fulfilled, or rejects if any of the promises reject. The fulfilled value is an `Array` of the fulfilled values returned from `mapper` in `input` order.
    -
    -@example
    -```
    -import pMap = require('p-map');
    -import got = require('got');
    -
    -const sites = [
    -	getWebsiteFromUsername('https://sindresorhus'), //=> Promise
    -	'https://ava.li',
    -	'https://github.com'
    -];
    -
    -(async () => {
    -	const mapper = async site => {
    -		const {requestUrl} = await got.head(site);
    -		return requestUrl;
    -	};
    -
    -	const result = await pMap(sites, mapper, {concurrency: 2});
    -
    -	console.log(result);
    -	//=> ['https://sindresorhus.com/', 'https://ava.li/', 'https://github.com/']
    -})();
    -```
    -*/
    -declare function pMap(
    -	input: Iterable,
    -	mapper: pMap.Mapper,
    -	options?: pMap.Options
    -): Promise;
    -
    -export = pMap;
    diff --git a/deps/npm/node_modules/parse-conflict-json/package.json b/deps/npm/node_modules/parse-conflict-json/package.json
    index 7b86df89edb398..32584d3e6401b3 100644
    --- a/deps/npm/node_modules/parse-conflict-json/package.json
    +++ b/deps/npm/node_modules/parse-conflict-json/package.json
    @@ -1,6 +1,6 @@
     {
       "name": "parse-conflict-json",
    -  "version": "3.0.0",
    +  "version": "3.0.1",
       "description": "Parse a JSON string that has git merge conflicts, resolving if possible",
       "author": "GitHub Inc.",
       "license": "ISC",
    @@ -22,13 +22,13 @@
         ]
       },
       "devDependencies": {
    -    "@npmcli/eslint-config": "^3.0.1",
    -    "@npmcli/template-oss": "4.5.1",
    +    "@npmcli/eslint-config": "^4.0.0",
    +    "@npmcli/template-oss": "4.12.0",
         "tap": "^16.0.1"
       },
       "dependencies": {
         "json-parse-even-better-errors": "^3.0.0",
    -    "just-diff": "^5.0.1",
    +    "just-diff": "^6.0.0",
         "just-diff-apply": "^5.2.0"
       },
       "repository": {
    @@ -44,6 +44,6 @@
       },
       "templateOSS": {
         "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
    -    "version": "4.5.1"
    +    "version": "4.12.0"
       }
     }
    diff --git a/deps/npm/node_modules/path-scurry/LICENSE.md b/deps/npm/node_modules/path-scurry/LICENSE.md
    new file mode 100644
    index 00000000000000..c5402b9577a8cd
    --- /dev/null
    +++ b/deps/npm/node_modules/path-scurry/LICENSE.md
    @@ -0,0 +1,55 @@
    +# Blue Oak Model License
    +
    +Version 1.0.0
    +
    +## Purpose
    +
    +This license gives everyone as much permission to work with
    +this software as possible, while protecting contributors
    +from liability.
    +
    +## Acceptance
    +
    +In order to receive this license, you must agree to its
    +rules.  The rules of this license are both obligations
    +under that agreement and conditions to your license.
    +You must not do anything with this software that triggers
    +a rule that you cannot or will not follow.
    +
    +## Copyright
    +
    +Each contributor licenses you to do everything with this
    +software that would otherwise infringe that contributor's
    +copyright in it.
    +
    +## Notices
    +
    +You must ensure that everyone who gets a copy of
    +any part of this software from you, with or without
    +changes, also gets the text of this license or a link to
    +.
    +
    +## Excuse
    +
    +If anyone notifies you in writing that you have not
    +complied with [Notices](#notices), you can keep your
    +license by taking all practical steps to comply within 30
    +days after the notice.  If you do not do so, your license
    +ends immediately.
    +
    +## Patent
    +
    +Each contributor licenses you to do everything with this
    +software that would otherwise infringe any patent claims
    +they can license or become able to license.
    +
    +## Reliability
    +
    +No contributor can revoke this license.
    +
    +## No Liability
    +
    +***As far as the law allows, this software comes as is,
    +without any warranty or condition, and no contributor
    +will be liable to anyone for any damages related to this
    +software or this license, under any kind of legal claim.***
    diff --git a/deps/npm/node_modules/path-scurry/dist/cjs/index.js b/deps/npm/node_modules/path-scurry/dist/cjs/index.js
    new file mode 100644
    index 00000000000000..54901bd8ae578c
    --- /dev/null
    +++ b/deps/npm/node_modules/path-scurry/dist/cjs/index.js
    @@ -0,0 +1,1865 @@
    +"use strict";
    +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
    +    if (k2 === undefined) k2 = k;
    +    var desc = Object.getOwnPropertyDescriptor(m, k);
    +    if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
    +      desc = { enumerable: true, get: function() { return m[k]; } };
    +    }
    +    Object.defineProperty(o, k2, desc);
    +}) : (function(o, m, k, k2) {
    +    if (k2 === undefined) k2 = k;
    +    o[k2] = m[k];
    +}));
    +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
    +    Object.defineProperty(o, "default", { enumerable: true, value: v });
    +}) : function(o, v) {
    +    o["default"] = v;
    +});
    +var __importStar = (this && this.__importStar) || function (mod) {
    +    if (mod && mod.__esModule) return mod;
    +    var result = {};
    +    if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
    +    __setModuleDefault(result, mod);
    +    return result;
    +};
    +var __importDefault = (this && this.__importDefault) || function (mod) {
    +    return (mod && mod.__esModule) ? mod : { "default": mod };
    +};
    +Object.defineProperty(exports, "__esModule", { value: true });
    +exports.PathScurry = exports.Path = exports.PathScurryDarwin = exports.PathScurryPosix = exports.PathScurryWin32 = exports.PathScurryBase = exports.PathPosix = exports.PathWin32 = exports.PathBase = exports.ChildrenCache = exports.ResolveCache = void 0;
    +const lru_cache_1 = __importDefault(require("lru-cache"));
    +const path_1 = require("path");
    +const url_1 = require("url");
    +const actualFS = __importStar(require("fs"));
    +const fs_1 = require("fs");
    +const realpathSync = fs_1.realpathSync.native;
    +// TODO: test perf of fs/promises realpath vs realpathCB,
    +// since the promises one uses realpath.native
    +const promises_1 = require("fs/promises");
    +const minipass_1 = __importDefault(require("minipass"));
    +const defaultFS = {
    +    lstatSync: fs_1.lstatSync,
    +    readdir: fs_1.readdir,
    +    readdirSync: fs_1.readdirSync,
    +    readlinkSync: fs_1.readlinkSync,
    +    realpathSync,
    +    promises: {
    +        lstat: promises_1.lstat,
    +        readdir: promises_1.readdir,
    +        readlink: promises_1.readlink,
    +        realpath: promises_1.realpath,
    +    },
    +};
    +// if they just gave us require('fs') then use our default
    +const fsFromOption = (fsOption) => !fsOption || fsOption === defaultFS || fsOption === actualFS
    +    ? defaultFS
    +    : {
    +        ...defaultFS,
    +        ...fsOption,
    +        promises: {
    +            ...defaultFS.promises,
    +            ...(fsOption.promises || {}),
    +        },
    +    };
    +// turn something like //?/c:/ into c:\
    +const uncDriveRegexp = /^\\\\\?\\([a-z]:)\\?$/i;
    +const uncToDrive = (rootPath) => rootPath.replace(/\//g, '\\').replace(uncDriveRegexp, '$1\\');
    +// windows paths are separated by either / or \
    +const eitherSep = /[\\\/]/;
    +const UNKNOWN = 0; // may not even exist, for all we know
    +const IFIFO = 0b0001;
    +const IFCHR = 0b0010;
    +const IFDIR = 0b0100;
    +const IFBLK = 0b0110;
    +const IFREG = 0b1000;
    +const IFLNK = 0b1010;
    +const IFSOCK = 0b1100;
    +const IFMT = 0b1111;
    +// mask to unset low 4 bits
    +const IFMT_UNKNOWN = ~IFMT;
    +// set after successfully calling readdir() and getting entries.
    +const READDIR_CALLED = 16;
    +// set after a successful lstat()
    +const LSTAT_CALLED = 32;
    +// set if an entry (or one of its parents) is definitely not a dir
    +const ENOTDIR = 64;
    +// set if an entry (or one of its parents) does not exist
    +// (can also be set on lstat errors like EACCES or ENAMETOOLONG)
    +const ENOENT = 128;
    +// cannot have child entries -- also verify &IFMT is either IFDIR or IFLNK
    +// set if we fail to readlink
    +const ENOREADLINK = 256;
    +// set if we know realpath() will fail
    +const ENOREALPATH = 512;
    +const ENOCHILD = ENOTDIR | ENOENT | ENOREALPATH;
    +const TYPEMASK = 1023;
    +const entToType = (s) => s.isFile()
    +    ? IFREG
    +    : s.isDirectory()
    +        ? IFDIR
    +        : s.isSymbolicLink()
    +            ? IFLNK
    +            : s.isCharacterDevice()
    +                ? IFCHR
    +                : s.isBlockDevice()
    +                    ? IFBLK
    +                    : s.isSocket()
    +                        ? IFSOCK
    +                        : s.isFIFO()
    +                            ? IFIFO
    +                            : UNKNOWN;
    +// normalize unicode path names
    +const normalizeCache = new Map();
    +const normalize = (s) => {
    +    const c = normalizeCache.get(s);
    +    if (c)
    +        return c;
    +    const n = s.normalize('NFKD');
    +    normalizeCache.set(s, n);
    +    return n;
    +};
    +const normalizeNocaseCache = new Map();
    +const normalizeNocase = (s) => {
    +    const c = normalizeNocaseCache.get(s);
    +    if (c)
    +        return c;
    +    const n = normalize(s.toLowerCase());
    +    normalizeNocaseCache.set(s, n);
    +    return n;
    +};
    +/**
    + * An LRUCache for storing resolved path strings or Path objects.
    + * @internal
    + */
    +class ResolveCache extends lru_cache_1.default {
    +    constructor() {
    +        super({ max: 256 });
    +    }
    +}
    +exports.ResolveCache = ResolveCache;
    +// In order to prevent blowing out the js heap by allocating hundreds of
    +// thousands of Path entries when walking extremely large trees, the "children"
    +// in this tree are represented by storing an array of Path entries in an
    +// LRUCache, indexed by the parent.  At any time, Path.children() may return an
    +// empty array, indicating that it doesn't know about any of its children, and
    +// thus has to rebuild that cache.  This is fine, it just means that we don't
    +// benefit as much from having the cached entries, but huge directory walks
    +// don't blow out the stack, and smaller ones are still as fast as possible.
    +//
    +//It does impose some complexity when building up the readdir data, because we
    +//need to pass a reference to the children array that we started with.
    +/**
    + * an LRUCache for storing child entries.
    + * @internal
    + */
    +class ChildrenCache extends lru_cache_1.default {
    +    constructor(maxSize = 16 * 1024) {
    +        super({
    +            maxSize,
    +            // parent + children
    +            sizeCalculation: a => a.length + 1,
    +        });
    +    }
    +}
    +exports.ChildrenCache = ChildrenCache;
    +/**
    + * Path objects are sort of like a super-powered
    + * {@link https://nodejs.org/docs/latest/api/fs.html#class-fsdirent fs.Dirent}
    + *
    + * Each one represents a single filesystem entry on disk, which may or may not
    + * exist. It includes methods for reading various types of information via
    + * lstat, readlink, and readdir, and caches all information to the greatest
    + * degree possible.
    + *
    + * Note that fs operations that would normally throw will instead return an
    + * "empty" value. This is in order to prevent excessive overhead from error
    + * stack traces.
    + */
    +class PathBase {
    +    /**
    +     * the basename of this path
    +     *
    +     * **Important**: *always* test the path name against any test string
    +     * usingthe {@link isNamed} method, and not by directly comparing this
    +     * string. Otherwise, unicode path strings that the system sees as identical
    +     * will not be properly treated as the same path, leading to incorrect
    +     * behavior and possible security issues.
    +     */
    +    name;
    +    /**
    +     * the Path entry corresponding to the path root.
    +     *
    +     * @internal
    +     */
    +    root;
    +    /**
    +     * All roots found within the current PathScurry family
    +     *
    +     * @internal
    +     */
    +    roots;
    +    /**
    +     * a reference to the parent path, or undefined in the case of root entries
    +     *
    +     * @internal
    +     */
    +    parent;
    +    /**
    +     * boolean indicating whether paths are compared case-insensitively
    +     * @internal
    +     */
    +    nocase;
    +    // potential default fs override
    +    #fs;
    +    // Stats fields
    +    #dev;
    +    get dev() {
    +        return this.#dev;
    +    }
    +    #mode;
    +    get mode() {
    +        return this.#mode;
    +    }
    +    #nlink;
    +    get nlink() {
    +        return this.#nlink;
    +    }
    +    #uid;
    +    get uid() {
    +        return this.#uid;
    +    }
    +    #gid;
    +    get gid() {
    +        return this.#gid;
    +    }
    +    #rdev;
    +    get rdev() {
    +        return this.#rdev;
    +    }
    +    #blksize;
    +    get blksize() {
    +        return this.#blksize;
    +    }
    +    #ino;
    +    get ino() {
    +        return this.#ino;
    +    }
    +    #size;
    +    get size() {
    +        return this.#size;
    +    }
    +    #blocks;
    +    get blocks() {
    +        return this.#blocks;
    +    }
    +    #atimeMs;
    +    get atimeMs() {
    +        return this.#atimeMs;
    +    }
    +    #mtimeMs;
    +    get mtimeMs() {
    +        return this.#mtimeMs;
    +    }
    +    #ctimeMs;
    +    get ctimeMs() {
    +        return this.#ctimeMs;
    +    }
    +    #birthtimeMs;
    +    get birthtimeMs() {
    +        return this.#birthtimeMs;
    +    }
    +    #atime;
    +    get atime() {
    +        return this.#atime;
    +    }
    +    #mtime;
    +    get mtime() {
    +        return this.#mtime;
    +    }
    +    #ctime;
    +    get ctime() {
    +        return this.#ctime;
    +    }
    +    #birthtime;
    +    get birthtime() {
    +        return this.#birthtime;
    +    }
    +    #matchName;
    +    #depth;
    +    #fullpath;
    +    #relative;
    +    #type;
    +    #children;
    +    #linkTarget;
    +    #realpath;
    +    /**
    +     * Do not create new Path objects directly.  They should always be accessed
    +     * via the PathScurry class or other methods on the Path class.
    +     *
    +     * @internal
    +     */
    +    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {
    +        this.name = name;
    +        this.#matchName = nocase ? normalizeNocase(name) : normalize(name);
    +        this.#type = type & TYPEMASK;
    +        this.nocase = nocase;
    +        this.roots = roots;
    +        this.root = root || this;
    +        this.#children = children;
    +        this.#fullpath = opts.fullpath;
    +        this.#relative = opts.relative;
    +        this.parent = opts.parent;
    +        if (this.parent) {
    +            this.#fs = this.parent.#fs;
    +        }
    +        else {
    +            this.#fs = fsFromOption(opts.fs);
    +        }
    +    }
    +    /**
    +     * Returns the depth of the Path object from its root.
    +     *
    +     * For example, a path at `/foo/bar` would have a depth of 2.
    +     */
    +    depth() {
    +        if (this.#depth !== undefined)
    +            return this.#depth;
    +        if (!this.parent)
    +            return (this.#depth = 0);
    +        return (this.#depth = this.parent.depth() + 1);
    +    }
    +    /**
    +     * @internal
    +     */
    +    childrenCache() {
    +        return this.#children;
    +    }
    +    /**
    +     * Get the Path object referenced by the string path, resolved from this Path
    +     */
    +    resolve(path) {
    +        if (!path) {
    +            return this;
    +        }
    +        const rootPath = this.getRootString(path);
    +        const dir = path.substring(rootPath.length);
    +        const dirParts = dir.split(this.splitSep);
    +        const result = rootPath
    +            ? this.getRoot(rootPath).#resolveParts(dirParts)
    +            : this.#resolveParts(dirParts);
    +        return result;
    +    }
    +    #resolveParts(dirParts) {
    +        let p = this;
    +        for (const part of dirParts) {
    +            p = p.child(part);
    +        }
    +        return p;
    +    }
    +    /**
    +     * Returns the cached children Path objects, if still available.  If they
    +     * have fallen out of the cache, then returns an empty array, and resets the
    +     * READDIR_CALLED bit, so that future calls to readdir() will require an fs
    +     * lookup.
    +     *
    +     * @internal
    +     */
    +    children() {
    +        const cached = this.#children.get(this);
    +        if (cached) {
    +            return cached;
    +        }
    +        const children = Object.assign([], { provisional: 0 });
    +        this.#children.set(this, children);
    +        this.#type &= ~READDIR_CALLED;
    +        return children;
    +    }
    +    /**
    +     * Resolves a path portion and returns or creates the child Path.
    +     *
    +     * Returns `this` if pathPart is `''` or `'.'`, or `parent` if pathPart is
    +     * `'..'`.
    +     *
    +     * This should not be called directly.  If `pathPart` contains any path
    +     * separators, it will lead to unsafe undefined behavior.
    +     *
    +     * Use `Path.resolve()` instead.
    +     *
    +     * @internal
    +     */
    +    child(pathPart, opts) {
    +        if (pathPart === '' || pathPart === '.') {
    +            return this;
    +        }
    +        if (pathPart === '..') {
    +            return this.parent || this;
    +        }
    +        // find the child
    +        const children = this.children();
    +        const name = this.nocase
    +            ? normalizeNocase(pathPart)
    +            : normalize(pathPart);
    +        for (const p of children) {
    +            if (p.#matchName === name) {
    +                return p;
    +            }
    +        }
    +        // didn't find it, create provisional child, since it might not
    +        // actually exist.  If we know the parent isn't a dir, then
    +        // in fact it CAN'T exist.
    +        const s = this.parent ? this.sep : '';
    +        const fullpath = this.#fullpath
    +            ? this.#fullpath + s + pathPart
    +            : undefined;
    +        const pchild = this.newChild(pathPart, UNKNOWN, {
    +            ...opts,
    +            parent: this,
    +            fullpath,
    +        });
    +        if (!this.canReaddir()) {
    +            pchild.#type |= ENOENT;
    +        }
    +        // don't have to update provisional, because if we have real children,
    +        // then provisional is set to children.length, otherwise a lower number
    +        children.push(pchild);
    +        return pchild;
    +    }
    +    /**
    +     * The relative path from the cwd. If it does not share an ancestor with
    +     * the cwd, then this ends up being equivalent to the fullpath()
    +     */
    +    // TODO: instead of taking a param here, set it to '' in the constructor
    +    // for the CWD, and set it to this.name for any roots.
    +    relative() {
    +        if (this.#relative !== undefined) {
    +            return this.#relative;
    +        }
    +        const name = this.name;
    +        const p = this.parent;
    +        if (!p) {
    +            return (this.#relative = this.name);
    +        }
    +        const pv = p.relative();
    +        const rp = pv + (!pv || !p.parent ? '' : this.sep) + name;
    +        return (this.#relative = rp);
    +    }
    +    /**
    +     * The fully resolved path string for this Path entry
    +     */
    +    fullpath() {
    +        if (this.#fullpath !== undefined) {
    +            return this.#fullpath;
    +        }
    +        const name = this.name;
    +        const p = this.parent;
    +        if (!p) {
    +            return (this.#fullpath = this.name);
    +        }
    +        const pv = p.fullpath();
    +        const fp = pv + (!p.parent ? '' : this.sep) + name;
    +        return (this.#fullpath = fp);
    +    }
    +    /**
    +     * Is the Path of an unknown type?
    +     *
    +     * Note that we might know *something* about it if there has been a previous
    +     * filesystem operation, for example that it does not exist, or is not a
    +     * link, or whether it has child entries.
    +     */
    +    isUnknown() {
    +        return (this.#type & IFMT) === UNKNOWN;
    +    }
    +    /**
    +     * Is the Path a regular file?
    +     */
    +    isFile() {
    +        return (this.#type & IFMT) === IFREG;
    +    }
    +    /**
    +     * Is the Path a directory?
    +     */
    +    isDirectory() {
    +        return (this.#type & IFMT) === IFDIR;
    +    }
    +    /**
    +     * Is the path a character device?
    +     */
    +    isCharacterDevice() {
    +        return (this.#type & IFMT) === IFCHR;
    +    }
    +    /**
    +     * Is the path a block device?
    +     */
    +    isBlockDevice() {
    +        return (this.#type & IFMT) === IFBLK;
    +    }
    +    /**
    +     * Is the path a FIFO pipe?
    +     */
    +    isFIFO() {
    +        return (this.#type & IFMT) === IFIFO;
    +    }
    +    /**
    +     * Is the path a socket?
    +     */
    +    isSocket() {
    +        return (this.#type & IFMT) === IFSOCK;
    +    }
    +    /**
    +     * Is the path a symbolic link?
    +     */
    +    isSymbolicLink() {
    +        return (this.#type & IFLNK) === IFLNK;
    +    }
    +    /**
    +     * Return the entry if it has been subject of a successful lstat, or
    +     * undefined otherwise.
    +     *
    +     * Does not read the filesystem, so an undefined result *could* simply
    +     * mean that we haven't called lstat on it.
    +     */
    +    lstatCached() {
    +        return this.#type & LSTAT_CALLED ? this : undefined;
    +    }
    +    /**
    +     * Return the cached link target if the entry has been the subject of a
    +     * successful readlink, or undefined otherwise.
    +     *
    +     * Does not read the filesystem, so an undefined result *could* just mean we
    +     * don't have any cached data. Only use it if you are very sure that a
    +     * readlink() has been called at some point.
    +     */
    +    readlinkCached() {
    +        return this.#linkTarget;
    +    }
    +    /**
    +     * Returns the cached realpath target if the entry has been the subject
    +     * of a successful realpath, or undefined otherwise.
    +     *
    +     * Does not read the filesystem, so an undefined result *could* just mean we
    +     * don't have any cached data. Only use it if you are very sure that a
    +     * realpath() has been called at some point.
    +     */
    +    realpathCached() {
    +        return this.#realpath;
    +    }
    +    /**
    +     * Returns the cached child Path entries array if the entry has been the
    +     * subject of a successful readdir(), or [] otherwise.
    +     *
    +     * Does not read the filesystem, so an empty array *could* just mean we
    +     * don't have any cached data. Only use it if you are very sure that a
    +     * readdir() has been called recently enough to still be valid.
    +     */
    +    readdirCached() {
    +        const children = this.children();
    +        return children.slice(0, children.provisional);
    +    }
    +    /**
    +     * Return true if it's worth trying to readlink.  Ie, we don't (yet) have
    +     * any indication that readlink will definitely fail.
    +     *
    +     * Returns false if the path is known to not be a symlink, if a previous
    +     * readlink failed, or if the entry does not exist.
    +     */
    +    canReadlink() {
    +        if (this.#linkTarget)
    +            return true;
    +        if (!this.parent)
    +            return false;
    +        // cases where it cannot possibly succeed
    +        const ifmt = this.#type & IFMT;
    +        return !((ifmt !== UNKNOWN && ifmt !== IFLNK) ||
    +            this.#type & ENOREADLINK ||
    +            this.#type & ENOENT);
    +    }
    +    /**
    +     * Return true if readdir has previously been successfully called on this
    +     * path, indicating that cachedReaddir() is likely valid.
    +     */
    +    calledReaddir() {
    +        return !!(this.#type & READDIR_CALLED);
    +    }
    +    /**
    +     * Returns true if the path is known to not exist. That is, a previous lstat
    +     * or readdir failed to verify its existence when that would have been
    +     * expected, or a parent entry was marked either enoent or enotdir.
    +     */
    +    isENOENT() {
    +        return !!(this.#type & ENOENT);
    +    }
    +    /**
    +     * Return true if the path is a match for the given path name.  This handles
    +     * case sensitivity and unicode normalization.
    +     *
    +     * Note: even on case-sensitive systems, it is **not** safe to test the
    +     * equality of the `.name` property to determine whether a given pathname
    +     * matches, due to unicode normalization mismatches.
    +     *
    +     * Always use this method instead of testing the `path.name` property
    +     * directly.
    +     */
    +    isNamed(n) {
    +        return !this.nocase
    +            ? this.#matchName === normalize(n)
    +            : this.#matchName === normalizeNocase(n);
    +    }
    +    /**
    +     * Return the Path object corresponding to the target of a symbolic link.
    +     *
    +     * If the Path is not a symbolic link, or if the readlink call fails for any
    +     * reason, `undefined` is returned.
    +     *
    +     * Result is cached, and thus may be outdated if the filesystem is mutated.
    +     */
    +    async readlink() {
    +        const target = this.#linkTarget;
    +        if (target) {
    +            return target;
    +        }
    +        if (!this.canReadlink()) {
    +            return undefined;
    +        }
    +        /* c8 ignore start */
    +        // already covered by the canReadlink test, here for ts grumples
    +        if (!this.parent) {
    +            return undefined;
    +        }
    +        /* c8 ignore stop */
    +        try {
    +            const read = await this.#fs.promises.readlink(this.fullpath());
    +            const linkTarget = this.parent.resolve(read);
    +            if (linkTarget) {
    +                return (this.#linkTarget = linkTarget);
    +            }
    +        }
    +        catch (er) {
    +            this.#readlinkFail(er.code);
    +            return undefined;
    +        }
    +    }
    +    /**
    +     * Synchronous {@link PathBase.readlink}
    +     */
    +    readlinkSync() {
    +        const target = this.#linkTarget;
    +        if (target) {
    +            return target;
    +        }
    +        if (!this.canReadlink()) {
    +            return undefined;
    +        }
    +        /* c8 ignore start */
    +        // already covered by the canReadlink test, here for ts grumples
    +        if (!this.parent) {
    +            return undefined;
    +        }
    +        /* c8 ignore stop */
    +        try {
    +            const read = this.#fs.readlinkSync(this.fullpath());
    +            const linkTarget = this.parent.resolve(read);
    +            if (linkTarget) {
    +                return (this.#linkTarget = linkTarget);
    +            }
    +        }
    +        catch (er) {
    +            this.#readlinkFail(er.code);
    +            return undefined;
    +        }
    +    }
    +    #readdirSuccess(children) {
    +        // succeeded, mark readdir called bit
    +        this.#type |= READDIR_CALLED;
    +        // mark all remaining provisional children as ENOENT
    +        for (let p = children.provisional; p < children.length; p++) {
    +            children[p].#markENOENT();
    +        }
    +    }
    +    #markENOENT() {
    +        // mark as UNKNOWN and ENOENT
    +        if (this.#type & ENOENT)
    +            return;
    +        this.#type = (this.#type | ENOENT) & IFMT_UNKNOWN;
    +        this.#markChildrenENOENT();
    +    }
    +    #markChildrenENOENT() {
    +        // all children are provisional and do not exist
    +        const children = this.children();
    +        children.provisional = 0;
    +        for (const p of children) {
    +            p.#markENOENT();
    +        }
    +    }
    +    #markENOREALPATH() {
    +        this.#type |= ENOREALPATH;
    +        this.#markENOTDIR();
    +    }
    +    // save the information when we know the entry is not a dir
    +    #markENOTDIR() {
    +        // entry is not a directory, so any children can't exist.
    +        // this *should* be impossible, since any children created
    +        // after it's been marked ENOTDIR should be marked ENOENT,
    +        // so it won't even get to this point.
    +        /* c8 ignore start */
    +        if (this.#type & ENOTDIR)
    +            return;
    +        /* c8 ignore stop */
    +        let t = this.#type;
    +        // this could happen if we stat a dir, then delete it,
    +        // then try to read it or one of its children.
    +        if ((t & IFMT) === IFDIR)
    +            t &= IFMT_UNKNOWN;
    +        this.#type = t | ENOTDIR;
    +        this.#markChildrenENOENT();
    +    }
    +    #readdirFail(code = '') {
    +        // markENOTDIR and markENOENT also set provisional=0
    +        if (code === 'ENOTDIR' || code === 'EPERM') {
    +            this.#markENOTDIR();
    +        }
    +        else if (code === 'ENOENT') {
    +            this.#markENOENT();
    +        }
    +        else {
    +            this.children().provisional = 0;
    +        }
    +    }
    +    #lstatFail(code = '') {
    +        // Windows just raises ENOENT in this case, disable for win CI
    +        /* c8 ignore start */
    +        if (code === 'ENOTDIR') {
    +            // already know it has a parent by this point
    +            const p = this.parent;
    +            p.#markENOTDIR();
    +        }
    +        else if (code === 'ENOENT') {
    +            /* c8 ignore stop */
    +            this.#markENOENT();
    +        }
    +    }
    +    #readlinkFail(code = '') {
    +        let ter = this.#type;
    +        ter |= ENOREADLINK;
    +        if (code === 'ENOENT')
    +            ter |= ENOENT;
    +        // windows gets a weird error when you try to readlink a file
    +        if (code === 'EINVAL' || code === 'UNKNOWN') {
    +            // exists, but not a symlink, we don't know WHAT it is, so remove
    +            // all IFMT bits.
    +            ter &= IFMT_UNKNOWN;
    +        }
    +        this.#type = ter;
    +        // windows just gets ENOENT in this case.  We do cover the case,
    +        // just disabled because it's impossible on Windows CI
    +        /* c8 ignore start */
    +        if (code === 'ENOTDIR' && this.parent) {
    +            this.parent.#markENOTDIR();
    +        }
    +        /* c8 ignore stop */
    +    }
    +    #readdirAddChild(e, c) {
    +        return (this.#readdirMaybePromoteChild(e, c) ||
    +            this.#readdirAddNewChild(e, c));
    +    }
    +    #readdirAddNewChild(e, c) {
    +        // alloc new entry at head, so it's never provisional
    +        const type = entToType(e);
    +        const child = this.newChild(e.name, type, { parent: this });
    +        const ifmt = child.#type & IFMT;
    +        if (ifmt !== IFDIR && ifmt !== IFLNK && ifmt !== UNKNOWN) {
    +            child.#type |= ENOTDIR;
    +        }
    +        c.unshift(child);
    +        c.provisional++;
    +        return child;
    +    }
    +    #readdirMaybePromoteChild(e, c) {
    +        for (let p = c.provisional; p < c.length; p++) {
    +            const pchild = c[p];
    +            const name = this.nocase
    +                ? normalizeNocase(e.name)
    +                : normalize(e.name);
    +            if (name !== pchild.#matchName) {
    +                continue;
    +            }
    +            return this.#readdirPromoteChild(e, pchild, p, c);
    +        }
    +    }
    +    #readdirPromoteChild(e, p, index, c) {
    +        const v = p.name;
    +        // retain any other flags, but set ifmt from dirent
    +        p.#type = (p.#type & IFMT_UNKNOWN) | entToType(e);
    +        // case sensitivity fixing when we learn the true name.
    +        if (v !== e.name)
    +            p.name = e.name;
    +        // just advance provisional index (potentially off the list),
    +        // otherwise we have to splice/pop it out and re-insert at head
    +        if (index !== c.provisional) {
    +            if (index === c.length - 1)
    +                c.pop();
    +            else
    +                c.splice(index, 1);
    +            c.unshift(p);
    +        }
    +        c.provisional++;
    +        return p;
    +    }
    +    /**
    +     * Call lstat() on this Path, and update all known information that can be
    +     * determined.
    +     *
    +     * Note that unlike `fs.lstat()`, the returned value does not contain some
    +     * information, such as `mode`, `dev`, `nlink`, and `ino`.  If that
    +     * information is required, you will need to call `fs.lstat` yourself.
    +     *
    +     * If the Path refers to a nonexistent file, or if the lstat call fails for
    +     * any reason, `undefined` is returned.  Otherwise the updated Path object is
    +     * returned.
    +     *
    +     * Results are cached, and thus may be out of date if the filesystem is
    +     * mutated.
    +     */
    +    async lstat() {
    +        if ((this.#type & ENOENT) === 0) {
    +            try {
    +                this.#applyStat(await this.#fs.promises.lstat(this.fullpath()));
    +                return this;
    +            }
    +            catch (er) {
    +                this.#lstatFail(er.code);
    +            }
    +        }
    +    }
    +    /**
    +     * synchronous {@link PathBase.lstat}
    +     */
    +    lstatSync() {
    +        if ((this.#type & ENOENT) === 0) {
    +            try {
    +                this.#applyStat(this.#fs.lstatSync(this.fullpath()));
    +                return this;
    +            }
    +            catch (er) {
    +                this.#lstatFail(er.code);
    +            }
    +        }
    +    }
    +    #applyStat(st) {
    +        const { atime, atimeMs, birthtime, birthtimeMs, blksize, blocks, ctime, ctimeMs, dev, gid, ino, mode, mtime, mtimeMs, nlink, rdev, size, uid, } = st;
    +        this.#atime = atime;
    +        this.#atimeMs = atimeMs;
    +        this.#birthtime = birthtime;
    +        this.#birthtimeMs = birthtimeMs;
    +        this.#blksize = blksize;
    +        this.#blocks = blocks;
    +        this.#ctime = ctime;
    +        this.#ctimeMs = ctimeMs;
    +        this.#dev = dev;
    +        this.#gid = gid;
    +        this.#ino = ino;
    +        this.#mode = mode;
    +        this.#mtime = mtime;
    +        this.#mtimeMs = mtimeMs;
    +        this.#nlink = nlink;
    +        this.#rdev = rdev;
    +        this.#size = size;
    +        this.#uid = uid;
    +        const ifmt = entToType(st);
    +        // retain any other flags, but set the ifmt
    +        this.#type = (this.#type & IFMT_UNKNOWN) | ifmt | LSTAT_CALLED;
    +        if (ifmt !== UNKNOWN && ifmt !== IFDIR && ifmt !== IFLNK) {
    +            this.#type |= ENOTDIR;
    +        }
    +    }
    +    #onReaddirCB = [];
    +    #readdirCBInFlight = false;
    +    #callOnReaddirCB(children) {
    +        this.#readdirCBInFlight = false;
    +        const cbs = this.#onReaddirCB.slice();
    +        this.#onReaddirCB.length = 0;
    +        cbs.forEach(cb => cb(null, children));
    +    }
    +    /**
    +     * Standard node-style callback interface to get list of directory entries.
    +     *
    +     * If the Path cannot or does not contain any children, then an empty array
    +     * is returned.
    +     *
    +     * Results are cached, and thus may be out of date if the filesystem is
    +     * mutated.
    +     *
    +     * @param cb The callback called with (er, entries).  Note that the `er`
    +     * param is somewhat extraneous, as all readdir() errors are handled and
    +     * simply result in an empty set of entries being returned.
    +     * @param allowZalgo Boolean indicating that immediately known results should
    +     * *not* be deferred with `queueMicrotask`. Defaults to `false`. Release
    +     * zalgo at your peril, the dark pony lord is devious and unforgiving.
    +     */
    +    readdirCB(cb, allowZalgo = false) {
    +        if (!this.canReaddir()) {
    +            if (allowZalgo)
    +                cb(null, []);
    +            else
    +                queueMicrotask(() => cb(null, []));
    +            return;
    +        }
    +        const children = this.children();
    +        if (this.calledReaddir()) {
    +            const c = children.slice(0, children.provisional);
    +            if (allowZalgo)
    +                cb(null, c);
    +            else
    +                queueMicrotask(() => cb(null, c));
    +            return;
    +        }
    +        // don't have to worry about zalgo at this point.
    +        this.#onReaddirCB.push(cb);
    +        if (this.#readdirCBInFlight) {
    +            return;
    +        }
    +        this.#readdirCBInFlight = true;
    +        // else read the directory, fill up children
    +        // de-provisionalize any provisional children.
    +        const fullpath = this.fullpath();
    +        this.#fs.readdir(fullpath, { withFileTypes: true }, (er, entries) => {
    +            if (er) {
    +                this.#readdirFail(er.code);
    +                children.provisional = 0;
    +            }
    +            else {
    +                // if we didn't get an error, we always get entries.
    +                //@ts-ignore
    +                for (const e of entries) {
    +                    this.#readdirAddChild(e, children);
    +                }
    +                this.#readdirSuccess(children);
    +            }
    +            this.#callOnReaddirCB(children.slice(0, children.provisional));
    +            return;
    +        });
    +    }
    +    #asyncReaddirInFlight;
    +    /**
    +     * Return an array of known child entries.
    +     *
    +     * If the Path cannot or does not contain any children, then an empty array
    +     * is returned.
    +     *
    +     * Results are cached, and thus may be out of date if the filesystem is
    +     * mutated.
    +     */
    +    async readdir() {
    +        if (!this.canReaddir()) {
    +            return [];
    +        }
    +        const children = this.children();
    +        if (this.calledReaddir()) {
    +            return children.slice(0, children.provisional);
    +        }
    +        // else read the directory, fill up children
    +        // de-provisionalize any provisional children.
    +        const fullpath = this.fullpath();
    +        if (this.#asyncReaddirInFlight) {
    +            await this.#asyncReaddirInFlight;
    +        }
    +        else {
    +            /* c8 ignore start */
    +            let resolve = () => { };
    +            /* c8 ignore stop */
    +            this.#asyncReaddirInFlight = new Promise(res => (resolve = res));
    +            try {
    +                for (const e of await this.#fs.promises.readdir(fullpath, {
    +                    withFileTypes: true,
    +                })) {
    +                    this.#readdirAddChild(e, children);
    +                }
    +                this.#readdirSuccess(children);
    +            }
    +            catch (er) {
    +                this.#readdirFail(er.code);
    +                children.provisional = 0;
    +            }
    +            this.#asyncReaddirInFlight = undefined;
    +            resolve();
    +        }
    +        return children.slice(0, children.provisional);
    +    }
    +    /**
    +     * synchronous {@link PathBase.readdir}
    +     */
    +    readdirSync() {
    +        if (!this.canReaddir()) {
    +            return [];
    +        }
    +        const children = this.children();
    +        if (this.calledReaddir()) {
    +            return children.slice(0, children.provisional);
    +        }
    +        // else read the directory, fill up children
    +        // de-provisionalize any provisional children.
    +        const fullpath = this.fullpath();
    +        try {
    +            for (const e of this.#fs.readdirSync(fullpath, {
    +                withFileTypes: true,
    +            })) {
    +                this.#readdirAddChild(e, children);
    +            }
    +            this.#readdirSuccess(children);
    +        }
    +        catch (er) {
    +            this.#readdirFail(er.code);
    +            children.provisional = 0;
    +        }
    +        return children.slice(0, children.provisional);
    +    }
    +    canReaddir() {
    +        if (this.#type & ENOCHILD)
    +            return false;
    +        const ifmt = IFMT & this.#type;
    +        // we always set ENOTDIR when setting IFMT, so should be impossible
    +        /* c8 ignore start */
    +        if (!(ifmt === UNKNOWN || ifmt === IFDIR || ifmt === IFLNK)) {
    +            return false;
    +        }
    +        /* c8 ignore stop */
    +        return true;
    +    }
    +    shouldWalk(dirs, walkFilter) {
    +        return ((this.#type & IFDIR) === IFDIR &&
    +            !(this.#type & ENOCHILD) &&
    +            !dirs.has(this) &&
    +            (!walkFilter || walkFilter(this)));
    +    }
    +    /**
    +     * Return the Path object corresponding to path as resolved
    +     * by realpath(3).
    +     *
    +     * If the realpath call fails for any reason, `undefined` is returned.
    +     *
    +     * Result is cached, and thus may be outdated if the filesystem is mutated.
    +     * On success, returns a Path object.
    +     */
    +    async realpath() {
    +        if (this.#realpath)
    +            return this.#realpath;
    +        if ((ENOREALPATH | ENOREADLINK | ENOENT) & this.#type)
    +            return undefined;
    +        try {
    +            const rp = await this.#fs.promises.realpath(this.fullpath());
    +            return (this.#realpath = this.resolve(rp));
    +        }
    +        catch (_) {
    +            this.#markENOREALPATH();
    +        }
    +    }
    +    /**
    +     * Synchronous {@link realpath}
    +     */
    +    realpathSync() {
    +        if (this.#realpath)
    +            return this.#realpath;
    +        if ((ENOREALPATH | ENOREADLINK | ENOENT) & this.#type)
    +            return undefined;
    +        try {
    +            const rp = this.#fs.realpathSync(this.fullpath());
    +            return (this.#realpath = this.resolve(rp));
    +        }
    +        catch (_) {
    +            this.#markENOREALPATH();
    +        }
    +    }
    +}
    +exports.PathBase = PathBase;
    +/**
    + * Path class used on win32 systems
    + *
    + * Uses `'\\'` as the path separator for returned paths, either `'\\'` or `'/'`
    + * as the path separator for parsing paths.
    + */
    +class PathWin32 extends PathBase {
    +    /**
    +     * Separator for generating path strings.
    +     */
    +    sep = '\\';
    +    /**
    +     * Separator for parsing path strings.
    +     */
    +    splitSep = eitherSep;
    +    /**
    +     * Do not create new Path objects directly.  They should always be accessed
    +     * via the PathScurry class or other methods on the Path class.
    +     *
    +     * @internal
    +     */
    +    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {
    +        super(name, type, root, roots, nocase, children, opts);
    +    }
    +    /**
    +     * @internal
    +     */
    +    newChild(name, type = UNKNOWN, opts = {}) {
    +        return new PathWin32(name, type, this.root, this.roots, this.nocase, this.childrenCache(), opts);
    +    }
    +    /**
    +     * @internal
    +     */
    +    getRootString(path) {
    +        return path_1.win32.parse(path).root;
    +    }
    +    /**
    +     * @internal
    +     */
    +    getRoot(rootPath) {
    +        rootPath = uncToDrive(rootPath.toUpperCase());
    +        if (rootPath === this.root.name) {
    +            return this.root;
    +        }
    +        // ok, not that one, check if it matches another we know about
    +        for (const [compare, root] of Object.entries(this.roots)) {
    +            if (this.sameRoot(rootPath, compare)) {
    +                return (this.roots[rootPath] = root);
    +            }
    +        }
    +        // otherwise, have to create a new one.
    +        return (this.roots[rootPath] = new PathScurryWin32(rootPath, this).root);
    +    }
    +    /**
    +     * @internal
    +     */
    +    sameRoot(rootPath, compare = this.root.name) {
    +        // windows can (rarely) have case-sensitive filesystem, but
    +        // UNC and drive letters are always case-insensitive, and canonically
    +        // represented uppercase.
    +        rootPath = rootPath
    +            .toUpperCase()
    +            .replace(/\//g, '\\')
    +            .replace(uncDriveRegexp, '$1\\');
    +        return rootPath === compare;
    +    }
    +}
    +exports.PathWin32 = PathWin32;
    +/**
    + * Path class used on all posix systems.
    + *
    + * Uses `'/'` as the path separator.
    + */
    +class PathPosix extends PathBase {
    +    /**
    +     * separator for parsing path strings
    +     */
    +    splitSep = '/';
    +    /**
    +     * separator for generating path strings
    +     */
    +    sep = '/';
    +    /**
    +     * Do not create new Path objects directly.  They should always be accessed
    +     * via the PathScurry class or other methods on the Path class.
    +     *
    +     * @internal
    +     */
    +    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {
    +        super(name, type, root, roots, nocase, children, opts);
    +    }
    +    /**
    +     * @internal
    +     */
    +    getRootString(path) {
    +        return path.startsWith('/') ? '/' : '';
    +    }
    +    /**
    +     * @internal
    +     */
    +    getRoot(_rootPath) {
    +        return this.root;
    +    }
    +    /**
    +     * @internal
    +     */
    +    newChild(name, type = UNKNOWN, opts = {}) {
    +        return new PathPosix(name, type, this.root, this.roots, this.nocase, this.childrenCache(), opts);
    +    }
    +}
    +exports.PathPosix = PathPosix;
    +/**
    + * The base class for all PathScurry classes, providing the interface for path
    + * resolution and filesystem operations.
    + *
    + * Typically, you should *not* instantiate this class directly, but rather one
    + * of the platform-specific classes, or the exported {@link PathScurry} which
    + * defaults to the current platform.
    + */
    +class PathScurryBase {
    +    /**
    +     * The root Path entry for the current working directory of this Scurry
    +     */
    +    root;
    +    /**
    +     * The string path for the root of this Scurry's current working directory
    +     */
    +    rootPath;
    +    /**
    +     * A collection of all roots encountered, referenced by rootPath
    +     */
    +    roots;
    +    /**
    +     * The Path entry corresponding to this PathScurry's current working directory.
    +     */
    +    cwd;
    +    #resolveCache;
    +    #children;
    +    /**
    +     * Perform path comparisons case-insensitively.
    +     *
    +     * Defaults true on Darwin and Windows systems, false elsewhere.
    +     */
    +    nocase;
    +    #fs;
    +    /**
    +     * This class should not be instantiated directly.
    +     *
    +     * Use PathScurryWin32, PathScurryDarwin, PathScurryPosix, or PathScurry
    +     *
    +     * @internal
    +     */
    +    constructor(cwd = process.cwd(), pathImpl, sep, { nocase, childrenCacheSize = 16 * 1024, fs = defaultFS, } = {}) {
    +        this.#fs = fsFromOption(fs);
    +        if (cwd instanceof URL || cwd.startsWith('file://')) {
    +            cwd = (0, url_1.fileURLToPath)(cwd);
    +        }
    +        // resolve and split root, and then add to the store.
    +        // this is the only time we call path.resolve()
    +        const cwdPath = pathImpl.resolve(cwd);
    +        this.roots = Object.create(null);
    +        this.rootPath = this.parseRootPath(cwdPath);
    +        this.#resolveCache = new ResolveCache();
    +        this.#children = new ChildrenCache(childrenCacheSize);
    +        const split = cwdPath.substring(this.rootPath.length).split(sep);
    +        // resolve('/') leaves '', splits to [''], we don't want that.
    +        if (split.length === 1 && !split[0]) {
    +            split.pop();
    +        }
    +        /* c8 ignore start */
    +        if (nocase === undefined) {
    +            throw new TypeError('must provide nocase setting to PathScurryBase ctor');
    +        }
    +        /* c8 ignore stop */
    +        this.nocase = nocase;
    +        this.root = this.newRoot(this.#fs);
    +        this.roots[this.rootPath] = this.root;
    +        let prev = this.root;
    +        let len = split.length - 1;
    +        const joinSep = pathImpl.sep;
    +        let abs = this.rootPath;
    +        let sawFirst = false;
    +        for (const part of split) {
    +            prev = prev.child(part, {
    +                relative: new Array(len--).fill('..').join(joinSep),
    +                fullpath: (abs += (sawFirst ? '' : joinSep) + part),
    +            });
    +            sawFirst = true;
    +        }
    +        this.cwd = prev;
    +    }
    +    /**
    +     * Get the depth of a provided path, string, or the cwd
    +     */
    +    depth(path = this.cwd) {
    +        if (typeof path === 'string') {
    +            path = this.cwd.resolve(path);
    +        }
    +        return path.depth();
    +    }
    +    /**
    +     * Return the cache of child entries.  Exposed so subclasses can create
    +     * child Path objects in a platform-specific way.
    +     *
    +     * @internal
    +     */
    +    childrenCache() {
    +        return this.#children;
    +    }
    +    /**
    +     * Resolve one or more path strings to a resolved string
    +     *
    +     * Same interface as require('path').resolve.
    +     *
    +     * Much faster than path.resolve() when called multiple times for the same
    +     * path, because the resolved Path objects are cached.  Much slower
    +     * otherwise.
    +     */
    +    resolve(...paths) {
    +        // first figure out the minimum number of paths we have to test
    +        // we always start at cwd, but any absolutes will bump the start
    +        let r = '';
    +        for (let i = paths.length - 1; i >= 0; i--) {
    +            const p = paths[i];
    +            if (!p || p === '.')
    +                continue;
    +            r = r ? `${p}/${r}` : p;
    +            if (this.isAbsolute(p)) {
    +                break;
    +            }
    +        }
    +        const cached = this.#resolveCache.get(r);
    +        if (cached !== undefined) {
    +            return cached;
    +        }
    +        const result = this.cwd.resolve(r).fullpath();
    +        this.#resolveCache.set(r, result);
    +        return result;
    +    }
    +    /**
    +     * find the relative path from the cwd to the supplied path string or entry
    +     */
    +    relative(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return entry.relative();
    +    }
    +    /**
    +     * Return the basename for the provided string or Path object
    +     */
    +    basename(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return entry.name;
    +    }
    +    /**
    +     * Return the dirname for the provided string or Path object
    +     */
    +    dirname(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return (entry.parent || entry).fullpath();
    +    }
    +    async readdir(entry = this.cwd, opts = {
    +        withFileTypes: true,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes } = opts;
    +        if (!entry.canReaddir()) {
    +            return [];
    +        }
    +        else {
    +            const p = await entry.readdir();
    +            return withFileTypes ? p : p.map(e => e.name);
    +        }
    +    }
    +    readdirSync(entry = this.cwd, opts = {
    +        withFileTypes: true,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true } = opts;
    +        if (!entry.canReaddir()) {
    +            return [];
    +        }
    +        else if (withFileTypes) {
    +            return entry.readdirSync();
    +        }
    +        else {
    +            return entry.readdirSync().map(e => e.name);
    +        }
    +    }
    +    /**
    +     * Call lstat() on the string or Path object, and update all known
    +     * information that can be determined.
    +     *
    +     * Note that unlike `fs.lstat()`, the returned value does not contain some
    +     * information, such as `mode`, `dev`, `nlink`, and `ino`.  If that
    +     * information is required, you will need to call `fs.lstat` yourself.
    +     *
    +     * If the Path refers to a nonexistent file, or if the lstat call fails for
    +     * any reason, `undefined` is returned.  Otherwise the updated Path object is
    +     * returned.
    +     *
    +     * Results are cached, and thus may be out of date if the filesystem is
    +     * mutated.
    +     */
    +    async lstat(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return entry.lstat();
    +    }
    +    /**
    +     * synchronous {@link PathScurryBase.lstat}
    +     */
    +    lstatSync(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return entry.lstatSync();
    +    }
    +    async readlink(entry = this.cwd, { withFileTypes } = {
    +        withFileTypes: false,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            withFileTypes = entry.withFileTypes;
    +            entry = this.cwd;
    +        }
    +        const e = await entry.readlink();
    +        return withFileTypes ? e : e?.fullpath();
    +    }
    +    readlinkSync(entry = this.cwd, { withFileTypes } = {
    +        withFileTypes: false,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            withFileTypes = entry.withFileTypes;
    +            entry = this.cwd;
    +        }
    +        const e = entry.readlinkSync();
    +        return withFileTypes ? e : e?.fullpath();
    +    }
    +    async realpath(entry = this.cwd, { withFileTypes } = {
    +        withFileTypes: false,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            withFileTypes = entry.withFileTypes;
    +            entry = this.cwd;
    +        }
    +        const e = await entry.realpath();
    +        return withFileTypes ? e : e?.fullpath();
    +    }
    +    realpathSync(entry = this.cwd, { withFileTypes } = {
    +        withFileTypes: false,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            withFileTypes = entry.withFileTypes;
    +            entry = this.cwd;
    +        }
    +        const e = entry.realpathSync();
    +        return withFileTypes ? e : e?.fullpath();
    +    }
    +    async walk(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        const results = [];
    +        if (!filter || filter(entry)) {
    +            results.push(withFileTypes ? entry : entry.fullpath());
    +        }
    +        const dirs = new Set();
    +        const walk = (dir, cb) => {
    +            dirs.add(dir);
    +            dir.readdirCB((er, entries) => {
    +                /* c8 ignore start */
    +                if (er) {
    +                    return cb(er);
    +                }
    +                /* c8 ignore stop */
    +                let len = entries.length;
    +                if (!len)
    +                    return cb();
    +                const next = () => {
    +                    if (--len === 0) {
    +                        cb();
    +                    }
    +                };
    +                for (const e of entries) {
    +                    if (!filter || filter(e)) {
    +                        results.push(withFileTypes ? e : e.fullpath());
    +                    }
    +                    if (follow && e.isSymbolicLink()) {
    +                        e.realpath()
    +                            .then(r => (r?.isUnknown() ? r.lstat() : r))
    +                            .then(r => r?.shouldWalk(dirs, walkFilter) ? walk(r, next) : next());
    +                    }
    +                    else {
    +                        if (e.shouldWalk(dirs, walkFilter)) {
    +                            walk(e, next);
    +                        }
    +                        else {
    +                            next();
    +                        }
    +                    }
    +                }
    +            }, true); // zalgooooooo
    +        };
    +        const start = entry;
    +        return new Promise((res, rej) => {
    +            walk(start, er => {
    +                /* c8 ignore start */
    +                if (er)
    +                    return rej(er);
    +                /* c8 ignore stop */
    +                res(results);
    +            });
    +        });
    +    }
    +    walkSync(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        const results = [];
    +        if (!filter || filter(entry)) {
    +            results.push(withFileTypes ? entry : entry.fullpath());
    +        }
    +        const dirs = new Set([entry]);
    +        for (const dir of dirs) {
    +            const entries = dir.readdirSync();
    +            for (const e of entries) {
    +                if (!filter || filter(e)) {
    +                    results.push(withFileTypes ? e : e.fullpath());
    +                }
    +                let r = e;
    +                if (e.isSymbolicLink()) {
    +                    if (!(follow && (r = e.realpathSync())))
    +                        continue;
    +                    if (r.isUnknown())
    +                        r.lstatSync();
    +                }
    +                if (r.shouldWalk(dirs, walkFilter)) {
    +                    dirs.add(r);
    +                }
    +            }
    +        }
    +        return results;
    +    }
    +    /**
    +     * Support for `for await`
    +     *
    +     * Alias for {@link PathScurryBase.iterate}
    +     *
    +     * Note: As of Node 19, this is very slow, compared to other methods of
    +     * walking.  Consider using {@link PathScurryBase.stream} if memory overhead
    +     * and backpressure are concerns, or {@link PathScurryBase.walk} if not.
    +     */
    +    [Symbol.asyncIterator]() {
    +        return this.iterate();
    +    }
    +    iterate(entry = this.cwd, options = {}) {
    +        // iterating async over the stream is significantly more performant,
    +        // especially in the warm-cache scenario, because it buffers up directory
    +        // entries in the background instead of waiting for a yield for each one.
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            options = entry;
    +            entry = this.cwd;
    +        }
    +        return this.stream(entry, options)[Symbol.asyncIterator]();
    +    }
    +    /**
    +     * Iterating over a PathScurry performs a synchronous walk.
    +     *
    +     * Alias for {@link PathScurryBase.iterateSync}
    +     */
    +    [Symbol.iterator]() {
    +        return this.iterateSync();
    +    }
    +    *iterateSync(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        if (!filter || filter(entry)) {
    +            yield withFileTypes ? entry : entry.fullpath();
    +        }
    +        const dirs = new Set([entry]);
    +        for (const dir of dirs) {
    +            const entries = dir.readdirSync();
    +            for (const e of entries) {
    +                if (!filter || filter(e)) {
    +                    yield withFileTypes ? e : e.fullpath();
    +                }
    +                let r = e;
    +                if (e.isSymbolicLink()) {
    +                    if (!(follow && (r = e.realpathSync())))
    +                        continue;
    +                    if (r.isUnknown())
    +                        r.lstatSync();
    +                }
    +                if (r.shouldWalk(dirs, walkFilter)) {
    +                    dirs.add(r);
    +                }
    +            }
    +        }
    +    }
    +    stream(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        const results = new minipass_1.default({ objectMode: true });
    +        if (!filter || filter(entry)) {
    +            results.write(withFileTypes ? entry : entry.fullpath());
    +        }
    +        const dirs = new Set();
    +        const queue = [entry];
    +        let processing = 0;
    +        const process = () => {
    +            let paused = false;
    +            while (!paused) {
    +                const dir = queue.shift();
    +                if (!dir) {
    +                    if (processing === 0)
    +                        results.end();
    +                    return;
    +                }
    +                processing++;
    +                dirs.add(dir);
    +                const onReaddir = (er, entries, didRealpaths = false) => {
    +                    /* c8 ignore start */
    +                    if (er)
    +                        return results.emit('error', er);
    +                    /* c8 ignore stop */
    +                    if (follow && !didRealpaths) {
    +                        const promises = [];
    +                        for (const e of entries) {
    +                            if (e.isSymbolicLink()) {
    +                                promises.push(e
    +                                    .realpath()
    +                                    .then((r) => r?.isUnknown() ? r.lstat() : r));
    +                            }
    +                        }
    +                        if (promises.length) {
    +                            Promise.all(promises).then(() => onReaddir(null, entries, true));
    +                            return;
    +                        }
    +                    }
    +                    for (const e of entries) {
    +                        if (e && (!filter || filter(e))) {
    +                            if (!results.write(withFileTypes ? e : e.fullpath())) {
    +                                paused = true;
    +                            }
    +                        }
    +                    }
    +                    processing--;
    +                    for (const e of entries) {
    +                        const r = e.realpathCached() || e;
    +                        if (r.shouldWalk(dirs, walkFilter)) {
    +                            queue.push(r);
    +                        }
    +                    }
    +                    if (paused && !results.flowing) {
    +                        results.once('drain', process);
    +                    }
    +                    else if (!sync) {
    +                        process();
    +                    }
    +                };
    +                // zalgo containment
    +                let sync = true;
    +                dir.readdirCB(onReaddir, true);
    +                sync = false;
    +            }
    +        };
    +        process();
    +        return results;
    +    }
    +    streamSync(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        const results = new minipass_1.default({ objectMode: true });
    +        const dirs = new Set();
    +        if (!filter || filter(entry)) {
    +            results.write(withFileTypes ? entry : entry.fullpath());
    +        }
    +        const queue = [entry];
    +        let processing = 0;
    +        const process = () => {
    +            let paused = false;
    +            while (!paused) {
    +                const dir = queue.shift();
    +                if (!dir) {
    +                    if (processing === 0)
    +                        results.end();
    +                    return;
    +                }
    +                processing++;
    +                dirs.add(dir);
    +                const entries = dir.readdirSync();
    +                for (const e of entries) {
    +                    if (!filter || filter(e)) {
    +                        if (!results.write(withFileTypes ? e : e.fullpath())) {
    +                            paused = true;
    +                        }
    +                    }
    +                }
    +                processing--;
    +                for (const e of entries) {
    +                    let r = e;
    +                    if (e.isSymbolicLink()) {
    +                        if (!(follow && (r = e.realpathSync())))
    +                            continue;
    +                        if (r.isUnknown())
    +                            r.lstatSync();
    +                    }
    +                    if (r.shouldWalk(dirs, walkFilter)) {
    +                        queue.push(r);
    +                    }
    +                }
    +            }
    +            if (paused && !results.flowing)
    +                results.once('drain', process);
    +        };
    +        process();
    +        return results;
    +    }
    +}
    +exports.PathScurryBase = PathScurryBase;
    +/**
    + * Windows implementation of {@link PathScurryBase}
    + *
    + * Defaults to case insensitve, uses `'\\'` to generate path strings.  Uses
    + * {@link PathWin32} for Path objects.
    + */
    +class PathScurryWin32 extends PathScurryBase {
    +    /**
    +     * separator for generating path strings
    +     */
    +    sep = '\\';
    +    constructor(cwd = process.cwd(), opts = {}) {
    +        const { nocase = true } = opts;
    +        super(cwd, path_1.win32, '\\', { ...opts, nocase });
    +        this.nocase = nocase;
    +        for (let p = this.cwd; p; p = p.parent) {
    +            p.nocase = this.nocase;
    +        }
    +    }
    +    /**
    +     * @internal
    +     */
    +    parseRootPath(dir) {
    +        // if the path starts with a single separator, it's not a UNC, and we'll
    +        // just get separator as the root, and driveFromUNC will return \
    +        // In that case, mount \ on the root from the cwd.
    +        return path_1.win32.parse(dir).root.toUpperCase();
    +    }
    +    /**
    +     * @internal
    +     */
    +    newRoot(fs) {
    +        return new PathWin32(this.rootPath, IFDIR, undefined, this.roots, this.nocase, this.childrenCache(), { fs });
    +    }
    +    /**
    +     * Return true if the provided path string is an absolute path
    +     */
    +    isAbsolute(p) {
    +        return (p.startsWith('/') || p.startsWith('\\') || /^[a-z]:(\/|\\)/i.test(p));
    +    }
    +}
    +exports.PathScurryWin32 = PathScurryWin32;
    +/**
    + * {@link PathScurryBase} implementation for all posix systems other than Darwin.
    + *
    + * Defaults to case-sensitive matching, uses `'/'` to generate path strings.
    + *
    + * Uses {@link PathPosix} for Path objects.
    + */
    +class PathScurryPosix extends PathScurryBase {
    +    /**
    +     * separator for generating path strings
    +     */
    +    sep = '/';
    +    constructor(cwd = process.cwd(), opts = {}) {
    +        const { nocase = false } = opts;
    +        super(cwd, path_1.posix, '/', { ...opts, nocase });
    +        this.nocase = nocase;
    +    }
    +    /**
    +     * @internal
    +     */
    +    parseRootPath(_dir) {
    +        return '/';
    +    }
    +    /**
    +     * @internal
    +     */
    +    newRoot(fs) {
    +        return new PathPosix(this.rootPath, IFDIR, undefined, this.roots, this.nocase, this.childrenCache(), { fs });
    +    }
    +    /**
    +     * Return true if the provided path string is an absolute path
    +     */
    +    isAbsolute(p) {
    +        return p.startsWith('/');
    +    }
    +}
    +exports.PathScurryPosix = PathScurryPosix;
    +/**
    + * {@link PathScurryBase} implementation for Darwin (macOS) systems.
    + *
    + * Defaults to case-insensitive matching, uses `'/'` for generating path
    + * strings.
    + *
    + * Uses {@link PathPosix} for Path objects.
    + */
    +class PathScurryDarwin extends PathScurryPosix {
    +    constructor(cwd = process.cwd(), opts = {}) {
    +        const { nocase = true } = opts;
    +        super(cwd, { ...opts, nocase });
    +    }
    +}
    +exports.PathScurryDarwin = PathScurryDarwin;
    +/**
    + * Default {@link PathBase} implementation for the current platform.
    + *
    + * {@link PathWin32} on Windows systems, {@link PathPosix} on all others.
    + */
    +exports.Path = process.platform === 'win32' ? PathWin32 : PathPosix;
    +/**
    + * Default {@link PathScurryBase} implementation for the current platform.
    + *
    + * {@link PathScurryWin32} on Windows systems, {@link PathScurryDarwin} on
    + * Darwin (macOS) systems, {@link PathScurryPosix} on all others.
    + */
    +exports.PathScurry = process.platform === 'win32'
    +    ? PathScurryWin32
    +    : process.platform === 'darwin'
    +        ? PathScurryDarwin
    +        : PathScurryPosix;
    +//# sourceMappingURL=index.js.map
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/path-scurry/dist/cjs/package.json b/deps/npm/node_modules/path-scurry/dist/cjs/package.json
    new file mode 100644
    index 00000000000000..5bbefffbabee39
    --- /dev/null
    +++ b/deps/npm/node_modules/path-scurry/dist/cjs/package.json
    @@ -0,0 +1,3 @@
    +{
    +  "type": "commonjs"
    +}
    diff --git a/deps/npm/node_modules/path-scurry/dist/mjs/index.js b/deps/npm/node_modules/path-scurry/dist/mjs/index.js
    new file mode 100644
    index 00000000000000..b6a2cf9c8a08e1
    --- /dev/null
    +++ b/deps/npm/node_modules/path-scurry/dist/mjs/index.js
    @@ -0,0 +1,1827 @@
    +import LRUCache from 'lru-cache';
    +import { posix, win32 } from 'path';
    +import { fileURLToPath } from 'url';
    +import * as actualFS from 'fs';
    +import { lstatSync, readdir as readdirCB, readdirSync, readlinkSync, realpathSync as rps, } from 'fs';
    +const realpathSync = rps.native;
    +// TODO: test perf of fs/promises realpath vs realpathCB,
    +// since the promises one uses realpath.native
    +import { lstat, readdir, readlink, realpath } from 'fs/promises';
    +import Minipass from 'minipass';
    +const defaultFS = {
    +    lstatSync,
    +    readdir: readdirCB,
    +    readdirSync,
    +    readlinkSync,
    +    realpathSync,
    +    promises: {
    +        lstat,
    +        readdir,
    +        readlink,
    +        realpath,
    +    },
    +};
    +// if they just gave us require('fs') then use our default
    +const fsFromOption = (fsOption) => !fsOption || fsOption === defaultFS || fsOption === actualFS
    +    ? defaultFS
    +    : {
    +        ...defaultFS,
    +        ...fsOption,
    +        promises: {
    +            ...defaultFS.promises,
    +            ...(fsOption.promises || {}),
    +        },
    +    };
    +// turn something like //?/c:/ into c:\
    +const uncDriveRegexp = /^\\\\\?\\([a-z]:)\\?$/i;
    +const uncToDrive = (rootPath) => rootPath.replace(/\//g, '\\').replace(uncDriveRegexp, '$1\\');
    +// windows paths are separated by either / or \
    +const eitherSep = /[\\\/]/;
    +const UNKNOWN = 0; // may not even exist, for all we know
    +const IFIFO = 0b0001;
    +const IFCHR = 0b0010;
    +const IFDIR = 0b0100;
    +const IFBLK = 0b0110;
    +const IFREG = 0b1000;
    +const IFLNK = 0b1010;
    +const IFSOCK = 0b1100;
    +const IFMT = 0b1111;
    +// mask to unset low 4 bits
    +const IFMT_UNKNOWN = ~IFMT;
    +// set after successfully calling readdir() and getting entries.
    +const READDIR_CALLED = 16;
    +// set after a successful lstat()
    +const LSTAT_CALLED = 32;
    +// set if an entry (or one of its parents) is definitely not a dir
    +const ENOTDIR = 64;
    +// set if an entry (or one of its parents) does not exist
    +// (can also be set on lstat errors like EACCES or ENAMETOOLONG)
    +const ENOENT = 128;
    +// cannot have child entries -- also verify &IFMT is either IFDIR or IFLNK
    +// set if we fail to readlink
    +const ENOREADLINK = 256;
    +// set if we know realpath() will fail
    +const ENOREALPATH = 512;
    +const ENOCHILD = ENOTDIR | ENOENT | ENOREALPATH;
    +const TYPEMASK = 1023;
    +const entToType = (s) => s.isFile()
    +    ? IFREG
    +    : s.isDirectory()
    +        ? IFDIR
    +        : s.isSymbolicLink()
    +            ? IFLNK
    +            : s.isCharacterDevice()
    +                ? IFCHR
    +                : s.isBlockDevice()
    +                    ? IFBLK
    +                    : s.isSocket()
    +                        ? IFSOCK
    +                        : s.isFIFO()
    +                            ? IFIFO
    +                            : UNKNOWN;
    +// normalize unicode path names
    +const normalizeCache = new Map();
    +const normalize = (s) => {
    +    const c = normalizeCache.get(s);
    +    if (c)
    +        return c;
    +    const n = s.normalize('NFKD');
    +    normalizeCache.set(s, n);
    +    return n;
    +};
    +const normalizeNocaseCache = new Map();
    +const normalizeNocase = (s) => {
    +    const c = normalizeNocaseCache.get(s);
    +    if (c)
    +        return c;
    +    const n = normalize(s.toLowerCase());
    +    normalizeNocaseCache.set(s, n);
    +    return n;
    +};
    +/**
    + * An LRUCache for storing resolved path strings or Path objects.
    + * @internal
    + */
    +export class ResolveCache extends LRUCache {
    +    constructor() {
    +        super({ max: 256 });
    +    }
    +}
    +// In order to prevent blowing out the js heap by allocating hundreds of
    +// thousands of Path entries when walking extremely large trees, the "children"
    +// in this tree are represented by storing an array of Path entries in an
    +// LRUCache, indexed by the parent.  At any time, Path.children() may return an
    +// empty array, indicating that it doesn't know about any of its children, and
    +// thus has to rebuild that cache.  This is fine, it just means that we don't
    +// benefit as much from having the cached entries, but huge directory walks
    +// don't blow out the stack, and smaller ones are still as fast as possible.
    +//
    +//It does impose some complexity when building up the readdir data, because we
    +//need to pass a reference to the children array that we started with.
    +/**
    + * an LRUCache for storing child entries.
    + * @internal
    + */
    +export class ChildrenCache extends LRUCache {
    +    constructor(maxSize = 16 * 1024) {
    +        super({
    +            maxSize,
    +            // parent + children
    +            sizeCalculation: a => a.length + 1,
    +        });
    +    }
    +}
    +/**
    + * Path objects are sort of like a super-powered
    + * {@link https://nodejs.org/docs/latest/api/fs.html#class-fsdirent fs.Dirent}
    + *
    + * Each one represents a single filesystem entry on disk, which may or may not
    + * exist. It includes methods for reading various types of information via
    + * lstat, readlink, and readdir, and caches all information to the greatest
    + * degree possible.
    + *
    + * Note that fs operations that would normally throw will instead return an
    + * "empty" value. This is in order to prevent excessive overhead from error
    + * stack traces.
    + */
    +export class PathBase {
    +    /**
    +     * the basename of this path
    +     *
    +     * **Important**: *always* test the path name against any test string
    +     * usingthe {@link isNamed} method, and not by directly comparing this
    +     * string. Otherwise, unicode path strings that the system sees as identical
    +     * will not be properly treated as the same path, leading to incorrect
    +     * behavior and possible security issues.
    +     */
    +    name;
    +    /**
    +     * the Path entry corresponding to the path root.
    +     *
    +     * @internal
    +     */
    +    root;
    +    /**
    +     * All roots found within the current PathScurry family
    +     *
    +     * @internal
    +     */
    +    roots;
    +    /**
    +     * a reference to the parent path, or undefined in the case of root entries
    +     *
    +     * @internal
    +     */
    +    parent;
    +    /**
    +     * boolean indicating whether paths are compared case-insensitively
    +     * @internal
    +     */
    +    nocase;
    +    // potential default fs override
    +    #fs;
    +    // Stats fields
    +    #dev;
    +    get dev() {
    +        return this.#dev;
    +    }
    +    #mode;
    +    get mode() {
    +        return this.#mode;
    +    }
    +    #nlink;
    +    get nlink() {
    +        return this.#nlink;
    +    }
    +    #uid;
    +    get uid() {
    +        return this.#uid;
    +    }
    +    #gid;
    +    get gid() {
    +        return this.#gid;
    +    }
    +    #rdev;
    +    get rdev() {
    +        return this.#rdev;
    +    }
    +    #blksize;
    +    get blksize() {
    +        return this.#blksize;
    +    }
    +    #ino;
    +    get ino() {
    +        return this.#ino;
    +    }
    +    #size;
    +    get size() {
    +        return this.#size;
    +    }
    +    #blocks;
    +    get blocks() {
    +        return this.#blocks;
    +    }
    +    #atimeMs;
    +    get atimeMs() {
    +        return this.#atimeMs;
    +    }
    +    #mtimeMs;
    +    get mtimeMs() {
    +        return this.#mtimeMs;
    +    }
    +    #ctimeMs;
    +    get ctimeMs() {
    +        return this.#ctimeMs;
    +    }
    +    #birthtimeMs;
    +    get birthtimeMs() {
    +        return this.#birthtimeMs;
    +    }
    +    #atime;
    +    get atime() {
    +        return this.#atime;
    +    }
    +    #mtime;
    +    get mtime() {
    +        return this.#mtime;
    +    }
    +    #ctime;
    +    get ctime() {
    +        return this.#ctime;
    +    }
    +    #birthtime;
    +    get birthtime() {
    +        return this.#birthtime;
    +    }
    +    #matchName;
    +    #depth;
    +    #fullpath;
    +    #relative;
    +    #type;
    +    #children;
    +    #linkTarget;
    +    #realpath;
    +    /**
    +     * Do not create new Path objects directly.  They should always be accessed
    +     * via the PathScurry class or other methods on the Path class.
    +     *
    +     * @internal
    +     */
    +    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {
    +        this.name = name;
    +        this.#matchName = nocase ? normalizeNocase(name) : normalize(name);
    +        this.#type = type & TYPEMASK;
    +        this.nocase = nocase;
    +        this.roots = roots;
    +        this.root = root || this;
    +        this.#children = children;
    +        this.#fullpath = opts.fullpath;
    +        this.#relative = opts.relative;
    +        this.parent = opts.parent;
    +        if (this.parent) {
    +            this.#fs = this.parent.#fs;
    +        }
    +        else {
    +            this.#fs = fsFromOption(opts.fs);
    +        }
    +    }
    +    /**
    +     * Returns the depth of the Path object from its root.
    +     *
    +     * For example, a path at `/foo/bar` would have a depth of 2.
    +     */
    +    depth() {
    +        if (this.#depth !== undefined)
    +            return this.#depth;
    +        if (!this.parent)
    +            return (this.#depth = 0);
    +        return (this.#depth = this.parent.depth() + 1);
    +    }
    +    /**
    +     * @internal
    +     */
    +    childrenCache() {
    +        return this.#children;
    +    }
    +    /**
    +     * Get the Path object referenced by the string path, resolved from this Path
    +     */
    +    resolve(path) {
    +        if (!path) {
    +            return this;
    +        }
    +        const rootPath = this.getRootString(path);
    +        const dir = path.substring(rootPath.length);
    +        const dirParts = dir.split(this.splitSep);
    +        const result = rootPath
    +            ? this.getRoot(rootPath).#resolveParts(dirParts)
    +            : this.#resolveParts(dirParts);
    +        return result;
    +    }
    +    #resolveParts(dirParts) {
    +        let p = this;
    +        for (const part of dirParts) {
    +            p = p.child(part);
    +        }
    +        return p;
    +    }
    +    /**
    +     * Returns the cached children Path objects, if still available.  If they
    +     * have fallen out of the cache, then returns an empty array, and resets the
    +     * READDIR_CALLED bit, so that future calls to readdir() will require an fs
    +     * lookup.
    +     *
    +     * @internal
    +     */
    +    children() {
    +        const cached = this.#children.get(this);
    +        if (cached) {
    +            return cached;
    +        }
    +        const children = Object.assign([], { provisional: 0 });
    +        this.#children.set(this, children);
    +        this.#type &= ~READDIR_CALLED;
    +        return children;
    +    }
    +    /**
    +     * Resolves a path portion and returns or creates the child Path.
    +     *
    +     * Returns `this` if pathPart is `''` or `'.'`, or `parent` if pathPart is
    +     * `'..'`.
    +     *
    +     * This should not be called directly.  If `pathPart` contains any path
    +     * separators, it will lead to unsafe undefined behavior.
    +     *
    +     * Use `Path.resolve()` instead.
    +     *
    +     * @internal
    +     */
    +    child(pathPart, opts) {
    +        if (pathPart === '' || pathPart === '.') {
    +            return this;
    +        }
    +        if (pathPart === '..') {
    +            return this.parent || this;
    +        }
    +        // find the child
    +        const children = this.children();
    +        const name = this.nocase
    +            ? normalizeNocase(pathPart)
    +            : normalize(pathPart);
    +        for (const p of children) {
    +            if (p.#matchName === name) {
    +                return p;
    +            }
    +        }
    +        // didn't find it, create provisional child, since it might not
    +        // actually exist.  If we know the parent isn't a dir, then
    +        // in fact it CAN'T exist.
    +        const s = this.parent ? this.sep : '';
    +        const fullpath = this.#fullpath
    +            ? this.#fullpath + s + pathPart
    +            : undefined;
    +        const pchild = this.newChild(pathPart, UNKNOWN, {
    +            ...opts,
    +            parent: this,
    +            fullpath,
    +        });
    +        if (!this.canReaddir()) {
    +            pchild.#type |= ENOENT;
    +        }
    +        // don't have to update provisional, because if we have real children,
    +        // then provisional is set to children.length, otherwise a lower number
    +        children.push(pchild);
    +        return pchild;
    +    }
    +    /**
    +     * The relative path from the cwd. If it does not share an ancestor with
    +     * the cwd, then this ends up being equivalent to the fullpath()
    +     */
    +    // TODO: instead of taking a param here, set it to '' in the constructor
    +    // for the CWD, and set it to this.name for any roots.
    +    relative() {
    +        if (this.#relative !== undefined) {
    +            return this.#relative;
    +        }
    +        const name = this.name;
    +        const p = this.parent;
    +        if (!p) {
    +            return (this.#relative = this.name);
    +        }
    +        const pv = p.relative();
    +        const rp = pv + (!pv || !p.parent ? '' : this.sep) + name;
    +        return (this.#relative = rp);
    +    }
    +    /**
    +     * The fully resolved path string for this Path entry
    +     */
    +    fullpath() {
    +        if (this.#fullpath !== undefined) {
    +            return this.#fullpath;
    +        }
    +        const name = this.name;
    +        const p = this.parent;
    +        if (!p) {
    +            return (this.#fullpath = this.name);
    +        }
    +        const pv = p.fullpath();
    +        const fp = pv + (!p.parent ? '' : this.sep) + name;
    +        return (this.#fullpath = fp);
    +    }
    +    /**
    +     * Is the Path of an unknown type?
    +     *
    +     * Note that we might know *something* about it if there has been a previous
    +     * filesystem operation, for example that it does not exist, or is not a
    +     * link, or whether it has child entries.
    +     */
    +    isUnknown() {
    +        return (this.#type & IFMT) === UNKNOWN;
    +    }
    +    /**
    +     * Is the Path a regular file?
    +     */
    +    isFile() {
    +        return (this.#type & IFMT) === IFREG;
    +    }
    +    /**
    +     * Is the Path a directory?
    +     */
    +    isDirectory() {
    +        return (this.#type & IFMT) === IFDIR;
    +    }
    +    /**
    +     * Is the path a character device?
    +     */
    +    isCharacterDevice() {
    +        return (this.#type & IFMT) === IFCHR;
    +    }
    +    /**
    +     * Is the path a block device?
    +     */
    +    isBlockDevice() {
    +        return (this.#type & IFMT) === IFBLK;
    +    }
    +    /**
    +     * Is the path a FIFO pipe?
    +     */
    +    isFIFO() {
    +        return (this.#type & IFMT) === IFIFO;
    +    }
    +    /**
    +     * Is the path a socket?
    +     */
    +    isSocket() {
    +        return (this.#type & IFMT) === IFSOCK;
    +    }
    +    /**
    +     * Is the path a symbolic link?
    +     */
    +    isSymbolicLink() {
    +        return (this.#type & IFLNK) === IFLNK;
    +    }
    +    /**
    +     * Return the entry if it has been subject of a successful lstat, or
    +     * undefined otherwise.
    +     *
    +     * Does not read the filesystem, so an undefined result *could* simply
    +     * mean that we haven't called lstat on it.
    +     */
    +    lstatCached() {
    +        return this.#type & LSTAT_CALLED ? this : undefined;
    +    }
    +    /**
    +     * Return the cached link target if the entry has been the subject of a
    +     * successful readlink, or undefined otherwise.
    +     *
    +     * Does not read the filesystem, so an undefined result *could* just mean we
    +     * don't have any cached data. Only use it if you are very sure that a
    +     * readlink() has been called at some point.
    +     */
    +    readlinkCached() {
    +        return this.#linkTarget;
    +    }
    +    /**
    +     * Returns the cached realpath target if the entry has been the subject
    +     * of a successful realpath, or undefined otherwise.
    +     *
    +     * Does not read the filesystem, so an undefined result *could* just mean we
    +     * don't have any cached data. Only use it if you are very sure that a
    +     * realpath() has been called at some point.
    +     */
    +    realpathCached() {
    +        return this.#realpath;
    +    }
    +    /**
    +     * Returns the cached child Path entries array if the entry has been the
    +     * subject of a successful readdir(), or [] otherwise.
    +     *
    +     * Does not read the filesystem, so an empty array *could* just mean we
    +     * don't have any cached data. Only use it if you are very sure that a
    +     * readdir() has been called recently enough to still be valid.
    +     */
    +    readdirCached() {
    +        const children = this.children();
    +        return children.slice(0, children.provisional);
    +    }
    +    /**
    +     * Return true if it's worth trying to readlink.  Ie, we don't (yet) have
    +     * any indication that readlink will definitely fail.
    +     *
    +     * Returns false if the path is known to not be a symlink, if a previous
    +     * readlink failed, or if the entry does not exist.
    +     */
    +    canReadlink() {
    +        if (this.#linkTarget)
    +            return true;
    +        if (!this.parent)
    +            return false;
    +        // cases where it cannot possibly succeed
    +        const ifmt = this.#type & IFMT;
    +        return !((ifmt !== UNKNOWN && ifmt !== IFLNK) ||
    +            this.#type & ENOREADLINK ||
    +            this.#type & ENOENT);
    +    }
    +    /**
    +     * Return true if readdir has previously been successfully called on this
    +     * path, indicating that cachedReaddir() is likely valid.
    +     */
    +    calledReaddir() {
    +        return !!(this.#type & READDIR_CALLED);
    +    }
    +    /**
    +     * Returns true if the path is known to not exist. That is, a previous lstat
    +     * or readdir failed to verify its existence when that would have been
    +     * expected, or a parent entry was marked either enoent or enotdir.
    +     */
    +    isENOENT() {
    +        return !!(this.#type & ENOENT);
    +    }
    +    /**
    +     * Return true if the path is a match for the given path name.  This handles
    +     * case sensitivity and unicode normalization.
    +     *
    +     * Note: even on case-sensitive systems, it is **not** safe to test the
    +     * equality of the `.name` property to determine whether a given pathname
    +     * matches, due to unicode normalization mismatches.
    +     *
    +     * Always use this method instead of testing the `path.name` property
    +     * directly.
    +     */
    +    isNamed(n) {
    +        return !this.nocase
    +            ? this.#matchName === normalize(n)
    +            : this.#matchName === normalizeNocase(n);
    +    }
    +    /**
    +     * Return the Path object corresponding to the target of a symbolic link.
    +     *
    +     * If the Path is not a symbolic link, or if the readlink call fails for any
    +     * reason, `undefined` is returned.
    +     *
    +     * Result is cached, and thus may be outdated if the filesystem is mutated.
    +     */
    +    async readlink() {
    +        const target = this.#linkTarget;
    +        if (target) {
    +            return target;
    +        }
    +        if (!this.canReadlink()) {
    +            return undefined;
    +        }
    +        /* c8 ignore start */
    +        // already covered by the canReadlink test, here for ts grumples
    +        if (!this.parent) {
    +            return undefined;
    +        }
    +        /* c8 ignore stop */
    +        try {
    +            const read = await this.#fs.promises.readlink(this.fullpath());
    +            const linkTarget = this.parent.resolve(read);
    +            if (linkTarget) {
    +                return (this.#linkTarget = linkTarget);
    +            }
    +        }
    +        catch (er) {
    +            this.#readlinkFail(er.code);
    +            return undefined;
    +        }
    +    }
    +    /**
    +     * Synchronous {@link PathBase.readlink}
    +     */
    +    readlinkSync() {
    +        const target = this.#linkTarget;
    +        if (target) {
    +            return target;
    +        }
    +        if (!this.canReadlink()) {
    +            return undefined;
    +        }
    +        /* c8 ignore start */
    +        // already covered by the canReadlink test, here for ts grumples
    +        if (!this.parent) {
    +            return undefined;
    +        }
    +        /* c8 ignore stop */
    +        try {
    +            const read = this.#fs.readlinkSync(this.fullpath());
    +            const linkTarget = this.parent.resolve(read);
    +            if (linkTarget) {
    +                return (this.#linkTarget = linkTarget);
    +            }
    +        }
    +        catch (er) {
    +            this.#readlinkFail(er.code);
    +            return undefined;
    +        }
    +    }
    +    #readdirSuccess(children) {
    +        // succeeded, mark readdir called bit
    +        this.#type |= READDIR_CALLED;
    +        // mark all remaining provisional children as ENOENT
    +        for (let p = children.provisional; p < children.length; p++) {
    +            children[p].#markENOENT();
    +        }
    +    }
    +    #markENOENT() {
    +        // mark as UNKNOWN and ENOENT
    +        if (this.#type & ENOENT)
    +            return;
    +        this.#type = (this.#type | ENOENT) & IFMT_UNKNOWN;
    +        this.#markChildrenENOENT();
    +    }
    +    #markChildrenENOENT() {
    +        // all children are provisional and do not exist
    +        const children = this.children();
    +        children.provisional = 0;
    +        for (const p of children) {
    +            p.#markENOENT();
    +        }
    +    }
    +    #markENOREALPATH() {
    +        this.#type |= ENOREALPATH;
    +        this.#markENOTDIR();
    +    }
    +    // save the information when we know the entry is not a dir
    +    #markENOTDIR() {
    +        // entry is not a directory, so any children can't exist.
    +        // this *should* be impossible, since any children created
    +        // after it's been marked ENOTDIR should be marked ENOENT,
    +        // so it won't even get to this point.
    +        /* c8 ignore start */
    +        if (this.#type & ENOTDIR)
    +            return;
    +        /* c8 ignore stop */
    +        let t = this.#type;
    +        // this could happen if we stat a dir, then delete it,
    +        // then try to read it or one of its children.
    +        if ((t & IFMT) === IFDIR)
    +            t &= IFMT_UNKNOWN;
    +        this.#type = t | ENOTDIR;
    +        this.#markChildrenENOENT();
    +    }
    +    #readdirFail(code = '') {
    +        // markENOTDIR and markENOENT also set provisional=0
    +        if (code === 'ENOTDIR' || code === 'EPERM') {
    +            this.#markENOTDIR();
    +        }
    +        else if (code === 'ENOENT') {
    +            this.#markENOENT();
    +        }
    +        else {
    +            this.children().provisional = 0;
    +        }
    +    }
    +    #lstatFail(code = '') {
    +        // Windows just raises ENOENT in this case, disable for win CI
    +        /* c8 ignore start */
    +        if (code === 'ENOTDIR') {
    +            // already know it has a parent by this point
    +            const p = this.parent;
    +            p.#markENOTDIR();
    +        }
    +        else if (code === 'ENOENT') {
    +            /* c8 ignore stop */
    +            this.#markENOENT();
    +        }
    +    }
    +    #readlinkFail(code = '') {
    +        let ter = this.#type;
    +        ter |= ENOREADLINK;
    +        if (code === 'ENOENT')
    +            ter |= ENOENT;
    +        // windows gets a weird error when you try to readlink a file
    +        if (code === 'EINVAL' || code === 'UNKNOWN') {
    +            // exists, but not a symlink, we don't know WHAT it is, so remove
    +            // all IFMT bits.
    +            ter &= IFMT_UNKNOWN;
    +        }
    +        this.#type = ter;
    +        // windows just gets ENOENT in this case.  We do cover the case,
    +        // just disabled because it's impossible on Windows CI
    +        /* c8 ignore start */
    +        if (code === 'ENOTDIR' && this.parent) {
    +            this.parent.#markENOTDIR();
    +        }
    +        /* c8 ignore stop */
    +    }
    +    #readdirAddChild(e, c) {
    +        return (this.#readdirMaybePromoteChild(e, c) ||
    +            this.#readdirAddNewChild(e, c));
    +    }
    +    #readdirAddNewChild(e, c) {
    +        // alloc new entry at head, so it's never provisional
    +        const type = entToType(e);
    +        const child = this.newChild(e.name, type, { parent: this });
    +        const ifmt = child.#type & IFMT;
    +        if (ifmt !== IFDIR && ifmt !== IFLNK && ifmt !== UNKNOWN) {
    +            child.#type |= ENOTDIR;
    +        }
    +        c.unshift(child);
    +        c.provisional++;
    +        return child;
    +    }
    +    #readdirMaybePromoteChild(e, c) {
    +        for (let p = c.provisional; p < c.length; p++) {
    +            const pchild = c[p];
    +            const name = this.nocase
    +                ? normalizeNocase(e.name)
    +                : normalize(e.name);
    +            if (name !== pchild.#matchName) {
    +                continue;
    +            }
    +            return this.#readdirPromoteChild(e, pchild, p, c);
    +        }
    +    }
    +    #readdirPromoteChild(e, p, index, c) {
    +        const v = p.name;
    +        // retain any other flags, but set ifmt from dirent
    +        p.#type = (p.#type & IFMT_UNKNOWN) | entToType(e);
    +        // case sensitivity fixing when we learn the true name.
    +        if (v !== e.name)
    +            p.name = e.name;
    +        // just advance provisional index (potentially off the list),
    +        // otherwise we have to splice/pop it out and re-insert at head
    +        if (index !== c.provisional) {
    +            if (index === c.length - 1)
    +                c.pop();
    +            else
    +                c.splice(index, 1);
    +            c.unshift(p);
    +        }
    +        c.provisional++;
    +        return p;
    +    }
    +    /**
    +     * Call lstat() on this Path, and update all known information that can be
    +     * determined.
    +     *
    +     * Note that unlike `fs.lstat()`, the returned value does not contain some
    +     * information, such as `mode`, `dev`, `nlink`, and `ino`.  If that
    +     * information is required, you will need to call `fs.lstat` yourself.
    +     *
    +     * If the Path refers to a nonexistent file, or if the lstat call fails for
    +     * any reason, `undefined` is returned.  Otherwise the updated Path object is
    +     * returned.
    +     *
    +     * Results are cached, and thus may be out of date if the filesystem is
    +     * mutated.
    +     */
    +    async lstat() {
    +        if ((this.#type & ENOENT) === 0) {
    +            try {
    +                this.#applyStat(await this.#fs.promises.lstat(this.fullpath()));
    +                return this;
    +            }
    +            catch (er) {
    +                this.#lstatFail(er.code);
    +            }
    +        }
    +    }
    +    /**
    +     * synchronous {@link PathBase.lstat}
    +     */
    +    lstatSync() {
    +        if ((this.#type & ENOENT) === 0) {
    +            try {
    +                this.#applyStat(this.#fs.lstatSync(this.fullpath()));
    +                return this;
    +            }
    +            catch (er) {
    +                this.#lstatFail(er.code);
    +            }
    +        }
    +    }
    +    #applyStat(st) {
    +        const { atime, atimeMs, birthtime, birthtimeMs, blksize, blocks, ctime, ctimeMs, dev, gid, ino, mode, mtime, mtimeMs, nlink, rdev, size, uid, } = st;
    +        this.#atime = atime;
    +        this.#atimeMs = atimeMs;
    +        this.#birthtime = birthtime;
    +        this.#birthtimeMs = birthtimeMs;
    +        this.#blksize = blksize;
    +        this.#blocks = blocks;
    +        this.#ctime = ctime;
    +        this.#ctimeMs = ctimeMs;
    +        this.#dev = dev;
    +        this.#gid = gid;
    +        this.#ino = ino;
    +        this.#mode = mode;
    +        this.#mtime = mtime;
    +        this.#mtimeMs = mtimeMs;
    +        this.#nlink = nlink;
    +        this.#rdev = rdev;
    +        this.#size = size;
    +        this.#uid = uid;
    +        const ifmt = entToType(st);
    +        // retain any other flags, but set the ifmt
    +        this.#type = (this.#type & IFMT_UNKNOWN) | ifmt | LSTAT_CALLED;
    +        if (ifmt !== UNKNOWN && ifmt !== IFDIR && ifmt !== IFLNK) {
    +            this.#type |= ENOTDIR;
    +        }
    +    }
    +    #onReaddirCB = [];
    +    #readdirCBInFlight = false;
    +    #callOnReaddirCB(children) {
    +        this.#readdirCBInFlight = false;
    +        const cbs = this.#onReaddirCB.slice();
    +        this.#onReaddirCB.length = 0;
    +        cbs.forEach(cb => cb(null, children));
    +    }
    +    /**
    +     * Standard node-style callback interface to get list of directory entries.
    +     *
    +     * If the Path cannot or does not contain any children, then an empty array
    +     * is returned.
    +     *
    +     * Results are cached, and thus may be out of date if the filesystem is
    +     * mutated.
    +     *
    +     * @param cb The callback called with (er, entries).  Note that the `er`
    +     * param is somewhat extraneous, as all readdir() errors are handled and
    +     * simply result in an empty set of entries being returned.
    +     * @param allowZalgo Boolean indicating that immediately known results should
    +     * *not* be deferred with `queueMicrotask`. Defaults to `false`. Release
    +     * zalgo at your peril, the dark pony lord is devious and unforgiving.
    +     */
    +    readdirCB(cb, allowZalgo = false) {
    +        if (!this.canReaddir()) {
    +            if (allowZalgo)
    +                cb(null, []);
    +            else
    +                queueMicrotask(() => cb(null, []));
    +            return;
    +        }
    +        const children = this.children();
    +        if (this.calledReaddir()) {
    +            const c = children.slice(0, children.provisional);
    +            if (allowZalgo)
    +                cb(null, c);
    +            else
    +                queueMicrotask(() => cb(null, c));
    +            return;
    +        }
    +        // don't have to worry about zalgo at this point.
    +        this.#onReaddirCB.push(cb);
    +        if (this.#readdirCBInFlight) {
    +            return;
    +        }
    +        this.#readdirCBInFlight = true;
    +        // else read the directory, fill up children
    +        // de-provisionalize any provisional children.
    +        const fullpath = this.fullpath();
    +        this.#fs.readdir(fullpath, { withFileTypes: true }, (er, entries) => {
    +            if (er) {
    +                this.#readdirFail(er.code);
    +                children.provisional = 0;
    +            }
    +            else {
    +                // if we didn't get an error, we always get entries.
    +                //@ts-ignore
    +                for (const e of entries) {
    +                    this.#readdirAddChild(e, children);
    +                }
    +                this.#readdirSuccess(children);
    +            }
    +            this.#callOnReaddirCB(children.slice(0, children.provisional));
    +            return;
    +        });
    +    }
    +    #asyncReaddirInFlight;
    +    /**
    +     * Return an array of known child entries.
    +     *
    +     * If the Path cannot or does not contain any children, then an empty array
    +     * is returned.
    +     *
    +     * Results are cached, and thus may be out of date if the filesystem is
    +     * mutated.
    +     */
    +    async readdir() {
    +        if (!this.canReaddir()) {
    +            return [];
    +        }
    +        const children = this.children();
    +        if (this.calledReaddir()) {
    +            return children.slice(0, children.provisional);
    +        }
    +        // else read the directory, fill up children
    +        // de-provisionalize any provisional children.
    +        const fullpath = this.fullpath();
    +        if (this.#asyncReaddirInFlight) {
    +            await this.#asyncReaddirInFlight;
    +        }
    +        else {
    +            /* c8 ignore start */
    +            let resolve = () => { };
    +            /* c8 ignore stop */
    +            this.#asyncReaddirInFlight = new Promise(res => (resolve = res));
    +            try {
    +                for (const e of await this.#fs.promises.readdir(fullpath, {
    +                    withFileTypes: true,
    +                })) {
    +                    this.#readdirAddChild(e, children);
    +                }
    +                this.#readdirSuccess(children);
    +            }
    +            catch (er) {
    +                this.#readdirFail(er.code);
    +                children.provisional = 0;
    +            }
    +            this.#asyncReaddirInFlight = undefined;
    +            resolve();
    +        }
    +        return children.slice(0, children.provisional);
    +    }
    +    /**
    +     * synchronous {@link PathBase.readdir}
    +     */
    +    readdirSync() {
    +        if (!this.canReaddir()) {
    +            return [];
    +        }
    +        const children = this.children();
    +        if (this.calledReaddir()) {
    +            return children.slice(0, children.provisional);
    +        }
    +        // else read the directory, fill up children
    +        // de-provisionalize any provisional children.
    +        const fullpath = this.fullpath();
    +        try {
    +            for (const e of this.#fs.readdirSync(fullpath, {
    +                withFileTypes: true,
    +            })) {
    +                this.#readdirAddChild(e, children);
    +            }
    +            this.#readdirSuccess(children);
    +        }
    +        catch (er) {
    +            this.#readdirFail(er.code);
    +            children.provisional = 0;
    +        }
    +        return children.slice(0, children.provisional);
    +    }
    +    canReaddir() {
    +        if (this.#type & ENOCHILD)
    +            return false;
    +        const ifmt = IFMT & this.#type;
    +        // we always set ENOTDIR when setting IFMT, so should be impossible
    +        /* c8 ignore start */
    +        if (!(ifmt === UNKNOWN || ifmt === IFDIR || ifmt === IFLNK)) {
    +            return false;
    +        }
    +        /* c8 ignore stop */
    +        return true;
    +    }
    +    shouldWalk(dirs, walkFilter) {
    +        return ((this.#type & IFDIR) === IFDIR &&
    +            !(this.#type & ENOCHILD) &&
    +            !dirs.has(this) &&
    +            (!walkFilter || walkFilter(this)));
    +    }
    +    /**
    +     * Return the Path object corresponding to path as resolved
    +     * by realpath(3).
    +     *
    +     * If the realpath call fails for any reason, `undefined` is returned.
    +     *
    +     * Result is cached, and thus may be outdated if the filesystem is mutated.
    +     * On success, returns a Path object.
    +     */
    +    async realpath() {
    +        if (this.#realpath)
    +            return this.#realpath;
    +        if ((ENOREALPATH | ENOREADLINK | ENOENT) & this.#type)
    +            return undefined;
    +        try {
    +            const rp = await this.#fs.promises.realpath(this.fullpath());
    +            return (this.#realpath = this.resolve(rp));
    +        }
    +        catch (_) {
    +            this.#markENOREALPATH();
    +        }
    +    }
    +    /**
    +     * Synchronous {@link realpath}
    +     */
    +    realpathSync() {
    +        if (this.#realpath)
    +            return this.#realpath;
    +        if ((ENOREALPATH | ENOREADLINK | ENOENT) & this.#type)
    +            return undefined;
    +        try {
    +            const rp = this.#fs.realpathSync(this.fullpath());
    +            return (this.#realpath = this.resolve(rp));
    +        }
    +        catch (_) {
    +            this.#markENOREALPATH();
    +        }
    +    }
    +}
    +/**
    + * Path class used on win32 systems
    + *
    + * Uses `'\\'` as the path separator for returned paths, either `'\\'` or `'/'`
    + * as the path separator for parsing paths.
    + */
    +export class PathWin32 extends PathBase {
    +    /**
    +     * Separator for generating path strings.
    +     */
    +    sep = '\\';
    +    /**
    +     * Separator for parsing path strings.
    +     */
    +    splitSep = eitherSep;
    +    /**
    +     * Do not create new Path objects directly.  They should always be accessed
    +     * via the PathScurry class or other methods on the Path class.
    +     *
    +     * @internal
    +     */
    +    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {
    +        super(name, type, root, roots, nocase, children, opts);
    +    }
    +    /**
    +     * @internal
    +     */
    +    newChild(name, type = UNKNOWN, opts = {}) {
    +        return new PathWin32(name, type, this.root, this.roots, this.nocase, this.childrenCache(), opts);
    +    }
    +    /**
    +     * @internal
    +     */
    +    getRootString(path) {
    +        return win32.parse(path).root;
    +    }
    +    /**
    +     * @internal
    +     */
    +    getRoot(rootPath) {
    +        rootPath = uncToDrive(rootPath.toUpperCase());
    +        if (rootPath === this.root.name) {
    +            return this.root;
    +        }
    +        // ok, not that one, check if it matches another we know about
    +        for (const [compare, root] of Object.entries(this.roots)) {
    +            if (this.sameRoot(rootPath, compare)) {
    +                return (this.roots[rootPath] = root);
    +            }
    +        }
    +        // otherwise, have to create a new one.
    +        return (this.roots[rootPath] = new PathScurryWin32(rootPath, this).root);
    +    }
    +    /**
    +     * @internal
    +     */
    +    sameRoot(rootPath, compare = this.root.name) {
    +        // windows can (rarely) have case-sensitive filesystem, but
    +        // UNC and drive letters are always case-insensitive, and canonically
    +        // represented uppercase.
    +        rootPath = rootPath
    +            .toUpperCase()
    +            .replace(/\//g, '\\')
    +            .replace(uncDriveRegexp, '$1\\');
    +        return rootPath === compare;
    +    }
    +}
    +/**
    + * Path class used on all posix systems.
    + *
    + * Uses `'/'` as the path separator.
    + */
    +export class PathPosix extends PathBase {
    +    /**
    +     * separator for parsing path strings
    +     */
    +    splitSep = '/';
    +    /**
    +     * separator for generating path strings
    +     */
    +    sep = '/';
    +    /**
    +     * Do not create new Path objects directly.  They should always be accessed
    +     * via the PathScurry class or other methods on the Path class.
    +     *
    +     * @internal
    +     */
    +    constructor(name, type = UNKNOWN, root, roots, nocase, children, opts) {
    +        super(name, type, root, roots, nocase, children, opts);
    +    }
    +    /**
    +     * @internal
    +     */
    +    getRootString(path) {
    +        return path.startsWith('/') ? '/' : '';
    +    }
    +    /**
    +     * @internal
    +     */
    +    getRoot(_rootPath) {
    +        return this.root;
    +    }
    +    /**
    +     * @internal
    +     */
    +    newChild(name, type = UNKNOWN, opts = {}) {
    +        return new PathPosix(name, type, this.root, this.roots, this.nocase, this.childrenCache(), opts);
    +    }
    +}
    +/**
    + * The base class for all PathScurry classes, providing the interface for path
    + * resolution and filesystem operations.
    + *
    + * Typically, you should *not* instantiate this class directly, but rather one
    + * of the platform-specific classes, or the exported {@link PathScurry} which
    + * defaults to the current platform.
    + */
    +export class PathScurryBase {
    +    /**
    +     * The root Path entry for the current working directory of this Scurry
    +     */
    +    root;
    +    /**
    +     * The string path for the root of this Scurry's current working directory
    +     */
    +    rootPath;
    +    /**
    +     * A collection of all roots encountered, referenced by rootPath
    +     */
    +    roots;
    +    /**
    +     * The Path entry corresponding to this PathScurry's current working directory.
    +     */
    +    cwd;
    +    #resolveCache;
    +    #children;
    +    /**
    +     * Perform path comparisons case-insensitively.
    +     *
    +     * Defaults true on Darwin and Windows systems, false elsewhere.
    +     */
    +    nocase;
    +    #fs;
    +    /**
    +     * This class should not be instantiated directly.
    +     *
    +     * Use PathScurryWin32, PathScurryDarwin, PathScurryPosix, or PathScurry
    +     *
    +     * @internal
    +     */
    +    constructor(cwd = process.cwd(), pathImpl, sep, { nocase, childrenCacheSize = 16 * 1024, fs = defaultFS, } = {}) {
    +        this.#fs = fsFromOption(fs);
    +        if (cwd instanceof URL || cwd.startsWith('file://')) {
    +            cwd = fileURLToPath(cwd);
    +        }
    +        // resolve and split root, and then add to the store.
    +        // this is the only time we call path.resolve()
    +        const cwdPath = pathImpl.resolve(cwd);
    +        this.roots = Object.create(null);
    +        this.rootPath = this.parseRootPath(cwdPath);
    +        this.#resolveCache = new ResolveCache();
    +        this.#children = new ChildrenCache(childrenCacheSize);
    +        const split = cwdPath.substring(this.rootPath.length).split(sep);
    +        // resolve('/') leaves '', splits to [''], we don't want that.
    +        if (split.length === 1 && !split[0]) {
    +            split.pop();
    +        }
    +        /* c8 ignore start */
    +        if (nocase === undefined) {
    +            throw new TypeError('must provide nocase setting to PathScurryBase ctor');
    +        }
    +        /* c8 ignore stop */
    +        this.nocase = nocase;
    +        this.root = this.newRoot(this.#fs);
    +        this.roots[this.rootPath] = this.root;
    +        let prev = this.root;
    +        let len = split.length - 1;
    +        const joinSep = pathImpl.sep;
    +        let abs = this.rootPath;
    +        let sawFirst = false;
    +        for (const part of split) {
    +            prev = prev.child(part, {
    +                relative: new Array(len--).fill('..').join(joinSep),
    +                fullpath: (abs += (sawFirst ? '' : joinSep) + part),
    +            });
    +            sawFirst = true;
    +        }
    +        this.cwd = prev;
    +    }
    +    /**
    +     * Get the depth of a provided path, string, or the cwd
    +     */
    +    depth(path = this.cwd) {
    +        if (typeof path === 'string') {
    +            path = this.cwd.resolve(path);
    +        }
    +        return path.depth();
    +    }
    +    /**
    +     * Return the cache of child entries.  Exposed so subclasses can create
    +     * child Path objects in a platform-specific way.
    +     *
    +     * @internal
    +     */
    +    childrenCache() {
    +        return this.#children;
    +    }
    +    /**
    +     * Resolve one or more path strings to a resolved string
    +     *
    +     * Same interface as require('path').resolve.
    +     *
    +     * Much faster than path.resolve() when called multiple times for the same
    +     * path, because the resolved Path objects are cached.  Much slower
    +     * otherwise.
    +     */
    +    resolve(...paths) {
    +        // first figure out the minimum number of paths we have to test
    +        // we always start at cwd, but any absolutes will bump the start
    +        let r = '';
    +        for (let i = paths.length - 1; i >= 0; i--) {
    +            const p = paths[i];
    +            if (!p || p === '.')
    +                continue;
    +            r = r ? `${p}/${r}` : p;
    +            if (this.isAbsolute(p)) {
    +                break;
    +            }
    +        }
    +        const cached = this.#resolveCache.get(r);
    +        if (cached !== undefined) {
    +            return cached;
    +        }
    +        const result = this.cwd.resolve(r).fullpath();
    +        this.#resolveCache.set(r, result);
    +        return result;
    +    }
    +    /**
    +     * find the relative path from the cwd to the supplied path string or entry
    +     */
    +    relative(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return entry.relative();
    +    }
    +    /**
    +     * Return the basename for the provided string or Path object
    +     */
    +    basename(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return entry.name;
    +    }
    +    /**
    +     * Return the dirname for the provided string or Path object
    +     */
    +    dirname(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return (entry.parent || entry).fullpath();
    +    }
    +    async readdir(entry = this.cwd, opts = {
    +        withFileTypes: true,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes } = opts;
    +        if (!entry.canReaddir()) {
    +            return [];
    +        }
    +        else {
    +            const p = await entry.readdir();
    +            return withFileTypes ? p : p.map(e => e.name);
    +        }
    +    }
    +    readdirSync(entry = this.cwd, opts = {
    +        withFileTypes: true,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true } = opts;
    +        if (!entry.canReaddir()) {
    +            return [];
    +        }
    +        else if (withFileTypes) {
    +            return entry.readdirSync();
    +        }
    +        else {
    +            return entry.readdirSync().map(e => e.name);
    +        }
    +    }
    +    /**
    +     * Call lstat() on the string or Path object, and update all known
    +     * information that can be determined.
    +     *
    +     * Note that unlike `fs.lstat()`, the returned value does not contain some
    +     * information, such as `mode`, `dev`, `nlink`, and `ino`.  If that
    +     * information is required, you will need to call `fs.lstat` yourself.
    +     *
    +     * If the Path refers to a nonexistent file, or if the lstat call fails for
    +     * any reason, `undefined` is returned.  Otherwise the updated Path object is
    +     * returned.
    +     *
    +     * Results are cached, and thus may be out of date if the filesystem is
    +     * mutated.
    +     */
    +    async lstat(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return entry.lstat();
    +    }
    +    /**
    +     * synchronous {@link PathScurryBase.lstat}
    +     */
    +    lstatSync(entry = this.cwd) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        return entry.lstatSync();
    +    }
    +    async readlink(entry = this.cwd, { withFileTypes } = {
    +        withFileTypes: false,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            withFileTypes = entry.withFileTypes;
    +            entry = this.cwd;
    +        }
    +        const e = await entry.readlink();
    +        return withFileTypes ? e : e?.fullpath();
    +    }
    +    readlinkSync(entry = this.cwd, { withFileTypes } = {
    +        withFileTypes: false,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            withFileTypes = entry.withFileTypes;
    +            entry = this.cwd;
    +        }
    +        const e = entry.readlinkSync();
    +        return withFileTypes ? e : e?.fullpath();
    +    }
    +    async realpath(entry = this.cwd, { withFileTypes } = {
    +        withFileTypes: false,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            withFileTypes = entry.withFileTypes;
    +            entry = this.cwd;
    +        }
    +        const e = await entry.realpath();
    +        return withFileTypes ? e : e?.fullpath();
    +    }
    +    realpathSync(entry = this.cwd, { withFileTypes } = {
    +        withFileTypes: false,
    +    }) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            withFileTypes = entry.withFileTypes;
    +            entry = this.cwd;
    +        }
    +        const e = entry.realpathSync();
    +        return withFileTypes ? e : e?.fullpath();
    +    }
    +    async walk(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        const results = [];
    +        if (!filter || filter(entry)) {
    +            results.push(withFileTypes ? entry : entry.fullpath());
    +        }
    +        const dirs = new Set();
    +        const walk = (dir, cb) => {
    +            dirs.add(dir);
    +            dir.readdirCB((er, entries) => {
    +                /* c8 ignore start */
    +                if (er) {
    +                    return cb(er);
    +                }
    +                /* c8 ignore stop */
    +                let len = entries.length;
    +                if (!len)
    +                    return cb();
    +                const next = () => {
    +                    if (--len === 0) {
    +                        cb();
    +                    }
    +                };
    +                for (const e of entries) {
    +                    if (!filter || filter(e)) {
    +                        results.push(withFileTypes ? e : e.fullpath());
    +                    }
    +                    if (follow && e.isSymbolicLink()) {
    +                        e.realpath()
    +                            .then(r => (r?.isUnknown() ? r.lstat() : r))
    +                            .then(r => r?.shouldWalk(dirs, walkFilter) ? walk(r, next) : next());
    +                    }
    +                    else {
    +                        if (e.shouldWalk(dirs, walkFilter)) {
    +                            walk(e, next);
    +                        }
    +                        else {
    +                            next();
    +                        }
    +                    }
    +                }
    +            }, true); // zalgooooooo
    +        };
    +        const start = entry;
    +        return new Promise((res, rej) => {
    +            walk(start, er => {
    +                /* c8 ignore start */
    +                if (er)
    +                    return rej(er);
    +                /* c8 ignore stop */
    +                res(results);
    +            });
    +        });
    +    }
    +    walkSync(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        const results = [];
    +        if (!filter || filter(entry)) {
    +            results.push(withFileTypes ? entry : entry.fullpath());
    +        }
    +        const dirs = new Set([entry]);
    +        for (const dir of dirs) {
    +            const entries = dir.readdirSync();
    +            for (const e of entries) {
    +                if (!filter || filter(e)) {
    +                    results.push(withFileTypes ? e : e.fullpath());
    +                }
    +                let r = e;
    +                if (e.isSymbolicLink()) {
    +                    if (!(follow && (r = e.realpathSync())))
    +                        continue;
    +                    if (r.isUnknown())
    +                        r.lstatSync();
    +                }
    +                if (r.shouldWalk(dirs, walkFilter)) {
    +                    dirs.add(r);
    +                }
    +            }
    +        }
    +        return results;
    +    }
    +    /**
    +     * Support for `for await`
    +     *
    +     * Alias for {@link PathScurryBase.iterate}
    +     *
    +     * Note: As of Node 19, this is very slow, compared to other methods of
    +     * walking.  Consider using {@link PathScurryBase.stream} if memory overhead
    +     * and backpressure are concerns, or {@link PathScurryBase.walk} if not.
    +     */
    +    [Symbol.asyncIterator]() {
    +        return this.iterate();
    +    }
    +    iterate(entry = this.cwd, options = {}) {
    +        // iterating async over the stream is significantly more performant,
    +        // especially in the warm-cache scenario, because it buffers up directory
    +        // entries in the background instead of waiting for a yield for each one.
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            options = entry;
    +            entry = this.cwd;
    +        }
    +        return this.stream(entry, options)[Symbol.asyncIterator]();
    +    }
    +    /**
    +     * Iterating over a PathScurry performs a synchronous walk.
    +     *
    +     * Alias for {@link PathScurryBase.iterateSync}
    +     */
    +    [Symbol.iterator]() {
    +        return this.iterateSync();
    +    }
    +    *iterateSync(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        if (!filter || filter(entry)) {
    +            yield withFileTypes ? entry : entry.fullpath();
    +        }
    +        const dirs = new Set([entry]);
    +        for (const dir of dirs) {
    +            const entries = dir.readdirSync();
    +            for (const e of entries) {
    +                if (!filter || filter(e)) {
    +                    yield withFileTypes ? e : e.fullpath();
    +                }
    +                let r = e;
    +                if (e.isSymbolicLink()) {
    +                    if (!(follow && (r = e.realpathSync())))
    +                        continue;
    +                    if (r.isUnknown())
    +                        r.lstatSync();
    +                }
    +                if (r.shouldWalk(dirs, walkFilter)) {
    +                    dirs.add(r);
    +                }
    +            }
    +        }
    +    }
    +    stream(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        const results = new Minipass({ objectMode: true });
    +        if (!filter || filter(entry)) {
    +            results.write(withFileTypes ? entry : entry.fullpath());
    +        }
    +        const dirs = new Set();
    +        const queue = [entry];
    +        let processing = 0;
    +        const process = () => {
    +            let paused = false;
    +            while (!paused) {
    +                const dir = queue.shift();
    +                if (!dir) {
    +                    if (processing === 0)
    +                        results.end();
    +                    return;
    +                }
    +                processing++;
    +                dirs.add(dir);
    +                const onReaddir = (er, entries, didRealpaths = false) => {
    +                    /* c8 ignore start */
    +                    if (er)
    +                        return results.emit('error', er);
    +                    /* c8 ignore stop */
    +                    if (follow && !didRealpaths) {
    +                        const promises = [];
    +                        for (const e of entries) {
    +                            if (e.isSymbolicLink()) {
    +                                promises.push(e
    +                                    .realpath()
    +                                    .then((r) => r?.isUnknown() ? r.lstat() : r));
    +                            }
    +                        }
    +                        if (promises.length) {
    +                            Promise.all(promises).then(() => onReaddir(null, entries, true));
    +                            return;
    +                        }
    +                    }
    +                    for (const e of entries) {
    +                        if (e && (!filter || filter(e))) {
    +                            if (!results.write(withFileTypes ? e : e.fullpath())) {
    +                                paused = true;
    +                            }
    +                        }
    +                    }
    +                    processing--;
    +                    for (const e of entries) {
    +                        const r = e.realpathCached() || e;
    +                        if (r.shouldWalk(dirs, walkFilter)) {
    +                            queue.push(r);
    +                        }
    +                    }
    +                    if (paused && !results.flowing) {
    +                        results.once('drain', process);
    +                    }
    +                    else if (!sync) {
    +                        process();
    +                    }
    +                };
    +                // zalgo containment
    +                let sync = true;
    +                dir.readdirCB(onReaddir, true);
    +                sync = false;
    +            }
    +        };
    +        process();
    +        return results;
    +    }
    +    streamSync(entry = this.cwd, opts = {}) {
    +        if (typeof entry === 'string') {
    +            entry = this.cwd.resolve(entry);
    +        }
    +        else if (!(entry instanceof PathBase)) {
    +            opts = entry;
    +            entry = this.cwd;
    +        }
    +        const { withFileTypes = true, follow = false, filter, walkFilter, } = opts;
    +        const results = new Minipass({ objectMode: true });
    +        const dirs = new Set();
    +        if (!filter || filter(entry)) {
    +            results.write(withFileTypes ? entry : entry.fullpath());
    +        }
    +        const queue = [entry];
    +        let processing = 0;
    +        const process = () => {
    +            let paused = false;
    +            while (!paused) {
    +                const dir = queue.shift();
    +                if (!dir) {
    +                    if (processing === 0)
    +                        results.end();
    +                    return;
    +                }
    +                processing++;
    +                dirs.add(dir);
    +                const entries = dir.readdirSync();
    +                for (const e of entries) {
    +                    if (!filter || filter(e)) {
    +                        if (!results.write(withFileTypes ? e : e.fullpath())) {
    +                            paused = true;
    +                        }
    +                    }
    +                }
    +                processing--;
    +                for (const e of entries) {
    +                    let r = e;
    +                    if (e.isSymbolicLink()) {
    +                        if (!(follow && (r = e.realpathSync())))
    +                            continue;
    +                        if (r.isUnknown())
    +                            r.lstatSync();
    +                    }
    +                    if (r.shouldWalk(dirs, walkFilter)) {
    +                        queue.push(r);
    +                    }
    +                }
    +            }
    +            if (paused && !results.flowing)
    +                results.once('drain', process);
    +        };
    +        process();
    +        return results;
    +    }
    +}
    +/**
    + * Windows implementation of {@link PathScurryBase}
    + *
    + * Defaults to case insensitve, uses `'\\'` to generate path strings.  Uses
    + * {@link PathWin32} for Path objects.
    + */
    +export class PathScurryWin32 extends PathScurryBase {
    +    /**
    +     * separator for generating path strings
    +     */
    +    sep = '\\';
    +    constructor(cwd = process.cwd(), opts = {}) {
    +        const { nocase = true } = opts;
    +        super(cwd, win32, '\\', { ...opts, nocase });
    +        this.nocase = nocase;
    +        for (let p = this.cwd; p; p = p.parent) {
    +            p.nocase = this.nocase;
    +        }
    +    }
    +    /**
    +     * @internal
    +     */
    +    parseRootPath(dir) {
    +        // if the path starts with a single separator, it's not a UNC, and we'll
    +        // just get separator as the root, and driveFromUNC will return \
    +        // In that case, mount \ on the root from the cwd.
    +        return win32.parse(dir).root.toUpperCase();
    +    }
    +    /**
    +     * @internal
    +     */
    +    newRoot(fs) {
    +        return new PathWin32(this.rootPath, IFDIR, undefined, this.roots, this.nocase, this.childrenCache(), { fs });
    +    }
    +    /**
    +     * Return true if the provided path string is an absolute path
    +     */
    +    isAbsolute(p) {
    +        return (p.startsWith('/') || p.startsWith('\\') || /^[a-z]:(\/|\\)/i.test(p));
    +    }
    +}
    +/**
    + * {@link PathScurryBase} implementation for all posix systems other than Darwin.
    + *
    + * Defaults to case-sensitive matching, uses `'/'` to generate path strings.
    + *
    + * Uses {@link PathPosix} for Path objects.
    + */
    +export class PathScurryPosix extends PathScurryBase {
    +    /**
    +     * separator for generating path strings
    +     */
    +    sep = '/';
    +    constructor(cwd = process.cwd(), opts = {}) {
    +        const { nocase = false } = opts;
    +        super(cwd, posix, '/', { ...opts, nocase });
    +        this.nocase = nocase;
    +    }
    +    /**
    +     * @internal
    +     */
    +    parseRootPath(_dir) {
    +        return '/';
    +    }
    +    /**
    +     * @internal
    +     */
    +    newRoot(fs) {
    +        return new PathPosix(this.rootPath, IFDIR, undefined, this.roots, this.nocase, this.childrenCache(), { fs });
    +    }
    +    /**
    +     * Return true if the provided path string is an absolute path
    +     */
    +    isAbsolute(p) {
    +        return p.startsWith('/');
    +    }
    +}
    +/**
    + * {@link PathScurryBase} implementation for Darwin (macOS) systems.
    + *
    + * Defaults to case-insensitive matching, uses `'/'` for generating path
    + * strings.
    + *
    + * Uses {@link PathPosix} for Path objects.
    + */
    +export class PathScurryDarwin extends PathScurryPosix {
    +    constructor(cwd = process.cwd(), opts = {}) {
    +        const { nocase = true } = opts;
    +        super(cwd, { ...opts, nocase });
    +    }
    +}
    +/**
    + * Default {@link PathBase} implementation for the current platform.
    + *
    + * {@link PathWin32} on Windows systems, {@link PathPosix} on all others.
    + */
    +export const Path = process.platform === 'win32' ? PathWin32 : PathPosix;
    +/**
    + * Default {@link PathScurryBase} implementation for the current platform.
    + *
    + * {@link PathScurryWin32} on Windows systems, {@link PathScurryDarwin} on
    + * Darwin (macOS) systems, {@link PathScurryPosix} on all others.
    + */
    +export const PathScurry = process.platform === 'win32'
    +    ? PathScurryWin32
    +    : process.platform === 'darwin'
    +        ? PathScurryDarwin
    +        : PathScurryPosix;
    +//# sourceMappingURL=index.js.map
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/path-scurry/dist/mjs/package.json b/deps/npm/node_modules/path-scurry/dist/mjs/package.json
    new file mode 100644
    index 00000000000000..3dbc1ca591c055
    --- /dev/null
    +++ b/deps/npm/node_modules/path-scurry/dist/mjs/package.json
    @@ -0,0 +1,3 @@
    +{
    +  "type": "module"
    +}
    diff --git a/deps/npm/node_modules/path-scurry/package.json b/deps/npm/node_modules/path-scurry/package.json
    new file mode 100644
    index 00000000000000..d19262f6591a3a
    --- /dev/null
    +++ b/deps/npm/node_modules/path-scurry/package.json
    @@ -0,0 +1,87 @@
    +{
    +  "name": "path-scurry",
    +  "version": "1.6.1",
    +  "description": "walk paths fast and efficiently",
    +  "author": "Isaac Z. Schlueter  (https://blog.izs.me)",
    +  "main": "./dist/cjs/index.js",
    +  "module": "./dist/mjs/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"
    +      }
    +    }
    +  },
    +  "files": [
    +    "dist"
    +  ],
    +  "license": "BlueOak-1.0.0",
    +  "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 ./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",
    +    "bench": "bash ./scripts/bench.sh"
    +  },
    +  "prettier": {
    +    "semi": false,
    +    "printWidth": 75,
    +    "tabWidth": 2,
    +    "useTabs": false,
    +    "singleQuote": true,
    +    "jsxSingleQuote": false,
    +    "bracketSameLine": true,
    +    "arrowParens": "avoid",
    +    "endOfLine": "lf"
    +  },
    +  "tap": {
    +    "coverage": false,
    +    "node-arg": [
    +      "--no-warnings",
    +      "--loader",
    +      "ts-node/esm"
    +    ],
    +    "ts": false
    +  },
    +  "devDependencies": {
    +    "@nodelib/fs.walk": "^1.2.8",
    +    "@types/node": "^18.11.18",
    +    "@types/tap": "^15.0.7",
    +    "c8": "^7.12.0",
    +    "eslint-config-prettier": "^8.6.0",
    +    "mkdirp": "^2.1.3",
    +    "prettier": "^2.8.3",
    +    "rimraf": "^4.1.2",
    +    "tap": "^16.3.4",
    +    "ts-node": "^10.9.1",
    +    "typedoc": "^0.23.24",
    +    "typescript": "^4.9.4"
    +  },
    +  "engines": {
    +    "node": ">=14"
    +  },
    +  "funding": {
    +    "url": "https://github.com/sponsors/isaacs"
    +  },
    +  "repository": {
    +    "type": "git",
    +    "url": "git+https://github.com/isaacs/path-walker"
    +  },
    +  "dependencies": {
    +    "lru-cache": "^7.14.1",
    +    "minipass": "^4.0.2"
    +  }
    +}
    diff --git a/deps/npm/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts b/deps/npm/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts
    deleted file mode 100644
    index 89a2c5239edb16..00000000000000
    --- a/deps/npm/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts
    +++ /dev/null
    @@ -1,555 +0,0 @@
    -// Type definitions for postcss-selector-parser 2.2.3
    -// Definitions by: Chris Eppstein 
    -
    -/*~ Note that ES6 modules cannot directly export callable functions.
    - *~ This file should be imported using the CommonJS-style:
    - *~   import x = require('someLibrary');
    - *~
    - *~ Refer to the documentation to understand common
    - *~ workarounds for this limitation of ES6 modules.
    - */
    -
    -/*~ This declaration specifies that the function
    - *~ is the exported object from the file
    - */
    -export = parser;
    -
    -// A type that's T but not U.
    -type Diff = T extends U ? never : T;
    -
    -// TODO: Conditional types in TS 1.8 will really clean this up.
    -declare function parser(): parser.Processor;
    -declare function parser(processor: parser.AsyncProcessor): parser.Processor;
    -declare function parser(processor: parser.AsyncProcessor): parser.Processor;
    -declare function parser(processor: parser.SyncProcessor): parser.Processor;
    -declare function parser(processor: parser.SyncProcessor): parser.Processor;
    -declare function parser(processor?: parser.SyncProcessor | parser.AsyncProcessor): parser.Processor;
    -
    -/*~ If you want to expose types from your module as well, you can
    - *~ place them in this block. Often you will want to describe the
    - *~ shape of the return type of the function; that type should
    - *~ be declared in here, as this example shows.
    - */
    -declare namespace parser {
    -    /* copied from postcss -- so we don't need to add a dependency */
    -    type ErrorOptions = {
    -        plugin?: string;
    -        word?: string;
    -        index?: number
    -    };
    -    /* the bits we use of postcss.Rule, copied from postcss -- so we don't need to add a dependency */
    -    type PostCSSRuleNode = {
    -        selector: string
    -        /**
    -         * @returns postcss.CssSyntaxError but it's a complex object, caller
    -         *   should cast to it if they have a dependency on postcss.
    -         */
    -        error(message: string, options?: ErrorOptions): Error;
    -    };
    -    /** Accepts a string  */
    -    type Selectors = string | PostCSSRuleNode
    -    type ProcessorFn = (root: parser.Root) => ReturnType;
    -    type SyncProcessor = ProcessorFn;
    -    type AsyncProcessor = ProcessorFn>;
    -
    -    const TAG: "tag";
    -    const STRING: "string";
    -    const SELECTOR: "selector";
    -    const ROOT: "root";
    -    const PSEUDO: "pseudo";
    -    const NESTING: "nesting";
    -    const ID: "id";
    -    const COMMENT: "comment";
    -    const COMBINATOR: "combinator";
    -    const CLASS: "class";
    -    const ATTRIBUTE: "attribute";
    -    const UNIVERSAL: "universal";
    -
    -    interface NodeTypes {
    -        tag: Tag,
    -        string: String,
    -        selector: Selector,
    -        root: Root,
    -        pseudo: Pseudo,
    -        nesting: Nesting,
    -        id: Identifier,
    -        comment: Comment,
    -        combinator: Combinator,
    -        class: ClassName,
    -        attribute: Attribute,
    -        universal: Universal
    -    }
    -
    -    type Node = NodeTypes[keyof NodeTypes];
    -
    -    function isNode(node: any): node is Node;
    -
    -    interface Options {
    -        /**
    -         * Preserve whitespace when true. Default: false;
    -         */
    -        lossless: boolean;
    -        /**
    -         * When true and a postcss.Rule is passed, set the result of
    -         * processing back onto the rule when done. Default: false.
    -         */
    -        updateSelector: boolean;
    -    }
    -    class Processor<
    -        TransformType = never,
    -        SyncSelectorsType extends Selectors | never = Selectors
    -    > {
    -        res: Root;
    -        readonly result: String;
    -        ast(selectors: Selectors, options?: Partial): Promise;
    -        astSync(selectors: SyncSelectorsType, options?: Partial): Root;
    -        transform(selectors: Selectors, options?: Partial): Promise;
    -        transformSync(selectors: SyncSelectorsType, options?: Partial): TransformType;
    -        process(selectors: Selectors, options?: Partial): Promise;
    -        processSync(selectors: SyncSelectorsType, options?: Partial): string;
    -    }
    -    interface ParserOptions {
    -        css: string;
    -        error: (message: string, options: ErrorOptions) => Error;
    -        options: Options;
    -    }
    -    class Parser {
    -        input: ParserOptions;
    -        lossy: boolean;
    -        position: number;
    -        root: Root;
    -        selectors: string;
    -        current: Selector;
    -        constructor(input: ParserOptions);
    -        /**
    -         * Raises an error, if the processor is invoked on
    -         * a postcss Rule node, a better error message is raised.
    -         */
    -        error(message: string, options?: ErrorOptions): void;
    -    }
    -    interface NodeSource {
    -        start?: {
    -            line: number,
    -            column: number
    -        },
    -        end?: {
    -            line: number,
    -            column: number
    -        }
    -    }
    -    interface SpaceAround {
    -      before: string;
    -      after: string;
    -    }
    -    interface Spaces extends SpaceAround {
    -      [spaceType: string]: string | Partial | undefined;
    -    }
    -    interface NodeOptions {
    -        value: Value;
    -        spaces?: Partial;
    -        source?: NodeSource;
    -        sourceIndex?: number;
    -    }
    -    interface Base<
    -        Value extends string | undefined = string,
    -        ParentType extends Container | undefined = Container | undefined
    -    > {
    -        type: keyof NodeTypes;
    -        parent: ParentType;
    -        value: Value;
    -        spaces: Spaces;
    -        source?: NodeSource;
    -        sourceIndex: number;
    -        rawSpaceBefore: string;
    -        rawSpaceAfter: string;
    -        remove(): Node;
    -        replaceWith(...nodes: Node[]): Node;
    -        next(): Node;
    -        prev(): Node;
    -        clone(opts: {[override: string]:any}): Node;
    -        /**
    -         * Return whether this node includes the character at the position of the given line and column.
    -         * Returns undefined if the nodes lack sufficient source metadata to determine the position.
    -         * @param line 1-index based line number relative to the start of the selector.
    -         * @param column 1-index based column number relative to the start of the selector.
    -         */
    -        isAtPosition(line: number, column: number): boolean | undefined;
    -        /**
    -         * Some non-standard syntax doesn't follow normal escaping rules for css,
    -         * this allows the escaped value to be specified directly, allowing illegal characters to be
    -         * directly inserted into css output.
    -         * @param name the property to set
    -         * @param value the unescaped value of the property
    -         * @param valueEscaped optional. the escaped value of the property.
    -         */
    -        setPropertyAndEscape(name: string, value: any, valueEscaped: string): void;
    -        /**
    -         * When you want a value to passed through to CSS directly. This method
    -         * deletes the corresponding raw value causing the stringifier to fallback
    -         * to the unescaped value.
    -         * @param name the property to set.
    -         * @param value The value that is both escaped and unescaped.
    -         */
    -        setPropertyWithoutEscape(name: string, value: any): void;
    -        /**
    -         * Some non-standard syntax doesn't follow normal escaping rules for css.
    -         * This allows non standard syntax to be appended to an existing property
    -         * by specifying the escaped value. By specifying the escaped value,
    -         * illegal characters are allowed to be directly inserted into css output.
    -         * @param {string} name the property to set
    -         * @param {any} value the unescaped value of the property
    -         * @param {string} valueEscaped optional. the escaped value of the property.
    -         */
    -        appendToPropertyAndEscape(name: string, value: any, valueEscaped: string): void;
    -        toString(): string;
    -    }
    -    interface ContainerOptions extends NodeOptions {
    -        nodes?: Array;
    -    }
    -    interface Container<
    -        Value extends string | undefined = string,
    -        Child extends Node = Node
    -    > extends Base {
    -        nodes: Array;
    -        append(selector: Selector): this;
    -        prepend(selector: Selector): this;
    -        at(index: number): Child;
    -        /**
    -         * Return the most specific node at the line and column number given.
    -         * The source location is based on the original parsed location, locations aren't
    -         * updated as selector nodes are mutated.
    -         *
    -         * Note that this location is relative to the location of the first character
    -         * of the selector, and not the location of the selector in the overall document
    -         * when used in conjunction with postcss.
    -         *
    -         * If not found, returns undefined.
    -         * @param line The line number of the node to find. (1-based index)
    -         * @param col  The column number of the node to find. (1-based index)
    -         */
    -        atPosition(line: number, column: number): Child;
    -        index(child: Child): number;
    -        readonly first: Child;
    -        readonly last: Child;
    -        readonly length: number;
    -        removeChild(child: Child): this;
    -        removeAll(): Container;
    -        empty(): Container;
    -        insertAfter(oldNode: Child, newNode: Child): this;
    -        insertBefore(oldNode: Child, newNode: Child): this;
    -        each(callback: (node: Child) => boolean | void): boolean | undefined;
    -        walk(
    -            callback: (node: Node) => boolean | void
    -        ): boolean | undefined;
    -        walkAttributes(
    -            callback: (node: Attribute) => boolean | void
    -        ): boolean | undefined;
    -        walkClasses(
    -            callback: (node: ClassName) => boolean | void
    -        ): boolean | undefined;
    -        walkCombinators(
    -            callback: (node: Combinator) => boolean | void
    -        ): boolean | undefined;
    -        walkComments(
    -            callback: (node: Comment) => boolean | void
    -        ): boolean | undefined;
    -        walkIds(
    -            callback: (node: Identifier) => boolean | void
    -        ): boolean | undefined;
    -        walkNesting(
    -            callback: (node: Nesting) => boolean | void
    -        ): boolean | undefined;
    -        walkPseudos(
    -            callback: (node: Pseudo) => boolean | void
    -        ): boolean | undefined;
    -        walkTags(callback: (node: Tag) => boolean | void): boolean | undefined;
    -        split(callback: (node: Child) => boolean): [Child[], Child[]];
    -        map(callback: (node: Child) => T): T[];
    -        reduce(
    -            callback: (
    -                previousValue: Child,
    -                currentValue: Child,
    -                currentIndex: number,
    -                array: readonly Child[]
    -            ) => Child
    -        ): Child;
    -        reduce(
    -            callback: (
    -                previousValue: Child,
    -                currentValue: Child,
    -                currentIndex: number,
    -                array: readonly Child[]
    -            ) => Child,
    -            initialValue: Child
    -        ): Child;
    -        reduce(
    -            callback: (
    -                previousValue: T,
    -                currentValue: Child,
    -                currentIndex: number,
    -                array: readonly Child[]
    -            ) => T,
    -            initialValue: T
    -        ): T;
    -        every(callback: (node: Child) => boolean): boolean;
    -        some(callback: (node: Child) => boolean): boolean;
    -        filter(callback: (node: Child) => boolean): Child[];
    -        sort(callback: (nodeA: Child, nodeB: Child) => number): Child[];
    -        toString(): string;
    -    }
    -    function isContainer(node: any): node is Root | Selector | Pseudo;
    -
    -    interface NamespaceOptions extends NodeOptions {
    -        namespace?: string | true;
    -    }
    -    interface Namespace extends Base {
    -        /** alias for namespace */
    -        ns: string | true;
    -        /**
    -         *  namespace prefix.
    -         */
    -        namespace: string | true;
    -        /**
    -         * If a namespace exists, prefix the value provided with it, separated by |.
    -         */
    -        qualifiedName(value: string): string;
    -        /**
    -         * A string representing the namespace suitable for output.
    -         */
    -        readonly namespaceString: string;
    -    }
    -    function isNamespace(node: any): node is Attribute | Tag;
    -
    -    interface Root extends Container {
    -        type: "root";
    -        /**
    -         * Raises an error, if the processor is invoked on
    -         * a postcss Rule node, a better error message is raised.
    -         */
    -        error(message: string, options?: ErrorOptions): Error;
    -        nodeAt(line: number, column: number): Node
    -    }
    -    function root(opts: ContainerOptions): Root;
    -    function isRoot(node: any): node is Root;
    -
    -    interface _Selector extends Container> {
    -        type: "selector";
    -    }
    -    type Selector = _Selector;
    -    function selector(opts: ContainerOptions): Selector;
    -    function isSelector(node: any): node is Selector;
    -
    -    interface CombinatorRaws {
    -        value?: string;
    -        spaces?: {
    -            before?: string;
    -            after?: string;
    -        };
    -    }
    -    interface Combinator extends Base {
    -        type: "combinator";
    -        raws?: CombinatorRaws;
    -    }
    -    function combinator(opts: NodeOptions): Combinator;
    -    function isCombinator(node: any): node is Combinator;
    -
    -    interface ClassName extends Base {
    -        type: "class";
    -    }
    -    function className(opts: NamespaceOptions): ClassName;
    -    function isClassName(node: any): node is ClassName;
    -
    -    type AttributeOperator = "=" | "~=" | "|=" | "^=" | "$=" | "*=";
    -    type QuoteMark = '"' | "'" | null;
    -    interface PreferredQuoteMarkOptions {
    -        quoteMark?: QuoteMark;
    -        preferCurrentQuoteMark?: boolean;
    -    }
    -    interface SmartQuoteMarkOptions extends PreferredQuoteMarkOptions {
    -        smart?: boolean;
    -    }
    -    interface AttributeOptions extends NamespaceOptions {
    -        attribute: string;
    -        operator?: AttributeOperator;
    -        insensitive?: boolean;
    -        quoteMark?: QuoteMark;
    -        /** @deprecated Use quoteMark instead. */
    -        quoted?: boolean;
    -        spaces?: {
    -            before?: string;
    -            after?: string;
    -            attribute?: Partial;
    -            operator?: Partial;
    -            value?: Partial;
    -            insensitive?: Partial;
    -        }
    -        raws: {
    -            unquoted?: string;
    -            attribute?: string;
    -            operator?: string;
    -            value?: string;
    -            insensitive?: string;
    -            spaces?: {
    -                attribute?: Partial;
    -                operator?: Partial;
    -                value?: Partial;
    -                insensitive?: Partial;
    -            }
    -        };
    -    }
    -    interface Attribute extends Namespace {
    -        type: "attribute";
    -        attribute: string;
    -        operator?: AttributeOperator;
    -        insensitive?: boolean;
    -        quoteMark: QuoteMark;
    -        quoted?: boolean;
    -        spaces: {
    -            before: string;
    -            after: string;
    -            attribute?: Partial;
    -            operator?: Partial;
    -            value?: Partial;
    -            insensitive?: Partial;
    -        }
    -        raws: {
    -            /** @deprecated The attribute value is unquoted, use that instead.. */
    -            unquoted?: string;
    -            attribute?: string;
    -            operator?: string;
    -            /** The value of the attribute with quotes and escapes. */
    -            value?: string;
    -            insensitive?: string;
    -            spaces?: {
    -                attribute?: Partial;
    -                operator?: Partial;
    -                value?: Partial;
    -                insensitive?: Partial;
    -            }
    -        };
    -        /**
    -         * The attribute name after having been qualified with a namespace.
    -         */
    -        readonly qualifiedAttribute: string;
    -
    -        /**
    -         * The case insensitivity flag or an empty string depending on whether this
    -         * attribute is case insensitive.
    -         */
    -        readonly insensitiveFlag : 'i' | '';
    -
    -        /**
    -         * Returns the attribute's value quoted such that it would be legal to use
    -         * in the value of a css file. The original value's quotation setting
    -         * used for stringification is left unchanged. See `setValue(value, options)`
    -         * if you want to control the quote settings of a new value for the attribute or
    -         * `set quoteMark(mark)` if you want to change the quote settings of the current
    -         * value.
    -         *
    -         * You can also change the quotation used for the current value by setting quoteMark.
    -         **/
    -        getQuotedValue(options?: SmartQuoteMarkOptions): string;
    -
    -        /**
    -         * Set the unescaped value with the specified quotation options. The value
    -         * provided must not include any wrapping quote marks -- those quotes will
    -         * be interpreted as part of the value and escaped accordingly.
    -         * @param value
    -         */
    -        setValue(value: string, options?: SmartQuoteMarkOptions): void;
    -
    -        /**
    -         * Intelligently select a quoteMark value based on the value's contents. If
    -         * the value is a legal CSS ident, it will not be quoted. Otherwise a quote
    -         * mark will be picked that minimizes the number of escapes.
    -         *
    -         * If there's no clear winner, the quote mark from these options is used,
    -         * then the source quote mark (this is inverted if `preferCurrentQuoteMark` is
    -         * true). If the quoteMark is unspecified, a double quote is used.
    -         **/
    -        smartQuoteMark(options: PreferredQuoteMarkOptions): QuoteMark;
    -
    -        /**
    -         * Selects the preferred quote mark based on the options and the current quote mark value.
    -         * If you want the quote mark to depend on the attribute value, call `smartQuoteMark(opts)`
    -         * instead.
    -         */
    -        preferredQuoteMark(options: PreferredQuoteMarkOptions): QuoteMark
    -
    -        /**
    -         * returns the offset of the attribute part specified relative to the
    -         * start of the node of the output string.
    -         *
    -         * * "ns" - alias for "namespace"
    -         * * "namespace" - the namespace if it exists.
    -         * * "attribute" - the attribute name
    -         * * "attributeNS" - the start of the attribute or its namespace
    -         * * "operator" - the match operator of the attribute
    -         * * "value" - The value (string or identifier)
    -         * * "insensitive" - the case insensitivity flag;
    -         * @param part One of the possible values inside an attribute.
    -         * @returns -1 if the name is invalid or the value doesn't exist in this attribute.
    -         */
    -        offsetOf(part: "ns" | "namespace" | "attribute" | "attributeNS" | "operator" | "value" | "insensitive"): number;
    -    }
    -    function attribute(opts: AttributeOptions): Attribute;
    -    function isAttribute(node: any): node is Attribute;
    -
    -    interface Pseudo extends Container {
    -        type: "pseudo";
    -    }
    -    function pseudo(opts: ContainerOptions): Pseudo;
    -    /**
    -     * Checks wether the node is the Psuedo subtype of node.
    -     */
    -    function isPseudo(node: any): node is Pseudo;
    -
    -    /**
    -     * Checks wether the node is, specifically, a pseudo element instead of
    -     * pseudo class.
    -     */
    -    function isPseudoElement(node: any): node is Pseudo;
    -
    -    /**
    -     * Checks wether the node is, specifically, a pseudo class instead of
    -     * pseudo element.
    -     */
    -    function isPseudoClass(node: any): node is Pseudo;
    -
    -
    -    interface Tag extends Namespace {
    -        type: "tag";
    -    }
    -    function tag(opts: NamespaceOptions): Tag;
    -    function isTag(node: any): node is Tag;
    -
    -    interface Comment extends Base {
    -        type: "comment";
    -    }
    -    function comment(opts: NodeOptions): Comment;
    -    function isComment(node: any): node is Comment;
    -
    -    interface Identifier extends Base {
    -        type: "id";
    -    }
    -    function id(opts: any): any;
    -    function isIdentifier(node: any): node is Identifier;
    -
    -    interface Nesting extends Base {
    -        type: "nesting";
    -    }
    -    function nesting(opts: any): any;
    -    function isNesting(node: any): node is Nesting;
    -
    -    interface String extends Base {
    -        type: "string";
    -    }
    -    function string(opts: NodeOptions): String;
    -    function isString(node: any): node is String;
    -
    -    interface Universal extends Base {
    -        type: "universal";
    -    }
    -    function universal(opts?: NamespaceOptions): any;
    -    function isUniversal(node: any): node is Universal;
    -}
    diff --git a/deps/npm/node_modules/read-package-json/lib/read-json.js b/deps/npm/node_modules/read-package-json/lib/read-json.js
    index c55eca32259edf..e47a1bb2febca4 100644
    --- a/deps/npm/node_modules/read-package-json/lib/read-json.js
    +++ b/deps/npm/node_modules/read-package-json/lib/read-json.js
    @@ -218,15 +218,12 @@ function gypfile (file, data, cb) {
         return cb(null, data)
       }
     
    -  glob('*.gyp', { cwd: dir }, function (er, files) {
    -    if (er) {
    -      return cb(er)
    -    }
    -    if (data.gypfile === false) {
    -      return cb(null, data)
    -    }
    -    gypfile_(file, data, files, cb)
    -  })
    +  if (data.gypfile === false) {
    +    return cb(null, data)
    +  }
    +  glob('*.gyp', { cwd: dir })
    +    .then(files => gypfile_(file, data, files, cb))
    +    .catch(er => cb(er))
     }
     
     function gypfile_ (file, data, files, cb) {
    @@ -246,22 +243,13 @@ function serverjs (file, data, cb) {
       if (s.start) {
         return cb(null, data)
       }
    -  glob('server.js', { cwd: dir }, function (er, files) {
    -    if (er) {
    -      return cb(er)
    +  fs.access(path.join(dir, 'server.js'), (err) => {
    +    if (!err) {
    +      s.start = 'node server.js'
    +      data.scripts = s
         }
    -    serverjs_(file, data, files, cb)
    -  })
    -}
    -
    -function serverjs_ (file, data, files, cb) {
    -  if (!files.length) {
         return cb(null, data)
    -  }
    -  var s = data.scripts || {}
    -  s.start = 'node server.js'
    -  data.scripts = s
    -  return cb(null, data)
    +  })
     }
     
     function authors (file, data, cb) {
    @@ -294,21 +282,20 @@ function readme (file, data, cb) {
       }
       var dir = path.dirname(file)
       var globOpts = { cwd: dir, nocase: true, mark: true }
    -  glob('{README,README.*}', globOpts, function (er, files) {
    -    if (er) {
    -      return cb(er)
    -    }
    -    // don't accept directories.
    -    files = files.filter(function (filtered) {
    -      return !filtered.match(/\/$/)
    +  glob('{README,README.*}', globOpts)
    +    .then(files => {
    +      // don't accept directories.
    +      files = files.filter(function (filtered) {
    +        return !filtered.match(/\/$/)
    +      })
    +      if (!files.length) {
    +        return cb()
    +      }
    +      var fn = preferMarkdownReadme(files)
    +      var rm = path.resolve(dir, fn)
    +      return readme_(file, data, rm, cb)
         })
    -    if (!files.length) {
    -      return cb()
    -    }
    -    var fn = preferMarkdownReadme(files)
    -    var rm = path.resolve(dir, fn)
    -    readme_(file, data, rm, cb)
    -  })
    +    .catch(er => cb(er))
     }
     
     function preferMarkdownReadme (files) {
    @@ -346,15 +333,14 @@ function mans (file, data, cb) {
       }
       const dirname = path.dirname(file)
       cwd = path.resolve(path.dirname(file), cwd)
    -  glob('**/*.[0-9]', { cwd }, function (er, mansGlob) {
    -    if (er) {
    -      return cb(er)
    -    }
    -    data.man = mansGlob.map(man =>
    -      path.relative(dirname, path.join(cwd, man)).split(path.sep).join('/')
    -    )
    -    return cb(null, data)
    -  })
    +  glob('**/*.[0-9]', { cwd })
    +    .then(mansGlob => {
    +      data.man = mansGlob.map(man =>
    +        path.relative(dirname, path.join(cwd, man)).split(path.sep).join('/')
    +      )
    +      return cb(null, data)
    +    })
    +    .catch(er => cb(er))
     }
     
     function bins (file, data, cb) {
    @@ -366,12 +352,9 @@ function bins (file, data, cb) {
       }
     
       m = path.resolve(path.dirname(file), m)
    -  glob('**', { cwd: m }, function (er, binsGlob) {
    -    if (er) {
    -      return cb(er)
    -    }
    -    bins_(file, data, binsGlob, cb)
    -  })
    +  glob('**', { cwd: m })
    +    .then(binsGlob => bins_(file, data, binsGlob, cb))
    +    .catch(er => cb(er))
     }
     
     function bins_ (file, data, binsGlob, cb) {
    diff --git a/deps/npm/node_modules/read-package-json/package.json b/deps/npm/node_modules/read-package-json/package.json
    index 09829fa3fbf785..d1618e3f8977fc 100644
    --- a/deps/npm/node_modules/read-package-json/package.json
    +++ b/deps/npm/node_modules/read-package-json/package.json
    @@ -1,6 +1,6 @@
     {
       "name": "read-package-json",
    -  "version": "6.0.0",
    +  "version": "6.0.1",
       "author": "GitHub Inc.",
       "description": "The thing npm uses to read package.json files with semantics and defaults and validation",
       "repository": {
    @@ -23,14 +23,14 @@
         "template-oss-apply": "template-oss-apply --force"
       },
       "dependencies": {
    -    "glob": "^8.0.1",
    +    "glob": "^9.3.0",
         "json-parse-even-better-errors": "^3.0.0",
         "normalize-package-data": "^5.0.0",
         "npm-normalize-package-bin": "^3.0.0"
       },
       "devDependencies": {
         "@npmcli/eslint-config": "^4.0.0",
    -    "@npmcli/template-oss": "4.5.1",
    +    "@npmcli/template-oss": "4.12.0",
         "tap": "^16.0.1"
       },
       "license": "ISC",
    @@ -43,9 +43,9 @@
       },
       "tap": {
         "branches": 68,
    -    "functions": 83,
    -    "lines": 76,
    -    "statements": 77,
    +    "functions": 74,
    +    "lines": 74,
    +    "statements": 74,
         "nyc-arg": [
           "--exclude",
           "tap-snapshots/**"
    @@ -53,6 +53,6 @@
       },
       "templateOSS": {
         "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
    -    "version": "4.5.1"
    +    "version": "4.12.0"
       }
     }
    diff --git a/deps/npm/node_modules/safe-buffer/index.d.ts b/deps/npm/node_modules/safe-buffer/index.d.ts
    deleted file mode 100644
    index e9fed809a5ab51..00000000000000
    --- a/deps/npm/node_modules/safe-buffer/index.d.ts
    +++ /dev/null
    @@ -1,187 +0,0 @@
    -declare module "safe-buffer" {
    -  export class Buffer {
    -    length: number
    -    write(string: string, offset?: number, length?: number, encoding?: string): number;
    -    toString(encoding?: string, start?: number, end?: number): string;
    -    toJSON(): { type: 'Buffer', data: any[] };
    -    equals(otherBuffer: Buffer): boolean;
    -    compare(otherBuffer: Buffer, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): number;
    -    copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;
    -    slice(start?: number, end?: number): Buffer;
    -    writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;
    -    writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;
    -    writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;
    -    writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;
    -    readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;
    -    readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
    -    readIntLE(offset: number, byteLength: number, noAssert?: boolean): number;
    -    readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
    -    readUInt8(offset: number, noAssert?: boolean): number;
    -    readUInt16LE(offset: number, noAssert?: boolean): number;
    -    readUInt16BE(offset: number, noAssert?: boolean): number;
    -    readUInt32LE(offset: number, noAssert?: boolean): number;
    -    readUInt32BE(offset: number, noAssert?: boolean): number;
    -    readInt8(offset: number, noAssert?: boolean): number;
    -    readInt16LE(offset: number, noAssert?: boolean): number;
    -    readInt16BE(offset: number, noAssert?: boolean): number;
    -    readInt32LE(offset: number, noAssert?: boolean): number;
    -    readInt32BE(offset: number, noAssert?: boolean): number;
    -    readFloatLE(offset: number, noAssert?: boolean): number;
    -    readFloatBE(offset: number, noAssert?: boolean): number;
    -    readDoubleLE(offset: number, noAssert?: boolean): number;
    -    readDoubleBE(offset: number, noAssert?: boolean): number;
    -    swap16(): Buffer;
    -    swap32(): Buffer;
    -    swap64(): Buffer;
    -    writeUInt8(value: number, offset: number, noAssert?: boolean): number;
    -    writeUInt16LE(value: number, offset: number, noAssert?: boolean): number;
    -    writeUInt16BE(value: number, offset: number, noAssert?: boolean): number;
    -    writeUInt32LE(value: number, offset: number, noAssert?: boolean): number;
    -    writeUInt32BE(value: number, offset: number, noAssert?: boolean): number;
    -    writeInt8(value: number, offset: number, noAssert?: boolean): number;
    -    writeInt16LE(value: number, offset: number, noAssert?: boolean): number;
    -    writeInt16BE(value: number, offset: number, noAssert?: boolean): number;
    -    writeInt32LE(value: number, offset: number, noAssert?: boolean): number;
    -    writeInt32BE(value: number, offset: number, noAssert?: boolean): number;
    -    writeFloatLE(value: number, offset: number, noAssert?: boolean): number;
    -    writeFloatBE(value: number, offset: number, noAssert?: boolean): number;
    -    writeDoubleLE(value: number, offset: number, noAssert?: boolean): number;
    -    writeDoubleBE(value: number, offset: number, noAssert?: boolean): number;
    -    fill(value: any, offset?: number, end?: number): this;
    -    indexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;
    -    lastIndexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;
    -    includes(value: string | number | Buffer, byteOffset?: number, encoding?: string): boolean;
    -
    -    /**
    -     * Allocates a new buffer containing the given {str}.
    -     *
    -     * @param str String to store in buffer.
    -     * @param encoding encoding to use, optional.  Default is 'utf8'
    -     */
    -     constructor (str: string, encoding?: string);
    -    /**
    -     * Allocates a new buffer of {size} octets.
    -     *
    -     * @param size count of octets to allocate.
    -     */
    -    constructor (size: number);
    -    /**
    -     * Allocates a new buffer containing the given {array} of octets.
    -     *
    -     * @param array The octets to store.
    -     */
    -    constructor (array: Uint8Array);
    -    /**
    -     * Produces a Buffer backed by the same allocated memory as
    -     * the given {ArrayBuffer}.
    -     *
    -     *
    -     * @param arrayBuffer The ArrayBuffer with which to share memory.
    -     */
    -    constructor (arrayBuffer: ArrayBuffer);
    -    /**
    -     * Allocates a new buffer containing the given {array} of octets.
    -     *
    -     * @param array The octets to store.
    -     */
    -    constructor (array: any[]);
    -    /**
    -     * Copies the passed {buffer} data onto a new {Buffer} instance.
    -     *
    -     * @param buffer The buffer to copy.
    -     */
    -    constructor (buffer: Buffer);
    -    prototype: Buffer;
    -    /**
    -     * Allocates a new Buffer using an {array} of octets.
    -     *
    -     * @param array
    -     */
    -    static from(array: any[]): Buffer;
    -    /**
    -     * When passed a reference to the .buffer property of a TypedArray instance,
    -     * the newly created Buffer will share the same allocated memory as the TypedArray.
    -     * The optional {byteOffset} and {length} arguments specify a memory range
    -     * within the {arrayBuffer} that will be shared by the Buffer.
    -     *
    -     * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer()
    -     * @param byteOffset
    -     * @param length
    -     */
    -    static from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?: number): Buffer;
    -    /**
    -     * Copies the passed {buffer} data onto a new Buffer instance.
    -     *
    -     * @param buffer
    -     */
    -    static from(buffer: Buffer): Buffer;
    -    /**
    -     * Creates a new Buffer containing the given JavaScript string {str}.
    -     * If provided, the {encoding} parameter identifies the character encoding.
    -     * If not provided, {encoding} defaults to 'utf8'.
    -     *
    -     * @param str
    -     */
    -    static from(str: string, encoding?: string): Buffer;
    -    /**
    -     * Returns true if {obj} is a Buffer
    -     *
    -     * @param obj object to test.
    -     */
    -    static isBuffer(obj: any): obj is Buffer;
    -    /**
    -     * Returns true if {encoding} is a valid encoding argument.
    -     * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex'
    -     *
    -     * @param encoding string to test.
    -     */
    -    static isEncoding(encoding: string): boolean;
    -    /**
    -     * Gives the actual byte length of a string. encoding defaults to 'utf8'.
    -     * This is not the same as String.prototype.length since that returns the number of characters in a string.
    -     *
    -     * @param string string to test.
    -     * @param encoding encoding used to evaluate (defaults to 'utf8')
    -     */
    -    static byteLength(string: string, encoding?: string): number;
    -    /**
    -     * Returns a buffer which is the result of concatenating all the buffers in the list together.
    -     *
    -     * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer.
    -     * If the list has exactly one item, then the first item of the list is returned.
    -     * If the list has more than one item, then a new Buffer is created.
    -     *
    -     * @param list An array of Buffer objects to concatenate
    -     * @param totalLength Total length of the buffers when concatenated.
    -     *   If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly.
    -     */
    -    static concat(list: Buffer[], totalLength?: number): Buffer;
    -    /**
    -     * The same as buf1.compare(buf2).
    -     */
    -    static compare(buf1: Buffer, buf2: Buffer): number;
    -    /**
    -     * Allocates a new buffer of {size} octets.
    -     *
    -     * @param size count of octets to allocate.
    -     * @param fill if specified, buffer will be initialized by calling buf.fill(fill).
    -     *    If parameter is omitted, buffer will be filled with zeros.
    -     * @param encoding encoding used for call to buf.fill while initalizing
    -     */
    -    static alloc(size: number, fill?: string | Buffer | number, encoding?: string): Buffer;
    -    /**
    -     * Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents
    -     * of the newly created Buffer are unknown and may contain sensitive data.
    -     *
    -     * @param size count of octets to allocate
    -     */
    -    static allocUnsafe(size: number): Buffer;
    -    /**
    -     * Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents
    -     * of the newly created Buffer are unknown and may contain sensitive data.
    -     *
    -     * @param size count of octets to allocate
    -     */
    -    static allocUnsafeSlow(size: number): Buffer;
    -  }
    -}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/sigstore/LICENSE b/deps/npm/node_modules/sigstore/LICENSE
    index d645695673349e..e9e7c1679a09df 100644
    --- a/deps/npm/node_modules/sigstore/LICENSE
    +++ b/deps/npm/node_modules/sigstore/LICENSE
    @@ -187,7 +187,7 @@
           same "printed page" as the copyright notice for easier
           identification within third-party archives.
     
    -   Copyright [yyyy] [name of copyright owner]
    +   Copyright 2023 The Sigstore Authors
     
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
    diff --git a/deps/npm/node_modules/sigstore/README.md b/deps/npm/node_modules/sigstore/README.md
    index 0a8b690423a0f3..5ade0dc5ab45f5 100644
    --- a/deps/npm/node_modules/sigstore/README.md
    +++ b/deps/npm/node_modules/sigstore/README.md
    @@ -1,4 +1,4 @@
    -# sigstore-js
    +# sigstore-js · [![npm version](https://img.shields.io/npm/v/sigstore.svg?style=flat)](https://www.npmjs.com/package/sigstore) [![CI Status](https://github.com/sigstore/sigstore-js/workflows/CI/badge.svg)](https://github.com/sigstore/sigstore-js/actions/workflows/ci.yml) [![Smoke Test Status](https://github.com/sigstore/sigstore-js/workflows/smoke-test/badge.svg)](https://github.com/sigstore/sigstore-js/actions/workflows/smoke-test.yml)
     
     A JavaScript library for generating and verifying Sigstore signatures. One of
     the intended uses is to sign and verify npm packages but it can be used to sign
    @@ -101,29 +101,16 @@ sigstore  
     
     ## Development
     
    -### Updating protobufs
    +### Changesets
    +If you are contributing a user-facing or noteworthy change that should be added to the changelog, you should include a changeset with your PR by running the following command:
     
    -[Docker](https://docs.docker.com/engine/install/) is required to generate protobufs for the `.sigstore` bundle format.
    -
    -Install Docker on MacOS using [Homebrew](https://brew.sh/):
    -
    -```
    -brew install --cask docker && open -a Docker
    +```console
    +npx changeset add
     ```
     
    -View [Docker install instructions](https://docs.docker.com/engine/install/) for other platforms.
    -
    -#### Updating Sigstore Protobufs
    -
    -Update the Git `REF` in `hack/generate-bundle-types` from the [sigstore/protobuf-specs][5] repository.
    +Follow the prompts to specify whether the change is a major, minor or patch change. This will create a file in the `.changesets` directory of the repo. This change should be committed and included with your PR.
     
    -Generate TypeScript protobufs (should update files in scr/types/sigstore/\_\_generated\_\_):
    -
    -```
    -npm run codegen:bundle
    -```
    -
    -#### Updating Rekor Types
    +### Updating Rekor Types
     
     Update the git `REF` in `hack/generate-rekor-types` from the [sigstore/rekor][1] repository.
     
    @@ -135,16 +122,10 @@ npm run codegen:rekor
     
     ### Release Steps
     
    -1. Update the version inside `package.json` and run `npm i` to update `package-lock.json`.
    -2. PR the changes above and merge to the "main" branch when approved.
    -3. Use either the "[Create a new release](https://github.com/sigstore/sigstore-js/releases/new)" link or the `gh release create` CLI command to start a new release.
    -4. Tag the release with a label matching the version in the `package.json` (with a `v` prefix).
    -5. Add a title matching the tag.
    -6. Add release notes.
    -7. Mark as pre-release as appropriate.
    -8. Publish release.
    +Whenever a new changeset is merged to the "main" branch, the `release` workflow will open a PR (or append to the existing PR if one is already open) with the all of the pending changesets.
    +
    +Publishing a release simply requires that you approve/merge this PR. This will trigger the publishing of the package to the npm registry and the creation of the GitHub release.
     
    -After publishing the release, a new npm package will be built and published automatically to the npm registry.
     ## Licensing
     
     `sigstore-js` is licensed under the Apache 2.0 License.
    diff --git a/deps/npm/node_modules/sigstore/dist/ca/format.d.ts b/deps/npm/node_modules/sigstore/dist/ca/format.d.ts
    index 185b4c260afb40..9a20bf8f71dc56 100644
    --- a/deps/npm/node_modules/sigstore/dist/ca/format.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/ca/format.d.ts
    @@ -1,5 +1,5 @@
     /// 
     /// 
     import { KeyObject } from 'crypto';
    -import { CertificateRequest } from '../client/fulcio';
    -export declare function toCertificateRequest(publicKey: KeyObject, challenge: Buffer): CertificateRequest;
    +import { SigningCertificateRequest } from '../client/fulcio';
    +export declare function toCertificateRequest(identityToken: string, publicKey: KeyObject, challenge: Buffer): SigningCertificateRequest;
    diff --git a/deps/npm/node_modules/sigstore/dist/ca/format.js b/deps/npm/node_modules/sigstore/dist/ca/format.js
    index f168cbe3154792..6374243e80e026 100644
    --- a/deps/npm/node_modules/sigstore/dist/ca/format.js
    +++ b/deps/npm/node_modules/sigstore/dist/ca/format.js
    @@ -1,14 +1,20 @@
     "use strict";
     Object.defineProperty(exports, "__esModule", { value: true });
     exports.toCertificateRequest = void 0;
    -function toCertificateRequest(publicKey, challenge) {
    +function toCertificateRequest(identityToken, publicKey, challenge) {
         return {
    -        publicKey: {
    -            content: publicKey
    -                .export({ type: 'spki', format: 'der' })
    -                .toString('base64'),
    +        credentials: {
    +            oidcIdentityToken: identityToken,
    +        },
    +        publicKeyRequest: {
    +            publicKey: {
    +                algorithm: 'ECDSA',
    +                content: publicKey
    +                    .export({ format: 'pem', type: 'spki' })
    +                    .toString('ascii'),
    +            },
    +            proofOfPossession: challenge.toString('base64'),
             },
    -        signedEmailAddress: challenge.toString('base64'),
         };
     }
     exports.toCertificateRequest = toCertificateRequest;
    diff --git a/deps/npm/node_modules/sigstore/dist/ca/index.js b/deps/npm/node_modules/sigstore/dist/ca/index.js
    index 3b90f864f08916..6c6e267011e2cc 100644
    --- a/deps/npm/node_modules/sigstore/dist/ca/index.js
    +++ b/deps/npm/node_modules/sigstore/dist/ca/index.js
    @@ -3,17 +3,16 @@ Object.defineProperty(exports, "__esModule", { value: true });
     exports.CAClient = void 0;
     const client_1 = require("../client");
     const error_1 = require("../error");
    -const util_1 = require("../util");
     const format_1 = require("./format");
     class CAClient {
         constructor(options) {
             this.fulcio = new client_1.Fulcio({ baseURL: options.fulcioBaseURL });
         }
         async createSigningCertificate(identityToken, publicKey, challenge) {
    -        const request = (0, format_1.toCertificateRequest)(publicKey, challenge);
    +        const request = (0, format_1.toCertificateRequest)(identityToken, publicKey, challenge);
             try {
    -            const certificate = await this.fulcio.createSigningCertificate(identityToken, request);
    -            return util_1.pem.split(certificate);
    +            const certificate = await this.fulcio.createSigningCertificate(request);
    +            return certificate.signedCertificateEmbeddedSct.chain.certificates;
             }
             catch (err) {
                 throw new error_1.InternalError('error creating signing certificate', err);
    diff --git a/deps/npm/node_modules/sigstore/dist/cli/index.js b/deps/npm/node_modules/sigstore/dist/cli/index.js
    index 0937d3603a2a93..d7d6c76d73f6a1 100644
    --- a/deps/npm/node_modules/sigstore/dist/cli/index.js
    +++ b/deps/npm/node_modules/sigstore/dist/cli/index.js
    @@ -65,6 +65,7 @@ function printUsage() {
     const signOptions = {
         oidcClientID: 'sigstore',
         oidcIssuer: 'https://oauth2.sigstore.dev/auth',
    +    oidcRedirectURL: process.env.OIDC_REDIRECT_URL,
         rekorURL: index_1.sigstore.DEFAULT_REKOR_URL,
     };
     async function sign(artifactPath) {
    diff --git a/deps/npm/node_modules/sigstore/dist/client/fulcio.d.ts b/deps/npm/node_modules/sigstore/dist/client/fulcio.d.ts
    index 72ed51ae75d312..91fe53e69f9387 100644
    --- a/deps/npm/node_modules/sigstore/dist/client/fulcio.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/client/fulcio.d.ts
    @@ -1,11 +1,24 @@
     export interface FulcioOptions {
         baseURL: string;
     }
    -export interface CertificateRequest {
    -    publicKey: {
    -        content: string;
    +export interface SigningCertificateRequest {
    +    credentials: {
    +        oidcIdentityToken: string;
    +    };
    +    publicKeyRequest: {
    +        publicKey: {
    +            algorithm: string;
    +            content: string;
    +        };
    +        proofOfPossession: string;
    +    };
    +}
    +export interface SigningCertificateResponse {
    +    signedCertificateEmbeddedSct: {
    +        chain: {
    +            certificates: string[];
    +        };
         };
    -    signedEmailAddress: string;
     }
     /**
      * Fulcio API client.
    @@ -14,5 +27,5 @@ export declare class Fulcio {
         private fetch;
         private baseUrl;
         constructor(options: FulcioOptions);
    -    createSigningCertificate(idToken: string, request: CertificateRequest): Promise;
    +    createSigningCertificate(request: SigningCertificateRequest): Promise;
     }
    diff --git a/deps/npm/node_modules/sigstore/dist/client/fulcio.js b/deps/npm/node_modules/sigstore/dist/client/fulcio.js
    index 04041387f1a0b8..288ca32caaea78 100644
    --- a/deps/npm/node_modules/sigstore/dist/client/fulcio.js
    +++ b/deps/npm/node_modules/sigstore/dist/client/fulcio.js
    @@ -31,22 +31,20 @@ class Fulcio {
                 retry: { retries: 2 },
                 timeout: 5000,
                 headers: {
    -                Accept: 'application/pem-certificate-chain',
                     'Content-Type': 'application/json',
                     'User-Agent': util_1.ua.getUserAgent(),
                 },
             });
             this.baseUrl = options.baseURL;
         }
    -    async createSigningCertificate(idToken, request) {
    -        const url = `${this.baseUrl}/api/v1/signingCert`;
    +    async createSigningCertificate(request) {
    +        const url = `${this.baseUrl}/api/v2/signingCert`;
             const response = await this.fetch(url, {
                 method: 'POST',
    -            headers: { Authorization: `Bearer ${idToken}` },
                 body: JSON.stringify(request),
             });
             (0, error_1.checkStatus)(response);
    -        const data = await response.text();
    +        const data = await response.json();
             return data;
         }
     }
    diff --git a/deps/npm/node_modules/sigstore/dist/identity/index.d.ts b/deps/npm/node_modules/sigstore/dist/identity/index.d.ts
    index e3d23b4dbf8c6f..3eb0b444d120ff 100644
    --- a/deps/npm/node_modules/sigstore/dist/identity/index.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/identity/index.d.ts
    @@ -8,7 +8,12 @@ import { Provider } from './provider';
      * @param clientSecret Client secret for the issuer (optional)
      * @returns {Provider}
      */
    -declare function oauthProvider(issuer: string, clientID: string, clientSecret?: string): Provider;
    +declare function oauthProvider(options: {
    +    issuer: string;
    +    clientID: string;
    +    clientSecret?: string;
    +    redirectURL?: string;
    +}): Provider;
     /**
      * ciContextProvider returns a new Provider instance which attempts to retrieve
      * an identity token from the CI context.
    diff --git a/deps/npm/node_modules/sigstore/dist/identity/index.js b/deps/npm/node_modules/sigstore/dist/identity/index.js
    index bfb203aa39e8ce..351d607106700f 100644
    --- a/deps/npm/node_modules/sigstore/dist/identity/index.js
    +++ b/deps/npm/node_modules/sigstore/dist/identity/index.js
    @@ -27,8 +27,13 @@ const oauth_1 = require("./oauth");
      * @param clientSecret Client secret for the issuer (optional)
      * @returns {Provider}
      */
    -function oauthProvider(issuer, clientID, clientSecret) {
    -    return new oauth_1.OAuthProvider(new issuer_1.Issuer(issuer), clientID, clientSecret);
    +function oauthProvider(options) {
    +    return new oauth_1.OAuthProvider({
    +        issuer: new issuer_1.Issuer(options.issuer),
    +        clientID: options.clientID,
    +        clientSecret: options.clientSecret,
    +        redirectURL: options.redirectURL,
    +    });
     }
     /**
      * ciContextProvider returns a new Provider instance which attempts to retrieve
    diff --git a/deps/npm/node_modules/sigstore/dist/identity/oauth.d.ts b/deps/npm/node_modules/sigstore/dist/identity/oauth.d.ts
    index d02e212a7f88e7..3c9fae9ac15387 100644
    --- a/deps/npm/node_modules/sigstore/dist/identity/oauth.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/identity/oauth.d.ts
    @@ -1,5 +1,11 @@
     import { Issuer } from './issuer';
     import { Provider } from './provider';
    +interface OAuthProviderOptions {
    +    issuer: Issuer;
    +    clientID: string;
    +    clientSecret?: string;
    +    redirectURL?: string;
    +}
     export declare class OAuthProvider implements Provider {
         private clientID;
         private clientSecret;
    @@ -7,7 +13,7 @@ export declare class OAuthProvider implements Provider {
         private codeVerifier;
         private state;
         private redirectURI?;
    -    constructor(issuer: Issuer, clientID: string, clientSecret?: string);
    +    constructor(options: OAuthProviderOptions);
         getToken(): Promise;
         private initiateAuthRequest;
         private getIDToken;
    @@ -17,3 +23,4 @@ export declare class OAuthProvider implements Provider {
         private getCodeChallenge;
         private openURL;
     }
    +export {};
    diff --git a/deps/npm/node_modules/sigstore/dist/identity/oauth.js b/deps/npm/node_modules/sigstore/dist/identity/oauth.js
    index 651a0c7e80f1b7..7cb5a00cdb6942 100644
    --- a/deps/npm/node_modules/sigstore/dist/identity/oauth.js
    +++ b/deps/npm/node_modules/sigstore/dist/identity/oauth.js
    @@ -26,10 +26,11 @@ const make_fetch_happen_1 = __importDefault(require("make-fetch-happen"));
     const url_1 = require("url");
     const util_1 = require("../util");
     class OAuthProvider {
    -    constructor(issuer, clientID, clientSecret) {
    -        this.clientID = clientID;
    -        this.clientSecret = clientSecret || '';
    -        this.issuer = issuer;
    +    constructor(options) {
    +        this.clientID = options.clientID;
    +        this.clientSecret = options.clientSecret || '';
    +        this.issuer = options.issuer;
    +        this.redirectURI = options.redirectURL;
             this.codeVerifier = generateRandomString(32);
             this.state = generateRandomString(16);
         }
    @@ -43,9 +44,20 @@ class OAuthProvider {
         async initiateAuthRequest() {
             const server = http_1.default.createServer();
             const sockets = new Set();
    -        // Start server and wait till it is listening
    +        // Start server and wait till it is listening. If a redirect URL was
    +        // provided, use that. Otherwise, use a random port and construct the
    +        // redirect URL.
             await new Promise((resolve) => {
    -            server.listen(0, resolve);
    +            if (this.redirectURI) {
    +                const url = new url_1.URL(this.redirectURI);
    +                server.listen(Number(url.port), url.hostname, resolve);
    +            }
    +            else {
    +                server.listen(0, resolve);
    +                // Get port the server is listening on and construct the server URL
    +                const port = server.address().port;
    +                this.redirectURI = `http://localhost:${port}`;
    +            }
             });
             // Keep track of connections to the server so we can force a shutdown
             server.on('connection', (socket) => {
    @@ -54,9 +66,6 @@ class OAuthProvider {
                     sockets.delete(socket);
                 });
             });
    -        // Get port the server is listening on and construct the server URL
    -        const port = server.address().port;
    -        this.redirectURI = `http://localhost:${port}`;
             const result = new Promise((resolve, reject) => {
                 // Set-up handler for post-auth redirect
                 server.on('request', (req, res) => {
    diff --git a/deps/npm/node_modules/sigstore/dist/sigstore.d.ts b/deps/npm/node_modules/sigstore/dist/sigstore.d.ts
    index bb3034383e6956..69a28f7243048a 100644
    --- a/deps/npm/node_modules/sigstore/dist/sigstore.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/sigstore.d.ts
    @@ -8,12 +8,17 @@ export declare const DEFAULT_REKOR_URL = "https://rekor.sigstore.dev";
     interface TLogOptions {
         rekorURL?: string;
     }
    +interface TUFOptions {
    +    tufMirrorURL?: string;
    +    tufRootPath?: string;
    +}
     export type SignOptions = {
         fulcioURL?: string;
         identityToken?: string;
         oidcIssuer?: string;
         oidcClientID?: string;
         oidcClientSecret?: string;
    +    oidcRedirectURL?: string;
     } & TLogOptions;
     export type VerifyOptions = {
         ctLogThreshold?: number;
    @@ -23,7 +28,7 @@ export type VerifyOptions = {
         certificateIdentityURI?: string;
         certificateOIDs?: Record;
         keySelector?: KeySelector;
    -} & TLogOptions;
    +} & TLogOptions & TUFOptions;
     type Bundle = sigstore.SerializedBundle;
     export declare function sign(payload: Buffer, options?: SignOptions): Promise;
     export declare function attest(payload: Buffer, payloadType: string, options?: SignOptions): Promise;
    diff --git a/deps/npm/node_modules/sigstore/dist/sigstore.js b/deps/npm/node_modules/sigstore/dist/sigstore.js
    index ef8fb2058a47e9..cf8c90c309148e 100644
    --- a/deps/npm/node_modules/sigstore/dist/sigstore.js
    +++ b/deps/npm/node_modules/sigstore/dist/sigstore.js
    @@ -42,15 +42,13 @@ 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.
     */
    -const fs_1 = __importDefault(require("fs"));
    -const os_1 = __importDefault(require("os"));
    -const path_1 = __importDefault(require("path"));
     const ca_1 = require("./ca");
     const identity_1 = __importDefault(require("./identity"));
     const sign_1 = require("./sign");
     const tlog_1 = require("./tlog");
     const tuf = __importStar(require("./tuf"));
     const sigstore = __importStar(require("./types/sigstore"));
    +const util_1 = require("./util");
     const verify_1 = require("./verify");
     exports.utils = __importStar(require("./sigstore-utils"));
     exports.DEFAULT_FULCIO_URL = 'https://fulcio.sigstore.dev';
    @@ -65,6 +63,7 @@ function createTLogClient(options) {
             rekorBaseURL: options.rekorURL || exports.DEFAULT_REKOR_URL,
         });
     }
    +const tufCacheDir = util_1.appdata.appDataPath('sigstore-js');
     async function sign(payload, options = {}) {
         const ca = createCAClient(options);
         const tlog = createTLogClient(options);
    @@ -92,8 +91,10 @@ async function attest(payload, payloadType, options = {}) {
     }
     exports.attest = attest;
     async function verify(bundle, payload, options = {}) {
    -    const cacheDir = defaultCacheDir();
    -    const trustedRoot = await tuf.getTrustedRoot(cacheDir);
    +    const trustedRoot = await tuf.getTrustedRoot(tufCacheDir, {
    +        mirrorURL: options.tufMirrorURL,
    +        rootPath: options.tufRootPath,
    +    });
         const verifier = new verify_1.Verifier(trustedRoot, options.keySelector);
         const deserializedBundle = sigstore.bundleFromJSON(bundle);
         const opts = collectArtifactVerificationOptions(options);
    @@ -114,21 +115,16 @@ function configureIdentityProviders(options) {
         else {
             idps.push(identity_1.default.ciContextProvider());
             if (options.oidcIssuer && options.oidcClientID) {
    -            idps.push(identity_1.default.oauthProvider(options.oidcIssuer, options.oidcClientID, options.oidcClientSecret));
    +            idps.push(identity_1.default.oauthProvider({
    +                issuer: options.oidcIssuer,
    +                clientID: options.oidcClientID,
    +                clientSecret: options.oidcClientSecret,
    +                redirectURL: options.oidcRedirectURL,
    +            }));
             }
         }
         return idps;
     }
    -function defaultCacheDir() {
    -    let cacheRootDir = os_1.default.homedir();
    -    try {
    -        fs_1.default.accessSync(os_1.default.homedir(), fs_1.default.constants.W_OK | fs_1.default.constants.R_OK);
    -    }
    -    catch (e) {
    -        cacheRootDir = os_1.default.tmpdir();
    -    }
    -    return path_1.default.join(cacheRootDir, '.sigstore', 'js-root');
    -}
     // Assembles the AtifactVerificationOptions from the supplied VerifyOptions.
     function collectArtifactVerificationOptions(options) {
         // The trusted signers are only used if the options contain a certificate
    diff --git a/deps/npm/node_modules/sigstore/dist/tlog/types/__generated__/hashedrekord.js b/deps/npm/node_modules/sigstore/dist/tlog/types/__generated__/hashedrekord.js
    index 5383a370094cdf..61923a61cd8dee 100644
    --- a/deps/npm/node_modules/sigstore/dist/tlog/types/__generated__/hashedrekord.js
    +++ b/deps/npm/node_modules/sigstore/dist/tlog/types/__generated__/hashedrekord.js
    @@ -1,5 +1,5 @@
     "use strict";
    -/* tslint:disable */
    +/* eslint-disable */
     /**
      * This file was automatically generated by json-schema-to-typescript.
      * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
    diff --git a/deps/npm/node_modules/sigstore/dist/tlog/types/__generated__/intoto.js b/deps/npm/node_modules/sigstore/dist/tlog/types/__generated__/intoto.js
    index 5383a370094cdf..61923a61cd8dee 100644
    --- a/deps/npm/node_modules/sigstore/dist/tlog/types/__generated__/intoto.js
    +++ b/deps/npm/node_modules/sigstore/dist/tlog/types/__generated__/intoto.js
    @@ -1,5 +1,5 @@
     "use strict";
    -/* tslint:disable */
    +/* eslint-disable */
     /**
      * This file was automatically generated by json-schema-to-typescript.
      * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
    diff --git a/deps/npm/node_modules/sigstore/dist/tuf/index.d.ts b/deps/npm/node_modules/sigstore/dist/tuf/index.d.ts
    index 349ff08b3be4bb..455fc6af06c54e 100644
    --- a/deps/npm/node_modules/sigstore/dist/tuf/index.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/tuf/index.d.ts
    @@ -1,2 +1,6 @@
     import * as sigstore from '../types/sigstore';
    -export declare function getTrustedRoot(cacheDir: string): Promise;
    +export interface TUFOptions {
    +    mirrorURL?: string;
    +    rootPath?: string;
    +}
    +export declare function getTrustedRoot(cachePath: string, options?: TUFOptions): Promise;
    diff --git a/deps/npm/node_modules/sigstore/dist/tuf/index.js b/deps/npm/node_modules/sigstore/dist/tuf/index.js
    index 1aea238ef32ff2..824bce9105ed8e 100644
    --- a/deps/npm/node_modules/sigstore/dist/tuf/index.js
    +++ b/deps/npm/node_modules/sigstore/dist/tuf/index.js
    @@ -1,4 +1,27 @@
     "use strict";
    +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
    +    if (k2 === undefined) k2 = k;
    +    var desc = Object.getOwnPropertyDescriptor(m, k);
    +    if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
    +      desc = { enumerable: true, get: function() { return m[k]; } };
    +    }
    +    Object.defineProperty(o, k2, desc);
    +}) : (function(o, m, k, k2) {
    +    if (k2 === undefined) k2 = k;
    +    o[k2] = m[k];
    +}));
    +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
    +    Object.defineProperty(o, "default", { enumerable: true, value: v });
    +}) : function(o, v) {
    +    o["default"] = v;
    +});
    +var __importStar = (this && this.__importStar) || function (mod) {
    +    if (mod && mod.__esModule) return mod;
    +    var result = {};
    +    if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
    +    __setModuleDefault(result, mod);
    +    return result;
    +};
     var __importDefault = (this && this.__importDefault) || function (mod) {
         return (mod && mod.__esModule) ? mod : { "default": mod };
     };
    @@ -22,55 +45,62 @@ limitations under the License.
     const fs_1 = __importDefault(require("fs"));
     const path_1 = __importDefault(require("path"));
     const tuf_js_1 = require("tuf-js");
    -const trustroot_1 = require("./trustroot");
    -async function getTrustedRoot(cacheDir) {
    -    initTufCache(cacheDir);
    -    const repoMap = initRepoMap(cacheDir);
    -    const repoClients = Object.entries(repoMap.repositories).map(([name, urls]) => initClient(name, urls[0], cacheDir));
    -    // TODO: Add support for multiple repositories. For now, we just use the first
    -    // one (the production Sigstore TUF repository).
    -    const fetcher = new trustroot_1.TrustedRootFetcher(repoClients[0]);
    -    return fetcher.getTrustedRoot();
    +const sigstore = __importStar(require("../types/sigstore"));
    +const target_1 = require("./target");
    +const TRUSTED_ROOT_TARGET = 'trusted_root.json';
    +const DEFAULT_MIRROR_URL = 'https://sigstore-tuf-root.storage.googleapis.com';
    +const DEFAULT_TUF_ROOT_PATH = '../../store/public-good-instance-root.json';
    +async function getTrustedRoot(cachePath, options = {}) {
    +    const tufRootPath = options.rootPath || require.resolve(DEFAULT_TUF_ROOT_PATH);
    +    const mirrorURL = options.mirrorURL || DEFAULT_MIRROR_URL;
    +    initTufCache(cachePath, tufRootPath);
    +    const remote = initRemoteConfig(cachePath, mirrorURL);
    +    const repoClient = initClient(cachePath, remote);
    +    const trustedRoot = await (0, target_1.getTarget)(repoClient, TRUSTED_ROOT_TARGET);
    +    return sigstore.TrustedRoot.fromJSON(JSON.parse(trustedRoot));
     }
     exports.getTrustedRoot = getTrustedRoot;
    -// Initializes the root TUF cache directory
    -function initTufCache(cacheDir) {
    -    if (!fs_1.default.existsSync(cacheDir)) {
    -        fs_1.default.mkdirSync(cacheDir, { recursive: true });
    +// Initializes the TUF cache directory structure including the initial
    +// root.json file. If the cache directory does not exist, it will be
    +// created. If the targets directory does not exist, it will be created.
    +// If the root.json file does not exist, it will be copied from the
    +// rootPath argument.
    +function initTufCache(cachePath, tufRootPath) {
    +    const targetsPath = path_1.default.join(cachePath, 'targets');
    +    const cachedRootPath = path_1.default.join(cachePath, 'root.json');
    +    if (!fs_1.default.existsSync(cachePath)) {
    +        fs_1.default.mkdirSync(cachePath, { recursive: true });
         }
    -}
    -// Initializes the repo map (copying it to the cache root dir) and returns the
    -// content of the repository map.
    -function initRepoMap(rootDir) {
    -    const mapDest = path_1.default.join(rootDir, 'map.json');
    -    if (!fs_1.default.existsSync(mapDest)) {
    -        const mapSrc = require.resolve('../../store/map.json');
    -        fs_1.default.copyFileSync(mapSrc, mapDest);
    +    if (!fs_1.default.existsSync(targetsPath)) {
    +        fs_1.default.mkdirSync(targetsPath);
         }
    -    const buf = fs_1.default.readFileSync(mapDest);
    -    return JSON.parse(buf.toString('utf-8'));
    +    if (!fs_1.default.existsSync(cachedRootPath)) {
    +        fs_1.default.copyFileSync(tufRootPath, cachedRootPath);
    +    }
    +    return cachePath;
     }
    -function initClient(name, url, rootDir) {
    -    const repoCachePath = path_1.default.join(rootDir, name);
    -    const targetCachePath = path_1.default.join(repoCachePath, 'targets');
    -    const tufRootDest = path_1.default.join(repoCachePath, 'root.json');
    -    // Only copy the TUF trusted root if it doesn't already exist. It's possible
    -    // that the cached root has already been updated, so we don't want to roll it
    -    // back.
    -    if (!fs_1.default.existsSync(tufRootDest)) {
    -        const tufRootSrc = require.resolve(`../../store/${name}-root.json`);
    -        fs_1.default.mkdirSync(repoCachePath);
    -        fs_1.default.copyFileSync(tufRootSrc, tufRootDest);
    +// Initializes the remote.json file, which contains the URL of the TUF
    +// repository. If the file does not exist, it will be created. If the file
    +// exists, it will be parsed and returned.
    +function initRemoteConfig(rootDir, mirrorURL) {
    +    let remoteConfig;
    +    const remoteConfigPath = path_1.default.join(rootDir, 'remote.json');
    +    if (fs_1.default.existsSync(remoteConfigPath)) {
    +        const data = fs_1.default.readFileSync(remoteConfigPath, 'utf-8');
    +        remoteConfig = JSON.parse(data);
         }
    -    if (!fs_1.default.existsSync(targetCachePath)) {
    -        fs_1.default.mkdirSync(targetCachePath);
    +    if (!remoteConfig) {
    +        remoteConfig = { mirror: mirrorURL };
    +        fs_1.default.writeFileSync(remoteConfigPath, JSON.stringify(remoteConfig));
         }
    -    // TODO: Is there some better way to derive the base URL for the targets?
    -    // Hard-coding for now based on current Sigstore TUF repo layout.
    +    return remoteConfig;
    +}
    +function initClient(cachePath, remote) {
    +    const baseURL = remote.mirror;
         return new tuf_js_1.Updater({
    -        metadataBaseUrl: url,
    -        targetBaseUrl: `${url}/targets`,
    -        metadataDir: repoCachePath,
    -        targetDir: targetCachePath,
    +        metadataBaseUrl: baseURL,
    +        targetBaseUrl: `${baseURL}/targets`,
    +        metadataDir: cachePath,
    +        targetDir: path_1.default.join(cachePath, 'targets'),
         });
     }
    diff --git a/deps/npm/node_modules/sigstore/dist/tuf/target.d.ts b/deps/npm/node_modules/sigstore/dist/tuf/target.d.ts
    new file mode 100644
    index 00000000000000..aed81654f3be0b
    --- /dev/null
    +++ b/deps/npm/node_modules/sigstore/dist/tuf/target.d.ts
    @@ -0,0 +1,2 @@
    +import { Updater } from 'tuf-js';
    +export declare function getTarget(tuf: Updater, targetPath: string): Promise;
    diff --git a/deps/npm/node_modules/sigstore/dist/tuf/target.js b/deps/npm/node_modules/sigstore/dist/tuf/target.js
    new file mode 100644
    index 00000000000000..ac708cdbcf1cef
    --- /dev/null
    +++ b/deps/npm/node_modules/sigstore/dist/tuf/target.js
    @@ -0,0 +1,60 @@
    +"use strict";
    +var __importDefault = (this && this.__importDefault) || function (mod) {
    +    return (mod && mod.__esModule) ? mod : { "default": mod };
    +};
    +Object.defineProperty(exports, "__esModule", { value: true });
    +exports.getTarget = void 0;
    +/*
    +Copyright 2023 The Sigstore Authors.
    +
    +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.
    +*/
    +const fs_1 = __importDefault(require("fs"));
    +const error_1 = require("../error");
    +// Returns the local path to the specified target. If the target is not yet
    +// cached locally, the provided TUF Updater will be used to download and
    +// cache the target.
    +async function getTarget(tuf, targetPath) {
    +    const path = await getTargetPath(tuf, targetPath);
    +    try {
    +        return fs_1.default.readFileSync(path, 'utf-8');
    +    }
    +    catch (err) {
    +        throw new error_1.InternalError(`error reading trusted root: ${err}`);
    +    }
    +}
    +exports.getTarget = getTarget;
    +async function getTargetPath(tuf, target) {
    +    let targetInfo;
    +    try {
    +        targetInfo = await tuf.refresh().then(() => tuf.getTargetInfo(target));
    +    }
    +    catch (err) {
    +        throw new error_1.InternalError(`error refreshing TUF metadata: ${err}`);
    +    }
    +    if (!targetInfo) {
    +        throw new error_1.InternalError(`target ${target} not found`);
    +    }
    +    let path = await tuf.findCachedTarget(targetInfo);
    +    // An empty path here means the target has not been cached locally, or is
    +    // out of date. In either case, we need to download it.
    +    if (!path) {
    +        try {
    +            path = await tuf.downloadTarget(targetInfo);
    +        }
    +        catch (err) {
    +            throw new error_1.InternalError(`error downloading target: ${err}`);
    +        }
    +    }
    +    return path;
    +}
    diff --git a/deps/npm/node_modules/sigstore/dist/tuf/trustroot.d.ts b/deps/npm/node_modules/sigstore/dist/tuf/trustroot.d.ts
    deleted file mode 100644
    index 615fffae62a80e..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/tuf/trustroot.d.ts
    +++ /dev/null
    @@ -1,11 +0,0 @@
    -import { Updater } from 'tuf-js';
    -import * as sigstore from '../types/sigstore';
    -export declare class TrustedRootFetcher {
    -    private tuf;
    -    constructor(tuf: Updater);
    -    getTrustedRoot(): Promise;
    -    private allTargets;
    -    private getTLogKeys;
    -    private getCAKeys;
    -    private readTargetBytes;
    -}
    diff --git a/deps/npm/node_modules/sigstore/dist/tuf/trustroot.js b/deps/npm/node_modules/sigstore/dist/tuf/trustroot.js
    deleted file mode 100644
    index dcf491cdaefe8d..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/tuf/trustroot.js
    +++ /dev/null
    @@ -1,163 +0,0 @@
    -"use strict";
    -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
    -    if (k2 === undefined) k2 = k;
    -    var desc = Object.getOwnPropertyDescriptor(m, k);
    -    if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
    -      desc = { enumerable: true, get: function() { return m[k]; } };
    -    }
    -    Object.defineProperty(o, k2, desc);
    -}) : (function(o, m, k, k2) {
    -    if (k2 === undefined) k2 = k;
    -    o[k2] = m[k];
    -}));
    -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
    -    Object.defineProperty(o, "default", { enumerable: true, value: v });
    -}) : function(o, v) {
    -    o["default"] = v;
    -});
    -var __importStar = (this && this.__importStar) || function (mod) {
    -    if (mod && mod.__esModule) return mod;
    -    var result = {};
    -    if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
    -    __setModuleDefault(result, mod);
    -    return result;
    -};
    -var __importDefault = (this && this.__importDefault) || function (mod) {
    -    return (mod && mod.__esModule) ? mod : { "default": mod };
    -};
    -Object.defineProperty(exports, "__esModule", { value: true });
    -exports.TrustedRootFetcher = void 0;
    -/*
    -Copyright 2023 The Sigstore Authors.
    -
    -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.
    -*/
    -const fs_1 = __importDefault(require("fs"));
    -const error_1 = require("../error");
    -const sigstore = __importStar(require("../types/sigstore"));
    -const util_1 = require("../util");
    -const TRUSTED_ROOT_MEDIA_TYPE = 'application/vnd.dev.sigstore.trustedroot+json;version=0.1';
    -// Type guard for SigstoreTargetMetadata
    -function isTargetMetadata(m) {
    -    return (m !== undefined &&
    -        m !== null &&
    -        typeof m === 'object' &&
    -        'status' in m &&
    -        'usage' in m &&
    -        'uri' in m);
    -}
    -class TrustedRootFetcher {
    -    constructor(tuf) {
    -        this.tuf = tuf;
    -    }
    -    // Assembles a TrustedRoot from the targets in the TUF repo
    -    async getTrustedRoot() {
    -        // Get all available targets
    -        const targets = await this.allTargets();
    -        const cas = await this.getCAKeys(targets, 'Fulcio');
    -        const ctlogs = await this.getTLogKeys(targets, 'CTFE');
    -        const tlogs = await this.getTLogKeys(targets, 'Rekor');
    -        return {
    -            mediaType: TRUSTED_ROOT_MEDIA_TYPE,
    -            certificateAuthorities: cas,
    -            ctlogs: ctlogs,
    -            tlogs: tlogs,
    -            timestampAuthorities: [],
    -        };
    -    }
    -    // Retrieves the list of TUF targets.
    -    // NOTE: This is a HACK to get around the fact that the TUF library doesn't
    -    // expose the list of targets. This is a temporary solution until TUF comes up
    -    // with a story for target discovery.
    -    // https://docs.google.com/document/d/1rWHAM2qCUtnjWD4lOrGWE2EIDLoA7eSy4-jB66Wgh0o
    -    async allTargets() {
    -        try {
    -            await this.tuf.refresh();
    -        }
    -        catch (e) {
    -            throw new error_1.InternalError('error refreshing trust metadata');
    -        }
    -        return Object.values(
    -        // eslint-disable-next-line @typescript-eslint/no-explicit-any
    -        this.tuf.trustedSet.targets?.signed.targets || {});
    -    }
    -    // Filters the supplied list of targets to those with the specified usage
    -    // and returns a new TransparencyLogInstance for each with the associated
    -    // public key populated.
    -    async getTLogKeys(targets, usage) {
    -        const filteredTargets = filterByUsage(targets, usage);
    -        return Promise.all(filteredTargets.map(async (target) => {
    -            const keyBytes = await this.readTargetBytes(target);
    -            const uri = isTargetMetadata(target.custom.sigstore)
    -                ? target.custom.sigstore.uri
    -                : '';
    -            // The log ID is not present in the Sigstore target metadata, but
    -            // can be derived by hashing the contents of the public key.
    -            return {
    -                baseUrl: uri,
    -                hashAlgorithm: sigstore.HashAlgorithm.SHA2_256,
    -                logId: { keyId: util_1.crypto.hash(keyBytes) },
    -                publicKey: {
    -                    keyDetails: sigstore.PublicKeyDetails.PKIX_ECDSA_P256_SHA_256,
    -                    rawBytes: keyBytes,
    -                },
    -            };
    -        }));
    -    }
    -    // Filters the supplied list of targets to those with the specified usage
    -    // and returns a new CertificateAuthority populated with all of the associated
    -    // certificates.
    -    // NOTE: The Sigstore target metadata does NOT provide any mechanism to link
    -    // related certificates (e.g. a root and intermediate). As a result, we
    -    // assume that all certificates located here are part of the same chain.
    -    // This works out OK since our certificate chain verification code tries all
    -    // possible permutations of the certificates until it finds one that results
    -    // in a valid, trusted chain.
    -    async getCAKeys(targets, usage) {
    -        const filteredTargets = filterByUsage(targets, usage);
    -        const certs = await Promise.all(filteredTargets.map(async (target) => await this.readTargetBytes(target)));
    -        return [
    -            {
    -                uri: '',
    -                subject: undefined,
    -                validFor: { start: new Date(0) },
    -                certChain: {
    -                    certificates: certs.map((cert) => ({ rawBytes: cert })),
    -                },
    -            },
    -        ];
    -    }
    -    // Reads the contents of the specified target file as a DER-encoded buffer.
    -    async readTargetBytes(target) {
    -        try {
    -            let path = await this.tuf.findCachedTarget(target);
    -            // An empty path here means the target has not been cached locally, or is
    -            // out of date. In either case, we need to download it.
    -            if (!path) {
    -                path = await this.tuf.downloadTarget(target);
    -            }
    -            const file = fs_1.default.readFileSync(path);
    -            return util_1.pem.toDER(file.toString('utf-8'));
    -        }
    -        catch (err) {
    -            throw new error_1.InternalError(`error reading key/certificate for ${target.path}`);
    -        }
    -    }
    -}
    -exports.TrustedRootFetcher = TrustedRootFetcher;
    -function filterByUsage(targets, usage) {
    -    return targets.filter((target) => {
    -        const meta = target.custom.sigstore;
    -        return isTargetMetadata(meta) && meta.usage === usage;
    -    });
    -}
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/envelope.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/envelope.d.ts
    deleted file mode 100644
    index 81422a00759628..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/envelope.d.ts
    +++ /dev/null
    @@ -1,46 +0,0 @@
    -/// 
    -/** An authenticated message of arbitrary type. */
    -export interface Envelope {
    -    /**
    -     * Message to be signed. (In JSON, this is encoded as base64.)
    -     * REQUIRED.
    -     */
    -    payload: Buffer;
    -    /**
    -     * String unambiguously identifying how to interpret payload.
    -     * REQUIRED.
    -     */
    -    payloadType: string;
    -    /**
    -     * Signature over:
    -     *     PAE(type, body)
    -     * Where PAE is defined as:
    -     * PAE(type, body) = "DSSEv1" + SP + LEN(type) + SP + type + SP + LEN(body) + SP + body
    -     * +               = concatenation
    -     * SP              = ASCII space [0x20]
    -     * "DSSEv1"        = ASCII [0x44, 0x53, 0x53, 0x45, 0x76, 0x31]
    -     * LEN(s)          = ASCII decimal encoding of the byte length of s, with no leading zeros
    -     * REQUIRED (length >= 1).
    -     */
    -    signatures: Signature[];
    -}
    -export interface Signature {
    -    /**
    -     * Signature itself. (In JSON, this is encoded as base64.)
    -     * REQUIRED.
    -     */
    -    sig: Buffer;
    -    /**
    -     * Unauthenticated* hint identifying which public key was used.
    -     * OPTIONAL.
    -     */
    -    keyid: string;
    -}
    -export declare const Envelope: {
    -    fromJSON(object: any): Envelope;
    -    toJSON(message: Envelope): unknown;
    -};
    -export declare const Signature: {
    -    fromJSON(object: any): Signature;
    -    toJSON(message: Signature): unknown;
    -};
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/api/field_behavior.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/api/field_behavior.d.ts
    deleted file mode 100644
    index 1b4ed47aadebc6..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/api/field_behavior.d.ts
    +++ /dev/null
    @@ -1,52 +0,0 @@
    -/**
    - * An indicator of the behavior of a given field (for example, that a field
    - * is required in requests, or given as output but ignored as input).
    - * This **does not** change the behavior in protocol buffers itself; it only
    - * denotes the behavior and may affect how API tooling handles the field.
    - *
    - * Note: This enum **may** receive new values in the future.
    - */
    -export declare enum FieldBehavior {
    -    /** FIELD_BEHAVIOR_UNSPECIFIED - Conventional default for enums. Do not use this. */
    -    FIELD_BEHAVIOR_UNSPECIFIED = 0,
    -    /**
    -     * OPTIONAL - Specifically denotes a field as optional.
    -     * While all fields in protocol buffers are optional, this may be specified
    -     * for emphasis if appropriate.
    -     */
    -    OPTIONAL = 1,
    -    /**
    -     * REQUIRED - Denotes a field as required.
    -     * This indicates that the field **must** be provided as part of the request,
    -     * and failure to do so will cause an error (usually `INVALID_ARGUMENT`).
    -     */
    -    REQUIRED = 2,
    -    /**
    -     * OUTPUT_ONLY - Denotes a field as output only.
    -     * This indicates that the field is provided in responses, but including the
    -     * field in a request does nothing (the server *must* ignore it and
    -     * *must not* throw an error as a result of the field's presence).
    -     */
    -    OUTPUT_ONLY = 3,
    -    /**
    -     * INPUT_ONLY - Denotes a field as input only.
    -     * This indicates that the field is provided in requests, and the
    -     * corresponding field is not included in output.
    -     */
    -    INPUT_ONLY = 4,
    -    /**
    -     * IMMUTABLE - Denotes a field as immutable.
    -     * This indicates that the field may be set once in a request to create a
    -     * resource, but may not be changed thereafter.
    -     */
    -    IMMUTABLE = 5,
    -    /**
    -     * UNORDERED_LIST - Denotes that a (repeated) field is an unordered list.
    -     * This indicates that the service may provide the elements of the list
    -     * in any arbitrary order, rather than the order the user originally
    -     * provided. Additionally, the list's order may or may not be stable.
    -     */
    -    UNORDERED_LIST = 6
    -}
    -export declare function fieldBehaviorFromJSON(object: any): FieldBehavior;
    -export declare function fieldBehaviorToJSON(object: FieldBehavior): string;
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/descriptor.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/descriptor.d.ts
    deleted file mode 100644
    index ef43bf01c10c3b..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/descriptor.d.ts
    +++ /dev/null
    @@ -1,939 +0,0 @@
    -/// 
    -/**
    - * The protocol compiler can output a FileDescriptorSet containing the .proto
    - * files it parses.
    - */
    -export interface FileDescriptorSet {
    -    file: FileDescriptorProto[];
    -}
    -/** Describes a complete .proto file. */
    -export interface FileDescriptorProto {
    -    /** file name, relative to root of source tree */
    -    name: string;
    -    /** e.g. "foo", "foo.bar", etc. */
    -    package: string;
    -    /** Names of files imported by this file. */
    -    dependency: string[];
    -    /** Indexes of the public imported files in the dependency list above. */
    -    publicDependency: number[];
    -    /**
    -     * Indexes of the weak imported files in the dependency list.
    -     * For Google-internal migration only. Do not use.
    -     */
    -    weakDependency: number[];
    -    /** All top-level definitions in this file. */
    -    messageType: DescriptorProto[];
    -    enumType: EnumDescriptorProto[];
    -    service: ServiceDescriptorProto[];
    -    extension: FieldDescriptorProto[];
    -    options: FileOptions | undefined;
    -    /**
    -     * This field contains optional information about the original source code.
    -     * You may safely remove this entire field without harming runtime
    -     * functionality of the descriptors -- the information is needed only by
    -     * development tools.
    -     */
    -    sourceCodeInfo: SourceCodeInfo | undefined;
    -    /**
    -     * The syntax of the proto file.
    -     * The supported values are "proto2" and "proto3".
    -     */
    -    syntax: string;
    -}
    -/** Describes a message type. */
    -export interface DescriptorProto {
    -    name: string;
    -    field: FieldDescriptorProto[];
    -    extension: FieldDescriptorProto[];
    -    nestedType: DescriptorProto[];
    -    enumType: EnumDescriptorProto[];
    -    extensionRange: DescriptorProto_ExtensionRange[];
    -    oneofDecl: OneofDescriptorProto[];
    -    options: MessageOptions | undefined;
    -    reservedRange: DescriptorProto_ReservedRange[];
    -    /**
    -     * Reserved field names, which may not be used by fields in the same message.
    -     * A given name may only be reserved once.
    -     */
    -    reservedName: string[];
    -}
    -export interface DescriptorProto_ExtensionRange {
    -    /** Inclusive. */
    -    start: number;
    -    /** Exclusive. */
    -    end: number;
    -    options: ExtensionRangeOptions | undefined;
    -}
    -/**
    - * Range of reserved tag numbers. Reserved tag numbers may not be used by
    - * fields or extension ranges in the same message. Reserved ranges may
    - * not overlap.
    - */
    -export interface DescriptorProto_ReservedRange {
    -    /** Inclusive. */
    -    start: number;
    -    /** Exclusive. */
    -    end: number;
    -}
    -export interface ExtensionRangeOptions {
    -    /** The parser stores options it doesn't recognize here. See above. */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -/** Describes a field within a message. */
    -export interface FieldDescriptorProto {
    -    name: string;
    -    number: number;
    -    label: FieldDescriptorProto_Label;
    -    /**
    -     * If type_name is set, this need not be set.  If both this and type_name
    -     * are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
    -     */
    -    type: FieldDescriptorProto_Type;
    -    /**
    -     * For message and enum types, this is the name of the type.  If the name
    -     * starts with a '.', it is fully-qualified.  Otherwise, C++-like scoping
    -     * rules are used to find the type (i.e. first the nested types within this
    -     * message are searched, then within the parent, on up to the root
    -     * namespace).
    -     */
    -    typeName: string;
    -    /**
    -     * For extensions, this is the name of the type being extended.  It is
    -     * resolved in the same manner as type_name.
    -     */
    -    extendee: string;
    -    /**
    -     * For numeric types, contains the original text representation of the value.
    -     * For booleans, "true" or "false".
    -     * For strings, contains the default text contents (not escaped in any way).
    -     * For bytes, contains the C escaped value.  All bytes >= 128 are escaped.
    -     */
    -    defaultValue: string;
    -    /**
    -     * If set, gives the index of a oneof in the containing type's oneof_decl
    -     * list.  This field is a member of that oneof.
    -     */
    -    oneofIndex: number;
    -    /**
    -     * JSON name of this field. The value is set by protocol compiler. If the
    -     * user has set a "json_name" option on this field, that option's value
    -     * will be used. Otherwise, it's deduced from the field's name by converting
    -     * it to camelCase.
    -     */
    -    jsonName: string;
    -    options: FieldOptions | undefined;
    -    /**
    -     * If true, this is a proto3 "optional". When a proto3 field is optional, it
    -     * tracks presence regardless of field type.
    -     *
    -     * When proto3_optional is true, this field must be belong to a oneof to
    -     * signal to old proto3 clients that presence is tracked for this field. This
    -     * oneof is known as a "synthetic" oneof, and this field must be its sole
    -     * member (each proto3 optional field gets its own synthetic oneof). Synthetic
    -     * oneofs exist in the descriptor only, and do not generate any API. Synthetic
    -     * oneofs must be ordered after all "real" oneofs.
    -     *
    -     * For message fields, proto3_optional doesn't create any semantic change,
    -     * since non-repeated message fields always track presence. However it still
    -     * indicates the semantic detail of whether the user wrote "optional" or not.
    -     * This can be useful for round-tripping the .proto file. For consistency we
    -     * give message fields a synthetic oneof also, even though it is not required
    -     * to track presence. This is especially important because the parser can't
    -     * tell if a field is a message or an enum, so it must always create a
    -     * synthetic oneof.
    -     *
    -     * Proto2 optional fields do not set this flag, because they already indicate
    -     * optional with `LABEL_OPTIONAL`.
    -     */
    -    proto3Optional: boolean;
    -}
    -export declare enum FieldDescriptorProto_Type {
    -    /**
    -     * TYPE_DOUBLE - 0 is reserved for errors.
    -     * Order is weird for historical reasons.
    -     */
    -    TYPE_DOUBLE = 1,
    -    TYPE_FLOAT = 2,
    -    /**
    -     * TYPE_INT64 - Not ZigZag encoded.  Negative numbers take 10 bytes.  Use TYPE_SINT64 if
    -     * negative values are likely.
    -     */
    -    TYPE_INT64 = 3,
    -    TYPE_UINT64 = 4,
    -    /**
    -     * TYPE_INT32 - Not ZigZag encoded.  Negative numbers take 10 bytes.  Use TYPE_SINT32 if
    -     * negative values are likely.
    -     */
    -    TYPE_INT32 = 5,
    -    TYPE_FIXED64 = 6,
    -    TYPE_FIXED32 = 7,
    -    TYPE_BOOL = 8,
    -    TYPE_STRING = 9,
    -    /**
    -     * TYPE_GROUP - Tag-delimited aggregate.
    -     * Group type is deprecated and not supported in proto3. However, Proto3
    -     * implementations should still be able to parse the group wire format and
    -     * treat group fields as unknown fields.
    -     */
    -    TYPE_GROUP = 10,
    -    /** TYPE_MESSAGE - Length-delimited aggregate. */
    -    TYPE_MESSAGE = 11,
    -    /** TYPE_BYTES - New in version 2. */
    -    TYPE_BYTES = 12,
    -    TYPE_UINT32 = 13,
    -    TYPE_ENUM = 14,
    -    TYPE_SFIXED32 = 15,
    -    TYPE_SFIXED64 = 16,
    -    /** TYPE_SINT32 - Uses ZigZag encoding. */
    -    TYPE_SINT32 = 17,
    -    /** TYPE_SINT64 - Uses ZigZag encoding. */
    -    TYPE_SINT64 = 18
    -}
    -export declare function fieldDescriptorProto_TypeFromJSON(object: any): FieldDescriptorProto_Type;
    -export declare function fieldDescriptorProto_TypeToJSON(object: FieldDescriptorProto_Type): string;
    -export declare enum FieldDescriptorProto_Label {
    -    /** LABEL_OPTIONAL - 0 is reserved for errors */
    -    LABEL_OPTIONAL = 1,
    -    LABEL_REQUIRED = 2,
    -    LABEL_REPEATED = 3
    -}
    -export declare function fieldDescriptorProto_LabelFromJSON(object: any): FieldDescriptorProto_Label;
    -export declare function fieldDescriptorProto_LabelToJSON(object: FieldDescriptorProto_Label): string;
    -/** Describes a oneof. */
    -export interface OneofDescriptorProto {
    -    name: string;
    -    options: OneofOptions | undefined;
    -}
    -/** Describes an enum type. */
    -export interface EnumDescriptorProto {
    -    name: string;
    -    value: EnumValueDescriptorProto[];
    -    options: EnumOptions | undefined;
    -    /**
    -     * Range of reserved numeric values. Reserved numeric values may not be used
    -     * by enum values in the same enum declaration. Reserved ranges may not
    -     * overlap.
    -     */
    -    reservedRange: EnumDescriptorProto_EnumReservedRange[];
    -    /**
    -     * Reserved enum value names, which may not be reused. A given name may only
    -     * be reserved once.
    -     */
    -    reservedName: string[];
    -}
    -/**
    - * Range of reserved numeric values. Reserved values may not be used by
    - * entries in the same enum. Reserved ranges may not overlap.
    - *
    - * Note that this is distinct from DescriptorProto.ReservedRange in that it
    - * is inclusive such that it can appropriately represent the entire int32
    - * domain.
    - */
    -export interface EnumDescriptorProto_EnumReservedRange {
    -    /** Inclusive. */
    -    start: number;
    -    /** Inclusive. */
    -    end: number;
    -}
    -/** Describes a value within an enum. */
    -export interface EnumValueDescriptorProto {
    -    name: string;
    -    number: number;
    -    options: EnumValueOptions | undefined;
    -}
    -/** Describes a service. */
    -export interface ServiceDescriptorProto {
    -    name: string;
    -    method: MethodDescriptorProto[];
    -    options: ServiceOptions | undefined;
    -}
    -/** Describes a method of a service. */
    -export interface MethodDescriptorProto {
    -    name: string;
    -    /**
    -     * Input and output type names.  These are resolved in the same way as
    -     * FieldDescriptorProto.type_name, but must refer to a message type.
    -     */
    -    inputType: string;
    -    outputType: string;
    -    options: MethodOptions | undefined;
    -    /** Identifies if client streams multiple client messages */
    -    clientStreaming: boolean;
    -    /** Identifies if server streams multiple server messages */
    -    serverStreaming: boolean;
    -}
    -export interface FileOptions {
    -    /**
    -     * Sets the Java package where classes generated from this .proto will be
    -     * placed.  By default, the proto package is used, but this is often
    -     * inappropriate because proto packages do not normally start with backwards
    -     * domain names.
    -     */
    -    javaPackage: string;
    -    /**
    -     * Controls the name of the wrapper Java class generated for the .proto file.
    -     * That class will always contain the .proto file's getDescriptor() method as
    -     * well as any top-level extensions defined in the .proto file.
    -     * If java_multiple_files is disabled, then all the other classes from the
    -     * .proto file will be nested inside the single wrapper outer class.
    -     */
    -    javaOuterClassname: string;
    -    /**
    -     * If enabled, then the Java code generator will generate a separate .java
    -     * file for each top-level message, enum, and service defined in the .proto
    -     * file.  Thus, these types will *not* be nested inside the wrapper class
    -     * named by java_outer_classname.  However, the wrapper class will still be
    -     * generated to contain the file's getDescriptor() method as well as any
    -     * top-level extensions defined in the file.
    -     */
    -    javaMultipleFiles: boolean;
    -    /**
    -     * This option does nothing.
    -     *
    -     * @deprecated
    -     */
    -    javaGenerateEqualsAndHash: boolean;
    -    /**
    -     * If set true, then the Java2 code generator will generate code that
    -     * throws an exception whenever an attempt is made to assign a non-UTF-8
    -     * byte sequence to a string field.
    -     * Message reflection will do the same.
    -     * However, an extension field still accepts non-UTF-8 byte sequences.
    -     * This option has no effect on when used with the lite runtime.
    -     */
    -    javaStringCheckUtf8: boolean;
    -    optimizeFor: FileOptions_OptimizeMode;
    -    /**
    -     * Sets the Go package where structs generated from this .proto will be
    -     * placed. If omitted, the Go package will be derived from the following:
    -     *   - The basename of the package import path, if provided.
    -     *   - Otherwise, the package statement in the .proto file, if present.
    -     *   - Otherwise, the basename of the .proto file, without extension.
    -     */
    -    goPackage: string;
    -    /**
    -     * Should generic services be generated in each language?  "Generic" services
    -     * are not specific to any particular RPC system.  They are generated by the
    -     * main code generators in each language (without additional plugins).
    -     * Generic services were the only kind of service generation supported by
    -     * early versions of google.protobuf.
    -     *
    -     * Generic services are now considered deprecated in favor of using plugins
    -     * that generate code specific to your particular RPC system.  Therefore,
    -     * these default to false.  Old code which depends on generic services should
    -     * explicitly set them to true.
    -     */
    -    ccGenericServices: boolean;
    -    javaGenericServices: boolean;
    -    pyGenericServices: boolean;
    -    phpGenericServices: boolean;
    -    /**
    -     * Is this file deprecated?
    -     * Depending on the target platform, this can emit Deprecated annotations
    -     * for everything in the file, or it will be completely ignored; in the very
    -     * least, this is a formalization for deprecating files.
    -     */
    -    deprecated: boolean;
    -    /**
    -     * Enables the use of arenas for the proto messages in this file. This applies
    -     * only to generated classes for C++.
    -     */
    -    ccEnableArenas: boolean;
    -    /**
    -     * Sets the objective c class prefix which is prepended to all objective c
    -     * generated classes from this .proto. There is no default.
    -     */
    -    objcClassPrefix: string;
    -    /** Namespace for generated classes; defaults to the package. */
    -    csharpNamespace: string;
    -    /**
    -     * By default Swift generators will take the proto package and CamelCase it
    -     * replacing '.' with underscore and use that to prefix the types/symbols
    -     * defined. When this options is provided, they will use this value instead
    -     * to prefix the types/symbols defined.
    -     */
    -    swiftPrefix: string;
    -    /**
    -     * Sets the php class prefix which is prepended to all php generated classes
    -     * from this .proto. Default is empty.
    -     */
    -    phpClassPrefix: string;
    -    /**
    -     * Use this option to change the namespace of php generated classes. Default
    -     * is empty. When this option is empty, the package name will be used for
    -     * determining the namespace.
    -     */
    -    phpNamespace: string;
    -    /**
    -     * Use this option to change the namespace of php generated metadata classes.
    -     * Default is empty. When this option is empty, the proto file name will be
    -     * used for determining the namespace.
    -     */
    -    phpMetadataNamespace: string;
    -    /**
    -     * Use this option to change the package of ruby generated classes. Default
    -     * is empty. When this option is not set, the package name will be used for
    -     * determining the ruby package.
    -     */
    -    rubyPackage: string;
    -    /**
    -     * The parser stores options it doesn't recognize here.
    -     * See the documentation for the "Options" section above.
    -     */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -/** Generated classes can be optimized for speed or code size. */
    -export declare enum FileOptions_OptimizeMode {
    -    /** SPEED - Generate complete code for parsing, serialization, */
    -    SPEED = 1,
    -    /** CODE_SIZE - etc. */
    -    CODE_SIZE = 2,
    -    /** LITE_RUNTIME - Generate code using MessageLite and the lite runtime. */
    -    LITE_RUNTIME = 3
    -}
    -export declare function fileOptions_OptimizeModeFromJSON(object: any): FileOptions_OptimizeMode;
    -export declare function fileOptions_OptimizeModeToJSON(object: FileOptions_OptimizeMode): string;
    -export interface MessageOptions {
    -    /**
    -     * Set true to use the old proto1 MessageSet wire format for extensions.
    -     * This is provided for backwards-compatibility with the MessageSet wire
    -     * format.  You should not use this for any other reason:  It's less
    -     * efficient, has fewer features, and is more complicated.
    -     *
    -     * The message must be defined exactly as follows:
    -     *   message Foo {
    -     *     option message_set_wire_format = true;
    -     *     extensions 4 to max;
    -     *   }
    -     * Note that the message cannot have any defined fields; MessageSets only
    -     * have extensions.
    -     *
    -     * All extensions of your type must be singular messages; e.g. they cannot
    -     * be int32s, enums, or repeated messages.
    -     *
    -     * Because this is an option, the above two restrictions are not enforced by
    -     * the protocol compiler.
    -     */
    -    messageSetWireFormat: boolean;
    -    /**
    -     * Disables the generation of the standard "descriptor()" accessor, which can
    -     * conflict with a field of the same name.  This is meant to make migration
    -     * from proto1 easier; new code should avoid fields named "descriptor".
    -     */
    -    noStandardDescriptorAccessor: boolean;
    -    /**
    -     * Is this message deprecated?
    -     * Depending on the target platform, this can emit Deprecated annotations
    -     * for the message, or it will be completely ignored; in the very least,
    -     * this is a formalization for deprecating messages.
    -     */
    -    deprecated: boolean;
    -    /**
    -     * Whether the message is an automatically generated map entry type for the
    -     * maps field.
    -     *
    -     * For maps fields:
    -     *     map map_field = 1;
    -     * The parsed descriptor looks like:
    -     *     message MapFieldEntry {
    -     *         option map_entry = true;
    -     *         optional KeyType key = 1;
    -     *         optional ValueType value = 2;
    -     *     }
    -     *     repeated MapFieldEntry map_field = 1;
    -     *
    -     * Implementations may choose not to generate the map_entry=true message, but
    -     * use a native map in the target language to hold the keys and values.
    -     * The reflection APIs in such implementations still need to work as
    -     * if the field is a repeated message field.
    -     *
    -     * NOTE: Do not set the option in .proto files. Always use the maps syntax
    -     * instead. The option should only be implicitly set by the proto compiler
    -     * parser.
    -     */
    -    mapEntry: boolean;
    -    /** The parser stores options it doesn't recognize here. See above. */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -export interface FieldOptions {
    -    /**
    -     * The ctype option instructs the C++ code generator to use a different
    -     * representation of the field than it normally would.  See the specific
    -     * options below.  This option is not yet implemented in the open source
    -     * release -- sorry, we'll try to include it in a future version!
    -     */
    -    ctype: FieldOptions_CType;
    -    /**
    -     * The packed option can be enabled for repeated primitive fields to enable
    -     * a more efficient representation on the wire. Rather than repeatedly
    -     * writing the tag and type for each element, the entire array is encoded as
    -     * a single length-delimited blob. In proto3, only explicit setting it to
    -     * false will avoid using packed encoding.
    -     */
    -    packed: boolean;
    -    /**
    -     * The jstype option determines the JavaScript type used for values of the
    -     * field.  The option is permitted only for 64 bit integral and fixed types
    -     * (int64, uint64, sint64, fixed64, sfixed64).  A field with jstype JS_STRING
    -     * is represented as JavaScript string, which avoids loss of precision that
    -     * can happen when a large value is converted to a floating point JavaScript.
    -     * Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
    -     * use the JavaScript "number" type.  The behavior of the default option
    -     * JS_NORMAL is implementation dependent.
    -     *
    -     * This option is an enum to permit additional types to be added, e.g.
    -     * goog.math.Integer.
    -     */
    -    jstype: FieldOptions_JSType;
    -    /**
    -     * Should this field be parsed lazily?  Lazy applies only to message-type
    -     * fields.  It means that when the outer message is initially parsed, the
    -     * inner message's contents will not be parsed but instead stored in encoded
    -     * form.  The inner message will actually be parsed when it is first accessed.
    -     *
    -     * This is only a hint.  Implementations are free to choose whether to use
    -     * eager or lazy parsing regardless of the value of this option.  However,
    -     * setting this option true suggests that the protocol author believes that
    -     * using lazy parsing on this field is worth the additional bookkeeping
    -     * overhead typically needed to implement it.
    -     *
    -     * This option does not affect the public interface of any generated code;
    -     * all method signatures remain the same.  Furthermore, thread-safety of the
    -     * interface is not affected by this option; const methods remain safe to
    -     * call from multiple threads concurrently, while non-const methods continue
    -     * to require exclusive access.
    -     *
    -     * Note that implementations may choose not to check required fields within
    -     * a lazy sub-message.  That is, calling IsInitialized() on the outer message
    -     * may return true even if the inner message has missing required fields.
    -     * This is necessary because otherwise the inner message would have to be
    -     * parsed in order to perform the check, defeating the purpose of lazy
    -     * parsing.  An implementation which chooses not to check required fields
    -     * must be consistent about it.  That is, for any particular sub-message, the
    -     * implementation must either *always* check its required fields, or *never*
    -     * check its required fields, regardless of whether or not the message has
    -     * been parsed.
    -     *
    -     * As of 2021, lazy does no correctness checks on the byte stream during
    -     * parsing.  This may lead to crashes if and when an invalid byte stream is
    -     * finally parsed upon access.
    -     *
    -     * TODO(b/211906113):  Enable validation on lazy fields.
    -     */
    -    lazy: boolean;
    -    /**
    -     * unverified_lazy does no correctness checks on the byte stream. This should
    -     * only be used where lazy with verification is prohibitive for performance
    -     * reasons.
    -     */
    -    unverifiedLazy: boolean;
    -    /**
    -     * Is this field deprecated?
    -     * Depending on the target platform, this can emit Deprecated annotations
    -     * for accessors, or it will be completely ignored; in the very least, this
    -     * is a formalization for deprecating fields.
    -     */
    -    deprecated: boolean;
    -    /** For Google-internal migration only. Do not use. */
    -    weak: boolean;
    -    /** The parser stores options it doesn't recognize here. See above. */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -export declare enum FieldOptions_CType {
    -    /** STRING - Default mode. */
    -    STRING = 0,
    -    CORD = 1,
    -    STRING_PIECE = 2
    -}
    -export declare function fieldOptions_CTypeFromJSON(object: any): FieldOptions_CType;
    -export declare function fieldOptions_CTypeToJSON(object: FieldOptions_CType): string;
    -export declare enum FieldOptions_JSType {
    -    /** JS_NORMAL - Use the default type. */
    -    JS_NORMAL = 0,
    -    /** JS_STRING - Use JavaScript strings. */
    -    JS_STRING = 1,
    -    /** JS_NUMBER - Use JavaScript numbers. */
    -    JS_NUMBER = 2
    -}
    -export declare function fieldOptions_JSTypeFromJSON(object: any): FieldOptions_JSType;
    -export declare function fieldOptions_JSTypeToJSON(object: FieldOptions_JSType): string;
    -export interface OneofOptions {
    -    /** The parser stores options it doesn't recognize here. See above. */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -export interface EnumOptions {
    -    /**
    -     * Set this option to true to allow mapping different tag names to the same
    -     * value.
    -     */
    -    allowAlias: boolean;
    -    /**
    -     * Is this enum deprecated?
    -     * Depending on the target platform, this can emit Deprecated annotations
    -     * for the enum, or it will be completely ignored; in the very least, this
    -     * is a formalization for deprecating enums.
    -     */
    -    deprecated: boolean;
    -    /** The parser stores options it doesn't recognize here. See above. */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -export interface EnumValueOptions {
    -    /**
    -     * Is this enum value deprecated?
    -     * Depending on the target platform, this can emit Deprecated annotations
    -     * for the enum value, or it will be completely ignored; in the very least,
    -     * this is a formalization for deprecating enum values.
    -     */
    -    deprecated: boolean;
    -    /** The parser stores options it doesn't recognize here. See above. */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -export interface ServiceOptions {
    -    /**
    -     * Is this service deprecated?
    -     * Depending on the target platform, this can emit Deprecated annotations
    -     * for the service, or it will be completely ignored; in the very least,
    -     * this is a formalization for deprecating services.
    -     */
    -    deprecated: boolean;
    -    /** The parser stores options it doesn't recognize here. See above. */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -export interface MethodOptions {
    -    /**
    -     * Is this method deprecated?
    -     * Depending on the target platform, this can emit Deprecated annotations
    -     * for the method, or it will be completely ignored; in the very least,
    -     * this is a formalization for deprecating methods.
    -     */
    -    deprecated: boolean;
    -    idempotencyLevel: MethodOptions_IdempotencyLevel;
    -    /** The parser stores options it doesn't recognize here. See above. */
    -    uninterpretedOption: UninterpretedOption[];
    -}
    -/**
    - * Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
    - * or neither? HTTP based RPC implementation may choose GET verb for safe
    - * methods, and PUT verb for idempotent methods instead of the default POST.
    - */
    -export declare enum MethodOptions_IdempotencyLevel {
    -    IDEMPOTENCY_UNKNOWN = 0,
    -    /** NO_SIDE_EFFECTS - implies idempotent */
    -    NO_SIDE_EFFECTS = 1,
    -    /** IDEMPOTENT - idempotent, but may have side effects */
    -    IDEMPOTENT = 2
    -}
    -export declare function methodOptions_IdempotencyLevelFromJSON(object: any): MethodOptions_IdempotencyLevel;
    -export declare function methodOptions_IdempotencyLevelToJSON(object: MethodOptions_IdempotencyLevel): string;
    -/**
    - * A message representing a option the parser does not recognize. This only
    - * appears in options protos created by the compiler::Parser class.
    - * DescriptorPool resolves these when building Descriptor objects. Therefore,
    - * options protos in descriptor objects (e.g. returned by Descriptor::options(),
    - * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
    - * in them.
    - */
    -export interface UninterpretedOption {
    -    name: UninterpretedOption_NamePart[];
    -    /**
    -     * The value of the uninterpreted option, in whatever type the tokenizer
    -     * identified it as during parsing. Exactly one of these should be set.
    -     */
    -    identifierValue: string;
    -    positiveIntValue: string;
    -    negativeIntValue: string;
    -    doubleValue: number;
    -    stringValue: Buffer;
    -    aggregateValue: string;
    -}
    -/**
    - * The name of the uninterpreted option.  Each string represents a segment in
    - * a dot-separated name.  is_extension is true iff a segment represents an
    - * extension (denoted with parentheses in options specs in .proto files).
    - * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
    - * "foo.(bar.baz).moo".
    - */
    -export interface UninterpretedOption_NamePart {
    -    namePart: string;
    -    isExtension: boolean;
    -}
    -/**
    - * Encapsulates information about the original source file from which a
    - * FileDescriptorProto was generated.
    - */
    -export interface SourceCodeInfo {
    -    /**
    -     * A Location identifies a piece of source code in a .proto file which
    -     * corresponds to a particular definition.  This information is intended
    -     * to be useful to IDEs, code indexers, documentation generators, and similar
    -     * tools.
    -     *
    -     * For example, say we have a file like:
    -     *   message Foo {
    -     *     optional string foo = 1;
    -     *   }
    -     * Let's look at just the field definition:
    -     *   optional string foo = 1;
    -     *   ^       ^^     ^^  ^  ^^^
    -     *   a       bc     de  f  ghi
    -     * We have the following locations:
    -     *   span   path               represents
    -     *   [a,i)  [ 4, 0, 2, 0 ]     The whole field definition.
    -     *   [a,b)  [ 4, 0, 2, 0, 4 ]  The label (optional).
    -     *   [c,d)  [ 4, 0, 2, 0, 5 ]  The type (string).
    -     *   [e,f)  [ 4, 0, 2, 0, 1 ]  The name (foo).
    -     *   [g,h)  [ 4, 0, 2, 0, 3 ]  The number (1).
    -     *
    -     * Notes:
    -     * - A location may refer to a repeated field itself (i.e. not to any
    -     *   particular index within it).  This is used whenever a set of elements are
    -     *   logically enclosed in a single code segment.  For example, an entire
    -     *   extend block (possibly containing multiple extension definitions) will
    -     *   have an outer location whose path refers to the "extensions" repeated
    -     *   field without an index.
    -     * - Multiple locations may have the same path.  This happens when a single
    -     *   logical declaration is spread out across multiple places.  The most
    -     *   obvious example is the "extend" block again -- there may be multiple
    -     *   extend blocks in the same scope, each of which will have the same path.
    -     * - A location's span is not always a subset of its parent's span.  For
    -     *   example, the "extendee" of an extension declaration appears at the
    -     *   beginning of the "extend" block and is shared by all extensions within
    -     *   the block.
    -     * - Just because a location's span is a subset of some other location's span
    -     *   does not mean that it is a descendant.  For example, a "group" defines
    -     *   both a type and a field in a single declaration.  Thus, the locations
    -     *   corresponding to the type and field and their components will overlap.
    -     * - Code which tries to interpret locations should probably be designed to
    -     *   ignore those that it doesn't understand, as more types of locations could
    -     *   be recorded in the future.
    -     */
    -    location: SourceCodeInfo_Location[];
    -}
    -export interface SourceCodeInfo_Location {
    -    /**
    -     * Identifies which part of the FileDescriptorProto was defined at this
    -     * location.
    -     *
    -     * Each element is a field number or an index.  They form a path from
    -     * the root FileDescriptorProto to the place where the definition occurs.
    -     * For example, this path:
    -     *   [ 4, 3, 2, 7, 1 ]
    -     * refers to:
    -     *   file.message_type(3)  // 4, 3
    -     *       .field(7)         // 2, 7
    -     *       .name()           // 1
    -     * This is because FileDescriptorProto.message_type has field number 4:
    -     *   repeated DescriptorProto message_type = 4;
    -     * and DescriptorProto.field has field number 2:
    -     *   repeated FieldDescriptorProto field = 2;
    -     * and FieldDescriptorProto.name has field number 1:
    -     *   optional string name = 1;
    -     *
    -     * Thus, the above path gives the location of a field name.  If we removed
    -     * the last element:
    -     *   [ 4, 3, 2, 7 ]
    -     * this path refers to the whole field declaration (from the beginning
    -     * of the label to the terminating semicolon).
    -     */
    -    path: number[];
    -    /**
    -     * Always has exactly three or four elements: start line, start column,
    -     * end line (optional, otherwise assumed same as start line), end column.
    -     * These are packed into a single field for efficiency.  Note that line
    -     * and column numbers are zero-based -- typically you will want to add
    -     * 1 to each before displaying to a user.
    -     */
    -    span: number[];
    -    /**
    -     * If this SourceCodeInfo represents a complete declaration, these are any
    -     * comments appearing before and after the declaration which appear to be
    -     * attached to the declaration.
    -     *
    -     * A series of line comments appearing on consecutive lines, with no other
    -     * tokens appearing on those lines, will be treated as a single comment.
    -     *
    -     * leading_detached_comments will keep paragraphs of comments that appear
    -     * before (but not connected to) the current element. Each paragraph,
    -     * separated by empty lines, will be one comment element in the repeated
    -     * field.
    -     *
    -     * Only the comment content is provided; comment markers (e.g. //) are
    -     * stripped out.  For block comments, leading whitespace and an asterisk
    -     * will be stripped from the beginning of each line other than the first.
    -     * Newlines are included in the output.
    -     *
    -     * Examples:
    -     *
    -     *   optional int32 foo = 1;  // Comment attached to foo.
    -     *   // Comment attached to bar.
    -     *   optional int32 bar = 2;
    -     *
    -     *   optional string baz = 3;
    -     *   // Comment attached to baz.
    -     *   // Another line attached to baz.
    -     *
    -     *   // Comment attached to moo.
    -     *   //
    -     *   // Another line attached to moo.
    -     *   optional double moo = 4;
    -     *
    -     *   // Detached comment for corge. This is not leading or trailing comments
    -     *   // to moo or corge because there are blank lines separating it from
    -     *   // both.
    -     *
    -     *   // Detached comment for corge paragraph 2.
    -     *
    -     *   optional string corge = 5;
    -     *   /* Block comment attached
    -     *    * to corge.  Leading asterisks
    -     *    * will be removed. * /
    -     *   /* Block comment attached to
    -     *    * grault. * /
    -     *   optional int32 grault = 6;
    -     *
    -     *   // ignored detached comments.
    -     */
    -    leadingComments: string;
    -    trailingComments: string;
    -    leadingDetachedComments: string[];
    -}
    -/**
    - * Describes the relationship between generated code and its original source
    - * file. A GeneratedCodeInfo message is associated with only one generated
    - * source file, but may contain references to different source .proto files.
    - */
    -export interface GeneratedCodeInfo {
    -    /**
    -     * An Annotation connects some span of text in generated code to an element
    -     * of its generating .proto file.
    -     */
    -    annotation: GeneratedCodeInfo_Annotation[];
    -}
    -export interface GeneratedCodeInfo_Annotation {
    -    /**
    -     * Identifies the element in the original source .proto file. This field
    -     * is formatted the same as SourceCodeInfo.Location.path.
    -     */
    -    path: number[];
    -    /** Identifies the filesystem path to the original source .proto. */
    -    sourceFile: string;
    -    /**
    -     * Identifies the starting offset in bytes in the generated code
    -     * that relates to the identified object.
    -     */
    -    begin: number;
    -    /**
    -     * Identifies the ending offset in bytes in the generated code that
    -     * relates to the identified offset. The end offset should be one past
    -     * the last relevant byte (so the length of the text = end - begin).
    -     */
    -    end: number;
    -}
    -export declare const FileDescriptorSet: {
    -    fromJSON(object: any): FileDescriptorSet;
    -    toJSON(message: FileDescriptorSet): unknown;
    -};
    -export declare const FileDescriptorProto: {
    -    fromJSON(object: any): FileDescriptorProto;
    -    toJSON(message: FileDescriptorProto): unknown;
    -};
    -export declare const DescriptorProto: {
    -    fromJSON(object: any): DescriptorProto;
    -    toJSON(message: DescriptorProto): unknown;
    -};
    -export declare const DescriptorProto_ExtensionRange: {
    -    fromJSON(object: any): DescriptorProto_ExtensionRange;
    -    toJSON(message: DescriptorProto_ExtensionRange): unknown;
    -};
    -export declare const DescriptorProto_ReservedRange: {
    -    fromJSON(object: any): DescriptorProto_ReservedRange;
    -    toJSON(message: DescriptorProto_ReservedRange): unknown;
    -};
    -export declare const ExtensionRangeOptions: {
    -    fromJSON(object: any): ExtensionRangeOptions;
    -    toJSON(message: ExtensionRangeOptions): unknown;
    -};
    -export declare const FieldDescriptorProto: {
    -    fromJSON(object: any): FieldDescriptorProto;
    -    toJSON(message: FieldDescriptorProto): unknown;
    -};
    -export declare const OneofDescriptorProto: {
    -    fromJSON(object: any): OneofDescriptorProto;
    -    toJSON(message: OneofDescriptorProto): unknown;
    -};
    -export declare const EnumDescriptorProto: {
    -    fromJSON(object: any): EnumDescriptorProto;
    -    toJSON(message: EnumDescriptorProto): unknown;
    -};
    -export declare const EnumDescriptorProto_EnumReservedRange: {
    -    fromJSON(object: any): EnumDescriptorProto_EnumReservedRange;
    -    toJSON(message: EnumDescriptorProto_EnumReservedRange): unknown;
    -};
    -export declare const EnumValueDescriptorProto: {
    -    fromJSON(object: any): EnumValueDescriptorProto;
    -    toJSON(message: EnumValueDescriptorProto): unknown;
    -};
    -export declare const ServiceDescriptorProto: {
    -    fromJSON(object: any): ServiceDescriptorProto;
    -    toJSON(message: ServiceDescriptorProto): unknown;
    -};
    -export declare const MethodDescriptorProto: {
    -    fromJSON(object: any): MethodDescriptorProto;
    -    toJSON(message: MethodDescriptorProto): unknown;
    -};
    -export declare const FileOptions: {
    -    fromJSON(object: any): FileOptions;
    -    toJSON(message: FileOptions): unknown;
    -};
    -export declare const MessageOptions: {
    -    fromJSON(object: any): MessageOptions;
    -    toJSON(message: MessageOptions): unknown;
    -};
    -export declare const FieldOptions: {
    -    fromJSON(object: any): FieldOptions;
    -    toJSON(message: FieldOptions): unknown;
    -};
    -export declare const OneofOptions: {
    -    fromJSON(object: any): OneofOptions;
    -    toJSON(message: OneofOptions): unknown;
    -};
    -export declare const EnumOptions: {
    -    fromJSON(object: any): EnumOptions;
    -    toJSON(message: EnumOptions): unknown;
    -};
    -export declare const EnumValueOptions: {
    -    fromJSON(object: any): EnumValueOptions;
    -    toJSON(message: EnumValueOptions): unknown;
    -};
    -export declare const ServiceOptions: {
    -    fromJSON(object: any): ServiceOptions;
    -    toJSON(message: ServiceOptions): unknown;
    -};
    -export declare const MethodOptions: {
    -    fromJSON(object: any): MethodOptions;
    -    toJSON(message: MethodOptions): unknown;
    -};
    -export declare const UninterpretedOption: {
    -    fromJSON(object: any): UninterpretedOption;
    -    toJSON(message: UninterpretedOption): unknown;
    -};
    -export declare const UninterpretedOption_NamePart: {
    -    fromJSON(object: any): UninterpretedOption_NamePart;
    -    toJSON(message: UninterpretedOption_NamePart): unknown;
    -};
    -export declare const SourceCodeInfo: {
    -    fromJSON(object: any): SourceCodeInfo;
    -    toJSON(message: SourceCodeInfo): unknown;
    -};
    -export declare const SourceCodeInfo_Location: {
    -    fromJSON(object: any): SourceCodeInfo_Location;
    -    toJSON(message: SourceCodeInfo_Location): unknown;
    -};
    -export declare const GeneratedCodeInfo: {
    -    fromJSON(object: any): GeneratedCodeInfo;
    -    toJSON(message: GeneratedCodeInfo): unknown;
    -};
    -export declare const GeneratedCodeInfo_Annotation: {
    -    fromJSON(object: any): GeneratedCodeInfo_Annotation;
    -    toJSON(message: GeneratedCodeInfo_Annotation): unknown;
    -};
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/timestamp.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/timestamp.d.ts
    deleted file mode 100644
    index 1ab812b4a9407f..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/google/protobuf/timestamp.d.ts
    +++ /dev/null
    @@ -1,110 +0,0 @@
    -/**
    - * A Timestamp represents a point in time independent of any time zone or local
    - * calendar, encoded as a count of seconds and fractions of seconds at
    - * nanosecond resolution. The count is relative to an epoch at UTC midnight on
    - * January 1, 1970, in the proleptic Gregorian calendar which extends the
    - * Gregorian calendar backwards to year one.
    - *
    - * All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
    - * second table is needed for interpretation, using a [24-hour linear
    - * smear](https://developers.google.com/time/smear).
    - *
    - * The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
    - * restricting to that range, we ensure that we can convert to and from [RFC
    - * 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
    - *
    - * # Examples
    - *
    - * Example 1: Compute Timestamp from POSIX `time()`.
    - *
    - *     Timestamp timestamp;
    - *     timestamp.set_seconds(time(NULL));
    - *     timestamp.set_nanos(0);
    - *
    - * Example 2: Compute Timestamp from POSIX `gettimeofday()`.
    - *
    - *     struct timeval tv;
    - *     gettimeofday(&tv, NULL);
    - *
    - *     Timestamp timestamp;
    - *     timestamp.set_seconds(tv.tv_sec);
    - *     timestamp.set_nanos(tv.tv_usec * 1000);
    - *
    - * Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
    - *
    - *     FILETIME ft;
    - *     GetSystemTimeAsFileTime(&ft);
    - *     UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
    - *
    - *     // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
    - *     // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
    - *     Timestamp timestamp;
    - *     timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
    - *     timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
    - *
    - * Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
    - *
    - *     long millis = System.currentTimeMillis();
    - *
    - *     Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
    - *         .setNanos((int) ((millis % 1000) * 1000000)).build();
    - *
    - * Example 5: Compute Timestamp from Java `Instant.now()`.
    - *
    - *     Instant now = Instant.now();
    - *
    - *     Timestamp timestamp =
    - *         Timestamp.newBuilder().setSeconds(now.getEpochSecond())
    - *             .setNanos(now.getNano()).build();
    - *
    - * Example 6: Compute Timestamp from current time in Python.
    - *
    - *     timestamp = Timestamp()
    - *     timestamp.GetCurrentTime()
    - *
    - * # JSON Mapping
    - *
    - * In JSON format, the Timestamp type is encoded as a string in the
    - * [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
    - * format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
    - * where {year} is always expressed using four digits while {month}, {day},
    - * {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
    - * seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
    - * are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
    - * is required. A proto3 JSON serializer should always use UTC (as indicated by
    - * "Z") when printing the Timestamp type and a proto3 JSON parser should be
    - * able to accept both UTC and other timezones (as indicated by an offset).
    - *
    - * For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
    - * 01:30 UTC on January 15, 2017.
    - *
    - * In JavaScript, one can convert a Date object to this format using the
    - * standard
    - * [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
    - * method. In Python, a standard `datetime.datetime` object can be converted
    - * to this format using
    - * [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
    - * the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
    - * the Joda Time's [`ISODateTimeFormat.dateTime()`](
    - * http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
    - * ) to obtain a formatter capable of generating timestamps in this format.
    - */
    -export interface Timestamp {
    -    /**
    -     * Represents seconds of UTC time since Unix epoch
    -     * 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
    -     * 9999-12-31T23:59:59Z inclusive.
    -     */
    -    seconds: string;
    -    /**
    -     * Non-negative fractions of a second at nanosecond resolution. Negative
    -     * second values with fractions must still have non-negative nanos values
    -     * that count forward in time. Must be from 0 to 999,999,999
    -     * inclusive.
    -     */
    -    nanos: number;
    -}
    -export declare const Timestamp: {
    -    fromJSON(object: any): Timestamp;
    -    toJSON(message: Timestamp): unknown;
    -};
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_bundle.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_bundle.d.ts
    deleted file mode 100644
    index 51f748f4591309..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_bundle.d.ts
    +++ /dev/null
    @@ -1,72 +0,0 @@
    -import { Envelope } from "./envelope";
    -import { MessageSignature, PublicKeyIdentifier, RFC3161SignedTimestamp, X509CertificateChain } from "./sigstore_common";
    -import { TransparencyLogEntry } from "./sigstore_rekor";
    -/**
    - * Various timestamped counter signatures over the artifacts signature.
    - * Currently only RFC3161 signatures are provided. More formats may be added
    - * in the future.
    - */
    -export interface TimestampVerificationData {
    -    /**
    -     * A list of RFC3161 signed timestamps provided by the user.
    -     * This can be used when the entry has not been stored on a
    -     * transparency log, or in conjunction for a stronger trust model.
    -     * Clients MUST verify the hashed message in the message imprint
    -     * against the signature in the bundle.
    -     */
    -    rfc3161Timestamps: RFC3161SignedTimestamp[];
    -}
    -/**
    - * VerificationMaterial captures details on the materials used to verify
    - * signatures.
    - */
    -export interface VerificationMaterial {
    -    content?: {
    -        $case: "publicKey";
    -        publicKey: PublicKeyIdentifier;
    -    } | {
    -        $case: "x509CertificateChain";
    -        x509CertificateChain: X509CertificateChain;
    -    };
    -    /**
    -     * This is the inclusion promise and/or proof, where
    -     * the timestamp is coming from the transparency log.
    -     */
    -    tlogEntries: TransparencyLogEntry[];
    -    /** Timestamp verification data, over the artifact's signature. */
    -    timestampVerificationData: TimestampVerificationData | undefined;
    -}
    -export interface Bundle {
    -    /**
    -     * MUST be application/vnd.dev.sigstore.bundle+json;version=0.1
    -     * when encoded as JSON.
    -     */
    -    mediaType: string;
    -    /**
    -     * When a signer is identified by a X.509 certificate, a verifier MUST
    -     * verify that the signature was computed at the time the certificate
    -     * was valid as described in the Sigstore client spec: "Verification
    -     * using a Bundle".
    -     * 
    -     */
    -    verificationMaterial: VerificationMaterial | undefined;
    -    content?: {
    -        $case: "messageSignature";
    -        messageSignature: MessageSignature;
    -    } | {
    -        $case: "dsseEnvelope";
    -        dsseEnvelope: Envelope;
    -    };
    -}
    -export declare const TimestampVerificationData: {
    -    fromJSON(object: any): TimestampVerificationData;
    -    toJSON(message: TimestampVerificationData): unknown;
    -};
    -export declare const VerificationMaterial: {
    -    fromJSON(object: any): VerificationMaterial;
    -    toJSON(message: VerificationMaterial): unknown;
    -};
    -export declare const Bundle: {
    -    fromJSON(object: any): Bundle;
    -    toJSON(message: Bundle): unknown;
    -};
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_common.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_common.d.ts
    deleted file mode 100644
    index 0d8c2d5ebde7d2..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_common.d.ts
    +++ /dev/null
    @@ -1,228 +0,0 @@
    -/// 
    -/**
    - * Only a subset of the secure hash standard algorithms are supported.
    - * See  for more
    - * details.
    - * UNSPECIFIED SHOULD not be used, primary reason for inclusion is to force
    - * any proto JSON serialization to emit the used hash algorithm, as default
    - * option is to *omit* the default value of an enum (which is the first
    - * value, represented by '0'.
    - */
    -export declare enum HashAlgorithm {
    -    HASH_ALGORITHM_UNSPECIFIED = 0,
    -    SHA2_256 = 1
    -}
    -export declare function hashAlgorithmFromJSON(object: any): HashAlgorithm;
    -export declare function hashAlgorithmToJSON(object: HashAlgorithm): string;
    -/**
    - * Details of a specific public key, capturing the the key encoding method,
    - * and signature algorithm.
    - * To avoid the possibility of contradicting formats such as PKCS1 with
    - * ED25519 the valid permutations are listed as a linear set instead of a
    - * cartesian set (i.e one combined variable instead of two, one for encoding
    - * and one for the signature algorithm).
    - */
    -export declare enum PublicKeyDetails {
    -    PUBLIC_KEY_DETAILS_UNSPECIFIED = 0,
    -    /** PKCS1_RSA_PKCS1V5 - RSA */
    -    PKCS1_RSA_PKCS1V5 = 1,
    -    /** PKCS1_RSA_PSS - See RFC8017 */
    -    PKCS1_RSA_PSS = 2,
    -    PKIX_RSA_PKCS1V5 = 3,
    -    PKIX_RSA_PSS = 4,
    -    /** PKIX_ECDSA_P256_SHA_256 - ECDSA */
    -    PKIX_ECDSA_P256_SHA_256 = 5,
    -    /** PKIX_ECDSA_P256_HMAC_SHA_256 - See RFC6979 */
    -    PKIX_ECDSA_P256_HMAC_SHA_256 = 6,
    -    /** PKIX_ED25519 - Ed 25519 */
    -    PKIX_ED25519 = 7
    -}
    -export declare function publicKeyDetailsFromJSON(object: any): PublicKeyDetails;
    -export declare function publicKeyDetailsToJSON(object: PublicKeyDetails): string;
    -export declare enum SubjectAlternativeNameType {
    -    SUBJECT_ALTERNATIVE_NAME_TYPE_UNSPECIFIED = 0,
    -    EMAIL = 1,
    -    URI = 2,
    -    /**
    -     * OTHER_NAME - OID 1.3.6.1.4.1.57264.1.7
    -     * See https://github.com/sigstore/fulcio/blob/main/docs/oid-info.md#1361415726417--othername-san
    -     * for more details.
    -     */
    -    OTHER_NAME = 3
    -}
    -export declare function subjectAlternativeNameTypeFromJSON(object: any): SubjectAlternativeNameType;
    -export declare function subjectAlternativeNameTypeToJSON(object: SubjectAlternativeNameType): string;
    -/**
    - * HashOutput captures a digest of a 'message' (generic octet sequence)
    - * and the corresponding hash algorithm used.
    - */
    -export interface HashOutput {
    -    algorithm: HashAlgorithm;
    -    /**
    -     * This is the raw octets of the message digest as computed by
    -     * the hash algorithm.
    -     */
    -    digest: Buffer;
    -}
    -/** MessageSignature stores the computed signature over a message. */
    -export interface MessageSignature {
    -    /** Message digest can be used to identify the artifact. */
    -    messageDigest: HashOutput | undefined;
    -    /**
    -     * The raw bytes as returned from the signature algorithm.
    -     * The signature algorithm (and so the format of the signature bytes)
    -     * are determined by the contents of the 'verification_material',
    -     * either a key-pair or a certificate. If using a certificate, the
    -     * certificate contains the required information on the signature
    -     * algorithm.
    -     * When using a key pair, the algorithm MUST be part of the public
    -     * key, which MUST be communicated out-of-band.
    -     */
    -    signature: Buffer;
    -}
    -/** LogId captures the identity of a transparency log. */
    -export interface LogId {
    -    /**
    -     * The unique id of the log, represented as the SHA-256 hash
    -     * of the log's public key, computed over the DER encoding.
    -     * 
    -     */
    -    keyId: Buffer;
    -}
    -/** This message holds a RFC 3161 timestamp. */
    -export interface RFC3161SignedTimestamp {
    -    /**
    -     * Signed timestamp is the DER encoded TimeStampResponse.
    -     * See https://www.rfc-editor.org/rfc/rfc3161.html#section-2.4.2
    -     */
    -    signedTimestamp: Buffer;
    -}
    -export interface PublicKey {
    -    /**
    -     * DER-encoded public key, encoding method is specified by the
    -     * key_details attribute.
    -     */
    -    rawBytes?: Buffer | undefined;
    -    /** Key encoding and signature algorithm to use for this key. */
    -    keyDetails: PublicKeyDetails;
    -    /** Optional validity period for this key. */
    -    validFor?: TimeRange | undefined;
    -}
    -/**
    - * PublicKeyIdentifier can be used to identify an (out of band) delivered
    - * key, to verify a signature.
    - */
    -export interface PublicKeyIdentifier {
    -    /**
    -     * Optional unauthenticated hint on which key to use.
    -     * The format of the hint must be agreed upon out of band by the
    -     * signer and the verifiers, and so is not subject to this
    -     * specification.
    -     * Example use-case is to specify the public key to use, from a
    -     * trusted key-ring.
    -     * Implementors are RECOMMENDED to derive the value from the public
    -     * key as described in RFC 6962.
    -     * See: 
    -     */
    -    hint: string;
    -}
    -/** An ASN.1 OBJECT IDENTIFIER */
    -export interface ObjectIdentifier {
    -    id: number[];
    -}
    -/** An OID and the corresponding (byte) value. */
    -export interface ObjectIdentifierValuePair {
    -    oid: ObjectIdentifier | undefined;
    -    value: Buffer;
    -}
    -export interface DistinguishedName {
    -    organization: string;
    -    commonName: string;
    -}
    -export interface X509Certificate {
    -    /** DER-encoded X.509 certificate. */
    -    rawBytes: Buffer;
    -}
    -export interface SubjectAlternativeName {
    -    type: SubjectAlternativeNameType;
    -    identity?: {
    -        $case: "regexp";
    -        regexp: string;
    -    } | {
    -        $case: "value";
    -        value: string;
    -    };
    -}
    -/** A chain of X.509 certificates. */
    -export interface X509CertificateChain {
    -    /**
    -     * The chain of certificates, with indices 0 to n.
    -     * The first certificate in the array must be the leaf
    -     * certificate used for signing. Any intermediate certificates
    -     * must be stored as offset 1 to n-1, and the root certificate at
    -     * position n.
    -     */
    -    certificates: X509Certificate[];
    -}
    -/**
    - * The time range is half-open and does not include the end timestamp,
    - * i.e [start, end).
    - * End is optional to be able to capture a period that has started but
    - * has no known end.
    - */
    -export interface TimeRange {
    -    start: Date | undefined;
    -    end?: Date | undefined;
    -}
    -export declare const HashOutput: {
    -    fromJSON(object: any): HashOutput;
    -    toJSON(message: HashOutput): unknown;
    -};
    -export declare const MessageSignature: {
    -    fromJSON(object: any): MessageSignature;
    -    toJSON(message: MessageSignature): unknown;
    -};
    -export declare const LogId: {
    -    fromJSON(object: any): LogId;
    -    toJSON(message: LogId): unknown;
    -};
    -export declare const RFC3161SignedTimestamp: {
    -    fromJSON(object: any): RFC3161SignedTimestamp;
    -    toJSON(message: RFC3161SignedTimestamp): unknown;
    -};
    -export declare const PublicKey: {
    -    fromJSON(object: any): PublicKey;
    -    toJSON(message: PublicKey): unknown;
    -};
    -export declare const PublicKeyIdentifier: {
    -    fromJSON(object: any): PublicKeyIdentifier;
    -    toJSON(message: PublicKeyIdentifier): unknown;
    -};
    -export declare const ObjectIdentifier: {
    -    fromJSON(object: any): ObjectIdentifier;
    -    toJSON(message: ObjectIdentifier): unknown;
    -};
    -export declare const ObjectIdentifierValuePair: {
    -    fromJSON(object: any): ObjectIdentifierValuePair;
    -    toJSON(message: ObjectIdentifierValuePair): unknown;
    -};
    -export declare const DistinguishedName: {
    -    fromJSON(object: any): DistinguishedName;
    -    toJSON(message: DistinguishedName): unknown;
    -};
    -export declare const X509Certificate: {
    -    fromJSON(object: any): X509Certificate;
    -    toJSON(message: X509Certificate): unknown;
    -};
    -export declare const SubjectAlternativeName: {
    -    fromJSON(object: any): SubjectAlternativeName;
    -    toJSON(message: SubjectAlternativeName): unknown;
    -};
    -export declare const X509CertificateChain: {
    -    fromJSON(object: any): X509CertificateChain;
    -    toJSON(message: X509CertificateChain): unknown;
    -};
    -export declare const TimeRange: {
    -    fromJSON(object: any): TimeRange;
    -    toJSON(message: TimeRange): unknown;
    -};
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_rekor.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_rekor.d.ts
    deleted file mode 100644
    index 9e33bb80e2a867..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_rekor.d.ts
    +++ /dev/null
    @@ -1,129 +0,0 @@
    -/// 
    -import { LogId } from "./sigstore_common";
    -/** KindVersion contains the entry's kind and api version. */
    -export interface KindVersion {
    -    /**
    -     * Kind is the type of entry being stored in the log.
    -     * See here for a list: https://github.com/sigstore/rekor/tree/main/pkg/types
    -     */
    -    kind: string;
    -    /** The specific api version of the type. */
    -    version: string;
    -}
    -/**
    - * The checkpoint contains a signature of the tree head (root hash),
    - * size of the tree, the transparency log's unique identifier (log ID),
    - * hostname and the current time.
    - * The result is a string, the format is described here
    - * https://github.com/transparency-dev/formats/blob/main/log/README.md
    - * The details are here https://github.com/sigstore/rekor/blob/a6e58f72b6b18cc06cefe61808efd562b9726330/pkg/util/signed_note.go#L114
    - * The signature has the same format as
    - * InclusionPromise.signed_entry_timestamp. See below for more details.
    - */
    -export interface Checkpoint {
    -    envelope: string;
    -}
    -/**
    - * InclusionProof is the proof returned from the transparency log. Can
    - * be used for on line verification against the log.
    - */
    -export interface InclusionProof {
    -    /** The index of the entry in the log. */
    -    logIndex: string;
    -    /**
    -     * The hash digest stored at the root of the merkle tree at the time
    -     * the proof was generated.
    -     */
    -    rootHash: Buffer;
    -    /** The size of the merkle tree at the time the proof was generated. */
    -    treeSize: string;
    -    /**
    -     * A list of hashes required to compute the inclusion proof, sorted
    -     * in order from leaf to root.
    -     * Not that leaf and root hashes are not included.
    -     * The root has is available separately in this message, and the
    -     * leaf hash should be calculated by the client.
    -     */
    -    hashes: Buffer[];
    -    /**
    -     * Signature of the tree head, as of the time of this proof was
    -     * generated. See above info on 'Checkpoint' for more details.
    -     */
    -    checkpoint: Checkpoint | undefined;
    -}
    -/**
    - * The inclusion promise is calculated by Rekor. It's calculated as a
    - * signature over a canonical JSON serialization of the persisted entry, the
    - * log ID, log index and the integration timestamp.
    - * See https://github.com/sigstore/rekor/blob/a6e58f72b6b18cc06cefe61808efd562b9726330/pkg/api/entries.go#L54
    - * The format of the signature depends on the transparency log's public key.
    - * If the signature algorithm requires a hash function and/or a signature
    - * scheme (e.g. RSA) those has to be retrieved out-of-band from the log's
    - * operators, together with the public key.
    - * This is used to verify the integration timestamp's value and that the log
    - * has promised to include the entry.
    - */
    -export interface InclusionPromise {
    -    signedEntryTimestamp: Buffer;
    -}
    -/**
    - * TransparencyLogEntry captures all the details required from Rekor to
    - * reconstruct an entry, given that the payload is provided via other means.
    - * This type can easily be created from the existing response from Rekor.
    - * Future iterations could rely on Rekor returning the minimal set of
    - * attributes (excluding the payload) that are required for verifying the
    - * inclusion promise. The inclusion promise (called SignedEntryTimestamp in
    - * the response from Rekor) is similar to a Signed Certificate Timestamp
    - * as described here https://www.rfc-editor.org/rfc/rfc9162#name-signed-certificate-timestam.
    - */
    -export interface TransparencyLogEntry {
    -    /** The index of the entry in the log. */
    -    logIndex: string;
    -    /** The unique identifier of the log. */
    -    logId: LogId | undefined;
    -    /**
    -     * The kind (type) and version of the object associated with this
    -     * entry. These values are required to construct the entry during
    -     * verification.
    -     */
    -    kindVersion: KindVersion | undefined;
    -    /** The UNIX timestamp from the log when the entry was persisted. */
    -    integratedTime: string;
    -    /** The inclusion promise/signed entry timestamp from the log. */
    -    inclusionPromise: InclusionPromise | undefined;
    -    /**
    -     * The inclusion proof can be used for online verification that the
    -     * entry was appended to the log, and that the log has not been
    -     * altered.
    -     */
    -    inclusionProof: InclusionProof | undefined;
    -    /**
    -     * The canonicalized Rekor entry body, used for SET verification. This
    -     * is the same as the body returned by Rekor. It's included here for
    -     * cases where the client cannot deterministically reconstruct the
    -     * bundle from the other fields. Clients MUST verify that the signature
    -     * referenced in the canonicalized_body matches the signature provided
    -     * in the bundle content.
    -     */
    -    canonicalizedBody: Buffer;
    -}
    -export declare const KindVersion: {
    -    fromJSON(object: any): KindVersion;
    -    toJSON(message: KindVersion): unknown;
    -};
    -export declare const Checkpoint: {
    -    fromJSON(object: any): Checkpoint;
    -    toJSON(message: Checkpoint): unknown;
    -};
    -export declare const InclusionProof: {
    -    fromJSON(object: any): InclusionProof;
    -    toJSON(message: InclusionProof): unknown;
    -};
    -export declare const InclusionPromise: {
    -    fromJSON(object: any): InclusionPromise;
    -    toJSON(message: InclusionPromise): unknown;
    -};
    -export declare const TransparencyLogEntry: {
    -    fromJSON(object: any): TransparencyLogEntry;
    -    toJSON(message: TransparencyLogEntry): unknown;
    -};
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_trustroot.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_trustroot.d.ts
    deleted file mode 100644
    index 152d08f5c67515..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_trustroot.d.ts
    +++ /dev/null
    @@ -1,89 +0,0 @@
    -import { DistinguishedName, HashAlgorithm, LogId, PublicKey, TimeRange, X509CertificateChain } from "./sigstore_common";
    -/**
    - * TransparencyLogInstance describes the immutable parameters from a
    - * transparency log.
    - * See https://www.rfc-editor.org/rfc/rfc9162.html#name-log-parameters
    - * for more details.
    - * The incluced parameters are the minimal set required to identify a log,
    - * and verify an inclusion promise.
    - */
    -export interface TransparencyLogInstance {
    -    /** The base URL at which can be used to URLs for the client. */
    -    baseUrl: string;
    -    /** The hash algorithm used for the Merkle Tree. */
    -    hashAlgorithm: HashAlgorithm;
    -    /**
    -     * The public key used to verify signatures generated by the log.
    -     * This attribute contains the signature algorithm used by the log.
    -     */
    -    publicKey: PublicKey | undefined;
    -    /** The unique identifier for this transparency log. */
    -    logId: LogId | undefined;
    -}
    -/**
    - * CertificateAuthority enlists the information required to identify which
    - * CA to use and perform signature verification.
    - */
    -export interface CertificateAuthority {
    -    /**
    -     * The root certificate MUST be self-signed, and so the subject and
    -     * issuer are the same.
    -     */
    -    subject: DistinguishedName | undefined;
    -    /** The URI at which the CA can be accessed. */
    -    uri: string;
    -    /** The certificate chain for this CA. */
    -    certChain: X509CertificateChain | undefined;
    -    /**
    -     * The time the *entire* chain was valid. This is at max the
    -     * longest interval when *all* certificates in the chain were valid,
    -     * but it MAY be shorter.
    -     */
    -    validFor: TimeRange | undefined;
    -}
    -/**
    - * TrustedRoot describes the client's complete set of trusted entities.
    - * How the TrustedRoot is populated is not specified, but can be a
    - * combination of many sources such as TUF repositories, files on disk etc.
    - *
    - * The TrustedRoot is not meant to be used for any artifact verification, only
    - * to capture the complete/global set of trusted verification materials.
    - * When verifying an artifact, based on the artifact and policies, a selection
    - * of keys/authorities are expected to be extracted and provided to the
    - * verification function. This way the set of keys/authorities kan be kept to
    - * a minimal set by the policy to gain better control over what signatures
    - * that are allowed.
    - */
    -export interface TrustedRoot {
    -    /** MUST be application/vnd.dev.sigstore.trustedroot+json;version=0.1 */
    -    mediaType: string;
    -    /** A set of trusted Rekor servers. */
    -    tlogs: TransparencyLogInstance[];
    -    /**
    -     * A set of trusted certificate authorites (e.g Fulcio), and any
    -     * intermediate certificates they provide.
    -     * If a CA is issuing multiple intermediate certificate, each
    -     * combination shall be represented as separate chain. I.e, a single
    -     * root cert may appear in multiple chains but with different
    -     * intermediate and/or leaf certificates.
    -     * The certificates are intended to be used for verifying artifact
    -     * signatures.
    -     */
    -    certificateAuthorities: CertificateAuthority[];
    -    /** A set of trusted certificate transparency logs. */
    -    ctlogs: TransparencyLogInstance[];
    -    /** A set of trusted timestamping authorities. */
    -    timestampAuthorities: CertificateAuthority[];
    -}
    -export declare const TransparencyLogInstance: {
    -    fromJSON(object: any): TransparencyLogInstance;
    -    toJSON(message: TransparencyLogInstance): unknown;
    -};
    -export declare const CertificateAuthority: {
    -    fromJSON(object: any): CertificateAuthority;
    -    toJSON(message: CertificateAuthority): unknown;
    -};
    -export declare const TrustedRoot: {
    -    fromJSON(object: any): TrustedRoot;
    -    toJSON(message: TrustedRoot): unknown;
    -};
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_verification.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_verification.d.ts
    deleted file mode 100644
    index 8ee32d8e666921..00000000000000
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/__generated__/sigstore_verification.d.ts
    +++ /dev/null
    @@ -1,156 +0,0 @@
    -/// 
    -import { Bundle } from "./sigstore_bundle";
    -import { ObjectIdentifierValuePair, PublicKey, SubjectAlternativeName } from "./sigstore_common";
    -import { TrustedRoot } from "./sigstore_trustroot";
    -/** The identity of a X.509 Certificate signer. */
    -export interface CertificateIdentity {
    -    /** The X.509v3 issuer extension (OID 1.3.6.1.4.1.57264.1.1) */
    -    issuer: string;
    -    san: SubjectAlternativeName | undefined;
    -    /**
    -     * An unordered list of OIDs that must be verified.
    -     * All OID/values provided in this list MUST exactly match against
    -     * the values in the certificate for verification to be successful.
    -     */
    -    oids: ObjectIdentifierValuePair[];
    -}
    -export interface CertificateIdentities {
    -    identities: CertificateIdentity[];
    -}
    -export interface PublicKeyIdentities {
    -    publicKeys: PublicKey[];
    -}
    -/**
    - * A light-weight set of options/policies for identifying trusted signers,
    - * used during verification of a single artifact.
    - */
    -export interface ArtifactVerificationOptions {
    -    signers?: {
    -        $case: "certificateIdentities";
    -        certificateIdentities: CertificateIdentities;
    -    } | {
    -        $case: "publicKeys";
    -        publicKeys: PublicKeyIdentities;
    -    };
    -    /**
    -     * Optional options for artifact transparency log verification.
    -     * If none is provided, the default verification options are:
    -     * Threshold: 1
    -     * Online verification: false
    -     * Disable: false
    -     */
    -    tlogOptions?: ArtifactVerificationOptions_TlogOptions | undefined;
    -    /**
    -     * Optional options for certificate transparency log verification.
    -     * If none is provided, the default verification options are:
    -     * Threshold: 1
    -     * Detached SCT: false
    -     * Disable: false
    -     */
    -    ctlogOptions?: ArtifactVerificationOptions_CtlogOptions | undefined;
    -    /**
    -     * Optional options for certificate signed timestamp verification.
    -     * If none is provided, the default verification options are:
    -     * Threshold: 1
    -     * Disable: false
    -     */
    -    tsaOptions?: ArtifactVerificationOptions_TimestampAuthorityOptions | undefined;
    -}
    -export interface ArtifactVerificationOptions_TlogOptions {
    -    /** Number of transparency logs the entry must appear on. */
    -    threshold: number;
    -    /** Perform an online inclusion proof. */
    -    performOnlineVerification: boolean;
    -    /** Disable verification for transparency logs. */
    -    disable: boolean;
    -}
    -export interface ArtifactVerificationOptions_CtlogOptions {
    -    /**
    -     * The number of ct transparency logs the certificate must
    -     * appear on.
    -     */
    -    threshold: number;
    -    /**
    -     * Expect detached SCTs.
    -     * This is not supported right now as we can't capture an
    -     * detached SCT in the bundle.
    -     */
    -    detachedSct: boolean;
    -    /** Disable ct transparency log verification */
    -    disable: boolean;
    -}
    -export interface ArtifactVerificationOptions_TimestampAuthorityOptions {
    -    /** The number of signed timestamps that are expected. */
    -    threshold: number;
    -    /** Disable signed timestamp verification. */
    -    disable: boolean;
    -}
    -export interface Artifact {
    -    data?: {
    -        $case: "artifactUri";
    -        artifactUri: string;
    -    } | {
    -        $case: "artifact";
    -        artifact: Buffer;
    -    };
    -}
    -/**
    - * Input captures all that is needed to call the bundle verification method,
    - * to verify a single artifact referenced by the bundle.
    - */
    -export interface Input {
    -    /**
    -     * The verification materials provided during a bundle verification.
    -     * The running process is usually preloaded with a "global"
    -     * dev.sisgtore.trustroot.TrustedRoot.v1 instance. Prior to
    -     * verifying an artifact (i.e a bundle), and/or based on current
    -     * policy, some selection is expected to happen, to filter out the
    -     * exact certificate authority to use, which transparency logs are
    -     * relevant etc. The result should b ecaptured in the
    -     * `artifact_trust_root`.
    -     */
    -    artifactTrustRoot: TrustedRoot | undefined;
    -    artifactVerificationOptions: ArtifactVerificationOptions | undefined;
    -    bundle: Bundle | undefined;
    -    /**
    -     * If the bundle contains a message signature, the artifact must be
    -     * provided.
    -     */
    -    artifact?: Artifact | undefined;
    -}
    -export declare const CertificateIdentity: {
    -    fromJSON(object: any): CertificateIdentity;
    -    toJSON(message: CertificateIdentity): unknown;
    -};
    -export declare const CertificateIdentities: {
    -    fromJSON(object: any): CertificateIdentities;
    -    toJSON(message: CertificateIdentities): unknown;
    -};
    -export declare const PublicKeyIdentities: {
    -    fromJSON(object: any): PublicKeyIdentities;
    -    toJSON(message: PublicKeyIdentities): unknown;
    -};
    -export declare const ArtifactVerificationOptions: {
    -    fromJSON(object: any): ArtifactVerificationOptions;
    -    toJSON(message: ArtifactVerificationOptions): unknown;
    -};
    -export declare const ArtifactVerificationOptions_TlogOptions: {
    -    fromJSON(object: any): ArtifactVerificationOptions_TlogOptions;
    -    toJSON(message: ArtifactVerificationOptions_TlogOptions): unknown;
    -};
    -export declare const ArtifactVerificationOptions_CtlogOptions: {
    -    fromJSON(object: any): ArtifactVerificationOptions_CtlogOptions;
    -    toJSON(message: ArtifactVerificationOptions_CtlogOptions): unknown;
    -};
    -export declare const ArtifactVerificationOptions_TimestampAuthorityOptions: {
    -    fromJSON(object: any): ArtifactVerificationOptions_TimestampAuthorityOptions;
    -    toJSON(message: ArtifactVerificationOptions_TimestampAuthorityOptions): unknown;
    -};
    -export declare const Artifact: {
    -    fromJSON(object: any): Artifact;
    -    toJSON(message: Artifact): unknown;
    -};
    -export declare const Input: {
    -    fromJSON(object: any): Input;
    -    toJSON(message: Input): unknown;
    -};
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/index.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/index.d.ts
    index 26dd2150d548eb..70b2896fbdcbae 100644
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/index.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/types/sigstore/index.d.ts
    @@ -1,21 +1,13 @@
     /// 
    +import { ArtifactVerificationOptions, Bundle, Envelope, TransparencyLogEntry, VerificationMaterial } from '@sigstore/protobuf-specs';
     import { Entry } from '../../tlog';
     import { x509Certificate } from '../../x509/cert';
     import { SignatureMaterial } from '../signature';
     import { WithRequired } from '../utility';
     import { ValidBundle } from './validate';
    -import { Envelope } from './__generated__/envelope';
    -import { Bundle, VerificationMaterial } from './__generated__/sigstore_bundle';
    -import { TransparencyLogEntry } from './__generated__/sigstore_rekor';
    -import { ArtifactVerificationOptions } from './__generated__/sigstore_verification';
    +export * from '@sigstore/protobuf-specs';
     export * from './serialized';
     export * from './validate';
    -export * from './__generated__/envelope';
    -export * from './__generated__/sigstore_bundle';
    -export * from './__generated__/sigstore_common';
    -export { TransparencyLogEntry } from './__generated__/sigstore_rekor';
    -export * from './__generated__/sigstore_trustroot';
    -export * from './__generated__/sigstore_verification';
     export declare const bundleToJSON: (message: Bundle) => unknown;
     export declare const bundleFromJSON: (obj: any) => ValidBundle;
     export declare const envelopeToJSON: (message: Envelope) => unknown;
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/index.js b/deps/npm/node_modules/sigstore/dist/types/sigstore/index.js
    index df07d6dc9fc295..55df7e744de197 100644
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/index.js
    +++ b/deps/npm/node_modules/sigstore/dist/types/sigstore/index.js
    @@ -14,32 +14,39 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
         for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
     };
     Object.defineProperty(exports, "__esModule", { value: true });
    -exports.signingCertificate = exports.bundle = exports.isVerifiableTransparencyLogEntry = exports.isCAVerificationOptions = exports.isBundleWithCertificateChain = exports.isBundleWithVerificationMaterial = exports.envelopeFromJSON = exports.envelopeToJSON = exports.bundleFromJSON = exports.bundleToJSON = exports.TransparencyLogEntry = void 0;
    +exports.signingCertificate = exports.bundle = exports.isVerifiableTransparencyLogEntry = exports.isCAVerificationOptions = exports.isBundleWithCertificateChain = exports.isBundleWithVerificationMaterial = exports.envelopeFromJSON = exports.envelopeToJSON = exports.bundleFromJSON = exports.bundleToJSON = void 0;
    +/*
    +Copyright 2023 The Sigstore Authors.
    +
    +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.
    +*/
    +const protobuf_specs_1 = require("@sigstore/protobuf-specs");
     const util_1 = require("../../util");
     const cert_1 = require("../../x509/cert");
     const validate_1 = require("./validate");
    -const envelope_1 = require("./__generated__/envelope");
    -const sigstore_bundle_1 = require("./__generated__/sigstore_bundle");
    -const sigstore_common_1 = require("./__generated__/sigstore_common");
    +__exportStar(require("@sigstore/protobuf-specs"), exports);
     __exportStar(require("./serialized"), exports);
     __exportStar(require("./validate"), exports);
    -__exportStar(require("./__generated__/envelope"), exports);
    -__exportStar(require("./__generated__/sigstore_bundle"), exports);
    -__exportStar(require("./__generated__/sigstore_common"), exports);
    -var sigstore_rekor_1 = require("./__generated__/sigstore_rekor");
    -Object.defineProperty(exports, "TransparencyLogEntry", { enumerable: true, get: function () { return sigstore_rekor_1.TransparencyLogEntry; } });
    -__exportStar(require("./__generated__/sigstore_trustroot"), exports);
    -__exportStar(require("./__generated__/sigstore_verification"), exports);
    -exports.bundleToJSON = sigstore_bundle_1.Bundle.toJSON;
    +exports.bundleToJSON = protobuf_specs_1.Bundle.toJSON;
     // eslint-disable-next-line @typescript-eslint/no-explicit-any
     const bundleFromJSON = (obj) => {
    -    const bundle = sigstore_bundle_1.Bundle.fromJSON(obj);
    +    const bundle = protobuf_specs_1.Bundle.fromJSON(obj);
         (0, validate_1.assertValidBundle)(bundle);
         return bundle;
     };
     exports.bundleFromJSON = bundleFromJSON;
    -exports.envelopeToJSON = envelope_1.Envelope.toJSON;
    -exports.envelopeFromJSON = envelope_1.Envelope.fromJSON;
    +exports.envelopeToJSON = protobuf_specs_1.Envelope.toJSON;
    +exports.envelopeFromJSON = protobuf_specs_1.Envelope.fromJSON;
     const BUNDLE_MEDIA_TYPE = 'application/vnd.dev.sigstore.bundle+json;version=0.1';
     // Type guard for narrowing a Bundle to a BundleWithVerificationMaterial
     function isBundleWithVerificationMaterial(bundle) {
    @@ -80,7 +87,7 @@ exports.bundle = {
                 $case: 'messageSignature',
                 messageSignature: {
                     messageDigest: {
    -                    algorithm: sigstore_common_1.HashAlgorithm.SHA2_256,
    +                    algorithm: protobuf_specs_1.HashAlgorithm.SHA2_256,
                         digest: digest,
                     },
                     signature: signature.signature,
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/validate.d.ts b/deps/npm/node_modules/sigstore/dist/types/sigstore/validate.d.ts
    index fd0a354282426d..7d8316fd2e6a2b 100644
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/validate.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/types/sigstore/validate.d.ts
    @@ -1,6 +1,5 @@
    +import { Bundle, MessageSignature, VerificationMaterial } from '@sigstore/protobuf-specs';
     import { WithRequired } from '../utility';
    -import { Bundle, VerificationMaterial } from './__generated__/sigstore_bundle';
    -import { MessageSignature } from './__generated__/sigstore_common';
     export type ValidBundle = Bundle & {
         verificationMaterial: VerificationMaterial & {
             content: NonNullable;
    diff --git a/deps/npm/node_modules/sigstore/dist/types/sigstore/validate.js b/deps/npm/node_modules/sigstore/dist/types/sigstore/validate.js
    index a19d8ad3ec7021..efd873ab657018 100644
    --- a/deps/npm/node_modules/sigstore/dist/types/sigstore/validate.js
    +++ b/deps/npm/node_modules/sigstore/dist/types/sigstore/validate.js
    @@ -1,21 +1,6 @@
     "use strict";
     Object.defineProperty(exports, "__esModule", { value: true });
     exports.assertValidBundle = void 0;
    -/*
    -Copyright 2023 The Sigstore Authors.
    -
    -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.
    -*/
     const error_1 = require("../../error");
     // Performs basic validation of a Sigstore bundle to ensure that all required
     // fields are populated. This is not a complete validation of the bundle, but
    diff --git a/deps/npm/node_modules/sigstore/dist/util/appdata.d.ts b/deps/npm/node_modules/sigstore/dist/util/appdata.d.ts
    new file mode 100644
    index 00000000000000..dcdaeef418bd68
    --- /dev/null
    +++ b/deps/npm/node_modules/sigstore/dist/util/appdata.d.ts
    @@ -0,0 +1 @@
    +export declare function appDataPath(name: string): string;
    diff --git a/deps/npm/node_modules/sigstore/dist/util/appdata.js b/deps/npm/node_modules/sigstore/dist/util/appdata.js
    new file mode 100644
    index 00000000000000..d0c7f6f079e501
    --- /dev/null
    +++ b/deps/npm/node_modules/sigstore/dist/util/appdata.js
    @@ -0,0 +1,26 @@
    +"use strict";
    +var __importDefault = (this && this.__importDefault) || function (mod) {
    +    return (mod && mod.__esModule) ? mod : { "default": mod };
    +};
    +Object.defineProperty(exports, "__esModule", { value: true });
    +exports.appDataPath = void 0;
    +const os_1 = __importDefault(require("os"));
    +const path_1 = __importDefault(require("path"));
    +function appDataPath(name) {
    +    const homedir = os_1.default.homedir();
    +    switch (process.platform) {
    +        case 'darwin': {
    +            const appSupport = path_1.default.join(homedir, 'Library', 'Application Support');
    +            return path_1.default.join(appSupport, name);
    +        }
    +        case 'win32': {
    +            const localAppData = process.env.LOCALAPPDATA || path_1.default.join(homedir, 'AppData', 'Local');
    +            return path_1.default.join(localAppData, name, 'Data');
    +        }
    +        default: {
    +            const localData = process.env.XDG_DATA_HOME || path_1.default.join(homedir, '.local', 'share');
    +            return path_1.default.join(localData, name);
    +        }
    +    }
    +}
    +exports.appDataPath = appDataPath;
    diff --git a/deps/npm/node_modules/sigstore/dist/util/index.d.ts b/deps/npm/node_modules/sigstore/dist/util/index.d.ts
    index 786a19630cd603..02e4ddc69b15c6 100644
    --- a/deps/npm/node_modules/sigstore/dist/util/index.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/util/index.d.ts
    @@ -1,3 +1,4 @@
    +export * as appdata from './appdata';
     export * as crypto from './crypto';
     export * as dsse from './dsse';
     export * as encoding from './encoding';
    diff --git a/deps/npm/node_modules/sigstore/dist/util/index.js b/deps/npm/node_modules/sigstore/dist/util/index.js
    index 2c02116cbf07dd..74ef9c0b1121b2 100644
    --- a/deps/npm/node_modules/sigstore/dist/util/index.js
    +++ b/deps/npm/node_modules/sigstore/dist/util/index.js
    @@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
         return result;
     };
     Object.defineProperty(exports, "__esModule", { value: true });
    -exports.ua = exports.promise = exports.pem = exports.oidc = exports.json = exports.encoding = exports.dsse = exports.crypto = void 0;
    +exports.ua = exports.promise = exports.pem = exports.oidc = exports.json = exports.encoding = exports.dsse = exports.crypto = exports.appdata = void 0;
     /*
     Copyright 2022 The Sigstore Authors.
     
    @@ -39,6 +39,7 @@ 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.
     */
    +exports.appdata = __importStar(require("./appdata"));
     exports.crypto = __importStar(require("./crypto"));
     exports.dsse = __importStar(require("./dsse"));
     exports.encoding = __importStar(require("./encoding"));
    diff --git a/deps/npm/node_modules/sigstore/dist/util/pem.d.ts b/deps/npm/node_modules/sigstore/dist/util/pem.d.ts
    index cb438c7937551c..6910679cae0654 100644
    --- a/deps/npm/node_modules/sigstore/dist/util/pem.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/util/pem.d.ts
    @@ -1,4 +1,3 @@
     /// 
    -export declare function split(certificate: string): string[];
     export declare function toDER(certificate: string): Buffer;
     export declare function fromDER(certificate: Buffer, type?: string): string;
    diff --git a/deps/npm/node_modules/sigstore/dist/util/pem.js b/deps/npm/node_modules/sigstore/dist/util/pem.js
    index 6bb8eda62a2ef6..8b03b364cd7efb 100644
    --- a/deps/npm/node_modules/sigstore/dist/util/pem.js
    +++ b/deps/npm/node_modules/sigstore/dist/util/pem.js
    @@ -1,6 +1,6 @@
     "use strict";
     Object.defineProperty(exports, "__esModule", { value: true });
    -exports.fromDER = exports.toDER = exports.split = void 0;
    +exports.fromDER = exports.toDER = void 0;
     /*
     Copyright 2022 The Sigstore Authors.
     
    @@ -18,27 +18,6 @@ limitations under the License.
     */
     const PEM_HEADER = /-----BEGIN (.*)-----/;
     const PEM_FOOTER = /-----END (.*)-----/;
    -// Given a set of PEM-encoded certificates bundled in a single string, returns
    -// an array of certificates. Standard PEM encoding dictates that each certificate
    -// should have a trailing newline after the footer.
    -function split(certificate) {
    -    const certs = [];
    -    let cert = [];
    -    certificate.split('\n').forEach((line) => {
    -        line.includes;
    -        if (line.match(PEM_HEADER)) {
    -            cert = [];
    -        }
    -        if (line.length > 0) {
    -            cert.push(line);
    -        }
    -        if (line.match(PEM_FOOTER)) {
    -            certs.push(cert.join('\n').concat('\n'));
    -        }
    -    });
    -    return certs;
    -}
    -exports.split = split;
     function toDER(certificate) {
         let der = '';
         certificate.split('\n').forEach((line) => {
    diff --git a/deps/npm/node_modules/sigstore/dist/util/stream.js b/deps/npm/node_modules/sigstore/dist/util/stream.js
    index b5c881bb388d43..d5c8236123cdfa 100644
    --- a/deps/npm/node_modules/sigstore/dist/util/stream.js
    +++ b/deps/npm/node_modules/sigstore/dist/util/stream.js
    @@ -112,5 +112,5 @@ class ByteStream {
             this.view = newView;
         }
     }
    -exports.ByteStream = ByteStream;
     ByteStream.BLOCK_SIZE = 1024;
    +exports.ByteStream = ByteStream;
    diff --git a/deps/npm/node_modules/sigstore/dist/verify.js b/deps/npm/node_modules/sigstore/dist/verify.js
    index 1bcef03b5f7ba6..9d21b553ac5232 100644
    --- a/deps/npm/node_modules/sigstore/dist/verify.js
    +++ b/deps/npm/node_modules/sigstore/dist/verify.js
    @@ -37,7 +37,7 @@ class Verifier {
         // Verifies the bundle signature, the bundle's certificate chain (if present)
         // and the bundle's transparency log entries.
         verify(bundle, options, data) {
    -        this.verifyArtifactSignature(bundle, options, data);
    +        this.verifyArtifactSignature(bundle, data);
             if (sigstore.isBundleWithCertificateChain(bundle)) {
                 this.verifySigningCertificate(bundle, options);
             }
    @@ -45,8 +45,8 @@ class Verifier {
         }
         // Performs bundle signature verification. Determines the type of the bundle
         // content and delegates to the appropriate signature verification function.
    -    verifyArtifactSignature(bundle, options, data) {
    -        const publicKey = this.getPublicKey(bundle, options);
    +    verifyArtifactSignature(bundle, data) {
    +        const publicKey = this.getPublicKey(bundle);
             switch (bundle.content?.$case) {
                 case 'messageSignature':
                     if (!data) {
    @@ -79,7 +79,7 @@ class Verifier {
         // Returns the public key which will be used to verify the bundle signature.
         // The public key is selected based on the verification material in the bundle
         // and the options provided.
    -    getPublicKey(bundle, options) {
    +    getPublicKey(bundle) {
             // Select the key which will be used to verify the signature
             switch (bundle.verificationMaterial?.content?.$case) {
                 // If the bundle contains a certificate chain, the public key is the
    @@ -89,7 +89,7 @@ class Verifier {
                 // If the bundle contains a public key hint, the public key is selected
                 // from the list of trusted keys in the options
                 case 'publicKey':
    -                return getPublicKeyFromHint(bundle.verificationMaterial.content.publicKey, options, this.keySelector);
    +                return getPublicKeyFromHint(bundle.verificationMaterial.content.publicKey, this.keySelector);
             }
         }
     }
    @@ -101,7 +101,7 @@ function getPublicKeyFromCertificateChain(certificateChain) {
     }
     // Retrieves the public key through the key selector callback, passing the
     // public key hint from the bundle
    -function getPublicKeyFromHint(publicKeyID, options, keySelector) {
    +function getPublicKeyFromHint(publicKeyID, keySelector) {
         const key = keySelector(publicKeyID.hint);
         if (!key) {
             throw new error_1.VerificationError('no public key found for signature verification');
    diff --git a/deps/npm/node_modules/sigstore/dist/x509/asn1/obj.d.ts b/deps/npm/node_modules/sigstore/dist/x509/asn1/obj.d.ts
    index 7f70a0ac3047bd..de54996c87faac 100644
    --- a/deps/npm/node_modules/sigstore/dist/x509/asn1/obj.d.ts
    +++ b/deps/npm/node_modules/sigstore/dist/x509/asn1/obj.d.ts
    @@ -3,12 +3,9 @@ import { ASN1Tag } from './tag';
     export declare class ASN1Obj {
         readonly tag: ASN1Tag;
         readonly subs: ASN1Obj[];
    -    private buf;
    -    private headerLength;
    -    constructor(tag: ASN1Tag, headerLength: number, buf: Buffer, subs: ASN1Obj[]);
    +    readonly value: Buffer;
    +    constructor(tag: ASN1Tag, value: Buffer, subs: ASN1Obj[]);
         static parseBuffer(buf: Buffer): ASN1Obj;
    -    get value(): Buffer;
    -    get raw(): Buffer;
         toDER(): Buffer;
         toBoolean(): boolean;
         toInteger(): bigint;
    diff --git a/deps/npm/node_modules/sigstore/dist/x509/asn1/obj.js b/deps/npm/node_modules/sigstore/dist/x509/asn1/obj.js
    index 9e67edcf60a0c2..712acf105adfc7 100644
    --- a/deps/npm/node_modules/sigstore/dist/x509/asn1/obj.js
    +++ b/deps/npm/node_modules/sigstore/dist/x509/asn1/obj.js
    @@ -22,28 +22,15 @@ const length_1 = require("./length");
     const parse_1 = require("./parse");
     const tag_1 = require("./tag");
     class ASN1Obj {
    -    constructor(tag, headerLength, buf, subs) {
    +    constructor(tag, value, subs) {
             this.tag = tag;
    -        this.headerLength = headerLength;
    -        this.buf = buf;
    +        this.value = value;
             this.subs = subs;
         }
         // Constructs an ASN.1 object from a Buffer of DER-encoded bytes.
         static parseBuffer(buf) {
             return parseStream(new stream_1.ByteStream(buf));
         }
    -    // Returns the raw bytes of the ASN.1 object's value. For constructed objects,
    -    // this is the concatenation of the raw bytes of the values of its children.
    -    // For primitive objects, this is the raw bytes of the object's value.
    -    // Use the various to* methods to parse the value into a specific type.
    -    get value() {
    -        return this.buf.subarray(this.headerLength);
    -    }
    -    // Returns the raw bytes of the entire ASN.1 object (including tag, length,
    -    // and value)
    -    get raw() {
    -        return this.buf;
    -    }
         toDER() {
             const valueStream = new stream_1.ByteStream();
             if (this.subs.length > 0) {
    @@ -114,13 +101,11 @@ exports.ASN1Obj = ASN1Obj;
     /////////////////////////////////////////////////////////////////////////////
     // Internal stream parsing functions
     function parseStream(stream) {
    -    // Capture current stream position so we know where this object starts
    -    const startPos = stream.position;
    -    // Parse tag and length from stream
    +    // Parse tag, length, and value from stream
         const tag = new tag_1.ASN1Tag(stream.getUint8());
         const len = (0, length_1.decodeLength)(stream);
    -    // Calculate length of header (tag + length)
    -    const header = stream.position - startPos;
    +    const value = stream.slice(stream.position, len);
    +    const start = stream.position;
         let subs = [];
         // If the object is constructed, parse its children. Sometimes, children
         // are embedded in OCTESTRING objects, so we need to check those
    @@ -140,11 +125,9 @@ function parseStream(stream) {
         }
         // If there are no children, move stream cursor to the end of the object
         if (subs.length === 0) {
    -        stream.seek(startPos + header + len);
    +        stream.seek(start + len);
         }
    -    // Capture the raw bytes of the object (including tag, length, and value)
    -    const buf = stream.slice(startPos, header + len);
    -    return new ASN1Obj(tag, header, buf, subs);
    +    return new ASN1Obj(tag, value, subs);
     }
     function collectSubs(stream, len) {
         // Calculate end of object content
    diff --git a/deps/npm/node_modules/sigstore/dist/x509/cert.js b/deps/npm/node_modules/sigstore/dist/x509/cert.js
    index 55cf22f62e27e5..0b8ab54740a069 100644
    --- a/deps/npm/node_modules/sigstore/dist/x509/cert.js
    +++ b/deps/npm/node_modules/sigstore/dist/x509/cert.js
    @@ -59,7 +59,7 @@ class x509Certificate {
             return this.subjectObj.value;
         }
         get publicKey() {
    -        return this.subjectPublicKeyInfoObj.raw;
    +        return this.subjectPublicKeyInfoObj.toDER();
         }
         get signatureAlgorithm() {
             const oid = this.signatureAlgorithmObj.subs[0].toOID();
    @@ -115,13 +115,13 @@ class x509Certificate {
             // Use the issuer's public key if provided, otherwise use the subject's
             const publicKey = issuerCertificate?.publicKey || this.publicKey;
             const key = util_1.crypto.createPublicKey(publicKey);
    -        return util_1.crypto.verifyBlob(this.tbsCertificate.raw, key, this.signatureValue, this.signatureAlgorithm);
    +        return util_1.crypto.verifyBlob(this.tbsCertificate.toDER(), key, this.signatureValue, this.signatureAlgorithm);
         }
         validForDate(date) {
             return this.notBefore <= date && date <= this.notAfter;
         }
         equals(other) {
    -        return this.root.raw.equals(other.root.raw);
    +        return this.root.toDER().equals(other.root.toDER());
         }
         verifySCTs(issuer, logs) {
             let extSCT;
    @@ -167,8 +167,9 @@ class x509Certificate {
         }
         // Creates a copy of the certificate with a new buffer
         clone() {
    -        const clone = Buffer.alloc(this.root.raw.length);
    -        this.root.raw.copy(clone);
    +        const der = this.root.toDER();
    +        const clone = Buffer.alloc(der.length);
    +        der.copy(clone);
             return x509Certificate.parse(clone);
         }
         findExtension(oid) {
    diff --git a/deps/npm/node_modules/sigstore/package.json b/deps/npm/node_modules/sigstore/package.json
    index 1a5960822eb0ee..0ef3fe90f467e7 100644
    --- a/deps/npm/node_modules/sigstore/package.json
    +++ b/deps/npm/node_modules/sigstore/package.json
    @@ -1,6 +1,6 @@
     {
       "name": "sigstore",
    -  "version": "1.0.0",
    +  "version": "1.2.0",
       "description": "code-signing for npm packages",
       "main": "dist/index.js",
       "types": "dist/index.d.ts",
    @@ -12,7 +12,7 @@
         "lint": "eslint --fix --ext .ts src/**",
         "lint:check": "eslint --max-warnings 0 --ext .ts src/**",
         "format": "prettier --write \"src/**/*\"",
    -    "codegen:sigstore": "./hack/generate-sigstore-types",
    +    "release": "npm run build && changeset publish",
         "codegen:rekor": "./hack/generate-rekor-types"
       },
       "bin": {
    @@ -22,6 +22,9 @@
         "type": "git",
         "url": "git+https://github.com/sigstore/sigstore-js.git"
       },
    +  "publishConfig": {
    +    "provenance": true
    +  },
       "files": [
         "dist",
         "store"
    @@ -33,6 +36,7 @@
       },
       "homepage": "https://github.com/sigstore/sigstore-js#readme",
       "devDependencies": {
    +    "@changesets/cli": "^2.26.0",
         "@tsconfig/node14": "^1.0.3",
         "@types/jest": "^29.4.0",
         "@types/make-fetch-happen": "^10.0.0",
    @@ -43,13 +47,14 @@
         "eslint-config-prettier": "^8.5.0",
         "eslint-plugin-prettier": "^4.0.0",
         "jest": "^29.4.1",
    -    "json-schema-to-typescript": "^11.0.2",
    +    "json-schema-to-typescript": "^12.0.0",
         "nock": "^13.2.4",
         "prettier": "^2.6.2",
         "ts-jest": "^29.0.5",
    -    "typescript": "^4.7.2"
    +    "typescript": "^5.0.2"
       },
       "dependencies": {
    +    "@sigstore/protobuf-specs": "^0.1.0",
         "make-fetch-happen": "^11.0.1",
         "tuf-js": "^1.0.0"
       },
    diff --git a/deps/npm/node_modules/sigstore/store/map.json b/deps/npm/node_modules/sigstore/store/map.json
    deleted file mode 100644
    index 620bf0bedbf442..00000000000000
    --- a/deps/npm/node_modules/sigstore/store/map.json
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -{
    -  "repositories": {
    -    "public-good-instance": [
    -      "https://sigstore-tuf-root.storage.googleapis.com"
    -    ]
    -  },
    -  "mapping": [
    -    {
    -      "paths": [
    -        "*"
    -      ],
    -      "repositories": [
    -        "public-good-instance"
    -      ],
    -      "terminating": true,
    -      "threshold": 1
    -    }
    -  ]
    -}
    diff --git a/deps/npm/node_modules/smart-buffer/build/smartbuffer.js.map b/deps/npm/node_modules/smart-buffer/build/smartbuffer.js.map
    deleted file mode 100644
    index 37f0d6e16fc682..00000000000000
    --- a/deps/npm/node_modules/smart-buffer/build/smartbuffer.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"smartbuffer.js","sourceRoot":"","sources":["../src/smartbuffer.ts"],"names":[],"mappings":";;AAAA,mCAGiB;AAcjB,kDAAkD;AAClD,MAAM,wBAAwB,GAAW,IAAI,CAAC;AAE9C,kEAAkE;AAClE,MAAM,4BAA4B,GAAmB,MAAM,CAAC;AAE5D,MAAM,WAAW;IAQf;;;;OAIG;IACH,YAAY,OAA4B;QAZjC,WAAM,GAAW,CAAC,CAAC;QAElB,cAAS,GAAmB,4BAA4B,CAAC;QAEzD,iBAAY,GAAW,CAAC,CAAC;QACzB,gBAAW,GAAW,CAAC,CAAC;QAQ9B,IAAI,WAAW,CAAC,oBAAoB,CAAC,OAAO,CAAC,EAAE;YAC7C,sBAAsB;YACtB,IAAI,OAAO,CAAC,QAAQ,EAAE;gBACpB,qBAAa,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;gBAChC,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,QAAQ,CAAC;aACnC;YAED,iCAAiC;YACjC,IAAI,OAAO,CAAC,IAAI,EAAE;gBAChB,IAAI,uBAAe,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,OAAO,CAAC,IAAI,GAAG,CAAC,EAAE;oBACrD,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;iBAC/C;qBAAM;oBACL,MAAM,IAAI,KAAK,CAAC,cAAM,CAAC,wBAAwB,CAAC,CAAC;iBAClD;gBACD,2BAA2B;aAC5B;iBAAM,IAAI,OAAO,CAAC,IAAI,EAAE;gBACvB,IAAI,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;oBACjC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;oBAC1B,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC;iBACnC;qBAAM;oBACL,MAAM,IAAI,KAAK,CAAC,cAAM,CAAC,0BAA0B,CAAC,CAAC;iBACpD;aACF;iBAAM;gBACL,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,WAAW,CAAC,wBAAwB,CAAC,CAAC;aAC3D;SACF;aAAM;YACL,mEAAmE;YACnE,IAAI,OAAO,OAAO,KAAK,WAAW,EAAE;gBAClC,MAAM,IAAI,KAAK,CAAC,cAAM,CAAC,0BAA0B,CAAC,CAAC;aACpD;YAED,oCAAoC;YACpC,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,WAAW,CAAC,wBAAwB,CAAC,CAAC;SAC3D;IACH,CAAC;IAED;;;;;;;OAOG;IACI,MAAM,CAAC,QAAQ,CAAC,IAAY,EAAE,QAAyB;QAC5D,OAAO,IAAI,IAAI,CAAC;YACd,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,QAAQ;SACnB,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;OAOG;IACI,MAAM,CAAC,UAAU,CAAC,IAAY,EAAE,QAAyB;QAC9D,OAAO,IAAI,IAAI,CAAC;YACd,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,QAAQ;SACnB,CAAC,CAAC;IACL,CAAC;IAED;;;;OAIG;IACI,MAAM,CAAC,WAAW,CAAC,OAA2B;QACnD,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC;IAC3B,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,oBAAoB,CAAC,OAA2B;QACrD,MAAM,WAAW,GAAuB,OAAO,CAAC;QAEhD,OAAO,CACL,WAAW;YACX,CAAC,WAAW,CAAC,QAAQ,KAAK,SAAS,IAAI,WAAW,CAAC,IAAI,KAAK,SAAS,IAAI,WAAW,CAAC,IAAI,KAAK,SAAS,CAAC,CACzG,CAAC;IACJ,CAAC;IAED,kBAAkB;IAElB;;;;;OAKG;IACH,QAAQ,CAAC,MAAe;QACtB,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,QAAQ,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACrE,CAAC;IAED;;;;;OAKG;IACH,WAAW,CAAC,MAAe;QACzB,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACxE,CAAC;IAED;;;;;OAKG;IACH,WAAW,CAAC,MAAe;QACzB,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACxE,CAAC;IAED;;;;;OAKG;IACH,WAAW,CAAC,MAAe;QACzB,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACxE,CAAC;IAED;;;;;OAKG;IACH,WAAW,CAAC,MAAe;QACzB,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACxE,CAAC;IAED;;;;;OAKG;IACH,cAAc,CAAC,MAAe;QAC5B,iCAAyB,CAAC,gBAAgB,CAAC,CAAC;QAC5C,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,cAAc,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IAC3E,CAAC;IAED;;;;;OAKG;IACH,cAAc,CAAC,MAAe;QAC5B,iCAAyB,CAAC,gBAAgB,CAAC,CAAC;QAC5C,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,cAAc,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IAC3E,CAAC;IAED;;;;;;;OAOG;IACH,SAAS,CAAC,KAAa,EAAE,MAAe;QACtC,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,SAAS,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;QACrE,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;;OAOG;IACH,UAAU,CAAC,KAAa,EAAE,MAAc;QACtC,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,SAAS,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAC/E,CAAC;IAED;;;;;;;OAOG;IACH,YAAY,CAAC,KAAa,EAAE,MAAe;QACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACjF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAc;QACzC,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,YAAY,CAAC,KAAa,EAAE,MAAe;QACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACjF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAc;QACzC,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,YAAY,CAAC,KAAa,EAAE,MAAe;QACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACjF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAc;QACzC,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,YAAY,CAAC,KAAa,EAAE,MAAe;QACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACjF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAc;QACzC,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,eAAe,CAAC,KAAa,EAAE,MAAe;QAC5C,iCAAyB,CAAC,iBAAiB,CAAC,CAAC;QAC7C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,eAAe,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACpF,CAAC;IAED;;;;;;;OAOG;IACH,gBAAgB,CAAC,KAAa,EAAE,MAAc;QAC5C,iCAAyB,CAAC,iBAAiB,CAAC,CAAC;QAC7C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,eAAe,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACrF,CAAC;IAED;;;;;;;OAOG;IACH,eAAe,CAAC,KAAa,EAAE,MAAe;QAC5C,iCAAyB,CAAC,iBAAiB,CAAC,CAAC;QAC7C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,eAAe,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACpF,CAAC;IAED;;;;;;;OAOG;IACH,gBAAgB,CAAC,KAAa,EAAE,MAAc;QAC5C,iCAAyB,CAAC,iBAAiB,CAAC,CAAC;QAC7C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,eAAe,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACrF,CAAC;IAED,oBAAoB;IAEpB;;;;;OAKG;IACH,SAAS,CAAC,MAAe;QACvB,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,SAAS,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACtE,CAAC;IAED;;;;;OAKG;IACH,YAAY,CAAC,MAAe;QAC1B,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACzE,CAAC;IAED;;;;;OAKG;IACH,YAAY,CAAC,MAAe;QAC1B,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACzE,CAAC;IAED;;;;;OAKG;IACH,YAAY,CAAC,MAAe;QAC1B,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACzE,CAAC;IAED;;;;;OAKG;IACH,YAAY,CAAC,MAAe;QAC1B,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACzE,CAAC;IAED;;;;;OAKG;IACH,eAAe,CAAC,MAAe;QAC7B,iCAAyB,CAAC,iBAAiB,CAAC,CAAC;QAC7C,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,eAAe,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IAC5E,CAAC;IAED;;;;;OAKG;IACH,eAAe,CAAC,MAAe;QAC7B,iCAAyB,CAAC,iBAAiB,CAAC,CAAC;QAC7C,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,eAAe,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IAC5E,CAAC;IAED;;;;;;;OAOG;IACH,UAAU,CAAC,KAAa,EAAE,MAAe;QACvC,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAC/E,CAAC;IAED;;;;;;;OAOG;IACH,WAAW,CAAC,KAAa,EAAE,MAAc;QACvC,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,UAAU,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAChF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAe;QAC1C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,cAAc,CAAC,KAAa,EAAE,MAAc;QAC1C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACnF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAe;QAC1C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,cAAc,CAAC,KAAa,EAAE,MAAc;QAC1C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACnF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAe;QAC1C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,cAAc,CAAC,KAAa,EAAE,MAAc;QAC1C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACnF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAe;QAC1C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,cAAc,CAAC,KAAa,EAAE,MAAc;QAC1C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACnF,CAAC;IAED;;;;;;;OAOG;IACH,gBAAgB,CAAC,KAAa,EAAE,MAAe;QAC7C,iCAAyB,CAAC,kBAAkB,CAAC,CAAC;QAC9C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,gBAAgB,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACrF,CAAC;IAED;;;;;;;OAOG;IACH,iBAAiB,CAAC,KAAa,EAAE,MAAc;QAC7C,iCAAyB,CAAC,kBAAkB,CAAC,CAAC;QAC9C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,gBAAgB,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACtF,CAAC;IAED;;;;;;;OAOG;IACH,gBAAgB,CAAC,KAAa,EAAE,MAAe;QAC7C,iCAAyB,CAAC,kBAAkB,CAAC,CAAC;QAC9C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,gBAAgB,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACrF,CAAC;IAED;;;;;;;OAOG;IACH,iBAAiB,CAAC,KAAa,EAAE,MAAc;QAC7C,iCAAyB,CAAC,kBAAkB,CAAC,CAAC;QAC9C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,gBAAgB,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACtF,CAAC;IAED,iBAAiB;IAEjB;;;;;OAKG;IACH,WAAW,CAAC,MAAe;QACzB,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACxE,CAAC;IAED;;;;;OAKG;IACH,WAAW,CAAC,MAAe;QACzB,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACxE,CAAC;IAED;;;;;;;OAOG;IACH,YAAY,CAAC,KAAa,EAAE,MAAe;QACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACjF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAc;QACzC,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,YAAY,CAAC,KAAa,EAAE,MAAe;QACzC,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACjF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAc;QACzC,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED,wBAAwB;IAExB;;;;;OAKG;IACH,YAAY,CAAC,MAAe;QAC1B,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACzE,CAAC;IAED;;;;;OAKG;IACH,YAAY,CAAC,MAAe;QAC1B,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,CAAC,YAAY,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;IACzE,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAe;QAC1C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,cAAc,CAAC,KAAa,EAAE,MAAc;QAC1C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACnF,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAe;QAC1C,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClF,CAAC;IAED;;;;;;;OAOG;IACH,cAAc,CAAC,KAAa,EAAE,MAAc;QAC1C,OAAO,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,aAAa,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IACnF,CAAC;IAED,UAAU;IAEV;;;;;;;;OAQG;IACH,UAAU,CAAC,IAA8B,EAAE,QAAyB;QAClE,IAAI,SAAS,CAAC;QAEd,kBAAkB;QAClB,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;YAC5B,wBAAgB,CAAC,IAAI,CAAC,CAAC;YACvB,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;SAC5D;aAAM;YACL,QAAQ,GAAG,IAAI,CAAC;YAChB,SAAS,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;SAC5C;QAED,iBAAiB;QACjB,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE;YACnC,qBAAa,CAAC,QAAQ,CAAC,CAAC;SACzB;QAED,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC,QAAQ,CAAC,QAAQ,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC;QAEpH,IAAI,CAAC,WAAW,IAAI,SAAS,CAAC;QAC9B,OAAO,KAAK,CAAC;IACf,CAAC;IAED;;;;;;;;OAQG;IACH,YAAY,CAAC,KAAa,EAAE,MAAc,EAAE,QAAyB;QACnE,wBAAgB,CAAC,MAAM,CAAC,CAAC;QAEzB,OAAO,IAAI,CAAC,aAAa,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;IAC3D,CAAC;IAED;;;;;;;;OAQG;IACH,WAAW,CAAC,KAAa,EAAE,IAA8B,EAAE,QAAyB;QAClF,OAAO,IAAI,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC;IAC1D,CAAC;IAED;;;;;;OAMG;IACH,YAAY,CAAC,QAAyB;QACpC,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE;YACnC,qBAAa,CAAC,QAAQ,CAAC,CAAC;SACzB;QAED,+DAA+D;QAC/D,IAAI,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC;QAE1B,6EAA6E;QAC7E,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACnD,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE;gBAC1B,OAAO,GAAG,CAAC,CAAC;gBACZ,MAAM;aACP;SACF;QAED,oBAAoB;QACpB,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;QAE1D,wCAAwC;QACxC,IAAI,CAAC,WAAW,GAAG,OAAO,GAAG,CAAC,CAAC;QAE/B,OAAO,KAAK,CAAC,QAAQ,CAAC,QAAQ,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC;IACpD,CAAC;IAED;;;;;;;;OAQG;IACH,cAAc,CAAC,KAAa,EAAE,MAAc,EAAE,QAAyB;QACrE,wBAAgB,CAAC,MAAM,CAAC,CAAC;QAEzB,eAAe;QACf,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;QAC3C,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;QAC9C,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;;;OAQG;IACH,aAAa,CAAC,KAAa,EAAE,IAA8B,EAAE,QAAyB;QACpF,eAAe;QACf,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC;QACxC,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,OAAO,IAAI,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QACzF,OAAO,IAAI,CAAC;IACd,CAAC;IAED,UAAU;IAEV;;;;;;OAMG;IACH,UAAU,CAAC,MAAe;QACxB,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;YACjC,wBAAgB,CAAC,MAAM,CAAC,CAAC;SAC1B;QAED,MAAM,SAAS,GAAG,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACpE,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;QAErE,oBAAoB;QACpB,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;QAE3D,wCAAwC;QACxC,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;QAC5B,OAAO,KAAK,CAAC;IACf,CAAC;IAED;;;;;;;OAOG;IACH,YAAY,CAAC,KAAa,EAAE,MAAc;QACxC,wBAAgB,CAAC,MAAM,CAAC,CAAC;QAEzB,OAAO,IAAI,CAAC,aAAa,CAAC,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;IACjD,CAAC;IAED;;;;;;;OAOG;IACH,WAAW,CAAC,KAAa,EAAE,MAAe;QACxC,OAAO,IAAI,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAClD,CAAC;IAED;;;;OAIG;IACH,YAAY;QACV,+DAA+D;QAC/D,IAAI,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC;QAE1B,6EAA6E;QAC7E,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACnD,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE;gBAC1B,OAAO,GAAG,CAAC,CAAC;gBACZ,MAAM;aACP;SACF;QAED,aAAa;QACb,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;QAE1D,wCAAwC;QACxC,IAAI,CAAC,WAAW,GAAG,OAAO,GAAG,CAAC,CAAC;QAC/B,OAAO,KAAK,CAAC;IACf,CAAC;IAED;;;;;;;OAOG;IACH,cAAc,CAAC,KAAa,EAAE,MAAc;QAC1C,wBAAgB,CAAC,MAAM,CAAC,CAAC;QAEzB,eAAe;QACf,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;QACjC,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;QAE9C,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,KAAa,EAAE,MAAe;QAC1C,mCAAmC;QACnC,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;YACjC,wBAAgB,CAAC,MAAM,CAAC,CAAC;SAC1B;QAED,eAAe;QACf,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;QAChC,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAE9F,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACH,KAAK;QACH,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;QACtB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;OAIG;IACH,SAAS;QACP,OAAO,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;IACxC,CAAC;IAED;;;;OAIG;IACH,IAAI,UAAU;QACZ,OAAO,IAAI,CAAC,WAAW,CAAC;IAC1B,CAAC;IAED;;;;OAIG;IACH,IAAI,UAAU,CAAC,MAAc;QAC3B,wBAAgB,CAAC,MAAM,CAAC,CAAC;QAEzB,oBAAoB;QACpB,yBAAiB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;QAEhC,IAAI,CAAC,WAAW,GAAG,MAAM,CAAC;IAC5B,CAAC;IAED;;;;OAIG;IACH,IAAI,WAAW;QACb,OAAO,IAAI,CAAC,YAAY,CAAC;IAC3B,CAAC;IAED;;;;OAIG;IACH,IAAI,WAAW,CAAC,MAAc;QAC5B,wBAAgB,CAAC,MAAM,CAAC,CAAC;QAEzB,oBAAoB;QACpB,yBAAiB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;QAEhC,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC;IAC7B,CAAC;IAED;;;;OAIG;IACH,IAAI,QAAQ;QACV,OAAO,IAAI,CAAC,SAAS,CAAC;IACxB,CAAC;IAED;;;;OAIG;IACH,IAAI,QAAQ,CAAC,QAAwB;QACnC,qBAAa,CAAC,QAAQ,CAAC,CAAC;QAExB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC5B,CAAC;IAED;;;;OAIG;IACH,IAAI,cAAc;QAChB,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED;;;;OAIG;IACH,QAAQ;QACN,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;IAC1C,CAAC;IAED;;;;OAIG;IACH,QAAQ,CAAC,QAAyB;QAChC,MAAM,WAAW,GAAG,OAAO,QAAQ,KAAK,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC;QAE7E,8BAA8B;QAC9B,qBAAa,CAAC,WAAW,CAAC,CAAC;QAE3B,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,WAAW,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;IAC1D,CAAC;IAED;;OAEG;IACH,OAAO;QACL,IAAI,CAAC,KAAK,EAAE,CAAC;QACb,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;;OAOG;IACK,aAAa,CACnB,KAAa,EACb,QAAiB,EACjB,IAA8B,EAC9B,QAAyB;QAEzB,IAAI,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC;QAClC,IAAI,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC;QAEjC,mBAAmB;QACnB,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;YAC5B,SAAS,GAAG,IAAI,CAAC;YACjB,qBAAqB;SACtB;aAAM,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;YACnC,qBAAa,CAAC,IAAI,CAAC,CAAC;YACpB,WAAW,GAAG,IAAI,CAAC;SACpB;QAED,mCAAmC;QACnC,IAAI,OAAO,QAAQ,KAAK,QAAQ,EAAE;YAChC,qBAAa,CAAC,QAAQ,CAAC,CAAC;YACxB,WAAW,GAAG,QAAQ,CAAC;SACxB;QAED,kCAAkC;QAClC,MAAM,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,WAAW,CAAC,CAAC;QAEzD,mDAAmD;QACnD,IAAI,QAAQ,EAAE;YACZ,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,SAAS,CAAC,CAAC;SAC9C;aAAM;YACL,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,SAAS,CAAC,CAAC;SAC9C;QAED,cAAc;QACd,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,WAAW,CAAC,CAAC;QAE5D,0CAA0C;QAC1C,IAAI,QAAQ,EAAE;YACZ,IAAI,CAAC,YAAY,IAAI,UAAU,CAAC;SACjC;aAAM;YACL,mFAAmF;YACnF,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;gBAC5B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,EAAE,SAAS,GAAG,UAAU,CAAC,CAAC;aACzE;iBAAM;gBACL,2FAA2F;gBAC3F,IAAI,CAAC,YAAY,IAAI,UAAU,CAAC;aACjC;SACF;QAED,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;OAKG;IACK,aAAa,CAAC,KAAa,EAAE,QAAiB,EAAE,MAAe;QACrE,MAAM,SAAS,GAAG,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;QAE1E,mDAAmD;QACnD,IAAI,QAAQ,EAAE;YACZ,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;SAChD;aAAM;YACL,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;SAChD;QAED,qBAAqB;QACrB,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;QAElC,0CAA0C;QAC1C,IAAI,QAAQ,EAAE;YACZ,IAAI,CAAC,YAAY,IAAI,KAAK,CAAC,MAAM,CAAC;SACnC;aAAM;YACL,mFAAmF;YACnF,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;gBAC9B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,EAAE,SAAS,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;aAC3E;iBAAM;gBACL,2FAA2F;gBAC3F,IAAI,CAAC,YAAY,IAAI,KAAK,CAAC,MAAM,CAAC;aACnC;SACF;QAED,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;OAKG;IACK,cAAc,CAAC,MAAc,EAAE,MAAe;QACpD,gDAAgD;QAChD,IAAI,SAAS,GAAG,IAAI,CAAC,WAAW,CAAC;QAEjC,qCAAqC;QACrC,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;YACjC,mCAAmC;YACnC,wBAAgB,CAAC,MAAM,CAAC,CAAC;YAEzB,8BAA8B;YAC9B,SAAS,GAAG,MAAM,CAAC;SACpB;QAED,8GAA8G;QAC9G,IAAI,SAAS,GAAG,CAAC,IAAI,SAAS,GAAG,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACrD,MAAM,IAAI,KAAK,CAAC,cAAM,CAAC,0BAA0B,CAAC,CAAC;SACpD;IACH,CAAC;IAED;;;;;OAKG;IACK,gBAAgB,CAAC,UAAkB,EAAE,MAAc;QACzD,mCAAmC;QACnC,wBAAgB,CAAC,MAAM,CAAC,CAAC;QAEzB,mDAAmD;QACnD,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;QAE/C,kIAAkI;QAClI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;SAC7E;QAED,qCAAqC;QACrC,IAAI,MAAM,GAAG,UAAU,GAAG,IAAI,CAAC,MAAM,EAAE;YACrC,IAAI,CAAC,MAAM,GAAG,MAAM,GAAG,UAAU,CAAC;SACnC;aAAM;YACL,IAAI,CAAC,MAAM,IAAI,UAAU,CAAC;SAC3B;IACH,CAAC;IAED;;;;;OAKG;IACK,gBAAgB,CAAC,UAAkB,EAAE,MAAe;QAC1D,MAAM,SAAS,GAAG,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;QAE1E,wCAAwC;QACxC,IAAI,CAAC,eAAe,CAAC,SAAS,GAAG,UAAU,CAAC,CAAC;QAE7C,8FAA8F;QAC9F,IAAI,SAAS,GAAG,UAAU,GAAG,IAAI,CAAC,MAAM,EAAE;YACxC,IAAI,CAAC,MAAM,GAAG,SAAS,GAAG,UAAU,CAAC;SACtC;IACH,CAAC;IAED;;;;OAIG;IACK,eAAe,CAAC,SAAiB;QACvC,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC;QAEpC,IAAI,SAAS,GAAG,SAAS,EAAE;YACzB,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;YACtB,IAAI,SAAS,GAAG,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;YACxC,IAAI,SAAS,GAAG,SAAS,EAAE;gBACzB,SAAS,GAAG,SAAS,CAAC;aACvB;YACD,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;YAE3C,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,EAAE,CAAC,EAAE,SAAS,CAAC,CAAC;SACxC;IACH,CAAC;IAED;;;;;;;;;;OAUG;IACK,gBAAgB,CAAI,IAA2B,EAAE,QAAgB,EAAE,MAAe;QACxF,IAAI,CAAC,cAAc,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;QAEtC,0BAA0B;QAC1B,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAE5F,2EAA2E;QAC3E,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;YACjC,IAAI,CAAC,WAAW,IAAI,QAAQ,CAAC;SAC9B;QAED,OAAO,KAAK,CAAC;IACf,CAAC;IAED;;;;;;;;;;;OAWG;IACK,kBAAkB,CACxB,IAA2C,EAC3C,QAAgB,EAChB,KAAQ,EACR,MAAc;QAEd,mCAAmC;QACnC,wBAAgB,CAAC,MAAM,CAAC,CAAC;QAEzB,0EAA0E;QAC1E,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;QAExC,2BAA2B;QAC3B,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;QAErC,2CAA2C;QAC3C,IAAI,CAAC,YAAY,IAAI,QAAQ,CAAC;QAC9B,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;;;;;;OAWG;IACK,iBAAiB,CACvB,IAA2C,EAC3C,QAAgB,EAChB,KAAQ,EACR,MAAe;QAEf,0CAA0C;QAC1C,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;YAC9B,gEAAgE;YAChE,IAAI,MAAM,GAAG,CAAC,EAAE;gBACd,MAAM,IAAI,KAAK,CAAC,cAAM,CAAC,2BAA2B,CAAC,CAAC;aACrD;YAED,wBAAgB,CAAC,MAAM,CAAC,CAAC;SAC1B;QAED,uDAAuD;QACvD,MAAM,SAAS,GAAG,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;QAE1E,0EAA0E;QAC1E,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;QAE3C,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,EAAE,SAAS,CAAC,CAAC;QAExC,mFAAmF;QACnF,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;YAC9B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,EAAE,SAAS,GAAG,QAAQ,CAAC,CAAC;SACvE;aAAM;YACL,mGAAmG;YACnG,IAAI,CAAC,YAAY,IAAI,QAAQ,CAAC;SAC/B;QAED,OAAO,IAAI,CAAC;IACd,CAAC;CACF;AAE4B,kCAAW"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/smart-buffer/build/utils.js.map b/deps/npm/node_modules/smart-buffer/build/utils.js.map
    deleted file mode 100644
    index fc7388d3b7010c..00000000000000
    --- a/deps/npm/node_modules/smart-buffer/build/utils.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";;AACA,mCAAgC;AAEhC;;GAEG;AACH,MAAM,MAAM,GAAG;IACb,gBAAgB,EAAE,kGAAkG;IACpH,wBAAwB,EAAE,wEAAwE;IAClG,0BAA0B,EAAE,gDAAgD;IAC5E,0BAA0B,EAAE,2FAA2F;IACvH,cAAc,EAAE,uCAAuC;IACvD,yBAAyB,EAAE,oEAAoE;IAC/F,cAAc,EAAE,uCAAuC;IACvD,yBAAyB,EAAE,oEAAoE;IAC/F,qBAAqB,EAAE,sEAAsE;IAC7F,qBAAqB,EAAE,yFAAyF;IAChH,0BAA0B,EAAE,0DAA0D;IACtF,2BAA2B,EAAE,2DAA2D;CACzF,CAAC;AAuGA,wBAAM;AArGR;;;;GAIG;AACH,SAAS,aAAa,CAAC,QAAwB;IAC7C,IAAI,CAAC,eAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;QAChC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC;KAC1C;AACH,CAAC;AA4F0B,sCAAa;AA1FxC;;;;GAIG;AACH,SAAS,eAAe,CAAC,KAAa;IACpC,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,SAAS,CAAC,KAAK,CAAC,CAAC;AAC1E,CAAC;AAmFS,0CAAe;AAjFzB;;;;;GAKG;AACH,SAAS,wBAAwB,CAAC,KAAU,EAAE,MAAe;IAC3D,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QAC7B,oCAAoC;QACpC,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,IAAI,KAAK,GAAG,CAAC,EAAE;YACxC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;SACzE;KACF;SAAM;QACL,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB,CAAC,CAAC;KAC/F;AACH,CAAC;AAED;;;;GAIG;AACH,SAAS,gBAAgB,CAAC,MAAW;IACnC,wBAAwB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AAC1C,CAAC;AA0DC,4CAAgB;AAxDlB;;;;GAIG;AACH,SAAS,gBAAgB,CAAC,MAAW;IACnC,wBAAwB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;AACzC,CAAC;AAgDyC,4CAAgB;AA9C1D;;;;;GAKG;AACH,SAAS,iBAAiB,CAAC,MAAc,EAAE,IAAiB;IAC1D,IAAI,MAAM,GAAG,CAAC,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;QACtC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;KAC/C;AACH,CAAC;AAqCmB,8CAAiB;AAnCrC;;;GAGG;AACH,SAAS,SAAS,CAAC,KAAa;IAC9B,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK,CAAC;AACrF,CAAC;AAcD;;GAEG;AACH,SAAS,yBAAyB,CAAC,YAA0B;IAC3D,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;QACjC,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAC9D;IAED,IAAI,OAAO,eAAM,CAAC,SAAS,CAAC,YAAY,CAAC,KAAK,WAAW,EAAE;QACzD,MAAM,IAAI,KAAK,CAAC,8CAA8C,YAAY,GAAG,CAAC,CAAC;KAChF;AACH,CAAC;AAIsC,8DAAyB"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/smart-buffer/typings/smartbuffer.d.ts b/deps/npm/node_modules/smart-buffer/typings/smartbuffer.d.ts
    deleted file mode 100644
    index d07379b2983a44..00000000000000
    --- a/deps/npm/node_modules/smart-buffer/typings/smartbuffer.d.ts
    +++ /dev/null
    @@ -1,755 +0,0 @@
    -/// 
    -/**
    - * Object interface for constructing new SmartBuffer instances.
    - */
    -interface SmartBufferOptions {
    -    encoding?: BufferEncoding;
    -    size?: number;
    -    buff?: Buffer;
    -}
    -declare class SmartBuffer {
    -    length: number;
    -    private _encoding;
    -    private _buff;
    -    private _writeOffset;
    -    private _readOffset;
    -    /**
    -     * Creates a new SmartBuffer instance.
    -     *
    -     * @param options { SmartBufferOptions } The SmartBufferOptions to apply to this instance.
    -     */
    -    constructor(options?: SmartBufferOptions);
    -    /**
    -     * Creates a new SmartBuffer instance with the provided internal Buffer size and optional encoding.
    -     *
    -     * @param size { Number } The size of the internal Buffer.
    -     * @param encoding { String } The BufferEncoding to use for strings.
    -     *
    -     * @return { SmartBuffer }
    -     */
    -    static fromSize(size: number, encoding?: BufferEncoding): SmartBuffer;
    -    /**
    -     * Creates a new SmartBuffer instance with the provided Buffer and optional encoding.
    -     *
    -     * @param buffer { Buffer } The Buffer to use as the internal Buffer value.
    -     * @param encoding { String } The BufferEncoding to use for strings.
    -     *
    -     * @return { SmartBuffer }
    -     */
    -    static fromBuffer(buff: Buffer, encoding?: BufferEncoding): SmartBuffer;
    -    /**
    -     * Creates a new SmartBuffer instance with the provided SmartBufferOptions options.
    -     *
    -     * @param options { SmartBufferOptions } The options to use when creating the SmartBuffer instance.
    -     */
    -    static fromOptions(options: SmartBufferOptions): SmartBuffer;
    -    /**
    -     * Type checking function that determines if an object is a SmartBufferOptions object.
    -     */
    -    static isSmartBufferOptions(options: SmartBufferOptions): options is SmartBufferOptions;
    -    /**
    -     * Reads an Int8 value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readInt8(offset?: number): number;
    -    /**
    -     * Reads an Int16BE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readInt16BE(offset?: number): number;
    -    /**
    -     * Reads an Int16LE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readInt16LE(offset?: number): number;
    -    /**
    -     * Reads an Int32BE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readInt32BE(offset?: number): number;
    -    /**
    -     * Reads an Int32LE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readInt32LE(offset?: number): number;
    -    /**
    -     * Reads a BigInt64BE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { BigInt }
    -     */
    -    readBigInt64BE(offset?: number): bigint;
    -    /**
    -     * Reads a BigInt64LE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { BigInt }
    -     */
    -    readBigInt64LE(offset?: number): bigint;
    -    /**
    -     * Writes an Int8 value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeInt8(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an Int8 value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertInt8(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes an Int16BE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeInt16BE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an Int16BE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertInt16BE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes an Int16LE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeInt16LE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an Int16LE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertInt16LE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes an Int32BE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeInt32BE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an Int32BE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertInt32BE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes an Int32LE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeInt32LE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an Int32LE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertInt32LE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes a BigInt64BE value to the current write position (or at optional offset).
    -     *
    -     * @param value { BigInt } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeBigInt64BE(value: bigint, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts a BigInt64BE value at the given offset value.
    -     *
    -     * @param value { BigInt } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertBigInt64BE(value: bigint, offset: number): SmartBuffer;
    -    /**
    -     * Writes a BigInt64LE value to the current write position (or at optional offset).
    -     *
    -     * @param value { BigInt } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeBigInt64LE(value: bigint, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts a Int64LE value at the given offset value.
    -     *
    -     * @param value { BigInt } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertBigInt64LE(value: bigint, offset: number): SmartBuffer;
    -    /**
    -     * Reads an UInt8 value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readUInt8(offset?: number): number;
    -    /**
    -     * Reads an UInt16BE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readUInt16BE(offset?: number): number;
    -    /**
    -     * Reads an UInt16LE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readUInt16LE(offset?: number): number;
    -    /**
    -     * Reads an UInt32BE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readUInt32BE(offset?: number): number;
    -    /**
    -     * Reads an UInt32LE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readUInt32LE(offset?: number): number;
    -    /**
    -     * Reads a BigUInt64BE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { BigInt }
    -     */
    -    readBigUInt64BE(offset?: number): bigint;
    -    /**
    -     * Reads a BigUInt64LE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { BigInt }
    -     */
    -    readBigUInt64LE(offset?: number): bigint;
    -    /**
    -     * Writes an UInt8 value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeUInt8(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an UInt8 value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertUInt8(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes an UInt16BE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeUInt16BE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an UInt16BE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertUInt16BE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes an UInt16LE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeUInt16LE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an UInt16LE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertUInt16LE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes an UInt32BE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeUInt32BE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an UInt32BE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertUInt32BE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes an UInt32LE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeUInt32LE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts an UInt32LE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertUInt32LE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes a BigUInt64BE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeBigUInt64BE(value: bigint, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts a BigUInt64BE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertBigUInt64BE(value: bigint, offset: number): SmartBuffer;
    -    /**
    -     * Writes a BigUInt64LE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeBigUInt64LE(value: bigint, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts a BigUInt64LE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertBigUInt64LE(value: bigint, offset: number): SmartBuffer;
    -    /**
    -     * Reads an FloatBE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readFloatBE(offset?: number): number;
    -    /**
    -     * Reads an FloatLE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readFloatLE(offset?: number): number;
    -    /**
    -     * Writes a FloatBE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeFloatBE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts a FloatBE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertFloatBE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes a FloatLE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeFloatLE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts a FloatLE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertFloatLE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Reads an DoublEBE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readDoubleBE(offset?: number): number;
    -    /**
    -     * Reads an DoubleLE value from the current read position or an optionally provided offset.
    -     *
    -     * @param offset { Number } The offset to read data from (optional)
    -     * @return { Number }
    -     */
    -    readDoubleLE(offset?: number): number;
    -    /**
    -     * Writes a DoubleBE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeDoubleBE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts a DoubleBE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertDoubleBE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Writes a DoubleLE value to the current write position (or at optional offset).
    -     *
    -     * @param value { Number } The value to write.
    -     * @param offset { Number } The offset to write the value at.
    -     *
    -     * @return this
    -     */
    -    writeDoubleLE(value: number, offset?: number): SmartBuffer;
    -    /**
    -     * Inserts a DoubleLE value at the given offset value.
    -     *
    -     * @param value { Number } The value to insert.
    -     * @param offset { Number } The offset to insert the value at.
    -     *
    -     * @return this
    -     */
    -    insertDoubleLE(value: number, offset: number): SmartBuffer;
    -    /**
    -     * Reads a String from the current read position.
    -     *
    -     * @param arg1 { Number | String } The number of bytes to read as a String, or the BufferEncoding to use for
    -     *             the string (Defaults to instance level encoding).
    -     * @param encoding { String } The BufferEncoding to use for the string (Defaults to instance level encoding).
    -     *
    -     * @return { String }
    -     */
    -    readString(arg1?: number | BufferEncoding, encoding?: BufferEncoding): string;
    -    /**
    -     * Inserts a String
    -     *
    -     * @param value { String } The String value to insert.
    -     * @param offset { Number } The offset to insert the string at.
    -     * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding).
    -     *
    -     * @return this
    -     */
    -    insertString(value: string, offset: number, encoding?: BufferEncoding): SmartBuffer;
    -    /**
    -     * Writes a String
    -     *
    -     * @param value { String } The String value to write.
    -     * @param arg2 { Number | String } The offset to write the string at, or the BufferEncoding to use.
    -     * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding).
    -     *
    -     * @return this
    -     */
    -    writeString(value: string, arg2?: number | BufferEncoding, encoding?: BufferEncoding): SmartBuffer;
    -    /**
    -     * Reads a null-terminated String from the current read position.
    -     *
    -     * @param encoding { String } The BufferEncoding to use for the string (Defaults to instance level encoding).
    -     *
    -     * @return { String }
    -     */
    -    readStringNT(encoding?: BufferEncoding): string;
    -    /**
    -     * Inserts a null-terminated String.
    -     *
    -     * @param value { String } The String value to write.
    -     * @param arg2 { Number | String } The offset to write the string to, or the BufferEncoding to use.
    -     * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding).
    -     *
    -     * @return this
    -     */
    -    insertStringNT(value: string, offset: number, encoding?: BufferEncoding): SmartBuffer;
    -    /**
    -     * Writes a null-terminated String.
    -     *
    -     * @param value { String } The String value to write.
    -     * @param arg2 { Number | String } The offset to write the string to, or the BufferEncoding to use.
    -     * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding).
    -     *
    -     * @return this
    -     */
    -    writeStringNT(value: string, arg2?: number | BufferEncoding, encoding?: BufferEncoding): SmartBuffer;
    -    /**
    -     * Reads a Buffer from the internal read position.
    -     *
    -     * @param length { Number } The length of data to read as a Buffer.
    -     *
    -     * @return { Buffer }
    -     */
    -    readBuffer(length?: number): Buffer;
    -    /**
    -     * Writes a Buffer to the current write position.
    -     *
    -     * @param value { Buffer } The Buffer to write.
    -     * @param offset { Number } The offset to write the Buffer to.
    -     *
    -     * @return this
    -     */
    -    insertBuffer(value: Buffer, offset: number): SmartBuffer;
    -    /**
    -     * Writes a Buffer to the current write position.
    -     *
    -     * @param value { Buffer } The Buffer to write.
    -     * @param offset { Number } The offset to write the Buffer to.
    -     *
    -     * @return this
    -     */
    -    writeBuffer(value: Buffer, offset?: number): SmartBuffer;
    -    /**
    -     * Reads a null-terminated Buffer from the current read poisiton.
    -     *
    -     * @return { Buffer }
    -     */
    -    readBufferNT(): Buffer;
    -    /**
    -     * Inserts a null-terminated Buffer.
    -     *
    -     * @param value { Buffer } The Buffer to write.
    -     * @param offset { Number } The offset to write the Buffer to.
    -     *
    -     * @return this
    -     */
    -    insertBufferNT(value: Buffer, offset: number): SmartBuffer;
    -    /**
    -     * Writes a null-terminated Buffer.
    -     *
    -     * @param value { Buffer } The Buffer to write.
    -     * @param offset { Number } The offset to write the Buffer to.
    -     *
    -     * @return this
    -     */
    -    writeBufferNT(value: Buffer, offset?: number): SmartBuffer;
    -    /**
    -     * Clears the SmartBuffer instance to its original empty state.
    -     */
    -    clear(): SmartBuffer;
    -    /**
    -     * Gets the remaining data left to be read from the SmartBuffer instance.
    -     *
    -     * @return { Number }
    -     */
    -    remaining(): number;
    -    /**
    -     * Gets the current read offset value of the SmartBuffer instance.
    -     *
    -     * @return { Number }
    -     */
    -    /**
    -    * Sets the read offset value of the SmartBuffer instance.
    -    *
    -    * @param offset { Number } - The offset value to set.
    -    */
    -    readOffset: number;
    -    /**
    -     * Gets the current write offset value of the SmartBuffer instance.
    -     *
    -     * @return { Number }
    -     */
    -    /**
    -    * Sets the write offset value of the SmartBuffer instance.
    -    *
    -    * @param offset { Number } - The offset value to set.
    -    */
    -    writeOffset: number;
    -    /**
    -     * Gets the currently set string encoding of the SmartBuffer instance.
    -     *
    -     * @return { BufferEncoding } The string Buffer encoding currently set.
    -     */
    -    /**
    -    * Sets the string encoding of the SmartBuffer instance.
    -    *
    -    * @param encoding { BufferEncoding } The string Buffer encoding to set.
    -    */
    -    encoding: BufferEncoding;
    -    /**
    -     * Gets the underlying internal Buffer. (This includes unmanaged data in the Buffer)
    -     *
    -     * @return { Buffer } The Buffer value.
    -     */
    -    readonly internalBuffer: Buffer;
    -    /**
    -     * Gets the value of the internal managed Buffer (Includes managed data only)
    -     *
    -     * @param { Buffer }
    -     */
    -    toBuffer(): Buffer;
    -    /**
    -     * Gets the String value of the internal managed Buffer
    -     *
    -     * @param encoding { String } The BufferEncoding to display the Buffer as (defaults to instance level encoding).
    -     */
    -    toString(encoding?: BufferEncoding): string;
    -    /**
    -     * Destroys the SmartBuffer instance.
    -     */
    -    destroy(): SmartBuffer;
    -    /**
    -     * Handles inserting and writing strings.
    -     *
    -     * @param value { String } The String value to insert.
    -     * @param isInsert { Boolean } True if inserting a string, false if writing.
    -     * @param arg2 { Number | String } The offset to insert the string at, or the BufferEncoding to use.
    -     * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding).
    -     */
    -    private _handleString;
    -    /**
    -     * Handles writing or insert of a Buffer.
    -     *
    -     * @param value { Buffer } The Buffer to write.
    -     * @param offset { Number } The offset to write the Buffer to.
    -     */
    -    private _handleBuffer;
    -    /**
    -     * Ensures that the internal Buffer is large enough to read data.
    -     *
    -     * @param length { Number } The length of the data that needs to be read.
    -     * @param offset { Number } The offset of the data that needs to be read.
    -     */
    -    private ensureReadable;
    -    /**
    -     * Ensures that the internal Buffer is large enough to insert data.
    -     *
    -     * @param dataLength { Number } The length of the data that needs to be written.
    -     * @param offset { Number } The offset of the data to be written.
    -     */
    -    private ensureInsertable;
    -    /**
    -     * Ensures that the internal Buffer is large enough to write data.
    -     *
    -     * @param dataLength { Number } The length of the data that needs to be written.
    -     * @param offset { Number } The offset of the data to be written (defaults to writeOffset).
    -     */
    -    private _ensureWriteable;
    -    /**
    -     * Ensures that the internal Buffer is large enough to write at least the given amount of data.
    -     *
    -     * @param minLength { Number } The minimum length of the data needs to be written.
    -     */
    -    private _ensureCapacity;
    -    /**
    -     * Reads a numeric number value using the provided function.
    -     *
    -     * @typeparam T { number | bigint } The type of the value to be read
    -     *
    -     * @param func { Function(offset: number) => number } The function to read data on the internal Buffer with.
    -     * @param byteSize { Number } The number of bytes read.
    -     * @param offset { Number } The offset to read from (optional). When this is not provided, the managed readOffset is used instead.
    -     *
    -     * @returns { T } the number value
    -     */
    -    private _readNumberValue;
    -    /**
    -     * Inserts a numeric number value based on the given offset and value.
    -     *
    -     * @typeparam T { number | bigint } The type of the value to be written
    -     *
    -     * @param func { Function(offset: T, offset?) => number} The function to write data on the internal Buffer with.
    -     * @param byteSize { Number } The number of bytes written.
    -     * @param value { T } The number value to write.
    -     * @param offset { Number } the offset to write the number at (REQUIRED).
    -     *
    -     * @returns SmartBuffer this buffer
    -     */
    -    private _insertNumberValue;
    -    /**
    -     * Writes a numeric number value based on the given offset and value.
    -     *
    -     * @typeparam T { number | bigint } The type of the value to be written
    -     *
    -     * @param func { Function(offset: T, offset?) => number} The function to write data on the internal Buffer with.
    -     * @param byteSize { Number } The number of bytes written.
    -     * @param value { T } The number value to write.
    -     * @param offset { Number } the offset to write the number at (REQUIRED).
    -     *
    -     * @returns SmartBuffer this buffer
    -     */
    -    private _writeNumberValue;
    -}
    -export { SmartBufferOptions, SmartBuffer };
    diff --git a/deps/npm/node_modules/smart-buffer/typings/utils.d.ts b/deps/npm/node_modules/smart-buffer/typings/utils.d.ts
    deleted file mode 100644
    index b32b4d44c04c1d..00000000000000
    --- a/deps/npm/node_modules/smart-buffer/typings/utils.d.ts
    +++ /dev/null
    @@ -1,66 +0,0 @@
    -/// 
    -import { SmartBuffer } from './smartbuffer';
    -import { Buffer } from 'buffer';
    -/**
    - * Error strings
    - */
    -declare const ERRORS: {
    -    INVALID_ENCODING: string;
    -    INVALID_SMARTBUFFER_SIZE: string;
    -    INVALID_SMARTBUFFER_BUFFER: string;
    -    INVALID_SMARTBUFFER_OBJECT: string;
    -    INVALID_OFFSET: string;
    -    INVALID_OFFSET_NON_NUMBER: string;
    -    INVALID_LENGTH: string;
    -    INVALID_LENGTH_NON_NUMBER: string;
    -    INVALID_TARGET_OFFSET: string;
    -    INVALID_TARGET_LENGTH: string;
    -    INVALID_READ_BEYOND_BOUNDS: string;
    -    INVALID_WRITE_BEYOND_BOUNDS: string;
    -};
    -/**
    - * Checks if a given encoding is a valid Buffer encoding. (Throws an exception if check fails)
    - *
    - * @param { String } encoding The encoding string to check.
    - */
    -declare function checkEncoding(encoding: BufferEncoding): void;
    -/**
    - * Checks if a given number is a finite integer. (Throws an exception if check fails)
    - *
    - * @param { Number } value The number value to check.
    - */
    -declare function isFiniteInteger(value: number): boolean;
    -/**
    - * Checks if a length value is valid. (Throws an exception if check fails)
    - *
    - * @param { Number } length The value to check.
    - */
    -declare function checkLengthValue(length: any): void;
    -/**
    - * Checks if a offset value is valid. (Throws an exception if check fails)
    - *
    - * @param { Number } offset The value to check.
    - */
    -declare function checkOffsetValue(offset: any): void;
    -/**
    - * Checks if a target offset value is out of bounds. (Throws an exception if check fails)
    - *
    - * @param { Number } offset The offset value to check.
    - * @param { SmartBuffer } buff The SmartBuffer instance to check against.
    - */
    -declare function checkTargetOffset(offset: number, buff: SmartBuffer): void;
    -interface Buffer {
    -    readBigInt64BE(offset?: number): bigint;
    -    readBigInt64LE(offset?: number): bigint;
    -    readBigUInt64BE(offset?: number): bigint;
    -    readBigUInt64LE(offset?: number): bigint;
    -    writeBigInt64BE(value: bigint, offset?: number): number;
    -    writeBigInt64LE(value: bigint, offset?: number): number;
    -    writeBigUInt64BE(value: bigint, offset?: number): number;
    -    writeBigUInt64LE(value: bigint, offset?: number): number;
    -}
    -/**
    - * Throws if Node.js version is too low to support bigint
    - */
    -declare function bigIntAndBufferInt64Check(bufferMethod: keyof Buffer): void;
    -export { ERRORS, isFiniteInteger, checkEncoding, checkOffsetValue, checkLengthValue, checkTargetOffset, bigIntAndBufferInt64Check };
    diff --git a/deps/npm/node_modules/socks-proxy-agent/dist/index.d.ts b/deps/npm/node_modules/socks-proxy-agent/dist/index.d.ts
    deleted file mode 100644
    index 4de33b1252a18c..00000000000000
    --- a/deps/npm/node_modules/socks-proxy-agent/dist/index.d.ts
    +++ /dev/null
    @@ -1,33 +0,0 @@
    -/// 
    -import { SocksProxy } from 'socks';
    -import { Agent, ClientRequest, RequestOptions } from 'agent-base';
    -import { AgentOptions } from 'agent-base';
    -import { Url } from 'url';
    -import net from 'net';
    -import tls from 'tls';
    -interface BaseSocksProxyAgentOptions {
    -    host?: string | null;
    -    port?: string | number | null;
    -    username?: string | null;
    -    tls?: tls.ConnectionOptions | null;
    -}
    -interface SocksProxyAgentOptionsExtra {
    -    timeout?: number;
    -}
    -export interface SocksProxyAgentOptions extends AgentOptions, BaseSocksProxyAgentOptions, Partial> {
    -}
    -export declare class SocksProxyAgent extends Agent {
    -    private readonly shouldLookup;
    -    private readonly proxy;
    -    private readonly tlsConnectionOptions;
    -    timeout: number | null;
    -    constructor(input: string | SocksProxyAgentOptions, options?: SocksProxyAgentOptionsExtra);
    -    /**
    -     * 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: ClientRequest, opts: RequestOptions): Promise;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/socks-proxy-agent/dist/index.js.map b/deps/npm/node_modules/socks-proxy-agent/dist/index.js.map
    deleted file mode 100644
    index e183e8e7a13ce0..00000000000000
    --- a/deps/npm/node_modules/socks-proxy-agent/dist/index.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,iCAAmE;AACnE,2CAAiE;AAEjE,kDAA+B;AAE/B,8CAAqB;AAErB,8CAAqB;AAarB,MAAM,KAAK,GAAG,IAAA,eAAW,EAAC,mBAAmB,CAAC,CAAA;AAE9C,SAAS,eAAe,CAAE,IAA4B;;IACpD,IAAI,IAAI,GAAG,CAAC,CAAA;IACZ,IAAI,MAAM,GAAG,KAAK,CAAA;IAClB,IAAI,IAAI,GAAuB,CAAC,CAAA;IAEhC,MAAM,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAA;IAE1B,IAAI,IAAI,IAAI,IAAI,EAAE;QAChB,MAAM,IAAI,SAAS,CAAC,WAAW,CAAC,CAAA;KACjC;IAED,IAAI,OAAO,IAAI,CAAC,IAAI,KAAK,QAAQ,EAAE;QACjC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAA;KACjB;SAAM,IAAI,OAAO,IAAI,CAAC,IAAI,KAAK,QAAQ,EAAE;QACxC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,CAAC,CAAA;KAC/B;IAED,0EAA0E;IAC1E,iEAAiE;IACjE,IAAI,IAAI,IAAI,IAAI,EAAE;QAChB,IAAI,GAAG,IAAI,CAAA;KACZ;IAED,sEAAsE;IACtE,iBAAiB;IACjB,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,EAAE;QACzB,QAAQ,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;YACtC,KAAK,QAAQ;gBACX,MAAM,GAAG,IAAI,CAAA;YACf,eAAe;YACf,KAAK,SAAS;gBACZ,IAAI,GAAG,CAAC,CAAA;gBACR,MAAK;YACP,KAAK,QAAQ;gBACX,MAAM,GAAG,IAAI,CAAA;YACf,eAAe;YACf,KAAK,OAAO,CAAC,CAAC,sCAAsC;YACpD,KAAK,SAAS;gBACZ,IAAI,GAAG,CAAC,CAAA;gBACR,MAAK;YACP;gBACE,MAAM,IAAI,SAAS,CAAC,8CAA8C,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAA;SAC7F;KACF;IAED,IAAI,OAAO,IAAI,CAAC,IAAI,KAAK,WAAW,EAAE;QACpC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,EAAE;YACtC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAA;SACjB;aAAM;YACL,MAAM,IAAI,SAAS,CAAC,+BAA+B,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;SACxE;KACF;IAED,MAAM,KAAK,GAAe;QACxB,IAAI;QACJ,IAAI;QACJ,IAAI;KACL,CAAA;IAED,IAAI,MAAM,GAAG,MAAA,IAAI,CAAC,MAAM,mCAAI,IAAI,CAAC,QAAQ,CAAA;IACzC,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAA;IAC5B,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,EAAE;QACrB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;QACjC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;QAChB,QAAQ,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;KACnB;IACD,IAAI,MAAM,IAAI,IAAI,EAAE;QAClB,MAAM,CAAC,cAAc,CAAC,KAAK,EAAE,QAAQ,EAAE;YACrC,KAAK,EAAE,MAAM;YACb,UAAU,EAAE,KAAK;SAClB,CAAC,CAAA;KACH;IACD,IAAI,QAAQ,IAAI,IAAI,EAAE;QACpB,MAAM,CAAC,cAAc,CAAC,KAAK,EAAE,UAAU,EAAE;YACvC,KAAK,EAAE,QAAQ;YACf,UAAU,EAAE,KAAK;SAClB,CAAC,CAAA;KACH;IAED,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,CAAA;AAC1B,CAAC;AAED,MAAM,qBAAqB,GAAG,CAAC,KAAsC,EAA0B,EAAE;IAC/F,IAAI,YAAoC,CAAA;IACxC,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QAC7B,YAAY,GAAG,IAAI,GAAG,CAAC,KAAK,CAAC,CAAA;KAC9B;SAAM;QACL,YAAY,GAAG,KAAK,CAAA;KACrB;IACD,IAAI,YAAY,IAAI,IAAI,EAAE;QACxB,MAAM,IAAI,SAAS,CAAC,2DAA2D,CAAC,CAAA;KACjF;IAED,OAAO,YAAY,CAAA;AACrB,CAAC,CAAA;AAID,MAAa,eAAgB,SAAQ,kBAAK;IAMxC,YAAa,KAAsC,EAAE,OAAqC;;QACxF,MAAM,YAAY,GAAG,qBAAqB,CAAC,KAAK,CAAC,CAAA;QACjD,KAAK,CAAC,YAAY,CAAC,CAAA;QAEnB,MAAM,WAAW,GAAG,eAAe,CAAC,YAAY,CAAC,CAAA;QAEjD,IAAI,CAAC,YAAY,GAAG,WAAW,CAAC,MAAM,CAAA;QACtC,IAAI,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAA;QAC9B,IAAI,CAAC,oBAAoB,GAAG,YAAY,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QAC5E,IAAI,CAAC,OAAO,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,mCAAI,IAAI,CAAA;IACzC,CAAC;IAED;;;;;OAKG;IACG,QAAQ,CAAE,GAAkB,EAAE,IAAoB;;;YACtD,MAAM,EAAE,YAAY,EAAE,KAAK,EAAE,OAAO,EAAE,GAAG,IAAI,CAAA;YAE7C,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,IAAI,CAAA;YAEjD,IAAI,IAAI,IAAI,IAAI,EAAE;gBAChB,MAAM,IAAI,KAAK,CAAC,oBAAoB,CAAC,CAAA;aACtC;YAED,IAAI,YAAY,EAAE;gBAChB,mEAAmE;gBACnE,IAAI,GAAG,MAAM,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACnD,0DAA0D;oBAC1D,MAAM,QAAQ,GAAG,cAAc,aAAd,cAAc,cAAd,cAAc,GAAI,aAAG,CAAC,MAAM,CAAA;oBAC7C,QAAQ,CAAC,IAAK,EAAE,EAAE,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;wBAC/B,IAAI,GAAG,EAAE;4BACP,MAAM,CAAC,GAAG,CAAC,CAAA;yBACZ;6BAAM;4BACL,OAAO,CAAC,GAAG,CAAC,CAAA;yBACb;oBACH,CAAC,CAAC,CAAA;gBACJ,CAAC,CAAC,CAAA;aACH;YAED,MAAM,SAAS,GAAuB;gBACpC,KAAK;gBACL,WAAW,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE;gBAC3B,OAAO,EAAE,SAAS;gBAClB,OAAO,EAAE,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,SAAS;aAC9B,CAAA;YAED,MAAM,OAAO,GAAG,CAAC,SAAyB,EAAE,EAAE;gBAC5C,GAAG,CAAC,OAAO,EAAE,CAAA;gBACb,MAAM,CAAC,OAAO,EAAE,CAAA;gBAChB,IAAI,SAAS;oBAAE,SAAS,CAAC,OAAO,EAAE,CAAA;YACpC,CAAC,CAAA;YAED,KAAK,CAAC,qCAAqC,EAAE,SAAS,CAAC,CAAA;YACvD,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,mBAAW,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAA;YAChE,KAAK,CAAC,6CAA6C,CAAC,CAAA;YAEpD,IAAI,OAAO,KAAK,IAAI,EAAE;gBACpB,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;gBAC1B,MAAM,CAAC,EAAE,CAAC,SAAS,EAAE,GAAG,EAAE,CAAC,OAAO,EAAE,CAAC,CAAA;aACtC;YAED,IAAI,IAAI,CAAC,cAAc,EAAE;gBACvB,sDAAsD;gBACtD,8CAA8C;gBAC9C,KAAK,CAAC,oCAAoC,CAAC,CAAA;gBAC3C,MAAM,UAAU,GAAG,MAAA,IAAI,CAAC,UAAU,mCAAI,IAAI,CAAC,IAAI,CAAA;gBAE/C,MAAM,SAAS,GAAG,aAAG,CAAC,OAAO,+CACxB,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,CAAC,KACjD,MAAM;oBACN,UAAU,KACP,IAAI,CAAC,oBAAoB,EAC5B,CAAA;gBAEF,SAAS,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,KAAK,EAAE,EAAE;oBAChC,KAAK,CAAC,kBAAkB,EAAE,KAAK,CAAC,OAAO,CAAC,CAAA;oBACxC,OAAO,CAAC,SAAS,CAAC,CAAA;gBACpB,CAAC,CAAC,CAAA;gBAEF,OAAO,SAAS,CAAA;aACjB;YAED,OAAO,MAAM,CAAA;;KACd;CACF;AA7FD,0CA6FC;AAED,SAAS,IAAI,CACX,GAAM,EACN,GAAG,IAAO;IAIV,MAAM,GAAG,GAAG,EAAgD,CAAA;IAC5D,IAAI,GAAqB,CAAA;IACzB,KAAK,GAAG,IAAI,GAAG,EAAE;QACf,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;YACvB,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAA;SACpB;KACF;IACD,OAAO,GAAG,CAAA;AACZ,CAAC"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/socks/build/client/socksclient.js.map b/deps/npm/node_modules/socks/build/client/socksclient.js.map
    deleted file mode 100644
    index f01f317e651bd2..00000000000000
    --- a/deps/npm/node_modules/socks/build/client/socksclient.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"socksclient.js","sourceRoot":"","sources":["../../src/client/socksclient.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,mCAAoC;AACpC,2BAA2B;AAC3B,yBAAyB;AACzB,+CAAyC;AACzC,mDAkB6B;AAC7B,+CAG2B;AAC3B,2DAAsD;AACtD,yCAA8D;AAw7B5D,iGAx7BM,uBAAgB,OAw7BN;AA95BlB,MAAM,WAAY,SAAQ,qBAAY;IAgBpC,YAAY,OAA2B;QACrC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,OAAO,qBACP,OAAO,CACX,CAAC;QAEF,8BAA8B;QAC9B,IAAA,oCAA0B,EAAC,OAAO,CAAC,CAAC;QAEpC,gBAAgB;QAChB,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,OAAO,CAAC,CAAC;IAC1C,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,gBAAgB,CACrB,OAA2B,EAC3B,QAGS;QAET,OAAO,IAAI,OAAO,CAA8B,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YAClE,8BAA8B;YAC9B,IAAI;gBACF,IAAA,oCAA0B,EAAC,OAAO,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC;aAClD;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBACjF;qBAAM;oBACL,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;iBACpB;aACF;YAED,MAAM,MAAM,GAAG,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC;YACxC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;YACxC,MAAM,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,IAAiC,EAAE,EAAE;gBAC/D,MAAM,CAAC,kBAAkB,EAAE,CAAC;gBAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;oBACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,oDAAoD;iBACpE;qBAAM;oBACL,OAAO,CAAC,IAAI,CAAC,CAAC;iBACf;YACH,CAAC,CAAC,CAAC;YAEH,kDAAkD;YAClD,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,GAAU,EAAE,EAAE;gBAClC,MAAM,CAAC,kBAAkB,EAAE,CAAC;gBAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBAC1E;qBAAM;oBACL,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;YACH,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;OAQG;IACH,MAAM,CAAC,qBAAqB,CAC1B,OAAgC,EAChC,QAGS;QAET,qDAAqD;QACrD,OAAO,IAAI,OAAO,CAA8B,CAAO,OAAO,EAAE,MAAM,EAAE,EAAE;YACxE,mCAAmC;YACnC,IAAI;gBACF,IAAA,yCAA+B,EAAC,OAAO,CAAC,CAAC;aAC1C;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBACjF;qBAAM;oBACL,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;iBACpB;aACF;YAED,kBAAkB;YAClB,IAAI,OAAO,CAAC,cAAc,EAAE;gBAC1B,IAAA,mBAAY,EAAC,OAAO,CAAC,OAAO,CAAC,CAAC;aAC/B;YAED,IAAI;gBACF,IAAI,IAAgB,CAAC;gBAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;oBAC/C,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBAErC,0HAA0H;oBAC1H,MAAM,eAAe,GACnB,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;wBAC9B,CAAC,CAAC,OAAO,CAAC,WAAW;wBACrB,CAAC,CAAC;4BACE,IAAI,EACF,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;gCAC3B,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS;4BAClC,IAAI,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;yBAClC,CAAC;oBAER,4CAA4C;oBAC5C,MAAM,MAAM,GAAG,MAAM,WAAW,CAAC,gBAAgB,CAAC;wBAChD,OAAO,EAAE,SAAS;wBAClB,KAAK,EAAE,SAAS;wBAChB,WAAW,EAAE,eAAe;wBAC5B,eAAe,EAAE,IAAI;qBACtB,CAAC,CAAC;oBAEH,wCAAwC;oBACxC,IAAI,GAAG,IAAI,IAAI,MAAM,CAAC,MAAM,CAAC;iBAC9B;gBAED,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,IAAI,EAAE,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC;oBAC/B,OAAO,CAAC,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC,CAAC,oDAAoD;iBAC9E;qBAAM;oBACL,OAAO,CAAC,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC;iBACzB;aACF;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBAC1E;qBAAM;oBACL,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;aACF;QACH,CAAC,CAAA,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,cAAc,CAAC,OAA6B;QACjD,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,IAAI,CAAC,CAAC,CAAC;QAE1C,qBAAqB;QACrB,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YACvC,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;SACxD;aAAM,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YAC9C,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;SACxD;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,QAAQ,CAAC,CAAC;YACzC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;YAC5D,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;SAC3C;QAED,OAAO;QACP,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAE5C,OAAO;QACP,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAE/B,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAC;IACzB,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,aAAa,CAAC,IAAY;QAC/B,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;QAEpB,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;QACrC,MAAM,QAAQ,GAAmB,IAAI,CAAC,SAAS,EAAE,CAAC;QAClD,IAAI,UAAU,CAAC;QAEf,IAAI,QAAQ,KAAK,0BAAc,CAAC,IAAI,EAAE;YACpC,UAAU,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC,CAAC;SAC/C;aAAM,IAAI,QAAQ,KAAK,0BAAc,CAAC,IAAI,EAAE;YAC3C,UAAU,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC;SAC/C;aAAM;YACL,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;SAChD;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QAEvC,OAAO;YACL,WAAW;YACX,UAAU,EAAE;gBACV,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,UAAU;aACjB;YACD,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE;SACxB,CAAC;IACJ,CAAC;IAED;;OAEG;IACK,QAAQ,CAAC,QAA0B;QACzC,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK,EAAE;YACzC,IAAI,CAAC,KAAK,GAAG,QAAQ,CAAC;SACvB;IACH,CAAC;IAED;;;OAGG;IACI,OAAO,CAAC,cAAuB;QACpC,IAAI,CAAC,cAAc,GAAG,CAAC,IAAY,EAAE,EAAE,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACzE,IAAI,CAAC,OAAO,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC;QAC3C,IAAI,CAAC,OAAO,GAAG,CAAC,GAAU,EAAE,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;QACxD,IAAI,CAAC,SAAS,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC;QAE/C,+CAA+C;QAC/C,MAAM,KAAK,GAAG,UAAU,CACtB,GAAG,EAAE,CAAC,IAAI,CAAC,oBAAoB,EAAE,EACjC,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,2BAAe,CACxC,CAAC;QAEF,8EAA8E;QAC9E,IAAI,KAAK,CAAC,KAAK,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,UAAU,EAAE;YACpD,KAAK,CAAC,KAAK,EAAE,CAAC;SACf;QAED,yGAAyG;QACzG,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,MAAM,GAAG,cAAc,CAAC;SAC9B;aAAM;YACL,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,CAAC,MAAM,EAAE,CAAC;SAChC;QAED,gCAAgC;QAChC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QAE5C,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,UAAU,CAAC,CAAC;QAC3C,IAAI,CAAC,aAAa,GAAG,IAAI,6BAAa,EAAE,CAAC;QAEzC,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAC7B;aAAM;YACJ,IAAI,CAAC,MAAqB,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC,CAAC;YAE7D,IACE,IAAI,CAAC,OAAO,CAAC,eAAe,KAAK,SAAS;gBAC1C,IAAI,CAAC,OAAO,CAAC,eAAe,KAAK,IAAI,EACrC;gBACC,IAAI,CAAC,MAAqB,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;aACxE;SACF;QAED,6FAA6F;QAC7F,IAAI,CAAC,mBAAmB,CAAC,aAAa,EAAE,CAAC,IAAI,EAAE,EAAE;YAC/C,YAAY,CAAC,GAAG,EAAE;gBAChB,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE;oBACjC,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;oBAErE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;iBACtC;gBACD,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;YACvB,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAED,+EAA+E;IACvE,gBAAgB;QACtB,uCACK,IAAI,CAAC,OAAO,CAAC,cAAc,KAC9B,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,EAC7D,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAC7B;IACJ,CAAC;IAED;;;OAGG;IACK,oBAAoB;QAC1B,IACE,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,WAAW;YAC3C,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,yBAAyB,EACzD;YACA,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,uBAAuB,CAAC,CAAC;SAClD;IACH,CAAC;IAED;;OAEG;IACK,gBAAgB;QACtB,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,SAAS,CAAC,CAAC;QAE1C,0BAA0B;QAC1B,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;YACjC,IAAI,CAAC,0BAA0B,EAAE,CAAC;SACnC;aAAM;YACL,IAAI,CAAC,0BAA0B,EAAE,CAAC;SACnC;QAED,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,oBAAoB,CAAC,CAAC;IACvD,CAAC;IAED;;;OAGG;IACK,qBAAqB,CAAC,IAAY;QACxC;;;UAGE;QACF,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAEhC,6BAA6B;QAC7B,IAAI,CAAC,WAAW,EAAE,CAAC;IACrB,CAAC;IAED;;OAEG;IACK,WAAW;QACjB,mFAAmF;QACnF,OACE,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,WAAW;YAC3C,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK;YACrC,IAAI,CAAC,aAAa,CAAC,MAAM,IAAI,IAAI,CAAC,4BAA4B,EAC9D;YACA,gDAAgD;YAChD,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,oBAAoB,EAAE;gBACxD,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;oBACjC,4CAA4C;oBAC5C,IAAI,CAAC,kCAAkC,EAAE,CAAC;iBAC3C;qBAAM;oBACL,wDAAwD;oBACxD,IAAI,CAAC,oCAAoC,EAAE,CAAC;iBAC7C;gBACD,wDAAwD;aACzD;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,kBAAkB,EAAE;gBAC7D,IAAI,CAAC,kDAAkD,EAAE,CAAC;gBAC1D,6DAA6D;aAC9D;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,kBAAkB,EAAE;gBAC7D,IAAI,CAAC,kCAAkC,EAAE,CAAC;gBAC1C,mEAAmE;aACpE;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,yBAAyB,EAAE;gBACpE,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;oBACjC,IAAI,CAAC,sCAAsC,EAAE,CAAC;iBAC/C;qBAAM;oBACL,IAAI,CAAC,sCAAsC,EAAE,CAAC;iBAC/C;aACF;iBAAM;gBACL,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,aAAa,CAAC,CAAC;gBACvC,MAAM;aACP;SACF;IACH,CAAC;IAED;;;OAGG;IACK,cAAc;QACpB,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,YAAY,CAAC,CAAC;IACxC,CAAC;IAED;;;OAGG;IACK,cAAc,CAAC,GAAU;QAC/B,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IAChC,CAAC;IAED;;OAEG;IACK,4BAA4B;QAClC,6FAA6F;QAC7F,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QACpB,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QACxD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;IACxD,CAAC;IAED;;;OAGG;IACK,WAAW,CAAC,GAAW;QAC7B,2FAA2F;QAC3F,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK,EAAE;YACzC,+BAA+B;YAC/B,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,KAAK,CAAC,CAAC;YAEtC,iBAAiB;YACjB,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;YAEtB,4BAA4B;YAC5B,IAAI,CAAC,4BAA4B,EAAE,CAAC;YAEpC,sBAAsB;YACtB,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,uBAAgB,CAAC,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED;;OAEG;IACK,0BAA0B;QAChC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;QAE/C,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAElD,iBAAiB;QACjB,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YAC7C,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;YAC7D,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YAC3B,sBAAsB;SACvB;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YAC3B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACnD;QAED,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,cAAc,CAAC;QAC7C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;IACrC,CAAC;IAED;;;OAGG;IACK,kCAAkC;QACxC,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YACtC,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,6BAA6B,OACrC,0BAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CACxB,GAAG,CACJ,CAAC;SACH;aAAM;YACL,gBAAgB;YAChB,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,IAAI,EAAE;gBAC5D,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;gBAEpB,MAAM,UAAU,GAAoB;oBAClC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;oBACzB,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;iBACvC,CAAC;gBAEF,yCAAyC;gBACzC,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBACD,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,yBAAyB,CAAC,CAAC;gBAC1D,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;gBAEtD,mBAAmB;aACpB;iBAAM;gBACL,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;aACjD;SACF;IACH,CAAC;IAED;;;OAGG;IACK,sCAAsC;QAC5C,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YACtC,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,0CAA0C,OAClD,0BAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CACxB,GAAG,CACJ,CAAC;SACH;aAAM;YACL,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;YAEpB,MAAM,UAAU,GAAoB;gBAClC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;gBACzB,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;aACvC,CAAC;YAEF,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;YAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;YACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED;;OAEG;IACK,0BAA0B;QAChC,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAE/B,wCAAwC;QACxC,MAAM,oBAAoB,GAAG,CAAC,sBAAU,CAAC,MAAM,CAAC,CAAC;QAEjD,6FAA6F;QAC7F,sHAAsH;QACtH,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,EAAE;YAC5D,oBAAoB,CAAC,IAAI,CAAC,sBAAU,CAAC,QAAQ,CAAC,CAAC;SAChD;QAED,sBAAsB;QACtB,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,KAAK,SAAS,EAAE;YACvD,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;SAClE;QAED,yBAAyB;QACzB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;QAC7C,KAAK,MAAM,UAAU,IAAI,oBAAoB,EAAE;YAC7C,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;SAC7B;QAED,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,8BAA8B,CAAC;QAC7D,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,oBAAoB,CAAC,CAAC;IACvD,CAAC;IAED;;;OAGG;IACK,oCAAoC;QAC1C,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE;YACpB,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,yCAAyC,CAAC,CAAC;SACpE;aAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,qCAAyB,EAAE;YAChD,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,+CAA+C,CAAC,CAAC;SAC1E;aAAM;YACL,6EAA6E;YAC7E,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,sBAAU,CAAC,MAAM,EAAE;gBACjC,IAAI,CAAC,oBAAoB,GAAG,sBAAU,CAAC,MAAM,CAAC;gBAC9C,IAAI,CAAC,wBAAwB,EAAE,CAAC;gBAChC,0EAA0E;aAC3E;iBAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,sBAAU,CAAC,QAAQ,EAAE;gBAC1C,IAAI,CAAC,oBAAoB,GAAG,sBAAU,CAAC,QAAQ,CAAC;gBAChD,IAAI,CAAC,gCAAgC,EAAE,CAAC;gBACxC,qFAAqF;aACtF;iBAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,EAAE;gBAC5D,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC;gBAClE,IAAI,CAAC,8BAA8B,EAAE,CAAC;aACvC;iBAAM;gBACL,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,4CAA4C,CAAC,CAAC;aACvE;SACF;IACH,CAAC;IAED;;;;OAIG;IACK,gCAAgC;QACtC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;QAC/C,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,IAAI,EAAE,CAAC;QAEnD,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC;QAC3C,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACzB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC;QAC7C,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;QAE3B,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,oCAAoC,CAAC;QACnE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;IACrD,CAAC;IAEa,8BAA8B;;YAC1C,IAAI,CAAC,4BAA4B;gBAC/B,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,CAAC;YAC/C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,2BAA2B,EAAE,CAAC,CAAC;YAC1E,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;QACrD,CAAC;KAAA;IAEa,uCAAuC,CAAC,IAAY;;YAChE,OAAO,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,4BAA4B,CAAC,IAAI,CAAC,CAAC;QACrE,CAAC;KAAA;IAEa,iDAAiD,CAC7D,IAAY;;YAEZ,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;QAC1B,CAAC;KAAA;IAEa,mDAAmD,CAC/D,IAAY;;YAEZ,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;QAC1B,CAAC;KAAA;IAED;;;OAGG;IACW,kDAAkD;;YAC9D,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,8BAA8B,CAAC,CAAC;YAE/D,IAAI,UAAU,GAAG,KAAK,CAAC;YAEvB,IAAI,IAAI,CAAC,oBAAoB,KAAK,sBAAU,CAAC,MAAM,EAAE;gBACnD,UAAU,GAAG,MAAM,IAAI,CAAC,iDAAiD,CACvE,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAC1B,CAAC;aACH;iBAAM,IAAI,IAAI,CAAC,oBAAoB,KAAK,sBAAU,CAAC,QAAQ,EAAE;gBAC5D,UAAU;oBACR,MAAM,IAAI,CAAC,mDAAmD,CAC5D,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAC1B,CAAC;aACL;iBAAM,IACL,IAAI,CAAC,oBAAoB,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,EACnE;gBACA,UAAU,GAAG,MAAM,IAAI,CAAC,uCAAuC,CAC7D,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,CAAC,CACrE,CAAC;aACH;YAED,IAAI,CAAC,UAAU,EAAE;gBACf,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,0BAA0B,CAAC,CAAC;aACrD;iBAAM;gBACL,IAAI,CAAC,wBAAwB,EAAE,CAAC;aACjC;QACH,CAAC;KAAA;IAED;;OAEG;IACK,wBAAwB;QAC9B,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAE/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAEtB,sBAAsB;QACtB,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YAC7C,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;SAC9D;aAAM,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YACpD,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;SAC9D;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,QAAQ,CAAC,CAAC;YACzC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACtD,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACjD;QACD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAElD,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,oBAAoB,CAAC;QACnD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;IACrD,CAAC;IAED;;;OAGG;IACK,kCAAkC;QACxC,+EAA+E;QAC/E,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE1C,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YAC9D,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,mCAAmC,MAC3C,0BAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,EAAE,CACH,CAAC;SACH;aAAM;YACL,oBAAoB;YACpB,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YAE9B,IAAI,UAA2B,CAAC;YAChC,IAAI,IAAiB,CAAC;YAEtB,OAAO;YACP,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBACvC,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBAEF,4DAA4D;gBAC5D,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBAED,WAAW;aACZ;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,QAAQ,EAAE;gBAClD,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC7B,MAAM,UAAU,GACd,uCAA2B,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,CAAC,qCAAqC;gBAEvG,8BAA8B;gBAC9B,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC;oBACjC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBACF,OAAO;aACR;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBAC9C,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;aACH;YAED,6BAA6B;YAC7B,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,qBAAqB,CAAC,CAAC;YAEtD,gEAAgE;YAChE,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,OAAO,EAAE;gBAC/D,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;aAC7D;iBAAM,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,IAAI,EAAE;gBACnE;mHACmG;gBACnG,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,yBAAyB,CAAC,CAAC;gBAC1D,IAAI,CAAC,4BAA4B;oBAC/B,uCAA2B,CAAC,oBAAoB,CAAC;gBACnD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;gBACtD;;;kBAGE;aACH;iBAAM,IACL,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,SAAS,EAC7D;gBACA,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;oBACvB,UAAU;oBACV,MAAM,EAAE,IAAI,CAAC,MAAM;iBACpB,CAAC,CAAC;aACJ;SACF;IACH,CAAC;IAED;;OAEG;IACK,sCAAsC;QAC5C,+EAA+E;QAC/E,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE1C,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YAC9D,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,0CAA0C,MAClD,0BAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,EAAE,CACH,CAAC;SACH;aAAM;YACL,oBAAoB;YACpB,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YAE9B,IAAI,UAA2B,CAAC;YAChC,IAAI,IAAiB,CAAC;YAEtB,OAAO;YACP,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBACvC,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBAEF,4DAA4D;gBAC5D,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBAED,WAAW;aACZ;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,QAAQ,EAAE;gBAClD,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC7B,MAAM,UAAU,GACd,uCAA2B,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,CAAC,8BAA8B;gBAEhG,8BAA8B;gBAC9B,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC;oBACjC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBACF,OAAO;aACR;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBAC9C,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;aACH;YAED,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;YAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;YACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED,IAAI,kBAAkB;QACpB,yBACK,IAAI,CAAC,OAAO,EACf;IACJ,CAAC;CACF;AAGC,kCAAW"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/socks/build/common/constants.js.map b/deps/npm/node_modules/socks/build/common/constants.js.map
    deleted file mode 100644
    index c1e070dea4ac3c..00000000000000
    --- a/deps/npm/node_modules/socks/build/common/constants.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/common/constants.ts"],"names":[],"mappings":";;;AAIA,MAAM,eAAe,GAAG,KAAK,CAAC;AA4M5B,0CAAe;AAxMjB,kBAAkB;AAClB,MAAM,MAAM,GAAG;IACb,mBAAmB,EAAE,wFAAwF;IAC7G,+BAA+B,EAAE,oGAAoG;IACrI,wBAAwB,EAAE,8FAA8F;IACxH,oCAAoC,EAAE,2CAA2C;IACjF,uCAAuC,EAAE,uFAAuF;IAChI,8BAA8B,EAAE,4CAA4C;IAC5E,gCAAgC,EAAE,8EAA8E;IAChH,sCAAsC,EAAE,2DAA2D;IACnG,wCAAwC,EAAE,oDAAoD;IAC9F,0CAA0C,EAAE,kKAAkK;IAC9M,gBAAgB,EAAE,mBAAmB;IACrC,YAAY,EAAE,eAAe;IAC7B,uBAAuB,EAAE,4BAA4B;IACrD,aAAa,EAAE,qDAAqD;IACpE,8BAA8B,EAAE,4CAA4C;IAC5E,6BAA6B,EAAE,kCAAkC;IACjE,uCAAuC,EAAE,6CAA6C;IACtF,0CAA0C,EAAE,iDAAiD;IAC7F,qCAAqC,EAAE,oDAAoD;IAC3F,yCAAyC,EAAE,mEAAmE;IAC9G,+CAA+C,EAAE,6EAA6E;IAC9H,4CAA4C,EAAE,yEAAyE;IACvH,0BAA0B,EAAE,8BAA8B;IAC1D,2BAA2B,EAAE,kDAAkD;IAC/E,mCAAmC,EAAE,kCAAkC;IACvE,uCAAuC,EAAE,sDAAsD;IAC/F,0CAA0C,EAAE,iDAAiD;CAC9F,CAAC;AA4KA,wBAAM;AA1KR,MAAM,2BAA2B,GAAG;IAClC,8BAA8B,EAAE,CAAC;IACjC,oCAAoC,EAAE,CAAC;IACvC,gDAAgD;IAChD,oBAAoB,EAAE,CAAC;IACvB,kBAAkB,EAAE,EAAE;IACtB,kBAAkB,EAAE,EAAE;IACtB,sBAAsB,EAAE,CAAC,cAAsB,EAAE,EAAE,CAAC,cAAc,GAAG,CAAC;IACtE,gDAAgD;IAChD,cAAc,EAAE,CAAC,EAAE,2BAA2B;CAC/C,CAAC;AAgLA,kEAA2B;AA5K7B,IAAK,YAIJ;AAJD,WAAK,YAAY;IACf,qDAAc,CAAA;IACd,+CAAW,CAAA;IACX,yDAAgB,CAAA;AAClB,CAAC,EAJI,YAAY,KAAZ,YAAY,QAIhB;AA0JC,oCAAY;AAxJd,IAAK,cAKJ;AALD,WAAK,cAAc;IACjB,0DAAc,CAAA;IACd,wDAAa,CAAA;IACb,4DAAe,CAAA;IACf,sEAAoB,CAAA;AACtB,CAAC,EALI,cAAc,KAAd,cAAc,QAKlB;AAoJC,wCAAc;AAlJhB,IAAK,UAIJ;AAJD,WAAK,UAAU;IACb,+CAAa,CAAA;IACb,+CAAa,CAAA;IACb,mDAAe,CAAA;AACjB,CAAC,EAJI,UAAU,KAAV,UAAU,QAId;AA+IC,gCAAU;AA7IZ,MAAM,wBAAwB,GAAG,IAAI,CAAC;AA0JpC,4DAAwB;AAzJ1B,MAAM,sBAAsB,GAAG,IAAI,CAAC;AA0JlC,wDAAsB;AAxJxB,MAAM,yBAAyB,GAAG,IAAI,CAAC;AAyJrC,8DAAyB;AAvJ3B,IAAK,cAUJ;AAVD,WAAK,cAAc;IACjB,yDAAc,CAAA;IACd,yDAAc,CAAA;IACd,+DAAiB,CAAA;IACjB,+EAAyB,CAAA;IACzB,yEAAsB,CAAA;IACtB,6EAAwB,CAAA;IACxB,+DAAiB,CAAA;IACjB,iFAA0B,CAAA;IAC1B,iFAA0B,CAAA;AAC5B,CAAC,EAVI,cAAc,KAAd,cAAc,QAUlB;AAgIC,wCAAc;AA9HhB,IAAK,cAIJ;AAJD,WAAK,cAAc;IACjB,mDAAW,CAAA;IACX,2DAAe,CAAA;IACf,mDAAW,CAAA;AACb,CAAC,EAJI,cAAc,KAAd,cAAc,QAIlB;AAyHC,wCAAc;AAvHhB,IAAK,gBAcJ;AAdD,WAAK,gBAAgB;IACnB,6DAAW,CAAA;IACX,mEAAc,CAAA;IACd,iEAAa,CAAA;IACb,uFAAwB,CAAA;IACxB,+GAAoC,CAAA;IACpC,mFAAsB,CAAA;IACtB,2GAAkC,CAAA;IAClC,mFAAsB,CAAA;IACtB,yFAAyB,CAAA;IACzB,iGAA6B,CAAA;IAC7B,sEAAgB,CAAA;IAChB,wEAAiB,CAAA;IACjB,0DAAU,CAAA;AACZ,CAAC,EAdI,gBAAgB,KAAhB,gBAAgB,QAcpB;AA2GC,4CAAgB"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/socks/build/common/helpers.js.map b/deps/npm/node_modules/socks/build/common/helpers.js.map
    deleted file mode 100644
    index dae124861aa90f..00000000000000
    --- a/deps/npm/node_modules/socks/build/common/helpers.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../src/common/helpers.ts"],"names":[],"mappings":";;;AAKA,iCAAwC;AACxC,2CAMqB;AACrB,iCAAiC;AAEjC;;;;GAIG;AACH,SAAS,0BAA0B,CACjC,OAA2B,EAC3B,gBAAgB,GAAG,CAAC,SAAS,EAAE,MAAM,EAAE,WAAW,CAAC;IAEnD,8BAA8B;IAC9B,IAAI,CAAC,wBAAY,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QAClC,MAAM,IAAI,uBAAgB,CAAC,kBAAM,CAAC,mBAAmB,EAAE,OAAO,CAAC,CAAC;KACjE;IAED,6CAA6C;IAC7C,IAAI,gBAAgB,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE;QACpD,MAAM,IAAI,uBAAgB,CAAC,kBAAM,CAAC,+BAA+B,EAAE,OAAO,CAAC,CAAC;KAC7E;IAED,oBAAoB;IACpB,IAAI,CAAC,sBAAsB,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE;QAChD,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,oCAAoC,EAC3C,OAAO,CACR,CAAC;KACH;IAED,2BAA2B;IAC3B,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QACrC,MAAM,IAAI,uBAAgB,CAAC,kBAAM,CAAC,8BAA8B,EAAE,OAAO,CAAC,CAAC;KAC5E;IAED,gCAAgC;IAChC,uBAAuB,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAEhD,gBAAgB;IAChB,IAAI,OAAO,CAAC,OAAO,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QAC5D,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,gCAAgC,EACvC,OAAO,CACR,CAAC;KACH;IAED,sCAAsC;IACtC,IACE,OAAO,CAAC,eAAe;QACvB,CAAC,CAAC,OAAO,CAAC,eAAe,YAAY,MAAM,CAAC,MAAM,CAAC,EACnD;QACA,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,uCAAuC,EAC9C,OAAO,CACR,CAAC;KACH;AACH,CAAC;AA6IO,gEAA0B;AA3IlC;;;GAGG;AACH,SAAS,+BAA+B,CAAC,OAAgC;IACvE,2CAA2C;IAC3C,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE;QACjC,MAAM,IAAI,uBAAgB,CAAC,kBAAM,CAAC,wBAAwB,EAAE,OAAO,CAAC,CAAC;KACtE;IAED,oBAAoB;IACpB,IAAI,CAAC,sBAAsB,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE;QAChD,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,oCAAoC,EAC3C,OAAO,CACR,CAAC;KACH;IAED,4BAA4B;IAC5B,IACE,CAAC,CACC,OAAO,CAAC,OAAO;QACf,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC;QAC9B,OAAO,CAAC,OAAO,CAAC,MAAM,IAAI,CAAC,CAC5B,EACD;QACA,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,sCAAsC,EAC7C,OAAO,CACR,CAAC;KACH;IAED,mBAAmB;IACnB,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,KAAiB,EAAE,EAAE;QAC5C,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE;YAC7B,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,8BAA8B,EACrC,OAAO,CACR,CAAC;SACH;QAED,gCAAgC;QAChC,uBAAuB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAC1C,CAAC,CAAC,CAAC;IAEH,gBAAgB;IAChB,IAAI,OAAO,CAAC,OAAO,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QAC5D,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,gCAAgC,EACvC,OAAO,CACR,CAAC;KACH;AACH,CAAC;AAuFmC,0EAA+B;AArFnE,SAAS,uBAAuB,CAC9B,KAAiB,EACjB,OAAqD;IAErD,IAAI,KAAK,CAAC,kBAAkB,KAAK,SAAS,EAAE;QAC1C,4BAA4B;QAC5B,IACE,KAAK,CAAC,kBAAkB,GAAG,oCAAwB;YACnD,KAAK,CAAC,kBAAkB,GAAG,kCAAsB,EACjD;YACA,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,wCAAwC,EAC/C,OAAO,CACR,CAAC;SACH;QAED,sCAAsC;QACtC,IACE,KAAK,CAAC,2BAA2B,KAAK,SAAS;YAC/C,OAAO,KAAK,CAAC,2BAA2B,KAAK,UAAU,EACvD;YACA,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,0CAA0C,EACjD,OAAO,CACR,CAAC;SACH;QAED,oCAAoC;QACpC,IAAI,KAAK,CAAC,yBAAyB,KAAK,SAAS,EAAE;YACjD,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,0CAA0C,EACjD,OAAO,CACR,CAAC;SACH;QAED,+CAA+C;QAC/C,IACE,KAAK,CAAC,4BAA4B,KAAK,SAAS;YAChD,OAAO,KAAK,CAAC,4BAA4B,KAAK,UAAU,EACxD;YACA,MAAM,IAAI,uBAAgB,CACxB,kBAAM,CAAC,0CAA0C,EACjD,OAAO,CACR,CAAC;SACH;KACF;AACH,CAAC;AAED;;;GAGG;AACH,SAAS,sBAAsB,CAAC,UAA2B;IACzD,OAAO,CACL,UAAU;QACV,OAAO,UAAU,CAAC,IAAI,KAAK,QAAQ;QACnC,OAAO,UAAU,CAAC,IAAI,KAAK,QAAQ;QACnC,UAAU,CAAC,IAAI,IAAI,CAAC;QACpB,UAAU,CAAC,IAAI,IAAI,KAAK,CACzB,CAAC;AACJ,CAAC;AAED;;;GAGG;AACH,SAAS,iBAAiB,CAAC,KAAiB;IAC1C,OAAO,CACL,KAAK;QACL,CAAC,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,QAAQ,CAAC;QACvE,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;QAC9B,KAAK,CAAC,IAAI,IAAI,CAAC;QACf,KAAK,CAAC,IAAI,IAAI,KAAK;QACnB,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,CAAC,CACvC,CAAC;AACJ,CAAC;AAED;;;GAGG;AACH,SAAS,mBAAmB,CAAC,KAAa;IACxC,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,GAAG,CAAC,CAAC;AAChD,CAAC"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/socks/build/common/receivebuffer.js.map b/deps/npm/node_modules/socks/build/common/receivebuffer.js.map
    deleted file mode 100644
    index af5e2209016951..00000000000000
    --- a/deps/npm/node_modules/socks/build/common/receivebuffer.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"receivebuffer.js","sourceRoot":"","sources":["../../src/common/receivebuffer.ts"],"names":[],"mappings":";;;AAAA,MAAM,aAAa;IAKjB,YAAY,IAAI,GAAG,IAAI;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QACvC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3B,CAAC;IAED,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,MAAM,CAAC;IACrB,CAAC;IAED,MAAM,CAAC,IAAY;QACjB,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YAC1B,MAAM,IAAI,KAAK,CACb,6DAA6D,CAC9D,CAAC;SACH;QAED,IAAI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;YACnD,MAAM,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;YACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAC9B,IAAI,CAAC,GAAG,CACN,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,EACtC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CACjC,CACF,CAAC;YACF,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SACvB;QAED,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;QACpC,OAAO,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC;IACtC,CAAC;IAED,IAAI,CAAC,MAAc;QACjB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;SACH;QACD,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;IACtC,CAAC;IAED,GAAG,CAAC,MAAc;QAChB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;SACH;QAED,MAAM,KAAK,GAAG,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;QACjE,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC;QAEtB,OAAO,KAAK,CAAC;IACf,CAAC;CACF;AAEO,sCAAa"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/socks/build/common/util.js.map b/deps/npm/node_modules/socks/build/common/util.js.map
    deleted file mode 100644
    index f1993233d693d9..00000000000000
    --- a/deps/npm/node_modules/socks/build/common/util.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"util.js","sourceRoot":"","sources":["../../src/common/util.ts"],"names":[],"mappings":";;;AAEA;;GAEG;AACH,MAAM,gBAAiB,SAAQ,KAAK;IAClC,YACE,OAAe,EACR,OAAqD;QAE5D,KAAK,CAAC,OAAO,CAAC,CAAC;QAFR,YAAO,GAAP,OAAO,CAA8C;IAG9D,CAAC;CACF;AAuBuB,4CAAgB;AArBxC;;;GAGG;AACH,SAAS,YAAY,CAAC,KAAgB;IACpC,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;QACzC,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAC9C,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;KAC7C;AACH,CAAC;AAYyC,oCAAY"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/socks/build/index.js.map b/deps/npm/node_modules/socks/build/index.js.map
    deleted file mode 100644
    index 0e2bcb27b8ba12..00000000000000
    --- a/deps/npm/node_modules/socks/build/index.js.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC"}
    \ No newline at end of file
    diff --git a/deps/npm/node_modules/socks/typings/client/socksclient.d.ts b/deps/npm/node_modules/socks/typings/client/socksclient.d.ts
    deleted file mode 100644
    index b886d95710b31c..00000000000000
    --- a/deps/npm/node_modules/socks/typings/client/socksclient.d.ts
    +++ /dev/null
    @@ -1,162 +0,0 @@
    -/// 
    -/// 
    -/// 
    -import { EventEmitter } from 'events';
    -import { SocksClientOptions, SocksClientChainOptions, SocksRemoteHost, SocksProxy, SocksClientBoundEvent, SocksClientEstablishedEvent, SocksUDPFrameDetails } from '../common/constants';
    -import { SocksClientError } from '../common/util';
    -import { Duplex } from 'stream';
    -declare interface SocksClient {
    -    on(event: 'error', listener: (err: SocksClientError) => void): this;
    -    on(event: 'bound', listener: (info: SocksClientBoundEvent) => void): this;
    -    on(event: 'established', listener: (info: SocksClientEstablishedEvent) => void): this;
    -    once(event: string, listener: (...args: unknown[]) => void): this;
    -    once(event: 'error', listener: (err: SocksClientError) => void): this;
    -    once(event: 'bound', listener: (info: SocksClientBoundEvent) => void): this;
    -    once(event: 'established', listener: (info: SocksClientEstablishedEvent) => void): this;
    -    emit(event: string | symbol, ...args: unknown[]): boolean;
    -    emit(event: 'error', err: SocksClientError): boolean;
    -    emit(event: 'bound', info: SocksClientBoundEvent): boolean;
    -    emit(event: 'established', info: SocksClientEstablishedEvent): boolean;
    -}
    -declare class SocksClient extends EventEmitter implements SocksClient {
    -    private options;
    -    private socket;
    -    private state;
    -    private receiveBuffer;
    -    private nextRequiredPacketBufferSize;
    -    private socks5ChosenAuthType;
    -    private onDataReceived;
    -    private onClose;
    -    private onError;
    -    private onConnect;
    -    constructor(options: SocksClientOptions);
    -    /**
    -     * Creates a new SOCKS connection.
    -     *
    -     * Note: Supports callbacks and promises. Only supports the connect command.
    -     * @param options { SocksClientOptions } Options.
    -     * @param callback { Function } An optional callback function.
    -     * @returns { Promise }
    -     */
    -    static createConnection(options: SocksClientOptions, callback?: (error: Error | null, info?: SocksClientEstablishedEvent) => void): Promise;
    -    /**
    -     * Creates a new SOCKS connection chain to a destination host through 2 or more SOCKS proxies.
    -     *
    -     * Note: Supports callbacks and promises. Only supports the connect method.
    -     * Note: Implemented via createConnection() factory function.
    -     * @param options { SocksClientChainOptions } Options
    -     * @param callback { Function } An optional callback function.
    -     * @returns { Promise }
    -     */
    -    static createConnectionChain(options: SocksClientChainOptions, callback?: (error: Error | null, socket?: SocksClientEstablishedEvent) => void): Promise;
    -    /**
    -     * Creates a SOCKS UDP Frame.
    -     * @param options
    -     */
    -    static createUDPFrame(options: SocksUDPFrameDetails): Buffer;
    -    /**
    -     * Parses a SOCKS UDP frame.
    -     * @param data
    -     */
    -    static parseUDPFrame(data: Buffer): SocksUDPFrameDetails;
    -    /**
    -     * Internal state setter. If the SocksClient is in an error state, it cannot be changed to a non error state.
    -     */
    -    private setState;
    -    /**
    -     * Starts the connection establishment to the proxy and destination.
    -     * @param existingSocket Connected socket to use instead of creating a new one (internal use).
    -     */
    -    connect(existingSocket?: Duplex): void;
    -    private getSocketOptions;
    -    /**
    -     * Handles internal Socks timeout callback.
    -     * Note: If the Socks client is not BoundWaitingForConnection or Established, the connection will be closed.
    -     */
    -    private onEstablishedTimeout;
    -    /**
    -     * Handles Socket connect event.
    -     */
    -    private onConnectHandler;
    -    /**
    -     * Handles Socket data event.
    -     * @param data
    -     */
    -    private onDataReceivedHandler;
    -    /**
    -     * Handles processing of the data we have received.
    -     */
    -    private processData;
    -    /**
    -     * Handles Socket close event.
    -     * @param had_error
    -     */
    -    private onCloseHandler;
    -    /**
    -     * Handles Socket error event.
    -     * @param err
    -     */
    -    private onErrorHandler;
    -    /**
    -     * Removes internal event listeners on the underlying Socket.
    -     */
    -    private removeInternalSocketHandlers;
    -    /**
    -     * Closes and destroys the underlying Socket. Emits an error event.
    -     * @param err { String } An error string to include in error event.
    -     */
    -    private closeSocket;
    -    /**
    -     * Sends initial Socks v4 handshake request.
    -     */
    -    private sendSocks4InitialHandshake;
    -    /**
    -     * Handles Socks v4 handshake response.
    -     * @param data
    -     */
    -    private handleSocks4FinalHandshakeResponse;
    -    /**
    -     * Handles Socks v4 incoming connection request (BIND)
    -     * @param data
    -     */
    -    private handleSocks4IncomingConnectionResponse;
    -    /**
    -     * Sends initial Socks v5 handshake request.
    -     */
    -    private sendSocks5InitialHandshake;
    -    /**
    -     * Handles initial Socks v5 handshake response.
    -     * @param data
    -     */
    -    private handleInitialSocks5HandshakeResponse;
    -    /**
    -     * Sends Socks v5 user & password auth handshake.
    -     *
    -     * Note: No auth and user/pass are currently supported.
    -     */
    -    private sendSocks5UserPassAuthentication;
    -    private sendSocks5CustomAuthentication;
    -    private handleSocks5CustomAuthHandshakeResponse;
    -    private handleSocks5AuthenticationNoAuthHandshakeResponse;
    -    private handleSocks5AuthenticationUserPassHandshakeResponse;
    -    /**
    -     * Handles Socks v5 auth handshake response.
    -     * @param data
    -     */
    -    private handleInitialSocks5AuthenticationHandshakeResponse;
    -    /**
    -     * Sends Socks v5 final handshake request.
    -     */
    -    private sendSocks5CommandRequest;
    -    /**
    -     * Handles Socks v5 final handshake response.
    -     * @param data
    -     */
    -    private handleSocks5FinalHandshakeResponse;
    -    /**
    -     * Handles Socks v5 incoming connection request (BIND).
    -     */
    -    private handleSocks5IncomingConnectionResponse;
    -    get socksClientOptions(): SocksClientOptions;
    -}
    -export { SocksClient, SocksClientOptions, SocksClientChainOptions, SocksClientError, SocksRemoteHost, SocksProxy, SocksUDPFrameDetails, };
    diff --git a/deps/npm/node_modules/socks/typings/common/constants.d.ts b/deps/npm/node_modules/socks/typings/common/constants.d.ts
    deleted file mode 100644
    index 32a57052835076..00000000000000
    --- a/deps/npm/node_modules/socks/typings/common/constants.d.ts
    +++ /dev/null
    @@ -1,152 +0,0 @@
    -/// 
    -/// 
    -/// 
    -import { Duplex } from 'stream';
    -import { Socket, SocketConnectOpts } from 'net';
    -import { RequireOnlyOne } from './util';
    -declare const DEFAULT_TIMEOUT = 30000;
    -declare type SocksProxyType = 4 | 5;
    -declare const ERRORS: {
    -    InvalidSocksCommand: string;
    -    InvalidSocksCommandForOperation: string;
    -    InvalidSocksCommandChain: string;
    -    InvalidSocksClientOptionsDestination: string;
    -    InvalidSocksClientOptionsExistingSocket: string;
    -    InvalidSocksClientOptionsProxy: string;
    -    InvalidSocksClientOptionsTimeout: string;
    -    InvalidSocksClientOptionsProxiesLength: string;
    -    InvalidSocksClientOptionsCustomAuthRange: string;
    -    InvalidSocksClientOptionsCustomAuthOptions: string;
    -    NegotiationError: string;
    -    SocketClosed: string;
    -    ProxyConnectionTimedOut: string;
    -    InternalError: string;
    -    InvalidSocks4HandshakeResponse: string;
    -    Socks4ProxyRejectedConnection: string;
    -    InvalidSocks4IncomingConnectionResponse: string;
    -    Socks4ProxyRejectedIncomingBoundConnection: string;
    -    InvalidSocks5InitialHandshakeResponse: string;
    -    InvalidSocks5IntiailHandshakeSocksVersion: string;
    -    InvalidSocks5InitialHandshakeNoAcceptedAuthType: string;
    -    InvalidSocks5InitialHandshakeUnknownAuthType: string;
    -    Socks5AuthenticationFailed: string;
    -    InvalidSocks5FinalHandshake: string;
    -    InvalidSocks5FinalHandshakeRejected: string;
    -    InvalidSocks5IncomingConnectionResponse: string;
    -    Socks5ProxyRejectedIncomingBoundConnection: string;
    -};
    -declare const SOCKS_INCOMING_PACKET_SIZES: {
    -    Socks5InitialHandshakeResponse: number;
    -    Socks5UserPassAuthenticationResponse: number;
    -    Socks5ResponseHeader: number;
    -    Socks5ResponseIPv4: number;
    -    Socks5ResponseIPv6: number;
    -    Socks5ResponseHostname: (hostNameLength: number) => number;
    -    Socks4Response: number;
    -};
    -declare type SocksCommandOption = 'connect' | 'bind' | 'associate';
    -declare enum SocksCommand {
    -    connect = 1,
    -    bind = 2,
    -    associate = 3
    -}
    -declare enum Socks4Response {
    -    Granted = 90,
    -    Failed = 91,
    -    Rejected = 92,
    -    RejectedIdent = 93
    -}
    -declare enum Socks5Auth {
    -    NoAuth = 0,
    -    GSSApi = 1,
    -    UserPass = 2
    -}
    -declare const SOCKS5_CUSTOM_AUTH_START = 128;
    -declare const SOCKS5_CUSTOM_AUTH_END = 254;
    -declare const SOCKS5_NO_ACCEPTABLE_AUTH = 255;
    -declare enum Socks5Response {
    -    Granted = 0,
    -    Failure = 1,
    -    NotAllowed = 2,
    -    NetworkUnreachable = 3,
    -    HostUnreachable = 4,
    -    ConnectionRefused = 5,
    -    TTLExpired = 6,
    -    CommandNotSupported = 7,
    -    AddressNotSupported = 8
    -}
    -declare enum Socks5HostType {
    -    IPv4 = 1,
    -    Hostname = 3,
    -    IPv6 = 4
    -}
    -declare enum SocksClientState {
    -    Created = 0,
    -    Connecting = 1,
    -    Connected = 2,
    -    SentInitialHandshake = 3,
    -    ReceivedInitialHandshakeResponse = 4,
    -    SentAuthentication = 5,
    -    ReceivedAuthenticationResponse = 6,
    -    SentFinalHandshake = 7,
    -    ReceivedFinalResponse = 8,
    -    BoundWaitingForConnection = 9,
    -    Established = 10,
    -    Disconnected = 11,
    -    Error = 99
    -}
    -/**
    - * Represents a SocksProxy
    - */
    -declare type SocksProxy = RequireOnlyOne<{
    -    ipaddress?: string;
    -    host?: string;
    -    port: number;
    -    type: SocksProxyType;
    -    userId?: string;
    -    password?: string;
    -    custom_auth_method?: number;
    -    custom_auth_request_handler?: () => Promise;
    -    custom_auth_response_size?: number;
    -    custom_auth_response_handler?: (data: Buffer) => Promise;
    -}, 'host' | 'ipaddress'>;
    -/**
    - * Represents a remote host
    - */
    -interface SocksRemoteHost {
    -    host: string;
    -    port: number;
    -}
    -/**
    - * SocksClient connection options.
    - */
    -interface SocksClientOptions {
    -    command: SocksCommandOption;
    -    destination: SocksRemoteHost;
    -    proxy: SocksProxy;
    -    timeout?: number;
    -    existing_socket?: Duplex;
    -    set_tcp_nodelay?: boolean;
    -    socket_options?: SocketConnectOpts;
    -}
    -/**
    - * SocksClient chain connection options.
    - */
    -interface SocksClientChainOptions {
    -    command: 'connect';
    -    destination: SocksRemoteHost;
    -    proxies: SocksProxy[];
    -    timeout?: number;
    -    randomizeChain?: false;
    -}
    -interface SocksClientEstablishedEvent {
    -    socket: Socket;
    -    remoteHost?: SocksRemoteHost;
    -}
    -declare type SocksClientBoundEvent = SocksClientEstablishedEvent;
    -interface SocksUDPFrameDetails {
    -    frameNumber?: number;
    -    remoteHost: SocksRemoteHost;
    -    data: Buffer;
    -}
    -export { DEFAULT_TIMEOUT, ERRORS, SocksProxyType, SocksCommand, Socks4Response, Socks5Auth, Socks5HostType, Socks5Response, SocksClientState, SocksProxy, SocksRemoteHost, SocksCommandOption, SocksClientOptions, SocksClientChainOptions, SocksClientEstablishedEvent, SocksClientBoundEvent, SocksUDPFrameDetails, SOCKS_INCOMING_PACKET_SIZES, SOCKS5_CUSTOM_AUTH_START, SOCKS5_CUSTOM_AUTH_END, SOCKS5_NO_ACCEPTABLE_AUTH, };
    diff --git a/deps/npm/node_modules/socks/typings/common/helpers.d.ts b/deps/npm/node_modules/socks/typings/common/helpers.d.ts
    deleted file mode 100644
    index 8c3a106979df17..00000000000000
    --- a/deps/npm/node_modules/socks/typings/common/helpers.d.ts
    +++ /dev/null
    @@ -1,13 +0,0 @@
    -import { SocksClientOptions, SocksClientChainOptions } from '../client/socksclient';
    -/**
    - * Validates the provided SocksClientOptions
    - * @param options { SocksClientOptions }
    - * @param acceptedCommands { string[] } A list of accepted SocksProxy commands.
    - */
    -declare function validateSocksClientOptions(options: SocksClientOptions, acceptedCommands?: string[]): void;
    -/**
    - * Validates the SocksClientChainOptions
    - * @param options { SocksClientChainOptions }
    - */
    -declare function validateSocksClientChainOptions(options: SocksClientChainOptions): void;
    -export { validateSocksClientOptions, validateSocksClientChainOptions };
    diff --git a/deps/npm/node_modules/socks/typings/common/receivebuffer.d.ts b/deps/npm/node_modules/socks/typings/common/receivebuffer.d.ts
    deleted file mode 100644
    index 756e98b5893ed8..00000000000000
    --- a/deps/npm/node_modules/socks/typings/common/receivebuffer.d.ts
    +++ /dev/null
    @@ -1,12 +0,0 @@
    -/// 
    -declare class ReceiveBuffer {
    -    private buffer;
    -    private offset;
    -    private originalSize;
    -    constructor(size?: number);
    -    get length(): number;
    -    append(data: Buffer): number;
    -    peek(length: number): Buffer;
    -    get(length: number): Buffer;
    -}
    -export { ReceiveBuffer };
    diff --git a/deps/npm/node_modules/socks/typings/common/util.d.ts b/deps/npm/node_modules/socks/typings/common/util.d.ts
    deleted file mode 100644
    index 83f20e7b5978e8..00000000000000
    --- a/deps/npm/node_modules/socks/typings/common/util.d.ts
    +++ /dev/null
    @@ -1,17 +0,0 @@
    -import { SocksClientOptions, SocksClientChainOptions } from './constants';
    -/**
    - * Error wrapper for SocksClient
    - */
    -declare class SocksClientError extends Error {
    -    options: SocksClientOptions | SocksClientChainOptions;
    -    constructor(message: string, options: SocksClientOptions | SocksClientChainOptions);
    -}
    -/**
    - * Shuffles a given array.
    - * @param array The array to shuffle.
    - */
    -declare function shuffleArray(array: unknown[]): void;
    -declare type RequireOnlyOne = Pick> & {
    -    [K in Keys]?: Required> & Partial, undefined>>;
    -}[Keys];
    -export { RequireOnlyOne, SocksClientError, shuffleArray };
    diff --git a/deps/npm/node_modules/socks/typings/index.d.ts b/deps/npm/node_modules/socks/typings/index.d.ts
    deleted file mode 100644
    index fbf9006ef1d3de..00000000000000
    --- a/deps/npm/node_modules/socks/typings/index.d.ts
    +++ /dev/null
    @@ -1 +0,0 @@
    -export * from './client/socksclient';
    diff --git a/deps/npm/node_modules/spdx-correct/index.js b/deps/npm/node_modules/spdx-correct/index.js
    index c51a79f5d1c80a..4d9037e0cc4355 100644
    --- a/deps/npm/node_modules/spdx-correct/index.js
    +++ b/deps/npm/node_modules/spdx-correct/index.js
    @@ -25,6 +25,18 @@ function valid (string) {
       }
     }
     
    +// Sorting function that orders the given array of transpositions such
    +// that a transposition with the longer pattern comes before a transposition
    +// with a shorter pattern. This is to prevent e.g. the transposition
    +// ["General Public License", "GPL"] from matching to "Lesser General Public License"
    +// before a longer and more accurate transposition ["Lesser General Public License", "LGPL"]
    +// has a chance to be recognized.
    +function sortTranspositions(a, b) {
    +  var length = b[0].length - a[0].length
    +  if (length !== 0) return length
    +  return a[0].toUpperCase().localeCompare(b[0].toUpperCase())
    +}
    +
     // Common transpositions of license identifier acronyms
     var transpositions = [
       ['APGL', 'AGPL'],
    @@ -41,8 +53,17 @@ var transpositions = [
       ['GUN', 'GPL'],
       ['+', ''],
       ['GNU GPL', 'GPL'],
    +  ['GNU LGPL', 'LGPL'],
       ['GNU/GPL', 'GPL'],
       ['GNU GLP', 'GPL'],
    +  ['GNU LESSER GENERAL PUBLIC LICENSE', 'LGPL'],
    +  ['GNU Lesser General Public License', 'LGPL'],
    +  ['GNU LESSER GENERAL PUBLIC LICENSE', 'LGPL-2.1'],
    +  ['GNU Lesser General Public License', 'LGPL-2.1'],
    +  ['LESSER GENERAL PUBLIC LICENSE', 'LGPL'],
    +  ['Lesser General Public License', 'LGPL'],
    +  ['LESSER GENERAL PUBLIC LICENSE', 'LGPL-2.1'],
    +  ['Lesser General Public License', 'LGPL-2.1'],
       ['GNU General Public License', 'GPL'],
       ['Gnu public license', 'GPL'],
       ['GNU Public License', 'GPL'],
    @@ -51,8 +72,9 @@ var transpositions = [
       ['Mozilla Public License', 'MPL'],
       ['Universal Permissive License', 'UPL'],
       ['WTH', 'WTF'],
    +  ['WTFGPL', 'WTFPL'],
       ['-License', '']
    -]
    +].sort(sortTranspositions)
     
     var TRANSPOSED = 0
     var CORRECT = 1
    @@ -254,7 +276,7 @@ var lastResorts = [
       ['MPL', 'MPL-2.0'],
       ['X11', 'X11'],
       ['ZLIB', 'Zlib']
    -].concat(licensesWithOneVersion)
    +].concat(licensesWithOneVersion).sort(sortTranspositions)
     
     var SUBSTRING = 0
     var IDENTIFIER = 1
    diff --git a/deps/npm/node_modules/spdx-correct/package.json b/deps/npm/node_modules/spdx-correct/package.json
    index 35c68bdaa6c61a..d77615638be66d 100644
    --- a/deps/npm/node_modules/spdx-correct/package.json
    +++ b/deps/npm/node_modules/spdx-correct/package.json
    @@ -1,24 +1,17 @@
     {
       "name": "spdx-correct",
       "description": "correct invalid SPDX expressions",
    -  "version": "3.1.1",
    -  "author": "Kyle E. Mitchell  (https://kemitchell.com)",
    -  "contributors": [
    -    "Kyle E. Mitchell  (https://kemitchell.com)",
    -    "Christian Zommerfelds ",
    -    "Tal Einat ",
    -    "Dan Butvinik "
    -  ],
    +  "version": "3.2.0",
       "dependencies": {
         "spdx-expression-parse": "^3.0.0",
         "spdx-license-ids": "^3.0.0"
       },
       "devDependencies": {
    -    "defence-cli": "^2.0.1",
    +    "defence-cli": "^3.0.1",
         "replace-require-self": "^1.0.0",
    -    "standard": "^11.0.0",
    -    "standard-markdown": "^4.0.2",
    -    "tape": "^4.9.0"
    +    "standard": "^14.3.4",
    +    "standard-markdown": "^6.0.0",
    +    "tape": "^5.0.1"
       },
       "files": [
         "index.js"
    diff --git a/deps/npm/node_modules/spdx-license-ids/index.json b/deps/npm/node_modules/spdx-license-ids/index.json
    index fdd78fa0329faf..04c03126d98eb8 100644
    --- a/deps/npm/node_modules/spdx-license-ids/index.json
    +++ b/deps/npm/node_modules/spdx-license-ids/index.json
    @@ -23,6 +23,7 @@
     	"APSL-1.2",
     	"APSL-2.0",
     	"Abstyles",
    +	"AdaCore-doc",
     	"Adobe-2006",
     	"Adobe-Glyph",
     	"Afmparse",
    @@ -53,6 +54,10 @@
     	"BSD-4-Clause",
     	"BSD-4-Clause-Shortened",
     	"BSD-4-Clause-UC",
    +	"BSD-4.3RENO",
    +	"BSD-4.3TAHOE",
    +	"BSD-Advertising-Acknowledgement",
    +	"BSD-Attribution-HPND-disclaimer",
     	"BSD-Protection",
     	"BSD-Source-Code",
     	"BSL-1.0",
    @@ -63,9 +68,11 @@
     	"Beerware",
     	"BitTorrent-1.0",
     	"BitTorrent-1.1",
    +	"Bitstream-Charter",
     	"Bitstream-Vera",
     	"BlueOak-1.0.0",
     	"Borceux",
    +	"Brian-Gladman-3-Clause",
     	"C-UDA-1.0",
     	"CAL-1.0",
     	"CAL-1.0-Combined-Work-Exception",
    @@ -96,6 +103,7 @@
     	"CC-BY-NC-ND-4.0",
     	"CC-BY-NC-SA-1.0",
     	"CC-BY-NC-SA-2.0",
    +	"CC-BY-NC-SA-2.0-DE",
     	"CC-BY-NC-SA-2.0-FR",
     	"CC-BY-NC-SA-2.0-UK",
     	"CC-BY-NC-SA-2.5",
    @@ -137,6 +145,8 @@
     	"CERN-OHL-P-2.0",
     	"CERN-OHL-S-2.0",
     	"CERN-OHL-W-2.0",
    +	"CFITSIO",
    +	"CMU-Mach",
     	"CNRI-Jython",
     	"CNRI-Python",
     	"CNRI-Python-GPL-Compatible",
    @@ -147,8 +157,10 @@
     	"CUA-OPL-1.0",
     	"Caldera",
     	"ClArtistic",
    +	"Clips",
     	"Community-Spec-1.0",
     	"Condor-1.1",
    +	"Cornell-Lossless-JPEG",
     	"Crossword",
     	"CrystalStacker",
     	"Cube",
    @@ -177,6 +189,7 @@
     	"FSFAP",
     	"FSFUL",
     	"FSFULLR",
    +	"FSFULLRWD",
     	"FTL",
     	"Fair",
     	"Frameworx-1.0",
    @@ -212,14 +225,21 @@
     	"Giftware",
     	"Glide",
     	"Glulxe",
    +	"Graphics-Gems",
    +	"HP-1986",
     	"HPND",
    +	"HPND-Markus-Kuhn",
    +	"HPND-export-US",
     	"HPND-sell-variant",
    +	"HPND-sell-variant-MIT-disclaimer",
     	"HTMLTIDY",
     	"HaskellReport",
     	"Hippocratic-2.1",
     	"IBM-pibs",
     	"ICU",
    +	"IEC-Code-Components-EULA",
     	"IJG",
    +	"IJG-short",
     	"IPA",
     	"IPL-1.0",
     	"ISC",
    @@ -229,10 +249,13 @@
     	"Intel",
     	"Intel-ACPI",
     	"Interbase-1.0",
    +	"JPL-image",
     	"JPNIC",
     	"JSON",
     	"Jam",
     	"JasPer-2.0",
    +	"Kazlib",
    +	"Knuth-CTAN",
     	"LAL-1.2",
     	"LAL-1.3",
     	"LGPL-2.0-only",
    @@ -242,6 +265,7 @@
     	"LGPL-3.0-only",
     	"LGPL-3.0-or-later",
     	"LGPLLR",
    +	"LOOP",
     	"LPL-1.0",
     	"LPL-1.02",
     	"LPPL-1.0",
    @@ -263,6 +287,7 @@
     	"MIT-0",
     	"MIT-CMU",
     	"MIT-Modern-Variant",
    +	"MIT-Wu",
     	"MIT-advertising",
     	"MIT-enna",
     	"MIT-feh",
    @@ -277,6 +302,7 @@
     	"MS-RL",
     	"MTLL",
     	"MakeIndex",
    +	"Martin-Birgmeier",
     	"Minpack",
     	"MirOS",
     	"Motosoto",
    @@ -314,6 +340,7 @@
     	"OCLC-2.0",
     	"ODC-By-1.0",
     	"ODbL-1.0",
    +	"OFFIS",
     	"OFL-1.0",
     	"OFL-1.0-RFN",
     	"OFL-1.0-no-RFN",
    @@ -352,6 +379,7 @@
     	"OSL-2.0",
     	"OSL-2.1",
     	"OSL-3.0",
    +	"OpenPBS-2.3",
     	"OpenSSL",
     	"PDDL-1.0",
     	"PHP-3.0",
    @@ -366,6 +394,7 @@
     	"Python-2.0",
     	"Python-2.0.1",
     	"QPL-1.0",
    +	"QPL-1.0-INRIA-2004",
     	"Qhull",
     	"RHeCos-1.1",
     	"RPL-1.1",
    @@ -402,14 +431,20 @@
     	"Spencer-94",
     	"Spencer-99",
     	"SugarCRM-1.1.3",
    +	"SunPro",
    +	"Symlinks",
     	"TAPR-OHL-1.0",
     	"TCL",
     	"TCP-wrappers",
     	"TMate",
     	"TORQUE-1.1",
     	"TOSL",
    +	"TPDL",
    +	"TPL-1.0",
    +	"TTWL",
     	"TU-Berlin-1.0",
     	"TU-Berlin-2.0",
    +	"UCAR",
     	"UCL-1.0",
     	"UPL-1.0",
     	"Unicode-DFS-2015",
    @@ -443,6 +478,7 @@
     	"Zlib",
     	"blessing",
     	"bzip2-1.0.6",
    +	"checkmk",
     	"copyleft-next-0.3.0",
     	"copyleft-next-0.3.1",
     	"curl",
    @@ -456,12 +492,16 @@
     	"libpng-2.0",
     	"libselinux-1.0",
     	"libtiff",
    +	"libutil-David-Nugent",
     	"mpi-permissive",
     	"mpich2",
     	"mplus",
     	"psfrag",
     	"psutils",
    +	"snprintf",
    +	"w3m",
     	"xinetd",
    +	"xlock",
     	"xpp",
     	"zlib-acknowledgement"
     ]
    diff --git a/deps/npm/node_modules/spdx-license-ids/package.json b/deps/npm/node_modules/spdx-license-ids/package.json
    index e3622fccaf7bc4..ea060776d9cf76 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.12",
    +	"version": "3.0.13",
     	"description": "A list of SPDX license identifiers",
     	"repository": "jslicense/spdx-license-ids",
     	"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
    diff --git a/deps/npm/node_modules/string-width/index.d.ts b/deps/npm/node_modules/string-width/index.d.ts
    deleted file mode 100644
    index 12b5309751dd50..00000000000000
    --- a/deps/npm/node_modules/string-width/index.d.ts
    +++ /dev/null
    @@ -1,29 +0,0 @@
    -declare const stringWidth: {
    -	/**
    -	Get the visual width of a string - the number of columns required to display it.
    -
    -	Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
    -
    -	@example
    -	```
    -	import stringWidth = require('string-width');
    -
    -	stringWidth('a');
    -	//=> 1
    -
    -	stringWidth('古');
    -	//=> 2
    -
    -	stringWidth('\u001B[1m古\u001B[22m');
    -	//=> 2
    -	```
    -	*/
    -	(string: string): number;
    -
    -	// TODO: remove this in the next major version, refactor the whole definition to:
    -	// declare function stringWidth(string: string): number;
    -	// export = stringWidth;
    -	default: typeof stringWidth;
    -}
    -
    -export = stringWidth;
    diff --git a/deps/npm/node_modules/strip-ansi/index.d.ts b/deps/npm/node_modules/strip-ansi/index.d.ts
    deleted file mode 100644
    index 907fccc29269eb..00000000000000
    --- a/deps/npm/node_modules/strip-ansi/index.d.ts
    +++ /dev/null
    @@ -1,17 +0,0 @@
    -/**
    -Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
    -
    -@example
    -```
    -import stripAnsi = require('strip-ansi');
    -
    -stripAnsi('\u001B[4mUnicorn\u001B[0m');
    -//=> 'Unicorn'
    -
    -stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
    -//=> 'Click'
    -```
    -*/
    -declare function stripAnsi(string: string): string;
    -
    -export = stripAnsi;
    diff --git a/deps/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.d.ts b/deps/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.d.ts
    deleted file mode 100644
    index 65faf63686c213..00000000000000
    --- a/deps/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.d.ts
    +++ /dev/null
    @@ -1,155 +0,0 @@
    -/// 
    -import { EventEmitter } from 'events'
    -import { Stream } from 'stream'
    -
    -declare namespace Minipass {
    -  type Encoding = BufferEncoding | 'buffer' | null
    -
    -  interface Writable extends EventEmitter {
    -    end(): any
    -    write(chunk: any, ...args: any[]): any
    -  }
    -
    -  interface Readable extends EventEmitter {
    -    pause(): any
    -    resume(): any
    -    pipe(): any
    -  }
    -
    -  interface Pipe {
    -    src: Minipass
    -    dest: Writable
    -    opts: PipeOptions
    -  }
    -
    -  type DualIterable = Iterable & AsyncIterable
    -
    -  type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
    -
    -  type BufferOrString = Buffer | string
    -
    -  interface StringOptions {
    -    encoding: BufferEncoding
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface BufferOptions {
    -    encoding?: null | 'buffer'
    -    objectMode?: boolean
    -    async?: boolean
    -  }
    -
    -  interface ObjectModeOptions {
    -    objectMode: true
    -    async?: boolean
    -  }
    -
    -  interface PipeOptions {
    -    end?: boolean
    -    proxyErrors?: boolean
    -  }
    -
    -  type Options = T extends string
    -    ? StringOptions
    -    : T extends Buffer
    -    ? BufferOptions
    -    : ObjectModeOptions
    -}
    -
    -declare class Minipass<
    -    RType extends any = Buffer,
    -    WType extends any = RType extends Minipass.BufferOrString
    -      ? Minipass.ContiguousData
    -      : RType
    -  >
    -  extends Stream
    -  implements Minipass.DualIterable
    -{
    -  static isStream(stream: any): stream is Minipass.Readable | Minipass.Writable
    -
    -  readonly bufferLength: number
    -  readonly flowing: boolean
    -  readonly writable: boolean
    -  readonly readable: boolean
    -  readonly paused: boolean
    -  readonly emittedEnd: boolean
    -  readonly destroyed: boolean
    -
    -  /**
    -   * Not technically private or readonly, but not safe to mutate.
    -   */
    -  private readonly buffer: RType[]
    -  private readonly pipes: Minipass.Pipe[]
    -
    -  /**
    -   * Technically writable, but mutating it can change the type,
    -   * so is not safe to do in TypeScript.
    -   */
    -  readonly objectMode: boolean
    -  async: boolean
    -
    -  /**
    -   * Note: encoding is not actually read-only, and setEncoding(enc)
    -   * exists. However, this type definition will insist that TypeScript
    -   * programs declare the type of a Minipass stream up front, and if
    -   * that type is string, then an encoding MUST be set in the ctor. If
    -   * the type is Buffer, then the encoding must be missing, or set to
    -   * 'buffer' or null. If the type is anything else, then objectMode
    -   * must be set in the constructor options.  So there is effectively
    -   * no allowed way that a TS program can set the encoding after
    -   * construction, as doing so will destroy any hope of type safety.
    -   * TypeScript does not provide many options for changing the type of
    -   * an object at run-time, which is what changing the encoding does.
    -   */
    -  readonly encoding: Minipass.Encoding
    -  // setEncoding(encoding: Encoding): void
    -
    -  // Options required if not reading buffers
    -  constructor(
    -    ...args: RType extends Buffer
    -      ? [] | [Minipass.Options]
    -      : [Minipass.Options]
    -  )
    -
    -  write(chunk: WType, cb?: () => void): boolean
    -  write(chunk: WType, encoding?: Minipass.Encoding, cb?: () => void): boolean
    -  read(size?: number): RType
    -  end(cb?: () => void): this
    -  end(chunk: any, cb?: () => void): this
    -  end(chunk: any, encoding?: Minipass.Encoding, cb?: () => void): this
    -  pause(): void
    -  resume(): void
    -  promise(): Promise
    -  collect(): Promise
    -
    -  concat(): RType extends Minipass.BufferOrString ? Promise : never
    -  destroy(er?: any): void
    -  pipe(dest: W, opts?: Minipass.PipeOptions): W
    -  unpipe(dest: W): void
    -
    -  /**
    -   * alias for on()
    -   */
    -  addEventHandler(event: string, listener: (...args: any[]) => any): this
    -
    -  on(event: string, listener: (...args: any[]) => any): this
    -  on(event: 'data', listener: (chunk: RType) => any): this
    -  on(event: 'error', listener: (error: any) => any): this
    -  on(
    -    event:
    -      | 'readable'
    -      | 'drain'
    -      | 'resume'
    -      | 'end'
    -      | 'prefinish'
    -      | 'finish'
    -      | 'close',
    -    listener: () => any
    -  ): this
    -
    -  [Symbol.iterator](): Iterator
    -  [Symbol.asyncIterator](): AsyncIterator
    -}
    -
    -export = Minipass
    diff --git a/deps/npm/node_modules/tuf-js/LICENSE b/deps/npm/node_modules/tuf-js/LICENSE
    index f28ab0914a319d..420700f5d37659 100644
    --- a/deps/npm/node_modules/tuf-js/LICENSE
    +++ b/deps/npm/node_modules/tuf-js/LICENSE
    @@ -1,6 +1,6 @@
     MIT License
     
    -Copyright GitHub
    +Copyright (c) 2022 GitHub and the TUF 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
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/config.js b/deps/npm/node_modules/tuf-js/dist/config.js
    similarity index 100%
    rename from deps/npm/node_modules/tuf-js/dist/utils/config.js
    rename to deps/npm/node_modules/tuf-js/dist/config.js
    diff --git a/deps/npm/node_modules/tuf-js/dist/error.d.ts b/deps/npm/node_modules/tuf-js/dist/error.d.ts
    deleted file mode 100644
    index 130e49ab9dfd27..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/error.d.ts
    +++ /dev/null
    @@ -1,30 +0,0 @@
    -export declare class ValueError extends Error {
    -}
    -export declare class RuntimeError extends Error {
    -}
    -export declare class PersistError extends Error {
    -}
    -export declare class RepositoryError extends Error {
    -}
    -export declare class UnsignedMetadataError extends RepositoryError {
    -}
    -export declare class BadVersionError extends RepositoryError {
    -}
    -export declare class EqualVersionError extends BadVersionError {
    -}
    -export declare class ExpiredMetadataError extends RepositoryError {
    -}
    -export declare class LengthOrHashMismatchError extends RepositoryError {
    -}
    -export declare class CryptoError extends Error {
    -}
    -export declare class UnsupportedAlgorithmError extends CryptoError {
    -}
    -export declare class DownloadError extends Error {
    -}
    -export declare class DownloadLengthMismatchError extends DownloadError {
    -}
    -export declare class DownloadHTTPError extends DownloadError {
    -    statusCode: number;
    -    constructor(message: string, statusCode: number);
    -}
    diff --git a/deps/npm/node_modules/tuf-js/dist/error.js b/deps/npm/node_modules/tuf-js/dist/error.js
    index ce7ca5ea06cebc..f4b10fa2028950 100644
    --- a/deps/npm/node_modules/tuf-js/dist/error.js
    +++ b/deps/npm/node_modules/tuf-js/dist/error.js
    @@ -1,6 +1,6 @@
     "use strict";
     Object.defineProperty(exports, "__esModule", { value: true });
    -exports.DownloadHTTPError = exports.DownloadLengthMismatchError = exports.DownloadError = exports.UnsupportedAlgorithmError = exports.CryptoError = exports.LengthOrHashMismatchError = exports.ExpiredMetadataError = exports.EqualVersionError = exports.BadVersionError = exports.UnsignedMetadataError = exports.RepositoryError = exports.PersistError = exports.RuntimeError = exports.ValueError = void 0;
    +exports.DownloadHTTPError = exports.DownloadLengthMismatchError = exports.DownloadError = exports.ExpiredMetadataError = exports.EqualVersionError = exports.BadVersionError = exports.RepositoryError = exports.PersistError = exports.RuntimeError = exports.ValueError = void 0;
     // An error about insufficient values
     class ValueError extends Error {
     }
    @@ -17,10 +17,6 @@ exports.PersistError = PersistError;
     class RepositoryError extends Error {
     }
     exports.RepositoryError = RepositoryError;
    -// An error about metadata object with insufficient threshold of signatures.
    -class UnsignedMetadataError extends RepositoryError {
    -}
    -exports.UnsignedMetadataError = UnsignedMetadataError;
     // An error for metadata that contains an invalid version number.
     class BadVersionError extends RepositoryError {
     }
    @@ -33,16 +29,6 @@ exports.EqualVersionError = EqualVersionError;
     class ExpiredMetadataError extends RepositoryError {
     }
     exports.ExpiredMetadataError = ExpiredMetadataError;
    -// An error while checking the length and hash values of an object.
    -class LengthOrHashMismatchError extends RepositoryError {
    -}
    -exports.LengthOrHashMismatchError = LengthOrHashMismatchError;
    -class CryptoError extends Error {
    -}
    -exports.CryptoError = CryptoError;
    -class UnsupportedAlgorithmError extends CryptoError {
    -}
    -exports.UnsupportedAlgorithmError = UnsupportedAlgorithmError;
     //----- Download Errors -------------------------------------------------------
     // An error occurred while attempting to download a file.
     class DownloadError extends Error {
    diff --git a/deps/npm/node_modules/tuf-js/dist/fetcher.d.ts b/deps/npm/node_modules/tuf-js/dist/fetcher.d.ts
    deleted file mode 100644
    index 2b52cbef523267..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/fetcher.d.ts
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -/// 
    -/// 
    -type DownloadFileHandler = (file: string) => Promise;
    -export declare abstract class BaseFetcher {
    -    abstract fetch(url: string): Promise;
    -    downloadFile(url: string, maxLength: number, handler: DownloadFileHandler): Promise;
    -    downloadBytes(url: string, maxLength: number): Promise;
    -}
    -interface FetcherOptions {
    -    timeout?: number;
    -    retries?: number;
    -}
    -export declare class Fetcher extends BaseFetcher {
    -    private timeout?;
    -    private retries?;
    -    constructor(options?: FetcherOptions);
    -    fetch(url: string): Promise;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/fetcher.js b/deps/npm/node_modules/tuf-js/dist/fetcher.js
    index cb42ab22a1d312..7a7405ac53e720 100644
    --- a/deps/npm/node_modules/tuf-js/dist/fetcher.js
    +++ b/deps/npm/node_modules/tuf-js/dist/fetcher.js
    @@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
         return (mod && mod.__esModule) ? mod : { "default": mod };
     };
     Object.defineProperty(exports, "__esModule", { value: true });
    -exports.Fetcher = exports.BaseFetcher = void 0;
    +exports.DefaultFetcher = exports.BaseFetcher = void 0;
     const fs_1 = __importDefault(require("fs"));
     const make_fetch_happen_1 = __importDefault(require("make-fetch-happen"));
     const util_1 = __importDefault(require("util"));
    @@ -51,7 +51,7 @@ class BaseFetcher {
         }
     }
     exports.BaseFetcher = BaseFetcher;
    -class Fetcher extends BaseFetcher {
    +class DefaultFetcher extends BaseFetcher {
         constructor(options = {}) {
             super();
             this.timeout = options.timeout;
    @@ -68,7 +68,7 @@ class Fetcher extends BaseFetcher {
             return response.body;
         }
     }
    -exports.Fetcher = Fetcher;
    +exports.DefaultFetcher = DefaultFetcher;
     const writeBufferToStream = async (stream, buffer) => {
         return new Promise((resolve, reject) => {
             stream.write(buffer, (err) => {
    diff --git a/deps/npm/node_modules/tuf-js/dist/index.d.ts b/deps/npm/node_modules/tuf-js/dist/index.d.ts
    deleted file mode 100644
    index bfe3adcac2aef1..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/index.d.ts
    +++ /dev/null
    @@ -1,3 +0,0 @@
    -export { BaseFetcher } from './fetcher';
    -export { TargetFile } from './models/file';
    -export { Updater } from './updater';
    diff --git a/deps/npm/node_modules/tuf-js/dist/index.js b/deps/npm/node_modules/tuf-js/dist/index.js
    index 6245d1724a2089..5a83b91f355d88 100644
    --- a/deps/npm/node_modules/tuf-js/dist/index.js
    +++ b/deps/npm/node_modules/tuf-js/dist/index.js
    @@ -1,9 +1,9 @@
     "use strict";
     Object.defineProperty(exports, "__esModule", { value: true });
    -exports.Updater = exports.TargetFile = exports.BaseFetcher = void 0;
    +exports.Updater = exports.BaseFetcher = exports.TargetFile = void 0;
    +var models_1 = require("@tufjs/models");
    +Object.defineProperty(exports, "TargetFile", { enumerable: true, get: function () { return models_1.TargetFile; } });
     var fetcher_1 = require("./fetcher");
     Object.defineProperty(exports, "BaseFetcher", { enumerable: true, get: function () { return fetcher_1.BaseFetcher; } });
    -var file_1 = require("./models/file");
    -Object.defineProperty(exports, "TargetFile", { enumerable: true, get: function () { return file_1.TargetFile; } });
     var updater_1 = require("./updater");
     Object.defineProperty(exports, "Updater", { enumerable: true, get: function () { return updater_1.Updater; } });
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/base.d.ts b/deps/npm/node_modules/tuf-js/dist/models/base.d.ts
    deleted file mode 100644
    index 4c5e0aaf4faaad..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/base.d.ts
    +++ /dev/null
    @@ -1,30 +0,0 @@
    -import { JSONObject, JSONValue } from '../utils/types';
    -import { Signature } from './signature';
    -export interface Signable {
    -    signatures: Record;
    -    signed: Signed;
    -}
    -export interface SignedOptions {
    -    version?: number;
    -    specVersion?: string;
    -    expires?: string;
    -    unrecognizedFields?: Record;
    -}
    -/***
    - * A base class for the signed part of TUF metadata.
    - *
    - * Objects with base class Signed are usually included in a ``Metadata`` object
    - * on the signed attribute. This class provides attributes and methods that
    - * are common for all TUF metadata types (roles).
    - */
    -export declare abstract class Signed {
    -    readonly specVersion: string;
    -    readonly expires: string;
    -    readonly version: number;
    -    readonly unrecognizedFields: Record;
    -    constructor(options: SignedOptions);
    -    equals(other: Signed): boolean;
    -    isExpired(referenceTime?: Date): boolean;
    -    static commonFieldsFromJSON(data: JSONObject): SignedOptions;
    -    abstract toJSON(): JSONObject;
    -}
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/delegations.d.ts b/deps/npm/node_modules/tuf-js/dist/models/delegations.d.ts
    deleted file mode 100644
    index b53862aa865bec..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/delegations.d.ts
    +++ /dev/null
    @@ -1,32 +0,0 @@
    -import { JSONObject, JSONValue } from '../utils/types';
    -import { Key } from './key';
    -import { DelegatedRole, SuccinctRoles } from './role';
    -type DelegatedRoleMap = Record;
    -type KeyMap = Record;
    -interface DelegationsOptions {
    -    keys: KeyMap;
    -    roles?: DelegatedRoleMap;
    -    succinctRoles?: SuccinctRoles;
    -    unrecognizedFields?: Record;
    -}
    -/**
    - * A container object storing information about all delegations.
    - *
    - * Targets roles that are trusted to provide signed metadata files
    - * describing targets with designated pathnames and/or further delegations.
    - */
    -export declare class Delegations {
    -    readonly keys: KeyMap;
    -    readonly roles?: DelegatedRoleMap;
    -    readonly unrecognizedFields?: Record;
    -    readonly succinctRoles?: SuccinctRoles;
    -    constructor(options: DelegationsOptions);
    -    equals(other: Delegations): boolean;
    -    rolesForTarget(targetPath: string): Generator<{
    -        role: string;
    -        terminating: boolean;
    -    }>;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): Delegations;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/file.d.ts b/deps/npm/node_modules/tuf-js/dist/models/file.d.ts
    deleted file mode 100644
    index 9678cf1efefd59..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/file.d.ts
    +++ /dev/null
    @@ -1,40 +0,0 @@
    -/// 
    -/// 
    -import { Readable } from 'stream';
    -import { JSONObject, JSONValue } from '../utils/types';
    -interface MetaFileOptions {
    -    version: number;
    -    length?: number;
    -    hashes?: Record;
    -    unrecognizedFields?: Record;
    -}
    -export declare class MetaFile {
    -    readonly version: number;
    -    readonly length?: number;
    -    readonly hashes?: Record;
    -    readonly unrecognizedFields?: Record;
    -    constructor(opts: MetaFileOptions);
    -    equals(other: MetaFile): boolean;
    -    verify(data: Buffer): void;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): MetaFile;
    -}
    -interface TargetFileOptions {
    -    length: number;
    -    path: string;
    -    hashes: Record;
    -    unrecognizedFields?: Record;
    -}
    -export declare class TargetFile {
    -    readonly length: number;
    -    readonly path: string;
    -    readonly hashes: Record;
    -    readonly unrecognizedFields: Record;
    -    constructor(opts: TargetFileOptions);
    -    get custom(): Record;
    -    equals(other: TargetFile): boolean;
    -    verify(stream: Readable): Promise;
    -    toJSON(): JSONObject;
    -    static fromJSON(path: string, data: JSONObject): TargetFile;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/index.d.ts b/deps/npm/node_modules/tuf-js/dist/models/index.d.ts
    deleted file mode 100644
    index 58d779159215b1..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/index.d.ts
    +++ /dev/null
    @@ -1,5 +0,0 @@
    -export { Metadata } from './metadata';
    -export { Root } from './root';
    -export { Snapshot } from './snapshot';
    -export { Targets } from './targets';
    -export { Timestamp } from './timestamp';
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/index.js b/deps/npm/node_modules/tuf-js/dist/models/index.js
    deleted file mode 100644
    index aa3d828cf9b43a..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/index.js
    +++ /dev/null
    @@ -1,13 +0,0 @@
    -"use strict";
    -Object.defineProperty(exports, "__esModule", { value: true });
    -exports.Timestamp = exports.Targets = exports.Snapshot = exports.Root = exports.Metadata = void 0;
    -var metadata_1 = require("./metadata");
    -Object.defineProperty(exports, "Metadata", { enumerable: true, get: function () { return metadata_1.Metadata; } });
    -var root_1 = require("./root");
    -Object.defineProperty(exports, "Root", { enumerable: true, get: function () { return root_1.Root; } });
    -var snapshot_1 = require("./snapshot");
    -Object.defineProperty(exports, "Snapshot", { enumerable: true, get: function () { return snapshot_1.Snapshot; } });
    -var targets_1 = require("./targets");
    -Object.defineProperty(exports, "Targets", { enumerable: true, get: function () { return targets_1.Targets; } });
    -var timestamp_1 = require("./timestamp");
    -Object.defineProperty(exports, "Timestamp", { enumerable: true, get: function () { return timestamp_1.Timestamp; } });
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/key.d.ts b/deps/npm/node_modules/tuf-js/dist/models/key.d.ts
    deleted file mode 100644
    index 160407ae70ee3f..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/key.d.ts
    +++ /dev/null
    @@ -1,21 +0,0 @@
    -import { JSONObject, JSONValue } from '../utils/types';
    -import { Signable } from './base';
    -export interface KeyOptions {
    -    keyID: string;
    -    keyType: string;
    -    scheme: string;
    -    keyVal: Record;
    -    unrecognizedFields?: Record;
    -}
    -export declare class Key {
    -    readonly keyID: string;
    -    readonly keyType: string;
    -    readonly scheme: string;
    -    readonly keyVal: Record;
    -    readonly unrecognizedFields?: Record;
    -    constructor(options: KeyOptions);
    -    verifySignature(metadata: Signable): void;
    -    equals(other: Key): boolean;
    -    toJSON(): JSONObject;
    -    static fromJSON(keyID: string, data: JSONObject): Key;
    -}
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/metadata.d.ts b/deps/npm/node_modules/tuf-js/dist/models/metadata.d.ts
    deleted file mode 100644
    index 39abf034064496..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/metadata.d.ts
    +++ /dev/null
    @@ -1,45 +0,0 @@
    -import { JSONObject, JSONValue, MetadataKind } from '../utils/types';
    -import { Signable } from './base';
    -import { Root } from './root';
    -import { Signature } from './signature';
    -import { Snapshot } from './snapshot';
    -import { Targets } from './targets';
    -import { Timestamp } from './timestamp';
    -type MetadataType = Root | Timestamp | Snapshot | Targets;
    -/***
    - * A container for signed TUF metadata.
    - *
    - * Provides methods to convert to and from json, read and write to and
    - * from JSON and to create and verify metadata signatures.
    - *
    - * ``Metadata[T]`` is a generic container type where T can be any one type of
    - * [``Root``, ``Timestamp``, ``Snapshot``, ``Targets``]. The purpose of this
    - * is to allow static type checking of the signed attribute in code using
    - * Metadata::
    - *
    - * root_md = Metadata[Root].fromJSON("root.json")
    - * # root_md type is now Metadata[Root]. This means signed and its
    - * # attributes like consistent_snapshot are now statically typed and the
    - * # types can be verified by static type checkers and shown by IDEs
    - *
    - * Using a type constraint is not required but not doing so means T is not a
    - * specific type so static typing cannot happen. Note that the type constraint
    - * ``[Root]`` is not validated at runtime (as pure annotations are not available
    - * then).
    - *
    - * Apart from ``expires`` all of the arguments to the inner constructors have
    - * reasonable default values for new metadata.
    - */
    -export declare class Metadata implements Signable {
    -    signed: T;
    -    signatures: Record;
    -    unrecognizedFields: Record;
    -    constructor(signed: T, signatures?: Record, unrecognizedFields?: Record);
    -    verifyDelegate(delegatedRole: string, delegatedMetadata: Metadata): void;
    -    equals(other: T): boolean;
    -    static fromJSON(type: MetadataKind.Root, data: JSONObject): Metadata;
    -    static fromJSON(type: MetadataKind.Timestamp, data: JSONObject): Metadata;
    -    static fromJSON(type: MetadataKind.Snapshot, data: JSONObject): Metadata;
    -    static fromJSON(type: MetadataKind.Targets, data: JSONObject): Metadata;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/role.d.ts b/deps/npm/node_modules/tuf-js/dist/models/role.d.ts
    deleted file mode 100644
    index 4575300fb972f9..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/role.d.ts
    +++ /dev/null
    @@ -1,103 +0,0 @@
    -import { JSONObject, JSONValue } from '../utils/types';
    -export declare const TOP_LEVEL_ROLE_NAMES: string[];
    -export interface RoleOptions {
    -    keyIDs: string[];
    -    threshold: number;
    -    unrecognizedFields?: Record;
    -}
    -/**
    - * Container that defines which keys are required to sign roles metadata.
    - *
    - * Role defines how many keys are required to successfully sign the roles
    - * metadata, and which keys are accepted.
    - */
    -export declare class Role {
    -    readonly keyIDs: string[];
    -    readonly threshold: number;
    -    readonly unrecognizedFields?: Record;
    -    constructor(options: RoleOptions);
    -    equals(other: Role): boolean;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): Role;
    -}
    -interface DelegatedRoleOptions extends RoleOptions {
    -    name: string;
    -    terminating: boolean;
    -    paths?: string[];
    -    pathHashPrefixes?: string[];
    -}
    -/**
    - * A container with information about a delegated role.
    - *
    - * A delegation can happen in two ways:
    - *   - ``paths`` is set: delegates targets matching any path pattern in ``paths``
    - *   - ``pathHashPrefixes`` is set: delegates targets whose target path hash
    - *      starts with any of the prefixes in ``pathHashPrefixes``
    - *
    - *   ``paths`` and ``pathHashPrefixes`` are mutually exclusive: both cannot be
    - *   set, at least one of them must be set.
    - */
    -export declare class DelegatedRole extends Role {
    -    readonly name: string;
    -    readonly terminating: boolean;
    -    readonly paths?: string[];
    -    readonly pathHashPrefixes?: string[];
    -    constructor(opts: DelegatedRoleOptions);
    -    equals(other: DelegatedRole): boolean;
    -    isDelegatedPath(targetFilepath: string): boolean;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): DelegatedRole;
    -}
    -interface SuccinctRolesOption extends RoleOptions {
    -    bitLength: number;
    -    namePrefix: string;
    -}
    -/**
    - * Succinctly defines a hash bin delegation graph.
    - *
    - * A ``SuccinctRoles`` object describes a delegation graph that covers all
    - * targets, distributing them uniformly over the delegated roles (i.e. bins)
    - * in the graph.
    - *
    - * The total number of bins is 2 to the power of the passed ``bit_length``.
    - *
    - * Bin names are the concatenation of the passed ``name_prefix`` and a
    - * zero-padded hex representation of the bin index separated by a hyphen.
    - *
    - * The passed ``keyids`` and ``threshold`` is used for each bin, and each bin
    - * is 'terminating'.
    - *
    - * For details: https://github.com/theupdateframework/taps/blob/master/tap15.md
    - */
    -export declare class SuccinctRoles extends Role {
    -    readonly bitLength: number;
    -    readonly namePrefix: string;
    -    readonly numberOfBins: number;
    -    readonly suffixLen: number;
    -    constructor(opts: SuccinctRolesOption);
    -    equals(other: SuccinctRoles): boolean;
    -    /***
    -     * Calculates the name of the delegated role responsible for 'target_filepath'.
    -     *
    -     * The target at path ''target_filepath' is assigned to a bin by casting
    -     * the left-most 'bit_length' of bits of the file path hash digest to
    -     * int, using it as bin index between 0 and '2**bit_length - 1'.
    -     *
    -     * Args:
    -     *  target_filepath: URL path to a target file, relative to a base
    -     *  targets URL.
    -     */
    -    getRoleForTarget(targetFilepath: string): string;
    -    getRoles(): Generator;
    -    /***
    -     * Determines whether the given ``role_name`` is in one of
    -     * the delegated roles that ``SuccinctRoles`` represents.
    -     *
    -     * Args:
    -     *  role_name: The name of the role to check against.
    -     */
    -    isDelegatedRole(roleName: string): boolean;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): SuccinctRoles;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/root.d.ts b/deps/npm/node_modules/tuf-js/dist/models/root.d.ts
    deleted file mode 100644
    index 66356628f4b8a5..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/root.d.ts
    +++ /dev/null
    @@ -1,28 +0,0 @@
    -import { JSONObject, MetadataKind } from '../utils/types';
    -import { Signed, SignedOptions } from './base';
    -import { Key } from './key';
    -import { Role } from './role';
    -type KeyMap = Record;
    -type RoleMap = Record;
    -export interface RootOptions extends SignedOptions {
    -    keys?: Record;
    -    roles?: Record;
    -    consistentSnapshot?: boolean;
    -}
    -/**
    - * A container for the signed part of root metadata.
    - *
    - * The top-level role and metadata file signed by the root keys.
    - * This role specifies trusted keys for all other top-level roles, which may further delegate trust.
    - */
    -export declare class Root extends Signed {
    -    readonly type = MetadataKind.Root;
    -    readonly keys: KeyMap;
    -    readonly roles: RoleMap;
    -    readonly consistentSnapshot: boolean;
    -    constructor(options: RootOptions);
    -    equals(other: Root): boolean;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): Root;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/signature.d.ts b/deps/npm/node_modules/tuf-js/dist/models/signature.d.ts
    deleted file mode 100644
    index 1d78e2d8e55d08..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/signature.d.ts
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -import { JSONObject } from '../utils/types';
    -export interface SignatureOptions {
    -    keyID: string;
    -    sig: string;
    -}
    -/**
    - * A container class containing information about a signature.
    - *
    - * Contains a signature and the keyid uniquely identifying the key used
    - * to generate the signature.
    - *
    - * Provide a `fromJSON` method to create a Signature from a JSON object.
    - */
    -export declare class Signature {
    -    readonly keyID: string;
    -    readonly sig: string;
    -    constructor(options: SignatureOptions);
    -    static fromJSON(data: JSONObject): Signature;
    -}
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/snapshot.d.ts b/deps/npm/node_modules/tuf-js/dist/models/snapshot.d.ts
    deleted file mode 100644
    index 79bc07359509bd..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/snapshot.d.ts
    +++ /dev/null
    @@ -1,23 +0,0 @@
    -import { JSONObject, MetadataKind } from '../utils/types';
    -import { Signed, SignedOptions } from './base';
    -import { MetaFile } from './file';
    -type MetaFileMap = Record;
    -export interface SnapshotOptions extends SignedOptions {
    -    meta?: MetaFileMap;
    -}
    -/**
    - * A container for the signed part of snapshot metadata.
    - *
    - * Snapshot contains information about all target Metadata files.
    - * A top-level role that specifies the latest versions of all targets metadata files,
    - * and hence the latest versions of all targets (including any dependencies between them) on the repository.
    - */
    -export declare class Snapshot extends Signed {
    -    readonly type = MetadataKind.Snapshot;
    -    readonly meta: MetaFileMap;
    -    constructor(opts: SnapshotOptions);
    -    equals(other: Snapshot): boolean;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): Snapshot;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/targets.d.ts b/deps/npm/node_modules/tuf-js/dist/models/targets.d.ts
    deleted file mode 100644
    index 24dba9ac715805..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/targets.d.ts
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -import { JSONObject, MetadataKind } from '../utils/types';
    -import { Signed, SignedOptions } from './base';
    -import { Delegations } from './delegations';
    -import { TargetFile } from './file';
    -type TargetFileMap = Record;
    -interface TargetsOptions extends SignedOptions {
    -    targets?: TargetFileMap;
    -    delegations?: Delegations;
    -}
    -export declare class Targets extends Signed {
    -    readonly type = MetadataKind.Targets;
    -    readonly targets: TargetFileMap;
    -    readonly delegations?: Delegations;
    -    constructor(options: TargetsOptions);
    -    equals(other: Targets): boolean;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): Targets;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/models/timestamp.d.ts b/deps/npm/node_modules/tuf-js/dist/models/timestamp.d.ts
    deleted file mode 100644
    index 481ada8e238d53..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/models/timestamp.d.ts
    +++ /dev/null
    @@ -1,21 +0,0 @@
    -import { JSONObject, MetadataKind } from '../utils/types';
    -import { Signed, SignedOptions } from './base';
    -import { MetaFile } from './file';
    -interface TimestampOptions extends SignedOptions {
    -    snapshotMeta?: MetaFile;
    -}
    -/**
    - * A container for the signed part of timestamp metadata.
    - *
    - * A top-level that specifies the latest version of the snapshot role metadata file,
    - * and hence the latest versions of all metadata and targets on the repository.
    - */
    -export declare class Timestamp extends Signed {
    -    readonly type = MetadataKind.Timestamp;
    -    readonly snapshotMeta: MetaFile;
    -    constructor(options: TimestampOptions);
    -    equals(other: Timestamp): boolean;
    -    toJSON(): JSONObject;
    -    static fromJSON(data: JSONObject): Timestamp;
    -}
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/store.d.ts b/deps/npm/node_modules/tuf-js/dist/store.d.ts
    deleted file mode 100644
    index a6e20ae559c8b8..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/store.d.ts
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -/// 
    -import { Metadata, Root, Snapshot, Targets, Timestamp } from './models';
    -export declare class TrustedMetadataStore {
    -    private trustedSet;
    -    private referenceTime;
    -    constructor(rootData: Buffer);
    -    get root(): Metadata;
    -    get timestamp(): Metadata | undefined;
    -    get snapshot(): Metadata | undefined;
    -    get targets(): Metadata | undefined;
    -    getRole(name: string): Metadata | undefined;
    -    updateRoot(bytesBuffer: Buffer): Metadata;
    -    updateTimestamp(bytesBuffer: Buffer): Metadata;
    -    updateSnapshot(bytesBuffer: Buffer, trusted?: boolean): Metadata;
    -    updateDelegatedTargets(bytesBuffer: Buffer, roleName: string, delegatorName: string): void;
    -    private loadTrustedRoot;
    -    private checkFinalTimestamp;
    -    private checkFinalSnapsnot;
    -}
    diff --git a/deps/npm/node_modules/tuf-js/dist/store.js b/deps/npm/node_modules/tuf-js/dist/store.js
    index 351a1961730bc9..85673361087095 100644
    --- a/deps/npm/node_modules/tuf-js/dist/store.js
    +++ b/deps/npm/node_modules/tuf-js/dist/store.js
    @@ -1,9 +1,8 @@
     "use strict";
     Object.defineProperty(exports, "__esModule", { value: true });
     exports.TrustedMetadataStore = void 0;
    +const models_1 = require("@tufjs/models");
     const error_1 = require("./error");
    -const models_1 = require("./models");
    -const types_1 = require("./utils/types");
     class TrustedMetadataStore {
         constructor(rootData) {
             this.trustedSet = {};
    @@ -32,18 +31,18 @@ class TrustedMetadataStore {
         }
         updateRoot(bytesBuffer) {
             const data = JSON.parse(bytesBuffer.toString('utf8'));
    -        const newRoot = models_1.Metadata.fromJSON(types_1.MetadataKind.Root, data);
    -        if (newRoot.signed.type != types_1.MetadataKind.Root) {
    +        const newRoot = models_1.Metadata.fromJSON(models_1.MetadataKind.Root, data);
    +        if (newRoot.signed.type != models_1.MetadataKind.Root) {
                 throw new error_1.RepositoryError(`Expected 'root', got ${newRoot.signed.type}`);
             }
             // Client workflow 5.4: check for arbitrary software attack
    -        this.root.verifyDelegate(types_1.MetadataKind.Root, newRoot);
    +        this.root.verifyDelegate(models_1.MetadataKind.Root, newRoot);
             // Client workflow 5.5: check for rollback attack
             if (newRoot.signed.version != this.root.signed.version + 1) {
                 throw new error_1.BadVersionError(`Expected version ${this.root.signed.version + 1}, got ${newRoot.signed.version}`);
             }
             // Check that new root is signed by self
    -        newRoot.verifyDelegate(types_1.MetadataKind.Root, newRoot);
    +        newRoot.verifyDelegate(models_1.MetadataKind.Root, newRoot);
             // Client workflow 5.7: set new root as trusted root
             this.trustedSet.root = newRoot;
             return newRoot;
    @@ -56,12 +55,12 @@ class TrustedMetadataStore {
                 throw new error_1.ExpiredMetadataError('Final root.json is expired');
             }
             const data = JSON.parse(bytesBuffer.toString('utf8'));
    -        const newTimestamp = models_1.Metadata.fromJSON(types_1.MetadataKind.Timestamp, data);
    -        if (newTimestamp.signed.type != types_1.MetadataKind.Timestamp) {
    +        const newTimestamp = models_1.Metadata.fromJSON(models_1.MetadataKind.Timestamp, data);
    +        if (newTimestamp.signed.type != models_1.MetadataKind.Timestamp) {
                 throw new error_1.RepositoryError(`Expected 'timestamp', got ${newTimestamp.signed.type}`);
             }
             // Client workflow 5.4.2: check for arbitrary software attack
    -        this.root.verifyDelegate(types_1.MetadataKind.Timestamp, newTimestamp);
    +        this.root.verifyDelegate(models_1.MetadataKind.Timestamp, newTimestamp);
             if (this.timestamp) {
                 // Prevent rolling back timestamp version
                 // Client workflow 5.4.3.1: check for rollback attack
    @@ -104,12 +103,12 @@ class TrustedMetadataStore {
                 snapshotMeta.verify(bytesBuffer);
             }
             const data = JSON.parse(bytesBuffer.toString('utf8'));
    -        const newSnapshot = models_1.Metadata.fromJSON(types_1.MetadataKind.Snapshot, data);
    -        if (newSnapshot.signed.type != types_1.MetadataKind.Snapshot) {
    +        const newSnapshot = models_1.Metadata.fromJSON(models_1.MetadataKind.Snapshot, data);
    +        if (newSnapshot.signed.type != models_1.MetadataKind.Snapshot) {
                 throw new error_1.RepositoryError(`Expected 'snapshot', got ${newSnapshot.signed.type}`);
             }
             // Client workflow 5.5.3: check for arbitrary software attack
    -        this.root.verifyDelegate(types_1.MetadataKind.Snapshot, newSnapshot);
    +        this.root.verifyDelegate(models_1.MetadataKind.Snapshot, newSnapshot);
             // version check against meta version (5.5.4) is deferred to allow old
             // snapshot to be used in rollback protection
             // Client workflow 5.5.5: check for rollback attack
    @@ -149,8 +148,8 @@ class TrustedMetadataStore {
             // Client workflow 5.6.2: check against snapshot role's targets hash
             meta.verify(bytesBuffer);
             const data = JSON.parse(bytesBuffer.toString('utf8'));
    -        const newDelegate = models_1.Metadata.fromJSON(types_1.MetadataKind.Targets, data);
    -        if (newDelegate.signed.type != types_1.MetadataKind.Targets) {
    +        const newDelegate = models_1.Metadata.fromJSON(models_1.MetadataKind.Targets, data);
    +        if (newDelegate.signed.type != models_1.MetadataKind.Targets) {
                 throw new error_1.RepositoryError(`Expected 'targets', got ${newDelegate.signed.type}`);
             }
             // Client workflow 5.6.3: check for arbitrary software attack
    @@ -170,11 +169,11 @@ class TrustedMetadataStore {
         // Note that an expired initial root is still considered valid.
         loadTrustedRoot(bytesBuffer) {
             const data = JSON.parse(bytesBuffer.toString('utf8'));
    -        const root = models_1.Metadata.fromJSON(types_1.MetadataKind.Root, data);
    -        if (root.signed.type != types_1.MetadataKind.Root) {
    +        const root = models_1.Metadata.fromJSON(models_1.MetadataKind.Root, data);
    +        if (root.signed.type != models_1.MetadataKind.Root) {
                 throw new error_1.RepositoryError(`Expected 'root', got ${root.signed.type}`);
             }
    -        root.verifyDelegate(types_1.MetadataKind.Root, root);
    +        root.verifyDelegate(models_1.MetadataKind.Root, root);
             this.trustedSet['root'] = root;
         }
         checkFinalTimestamp() {
    diff --git a/deps/npm/node_modules/tuf-js/dist/updater.d.ts b/deps/npm/node_modules/tuf-js/dist/updater.d.ts
    deleted file mode 100644
    index e49dca22a43d35..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/updater.d.ts
    +++ /dev/null
    @@ -1,33 +0,0 @@
    -import { BaseFetcher } from './fetcher';
    -import { TargetFile } from './models/file';
    -import { Config } from './utils/config';
    -export interface UpdaterOptions {
    -    metadataDir: string;
    -    metadataBaseUrl: string;
    -    targetDir?: string;
    -    targetBaseUrl?: string;
    -    fetcher?: BaseFetcher;
    -    config?: Partial;
    -}
    -export declare class Updater {
    -    private dir;
    -    private metadataBaseUrl;
    -    private targetDir?;
    -    private targetBaseUrl?;
    -    private trustedSet;
    -    private config;
    -    private fetcher;
    -    constructor(options: UpdaterOptions);
    -    refresh(): Promise;
    -    getTargetInfo(targetPath: string): Promise;
    -    downloadTarget(targetInfo: TargetFile, filePath?: string, targetBaseUrl?: string): Promise;
    -    findCachedTarget(targetInfo: TargetFile, filePath?: string): Promise;
    -    private loadLocalMetadata;
    -    private loadRoot;
    -    private loadTimestamp;
    -    private loadSnapshot;
    -    private loadTargets;
    -    private preorderDepthFirstWalk;
    -    private generateTargetPath;
    -    private persistMetadata;
    -}
    diff --git a/deps/npm/node_modules/tuf-js/dist/updater.js b/deps/npm/node_modules/tuf-js/dist/updater.js
    index 9f33c667ce9b2e..7f8b6bedeedd3e 100644
    --- a/deps/npm/node_modules/tuf-js/dist/updater.js
    +++ b/deps/npm/node_modules/tuf-js/dist/updater.js
    @@ -24,13 +24,13 @@ var __importStar = (this && this.__importStar) || function (mod) {
     };
     Object.defineProperty(exports, "__esModule", { value: true });
     exports.Updater = void 0;
    +const models_1 = require("@tufjs/models");
     const fs = __importStar(require("fs"));
     const path = __importStar(require("path"));
    +const config_1 = require("./config");
     const error_1 = require("./error");
     const fetcher_1 = require("./fetcher");
     const store_1 = require("./store");
    -const config_1 = require("./utils/config");
    -const types_1 = require("./utils/types");
     class Updater {
         constructor(options) {
             const { metadataDir, metadataBaseUrl, targetDir, targetBaseUrl, fetcher, config, } = options;
    @@ -38,12 +38,12 @@ class Updater {
             this.metadataBaseUrl = metadataBaseUrl;
             this.targetDir = targetDir;
             this.targetBaseUrl = targetBaseUrl;
    -        const data = this.loadLocalMetadata(types_1.MetadataKind.Root);
    +        const data = this.loadLocalMetadata(models_1.MetadataKind.Root);
             this.trustedSet = new store_1.TrustedMetadataStore(data);
             this.config = { ...config_1.defaultConfig, ...config };
             this.fetcher =
                 fetcher ||
    -                new fetcher_1.Fetcher({
    +                new fetcher_1.DefaultFetcher({
                         timeout: this.config.fetchTimeout,
                         retries: this.config.fetchRetries,
                     });
    @@ -52,7 +52,7 @@ class Updater {
             await this.loadRoot();
             await this.loadTimestamp();
             await this.loadSnapshot();
    -        await this.loadTargets(types_1.MetadataKind.Targets, types_1.MetadataKind.Root);
    +        await this.loadTargets(models_1.MetadataKind.Targets, models_1.MetadataKind.Root);
         }
         // Returns the TargetFile instance with information for the given target path.
         //
    @@ -123,7 +123,7 @@ class Updater {
                     // Client workflow 5.3.4 - 5.4.7
                     this.trustedSet.updateRoot(bytesData);
                     // Client workflow 5.3.8: persist root metadata file
    -                this.persistMetadata(types_1.MetadataKind.Root, bytesData);
    +                this.persistMetadata(models_1.MetadataKind.Root, bytesData);
                 }
                 catch (error) {
                     break;
    @@ -135,7 +135,7 @@ class Updater {
         async loadTimestamp() {
             // Load local and remote timestamp metadata
             try {
    -            const data = this.loadLocalMetadata(types_1.MetadataKind.Timestamp);
    +            const data = this.loadLocalMetadata(models_1.MetadataKind.Timestamp);
                 this.trustedSet.updateTimestamp(data);
             }
             catch (error) {
    @@ -159,14 +159,14 @@ class Updater {
                 throw error;
             }
             // Client workflow 5.4.5: persist timestamp metadata
    -        this.persistMetadata(types_1.MetadataKind.Timestamp, bytesData);
    +        this.persistMetadata(models_1.MetadataKind.Timestamp, bytesData);
         }
         // Load local and remote snapshot metadata.
         // Client workflow 5.5: update snapshot role
         async loadSnapshot() {
             //Load local (and if needed remote) snapshot metadata
             try {
    -            const data = this.loadLocalMetadata(types_1.MetadataKind.Snapshot);
    +            const data = this.loadLocalMetadata(models_1.MetadataKind.Snapshot);
                 this.trustedSet.updateSnapshot(data, true);
             }
             catch (error) {
    @@ -185,7 +185,7 @@ class Updater {
                     // Client workflow 5.5.2 - 5.5.6
                     this.trustedSet.updateSnapshot(bytesData);
                     // Client workflow 5.5.7: persist snapshot metadata file
    -                this.persistMetadata(types_1.MetadataKind.Snapshot, bytesData);
    +                this.persistMetadata(models_1.MetadataKind.Snapshot, bytesData);
                 }
                 catch (error) {
                     throw new error_1.RuntimeError(`Unable to load snapshot metadata error ${error}`);
    @@ -236,8 +236,8 @@ class Updater {
             // is needed to load and verify the delegated targets metadata.
             const delegationsToVisit = [
                 {
    -                roleName: types_1.MetadataKind.Targets,
    -                parentRoleName: types_1.MetadataKind.Root,
    +                roleName: models_1.MetadataKind.Targets,
    +                parentRoleName: models_1.MetadataKind.Root,
                 },
             ];
             const visitedRoleNames = new Set();
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/config.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/config.d.ts
    deleted file mode 100644
    index 2a906c7c28d86b..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/config.d.ts
    +++ /dev/null
    @@ -1,12 +0,0 @@
    -export declare const defaultConfig: {
    -    maxRootRotations: number;
    -    maxDelegations: number;
    -    rootMaxLength: number;
    -    timestampMaxLength: number;
    -    snapshotMaxLength: number;
    -    targetsMaxLength: number;
    -    prefixTargetsWithHash: boolean;
    -    fetchTimeout: number;
    -    fetchRetries: number;
    -};
    -export type Config = typeof defaultConfig;
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/guard.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/guard.d.ts
    deleted file mode 100644
    index 17bc4ce3c7ea53..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/guard.d.ts
    +++ /dev/null
    @@ -1,8 +0,0 @@
    -import { JSONObject, MetadataKind } from './types';
    -export declare function isDefined(val: T | undefined): val is T;
    -export declare function isObject(value: unknown): value is JSONObject;
    -export declare function isStringArray(value: unknown): value is string[];
    -export declare function isObjectArray(value: unknown): value is JSONObject[];
    -export declare function isStringRecord(value: unknown): value is Record;
    -export declare function isObjectRecord(value: unknown): value is Record;
    -export declare function isMetadataKind(value: unknown): value is MetadataKind;
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/index.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/index.d.ts
    deleted file mode 100644
    index e2232bc5cceab8..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/index.d.ts
    +++ /dev/null
    @@ -1,5 +0,0 @@
    -export * as config from './config';
    -export * as guard from './guard';
    -export * as json from './json';
    -export * as signer from './signer';
    -export * as types from './types';
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/json.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/json.d.ts
    deleted file mode 100644
    index ecddbee17c4469..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/json.d.ts
    +++ /dev/null
    @@ -1,2 +0,0 @@
    -/// 
    -export declare function canonicalize(object: any): Buffer;
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/key.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/key.d.ts
    deleted file mode 100644
    index 7b631281a34086..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/key.d.ts
    +++ /dev/null
    @@ -1,9 +0,0 @@
    -/// 
    -import { VerifyKeyObjectInput } from 'crypto';
    -interface KeyInfo {
    -    keyType: string;
    -    scheme: string;
    -    keyVal: string;
    -}
    -export declare function getPublicKey(keyInfo: KeyInfo): VerifyKeyObjectInput;
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/oid.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/oid.d.ts
    deleted file mode 100644
    index f20456a978f0ee..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/oid.d.ts
    +++ /dev/null
    @@ -1,2 +0,0 @@
    -/// 
    -export declare function encodeOIDString(oid: string): Buffer;
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/signer.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/signer.d.ts
    deleted file mode 100644
    index 376ef113c49110..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/signer.d.ts
    +++ /dev/null
    @@ -1,3 +0,0 @@
    -import crypto from 'crypto';
    -import { JSONObject } from '../utils/types';
    -export declare const verifySignature: (metaDataSignedData: JSONObject, key: crypto.VerifyKeyObjectInput, signature: string) => boolean;
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/tmpfile.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/tmpfile.d.ts
    deleted file mode 100644
    index 4d5ee8abb84a6b..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/tmpfile.d.ts
    +++ /dev/null
    @@ -1,3 +0,0 @@
    -type TempFileHandler = (file: string) => Promise;
    -export declare const withTempFile: (handler: TempFileHandler) => Promise;
    -export {};
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/types.d.ts b/deps/npm/node_modules/tuf-js/dist/utils/types.d.ts
    deleted file mode 100644
    index 24319ddf7bb6bc..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/types.d.ts
    +++ /dev/null
    @@ -1,10 +0,0 @@
    -export declare enum MetadataKind {
    -    Root = "root",
    -    Timestamp = "timestamp",
    -    Snapshot = "snapshot",
    -    Targets = "targets"
    -}
    -export type JSONObject = {
    -    [key: string]: JSONValue;
    -};
    -export type JSONValue = null | boolean | number | string | JSONValue[] | JSONObject;
    diff --git a/deps/npm/node_modules/tuf-js/dist/utils/types.js b/deps/npm/node_modules/tuf-js/dist/utils/types.js
    deleted file mode 100644
    index 469f580743f652..00000000000000
    --- a/deps/npm/node_modules/tuf-js/dist/utils/types.js
    +++ /dev/null
    @@ -1,10 +0,0 @@
    -"use strict";
    -Object.defineProperty(exports, "__esModule", { value: true });
    -exports.MetadataKind = void 0;
    -var MetadataKind;
    -(function (MetadataKind) {
    -    MetadataKind["Root"] = "root";
    -    MetadataKind["Timestamp"] = "timestamp";
    -    MetadataKind["Snapshot"] = "snapshot";
    -    MetadataKind["Targets"] = "targets";
    -})(MetadataKind = exports.MetadataKind || (exports.MetadataKind = {}));
    diff --git a/deps/npm/node_modules/tuf-js/package.json b/deps/npm/node_modules/tuf-js/package.json
    index 758e71223e40f6..4396e202369b8b 100644
    --- a/deps/npm/node_modules/tuf-js/package.json
    +++ b/deps/npm/node_modules/tuf-js/package.json
    @@ -1,56 +1,42 @@
     {
       "name": "tuf-js",
    -  "version": "1.0.0",
    +  "version": "1.1.2",
       "description": "JavaScript implementation of The Update Framework (TUF)",
       "main": "dist/index.js",
       "types": "dist/index.d.ts",
       "scripts": {
    -    "build": "tsc",
    -    "test": "jest",
    -    "test:watch": "jest --watch",
    -    "test:ci": "jest --maxWorkers=2 --coverage",
    -    "lint": "eslint --fix --ext .ts src/**",
    -    "lint:check": "eslint --max-warnings 0 --ext .ts src/**",
    -    "format": "prettier --write \"src/**/*\""
    +    "build": "tsc --build",
    +    "clean": "rm -rf dist",
    +    "test": "jest"
       },
       "repository": {
         "type": "git",
    -    "url": "git+https://github.com/github/tuf-js.git"
    +    "url": "git+https://github.com/theupdateframework/tuf-js.git"
       },
       "files": [
         "dist"
       ],
       "keywords": [
    -    "tuf"
    +    "tuf",
    +    "security",
    +    "update"
       ],
       "author": "bdehamer@github.com",
       "license": "MIT",
       "bugs": {
    -    "url": "https://github.com/github/tuf-js/issues"
    +    "url": "https://github.com/theupdateframework/tuf-js/issues"
       },
    -  "homepage": "https://github.com/github/tuf-js#readme",
    +  "homepage": "https://github.com/theupdateframework/tuf-js/tree/main/packages/client#readme",
       "devDependencies": {
    -    "@tsconfig/node14": "^1.0.3",
    -    "@types/jest": "^28.1.8",
    -    "@types/lodash.isequal": "^4.5.6",
    +    "@tufjs/repo-mock": "1.0.1",
         "@types/make-fetch-happen": "^10.0.1",
    -    "@types/minimatch": "^5.1.2",
    -    "@types/node": "^18.11.10",
    -    "@typescript-eslint/eslint-plugin": "^5.45.0",
    -    "@typescript-eslint/parser": "^5.45.0",
    -    "eslint": "^8.28.0",
    -    "eslint-config-prettier": "^8.5.0",
    -    "eslint-plugin-prettier": "^4.2.1",
    -    "http-server": "^14.1.1",
    -    "jest": "^28.1.3",
    +    "@types/node": "^18.15.3",
         "nock": "^13.2.9",
    -    "prettier": "^2.8.0",
    -    "ts-jest": "^28.0.8",
    -    "typescript": "^4.9.3"
    +    "typescript": "^4.9.5"
       },
       "dependencies": {
         "make-fetch-happen": "^11.0.1",
    -    "minimatch": "^6.1.0"
    +    "@tufjs/models": "1.0.1"
       },
       "engines": {
         "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    diff --git a/deps/npm/package.json b/deps/npm/package.json
    index 851d7de8b80134..2a61a1dda52e46 100644
    --- a/deps/npm/package.json
    +++ b/deps/npm/package.json
    @@ -1,5 +1,5 @@
     {
    -  "version": "9.5.1",
    +  "version": "9.6.3",
       "name": "npm",
       "description": "a package manager for JavaScript",
       "workspaces": [
    @@ -53,14 +53,14 @@
       },
       "dependencies": {
         "@isaacs/string-locale-compare": "^1.1.0",
    -    "@npmcli/arborist": "^6.2.3",
    -    "@npmcli/config": "^6.1.3",
    -    "@npmcli/map-workspaces": "^3.0.2",
    +    "@npmcli/arborist": "^6.2.6",
    +    "@npmcli/config": "^6.1.5",
    +    "@npmcli/map-workspaces": "^3.0.3",
         "@npmcli/package-json": "^3.0.0",
         "@npmcli/run-script": "^6.0.0",
         "abbrev": "^2.0.0",
         "archy": "~1.0.0",
    -    "cacache": "^17.0.4",
    +    "cacache": "^17.0.5",
         "chalk": "^4.1.2",
         "ci-info": "^3.8.0",
         "cli-columns": "^4.0.0",
    @@ -68,33 +68,33 @@
         "columnify": "^1.6.0",
         "fastest-levenshtein": "^1.0.16",
         "fs-minipass": "^3.0.1",
    -    "glob": "^8.1.0",
    -    "graceful-fs": "^4.2.10",
    +    "glob": "^9.3.1",
    +    "graceful-fs": "^4.2.11",
         "hosted-git-info": "^6.1.1",
         "ini": "^3.0.1",
         "init-package-json": "^5.0.0",
         "is-cidr": "^4.0.2",
         "json-parse-even-better-errors": "^3.0.0",
         "libnpmaccess": "^7.0.2",
    -    "libnpmdiff": "^5.0.11",
    -    "libnpmexec": "^5.0.11",
    -    "libnpmfund": "^4.0.11",
    +    "libnpmdiff": "^5.0.14",
    +    "libnpmexec": "^5.0.14",
    +    "libnpmfund": "^4.0.14",
         "libnpmhook": "^9.0.3",
         "libnpmorg": "^5.0.3",
    -    "libnpmpack": "^5.0.11",
    -    "libnpmpublish": "^7.1.0",
    +    "libnpmpack": "^5.0.14",
    +    "libnpmpublish": "^7.1.3",
         "libnpmsearch": "^6.0.2",
         "libnpmteam": "^5.0.3",
         "libnpmversion": "^4.0.2",
         "make-fetch-happen": "^11.0.3",
    -    "minimatch": "^6.2.0",
    -    "minipass": "^4.0.3",
    +    "minimatch": "^7.4.3",
    +    "minipass": "^4.2.5",
         "minipass-pipeline": "^1.2.4",
         "ms": "^2.1.2",
         "node-gyp": "^9.3.1",
    -    "nopt": "^7.0.0",
    +    "nopt": "^7.1.0",
         "npm-audit-report": "^4.0.0",
    -    "npm-install-checks": "^6.0.0",
    +    "npm-install-checks": "^6.1.0",
         "npm-package-arg": "^10.1.0",
         "npm-pick-manifest": "^8.0.1",
         "npm-profile": "^7.0.1",
    @@ -103,11 +103,11 @@
         "npmlog": "^7.0.1",
         "p-map": "^4.0.0",
         "pacote": "^15.1.1",
    -    "parse-conflict-json": "^3.0.0",
    +    "parse-conflict-json": "^3.0.1",
         "proc-log": "^3.0.0",
         "qrcode-terminal": "^0.12.0",
         "read": "^2.0.0",
    -    "read-package-json": "^6.0.0",
    +    "read-package-json": "^6.0.1",
         "read-package-json-fast": "^3.0.2",
         "semver": "^7.3.8",
         "ssri": "^10.0.1",
    @@ -191,10 +191,10 @@
         "@npmcli/docs": "^1.0.0",
         "@npmcli/eslint-config": "^4.0.0",
         "@npmcli/fs": "^3.1.0",
    -    "@npmcli/git": "^4.0.1",
    +    "@npmcli/git": "^4.0.4",
         "@npmcli/mock-registry": "^1.0.0",
         "@npmcli/promise-spawn": "^6.0.2",
    -    "@npmcli/template-oss": "4.11.4",
    +    "@npmcli/template-oss": "4.12.1",
         "licensee": "^10.0.0",
         "nock": "^13.3.0",
         "npm-packlist": "^7.0.4",
    @@ -248,7 +248,7 @@
       },
       "templateOSS": {
         "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
    -    "version": "4.11.4",
    +    "version": "4.12.1",
         "content": "./scripts/template-oss/root.js"
       },
       "license": "Artistic-2.0",
    diff --git a/deps/npm/tap-snapshots/test/lib/commands/completion.js.test.cjs b/deps/npm/tap-snapshots/test/lib/commands/completion.js.test.cjs
    index 3e7125bc33ba97..b21e378b1cfbe8 100644
    --- a/deps/npm/tap-snapshots/test/lib/commands/completion.js.test.cjs
    +++ b/deps/npm/tap-snapshots/test/lib/commands/completion.js.test.cjs
    @@ -66,6 +66,7 @@ Array [
           fund
           get
           help
    +      help-search
           hook
           init
           install
    diff --git a/deps/npm/tap-snapshots/test/lib/commands/profile.js.test.cjs b/deps/npm/tap-snapshots/test/lib/commands/profile.js.test.cjs
    index 4959f7cdd2cc32..4530dbf95cec24 100644
    --- a/deps/npm/tap-snapshots/test/lib/commands/profile.js.test.cjs
    +++ b/deps/npm/tap-snapshots/test/lib/commands/profile.js.test.cjs
    @@ -31,6 +31,19 @@ exports[`test/lib/commands/profile.js TAP profile get multiple args default outp
     foo	foo@github.com (verified)	https://github.com/npm
     `
     
    +exports[`test/lib/commands/profile.js TAP profile get no args --color > should output all profile info with color result 1`] = `
    +name: foo
    +email: foo@github.com (verified)
    +two-factor auth: auth-and-writes
    +fullname: Foo Bar
    +homepage: https://github.com
    +freenode: foobar
    +twitter: https://twitter.com/npmjs
    +github: https://github.com/npm
    +created: 2015-02-26T01:26:37.384Z
    +updated: 2020-08-12T16:19:35.326Z
    +`
    +
     exports[`test/lib/commands/profile.js TAP profile get no args --parseable > should output all profile info as parseable result 1`] = `
     tfa	auth-and-writes
     name	foo
    @@ -46,56 +59,56 @@ github	https://github.com/npm
     `
     
     exports[`test/lib/commands/profile.js TAP profile get no args default output > should output table with contents 1`] = `
    -name: foo
    -email: foo@github.com (verified)
    -two-factor auth: auth-and-writes
    -fullname: Foo Bar
    -homepage: https://github.com
    -freenode: foobar
    -twitter: https://twitter.com/npmjs
    -github: https://github.com/npm
    -created: 2015-02-26T01:26:37.384Z
    -updated: 2020-08-12T16:19:35.326Z
    +name: foo
    +email: foo@github.com (verified)
    +two-factor auth: auth-and-writes
    +fullname: Foo Bar
    +homepage: https://github.com
    +freenode: foobar
    +twitter: https://twitter.com/npmjs
    +github: https://github.com/npm
    +created: 2015-02-26T01:26:37.384Z
    +updated: 2020-08-12T16:19:35.326Z
     `
     
     exports[`test/lib/commands/profile.js TAP profile get no args no tfa enabled > should output expected profile values 1`] = `
    -name: foo
    -email: foo@github.com (verified)
    -two-factor auth: disabled
    -fullname: Foo Bar
    -homepage: https://github.com
    -freenode: foobar
    -twitter: https://twitter.com/npmjs
    -github: https://github.com/npm
    -created: 2015-02-26T01:26:37.384Z
    -updated: 2020-08-12T16:19:35.326Z
    +name: foo
    +email: foo@github.com (verified)
    +two-factor auth: disabled
    +fullname: Foo Bar
    +homepage: https://github.com
    +freenode: foobar
    +twitter: https://twitter.com/npmjs
    +github: https://github.com/npm
    +created: 2015-02-26T01:26:37.384Z
    +updated: 2020-08-12T16:19:35.326Z
     `
     
     exports[`test/lib/commands/profile.js TAP profile get no args profile has cidr_whitelist item > should output table with contents 1`] = `
    -name: foo
    -email: foo@github.com (verified)
    -two-factor auth: auth-and-writes
    -fullname: Foo Bar
    -homepage: https://github.com
    -freenode: foobar
    -twitter: https://twitter.com/npmjs
    -github: https://github.com/npm
    -created: 2015-02-26T01:26:37.384Z
    -updated: 2020-08-12T16:19:35.326Z
    -cidr_whitelist: 192.168.1.1
    +name: foo
    +email: foo@github.com (verified)
    +two-factor auth: auth-and-writes
    +fullname: Foo Bar
    +homepage: https://github.com
    +freenode: foobar
    +twitter: https://twitter.com/npmjs
    +github: https://github.com/npm
    +created: 2015-02-26T01:26:37.384Z
    +updated: 2020-08-12T16:19:35.326Z
    +cidr_whitelist: 192.168.1.1
     `
     
     exports[`test/lib/commands/profile.js TAP profile get no args unverified email > should output table with contents 1`] = `
    -name: foo
    -email: foo@github.com(unverified)
    -two-factor auth: auth-and-writes
    -fullname: Foo Bar
    -homepage: https://github.com
    -freenode: foobar
    -twitter: https://twitter.com/npmjs
    -github: https://github.com/npm
    -created: 2015-02-26T01:26:37.384Z
    -updated: 2020-08-12T16:19:35.326Z
    +name: foo
    +email: foo@github.com(unverified)
    +two-factor auth: auth-and-writes
    +fullname: Foo Bar
    +homepage: https://github.com
    +freenode: foobar
    +twitter: https://twitter.com/npmjs
    +github: https://github.com/npm
    +created: 2015-02-26T01:26:37.384Z
    +updated: 2020-08-12T16:19:35.326Z
     `
     
     exports[`test/lib/commands/profile.js TAP profile set   writable key --parseable > should output parseable set key success msg 1`] = `
    diff --git a/deps/npm/tap-snapshots/test/lib/docs.js.test.cjs b/deps/npm/tap-snapshots/test/lib/docs.js.test.cjs
    index dfd287eaa69648..94b429988def4b 100644
    --- a/deps/npm/tap-snapshots/test/lib/docs.js.test.cjs
    +++ b/deps/npm/tap-snapshots/test/lib/docs.js.test.cjs
    @@ -33,349 +33,6 @@ Configuration fields: npm help 7 config
     npm@{VERSION} {BASEDIR}
     `
     
    -exports[`test/lib/docs.js TAP command list > abbrevs 1`] = `
    -Object {
    -  "ac": "access",
    -  "acc": "access",
    -  "acce": "access",
    -  "acces": "access",
    -  "access": "access",
    -  "add": "add",
    -  "add-": "add-user",
    -  "add-u": "add-user",
    -  "add-us": "add-user",
    -  "add-use": "add-user",
    -  "add-user": "add-user",
    -  "addu": "adduser",
    -  "addus": "adduser",
    -  "adduse": "adduser",
    -  "adduser": "adduser",
    -  "aud": "audit",
    -  "audi": "audit",
    -  "audit": "audit",
    -  "aut": "author",
    -  "auth": "author",
    -  "autho": "author",
    -  "author": "author",
    -  "b": "bugs",
    -  "bu": "bugs",
    -  "bug": "bugs",
    -  "bugs": "bugs",
    -  "c": "c",
    -  "ca": "cache",
    -  "cac": "cache",
    -  "cach": "cache",
    -  "cache": "cache",
    -  "ci": "ci",
    -  "cit": "cit",
    -  "clean-install": "clean-install",
    -  "clean-install-": "clean-install-test",
    -  "clean-install-t": "clean-install-test",
    -  "clean-install-te": "clean-install-test",
    -  "clean-install-tes": "clean-install-test",
    -  "clean-install-test": "clean-install-test",
    -  "com": "completion",
    -  "comp": "completion",
    -  "compl": "completion",
    -  "comple": "completion",
    -  "complet": "completion",
    -  "completi": "completion",
    -  "completio": "completion",
    -  "completion": "completion",
    -  "con": "config",
    -  "conf": "config",
    -  "confi": "config",
    -  "config": "config",
    -  "cr": "create",
    -  "cre": "create",
    -  "crea": "create",
    -  "creat": "create",
    -  "create": "create",
    -  "dd": "ddp",
    -  "ddp": "ddp",
    -  "ded": "dedupe",
    -  "dedu": "dedupe",
    -  "dedup": "dedupe",
    -  "dedupe": "dedupe",
    -  "dep": "deprecate",
    -  "depr": "deprecate",
    -  "depre": "deprecate",
    -  "deprec": "deprecate",
    -  "depreca": "deprecate",
    -  "deprecat": "deprecate",
    -  "deprecate": "deprecate",
    -  "dif": "diff",
    -  "diff": "diff",
    -  "dist-tag": "dist-tag",
    -  "dist-tags": "dist-tags",
    -  "docs": "docs",
    -  "doct": "doctor",
    -  "docto": "doctor",
    -  "doctor": "doctor",
    -  "ed": "edit",
    -  "edi": "edit",
    -  "edit": "edit",
    -  "exe": "exec",
    -  "exec": "exec",
    -  "expla": "explain",
    -  "explai": "explain",
    -  "explain": "explain",
    -  "explo": "explore",
    -  "explor": "explore",
    -  "explore": "explore",
    -  "find": "find",
    -  "find-": "find-dupes",
    -  "find-d": "find-dupes",
    -  "find-du": "find-dupes",
    -  "find-dup": "find-dupes",
    -  "find-dupe": "find-dupes",
    -  "find-dupes": "find-dupes",
    -  "fu": "fund",
    -  "fun": "fund",
    -  "fund": "fund",
    -  "g": "get",
    -  "ge": "get",
    -  "get": "get",
    -  "he": "help",
    -  "hel": "help",
    -  "help": "help",
    -  "hl": "hlep",
    -  "hle": "hlep",
    -  "hlep": "hlep",
    -  "hom": "home",
    -  "home": "home",
    -  "hoo": "hook",
    -  "hook": "hook",
    -  "i": "i",
    -  "ic": "ic",
    -  "in": "in",
    -  "inf": "info",
    -  "info": "info",
    -  "ini": "init",
    -  "init": "init",
    -  "inn": "innit",
    -  "inni": "innit",
    -  "innit": "innit",
    -  "ins": "ins",
    -  "inst": "inst",
    -  "insta": "insta",
    -  "instal": "instal",
    -  "install": "install",
    -  "install-ci": "install-ci-test",
    -  "install-ci-": "install-ci-test",
    -  "install-ci-t": "install-ci-test",
    -  "install-ci-te": "install-ci-test",
    -  "install-ci-tes": "install-ci-test",
    -  "install-ci-test": "install-ci-test",
    -  "install-cl": "install-clean",
    -  "install-cle": "install-clean",
    -  "install-clea": "install-clean",
    -  "install-clean": "install-clean",
    -  "install-t": "install-test",
    -  "install-te": "install-test",
    -  "install-tes": "install-test",
    -  "install-test": "install-test",
    -  "isnt": "isnt",
    -  "isnta": "isnta",
    -  "isntal": "isntal",
    -  "isntall": "isntall",
    -  "isntall-": "isntall-clean",
    -  "isntall-c": "isntall-clean",
    -  "isntall-cl": "isntall-clean",
    -  "isntall-cle": "isntall-clean",
    -  "isntall-clea": "isntall-clean",
    -  "isntall-clean": "isntall-clean",
    -  "iss": "issues",
    -  "issu": "issues",
    -  "issue": "issues",
    -  "issues": "issues",
    -  "it": "it",
    -  "la": "la",
    -  "lin": "link",
    -  "link": "link",
    -  "lis": "list",
    -  "list": "list",
    -  "ll": "ll",
    -  "ln": "ln",
    -  "logi": "login",
    -  "login": "login",
    -  "logo": "logout",
    -  "logou": "logout",
    -  "logout": "logout",
    -  "ls": "ls",
    -  "og": "ogr",
    -  "ogr": "ogr",
    -  "or": "org",
    -  "org": "org",
    -  "ou": "outdated",
    -  "out": "outdated",
    -  "outd": "outdated",
    -  "outda": "outdated",
    -  "outdat": "outdated",
    -  "outdate": "outdated",
    -  "outdated": "outdated",
    -  "ow": "owner",
    -  "own": "owner",
    -  "owne": "owner",
    -  "owner": "owner",
    -  "pa": "pack",
    -  "pac": "pack",
    -  "pack": "pack",
    -  "pi": "ping",
    -  "pin": "ping",
    -  "ping": "ping",
    -  "pk": "pkg",
    -  "pkg": "pkg",
    -  "pre": "prefix",
    -  "pref": "prefix",
    -  "prefi": "prefix",
    -  "prefix": "prefix",
    -  "pro": "profile",
    -  "prof": "profile",
    -  "profi": "profile",
    -  "profil": "profile",
    -  "profile": "profile",
    -  "pru": "prune",
    -  "prun": "prune",
    -  "prune": "prune",
    -  "pu": "publish",
    -  "pub": "publish",
    -  "publ": "publish",
    -  "publi": "publish",
    -  "publis": "publish",
    -  "publish": "publish",
    -  "q": "query",
    -  "qu": "query",
    -  "que": "query",
    -  "quer": "query",
    -  "query": "query",
    -  "r": "r",
    -  "rb": "rb",
    -  "reb": "rebuild",
    -  "rebu": "rebuild",
    -  "rebui": "rebuild",
    -  "rebuil": "rebuild",
    -  "rebuild": "rebuild",
    -  "rem": "remove",
    -  "remo": "remove",
    -  "remov": "remove",
    -  "remove": "remove",
    -  "rep": "repo",
    -  "repo": "repo",
    -  "res": "restart",
    -  "rest": "restart",
    -  "resta": "restart",
    -  "restar": "restart",
    -  "restart": "restart",
    -  "rm": "rm",
    -  "ro": "root",
    -  "roo": "root",
    -  "root": "root",
    -  "rum": "rum",
    -  "run": "run",
    -  "run-": "run-script",
    -  "run-s": "run-script",
    -  "run-sc": "run-script",
    -  "run-scr": "run-script",
    -  "run-scri": "run-script",
    -  "run-scrip": "run-script",
    -  "run-script": "run-script",
    -  "s": "s",
    -  "se": "se",
    -  "sea": "search",
    -  "sear": "search",
    -  "searc": "search",
    -  "search": "search",
    -  "set": "set",
    -  "sho": "show",
    -  "show": "show",
    -  "shr": "shrinkwrap",
    -  "shri": "shrinkwrap",
    -  "shrin": "shrinkwrap",
    -  "shrink": "shrinkwrap",
    -  "shrinkw": "shrinkwrap",
    -  "shrinkwr": "shrinkwrap",
    -  "shrinkwra": "shrinkwrap",
    -  "shrinkwrap": "shrinkwrap",
    -  "si": "sit",
    -  "sit": "sit",
    -  "star": "star",
    -  "stars": "stars",
    -  "start": "start",
    -  "sto": "stop",
    -  "stop": "stop",
    -  "t": "t",
    -  "tea": "team",
    -  "team": "team",
    -  "tes": "test",
    -  "test": "test",
    -  "to": "token",
    -  "tok": "token",
    -  "toke": "token",
    -  "token": "token",
    -  "ts": "tst",
    -  "tst": "tst",
    -  "ud": "udpate",
    -  "udp": "udpate",
    -  "udpa": "udpate",
    -  "udpat": "udpate",
    -  "udpate": "udpate",
    -  "un": "un",
    -  "uni": "uninstall",
    -  "unin": "uninstall",
    -  "unins": "uninstall",
    -  "uninst": "uninstall",
    -  "uninsta": "uninstall",
    -  "uninstal": "uninstall",
    -  "uninstall": "uninstall",
    -  "unl": "unlink",
    -  "unli": "unlink",
    -  "unlin": "unlink",
    -  "unlink": "unlink",
    -  "unp": "unpublish",
    -  "unpu": "unpublish",
    -  "unpub": "unpublish",
    -  "unpubl": "unpublish",
    -  "unpubli": "unpublish",
    -  "unpublis": "unpublish",
    -  "unpublish": "unpublish",
    -  "uns": "unstar",
    -  "unst": "unstar",
    -  "unsta": "unstar",
    -  "unstar": "unstar",
    -  "up": "up",
    -  "upd": "update",
    -  "upda": "update",
    -  "updat": "update",
    -  "update": "update",
    -  "upg": "upgrade",
    -  "upgr": "upgrade",
    -  "upgra": "upgrade",
    -  "upgrad": "upgrade",
    -  "upgrade": "upgrade",
    -  "ur": "urn",
    -  "urn": "urn",
    -  "v": "v",
    -  "veri": "verison",
    -  "veris": "verison",
    -  "veriso": "verison",
    -  "verison": "verison",
    -  "vers": "version",
    -  "versi": "version",
    -  "versio": "version",
    -  "version": "version",
    -  "vi": "view",
    -  "vie": "view",
    -  "view": "view",
    -  "who": "whoami",
    -  "whoa": "whoami",
    -  "whoam": "whoami",
    -  "whoami": "whoami",
    -  "why": "why",
    -  "x": "x",
    -}
    -`
    -
     exports[`test/lib/docs.js TAP command list > aliases 1`] = `
     Object {
       "add": "install",
    @@ -384,7 +41,7 @@ Object {
       "c": "config",
       "cit": "install-ci-test",
       "clean-install": "ci",
    -  "clean-install-test": "cit",
    +  "clean-install-test": "install-ci-test",
       "create": "init",
       "ddp": "dedupe",
       "dist-tags": "dist-tag",
    @@ -421,7 +78,7 @@ Object {
       "s": "search",
       "se": "search",
       "show": "view",
    -  "sit": "cit",
    +  "sit": "install-ci-test",
       "t": "test",
       "tst": "test",
       "udpate": "update",
    @@ -437,77 +94,6 @@ Object {
     }
     `
     
    -exports[`test/lib/docs.js TAP command list > allCommands 1`] = `
    -Array [
    -  "access",
    -  "adduser",
    -  "audit",
    -  "bugs",
    -  "cache",
    -  "ci",
    -  "completion",
    -  "config",
    -  "dedupe",
    -  "deprecate",
    -  "diff",
    -  "dist-tag",
    -  "docs",
    -  "doctor",
    -  "edit",
    -  "exec",
    -  "explain",
    -  "explore",
    -  "find-dupes",
    -  "fund",
    -  "get",
    -  "help",
    -  "help-search",
    -  "hook",
    -  "init",
    -  "install",
    -  "install-ci-test",
    -  "install-test",
    -  "link",
    -  "ll",
    -  "login",
    -  "logout",
    -  "ls",
    -  "org",
    -  "outdated",
    -  "owner",
    -  "pack",
    -  "ping",
    -  "pkg",
    -  "prefix",
    -  "profile",
    -  "prune",
    -  "publish",
    -  "query",
    -  "rebuild",
    -  "repo",
    -  "restart",
    -  "root",
    -  "run-script",
    -  "search",
    -  "set",
    -  "shrinkwrap",
    -  "star",
    -  "stars",
    -  "start",
    -  "stop",
    -  "team",
    -  "test",
    -  "token",
    -  "uninstall",
    -  "unpublish",
    -  "unstar",
    -  "update",
    -  "version",
    -  "view",
    -  "whoami",
    -]
    -`
    -
     exports[`test/lib/docs.js TAP command list > commands 1`] = `
     Array [
       "access",
    @@ -532,6 +118,7 @@ Array [
       "fund",
       "get",
       "help",
    +  "help-search",
       "hook",
       "init",
       "install",
    @@ -578,12 +165,6 @@ Array [
     ]
     `
     
    -exports[`test/lib/docs.js TAP command list > plumbing 1`] = `
    -Array [
    -  "help-search",
    -]
    -`
    -
     exports[`test/lib/docs.js TAP config > all definitions 1`] = `
     #### \`_auth\`
     
    @@ -3239,14 +2820,14 @@ Options:
     [-w|--workspace  [-w|--workspace  ...]]
     [-ws|--workspaces] [--include-workspace-root] [--install-links]
     
    -alias: cit
    +aliases: cit, clean-install-test, sit
     
     Run "npm help install-ci-test" for more info
     
     \`\`\`bash
     npm install-ci-test
     
    -alias: cit
    +aliases: cit, clean-install-test, sit
     \`\`\`
     
     #### \`save\`
    diff --git a/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs b/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs
    new file mode 100644
    index 00000000000000..7bebf9b78f2bb4
    --- /dev/null
    +++ b/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs
    @@ -0,0 +1,450 @@
    +/* IMPORTANT
    + * This snapshot file is auto-generated, but designed for humans.
    + * It should be checked into source control and tracked carefully.
    + * Re-generate by setting TAP_SNAPSHOT=1 and running tests.
    + * Make sure to inspect the output below.  Do not ignore changes!
    + */
    +'use strict'
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 0 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser, audit, bugs, cache, ci, completion,
    +    config, dedupe, deprecate, diff, dist-tag, docs, doctor,
    +    edit, exec, explain, explore, find-dupes, fund, get, help,
    +    help-search, hook, init, install, install-ci-test,
    +    install-test, link, ll, login, logout, ls, org, outdated,
    +    owner, pack, ping, pkg, prefix, profile, prune, publish,
    +    query, rebuild, repo, restart, root, run-script, search,
    +    set, shrinkwrap, star, stars, start, stop, team, test,
    +    token, uninstall, unpublish, unstar, update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 1 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser,
    +    audit, bugs, cache, ci,
    +    completion, config,
    +    dedupe, deprecate, diff,
    +    dist-tag, docs, doctor,
    +    edit, exec, explain,
    +    explore, find-dupes,
    +    fund, get, help,
    +    help-search, hook, init,
    +    install,
    +    install-ci-test,
    +    install-test, link, ll,
    +    login, logout, ls, org,
    +    outdated, owner, pack,
    +    ping, pkg, prefix,
    +    profile, prune, publish,
    +    query, rebuild, repo,
    +    restart, root,
    +    run-script, search, set,
    +    shrinkwrap, star, stars,
    +    start, stop, team, test,
    +    token, uninstall,
    +    unpublish, unstar,
    +    update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 10 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser,
    +    audit, bugs, cache, ci,
    +    completion, config,
    +    dedupe, deprecate, diff,
    +    dist-tag, docs, doctor,
    +    edit, exec, explain,
    +    explore, find-dupes,
    +    fund, get, help,
    +    help-search, hook, init,
    +    install,
    +    install-ci-test,
    +    install-test, link, ll,
    +    login, logout, ls, org,
    +    outdated, owner, pack,
    +    ping, pkg, prefix,
    +    profile, prune, publish,
    +    query, rebuild, repo,
    +    restart, root,
    +    run-script, search, set,
    +    shrinkwrap, star, stars,
    +    start, stop, team, test,
    +    token, uninstall,
    +    unpublish, unstar,
    +    update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 100 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser, audit, bugs, cache, ci, completion,
    +    config, dedupe, deprecate, diff, dist-tag, docs, doctor,
    +    edit, exec, explain, explore, find-dupes, fund, get, help,
    +    help-search, hook, init, install, install-ci-test,
    +    install-test, link, ll, login, logout, ls, org, outdated,
    +    owner, pack, ping, pkg, prefix, profile, prune, publish,
    +    query, rebuild, repo, restart, root, run-script, search,
    +    set, shrinkwrap, star, stars, start, stop, team, test,
    +    token, uninstall, unpublish, unstar, update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 24 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser,
    +    audit, bugs, cache, ci,
    +    completion, config,
    +    dedupe, deprecate, diff,
    +    dist-tag, docs, doctor,
    +    edit, exec, explain,
    +    explore, find-dupes,
    +    fund, get, help,
    +    help-search, hook, init,
    +    install,
    +    install-ci-test,
    +    install-test, link, ll,
    +    login, logout, ls, org,
    +    outdated, owner, pack,
    +    ping, pkg, prefix,
    +    profile, prune, publish,
    +    query, rebuild, repo,
    +    restart, root,
    +    run-script, search, set,
    +    shrinkwrap, star, stars,
    +    start, stop, team, test,
    +    token, uninstall,
    +    unpublish, unstar,
    +    update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 40 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser,
    +    audit, bugs, cache, ci,
    +    completion, config,
    +    dedupe, deprecate, diff,
    +    dist-tag, docs, doctor,
    +    edit, exec, explain,
    +    explore, find-dupes,
    +    fund, get, help,
    +    help-search, hook, init,
    +    install,
    +    install-ci-test,
    +    install-test, link, ll,
    +    login, logout, ls, org,
    +    outdated, owner, pack,
    +    ping, pkg, prefix,
    +    profile, prune, publish,
    +    query, rebuild, repo,
    +    restart, root,
    +    run-script, search, set,
    +    shrinkwrap, star, stars,
    +    start, stop, team, test,
    +    token, uninstall,
    +    unpublish, unstar,
    +    update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 41 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser, audit,
    +    bugs, cache, ci,
    +    completion, config,
    +    dedupe, deprecate, diff,
    +    dist-tag, docs, doctor,
    +    edit, exec, explain,
    +    explore, find-dupes,
    +    fund, get, help,
    +    help-search, hook, init,
    +    install, install-ci-test,
    +    install-test, link, ll,
    +    login, logout, ls, org,
    +    outdated, owner, pack,
    +    ping, pkg, prefix,
    +    profile, prune, publish,
    +    query, rebuild, repo,
    +    restart, root,
    +    run-script, search, set,
    +    shrinkwrap, star, stars,
    +    start, stop, team, test,
    +    token, uninstall,
    +    unpublish, unstar,
    +    update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 75 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser, audit, bugs, cache, ci, completion,
    +    config, dedupe, deprecate, diff, dist-tag, docs, doctor,
    +    edit, exec, explain, explore, find-dupes, fund, get, help,
    +    help-search, hook, init, install, install-ci-test,
    +    install-test, link, ll, login, logout, ls, org, outdated,
    +    owner, pack, ping, pkg, prefix, profile, prune, publish,
    +    query, rebuild, repo, restart, root, run-script, search,
    +    set, shrinkwrap, star, stars, start, stop, team, test,
    +    token, uninstall, unpublish, unstar, update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 76 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser, audit, bugs, cache, ci, completion,
    +    config, dedupe, deprecate, diff, dist-tag, docs, doctor,
    +    edit, exec, explain, explore, find-dupes, fund, get, help,
    +    help-search, hook, init, install, install-ci-test,
    +    install-test, link, ll, login, logout, ls, org, outdated,
    +    owner, pack, ping, pkg, prefix, profile, prune, publish,
    +    query, rebuild, repo, restart, root, run-script, search,
    +    set, shrinkwrap, star, stars, start, stop, team, test,
    +    token, uninstall, unpublish, unstar, update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    +
    +exports[`test/lib/npm.js TAP usage set process.stdout.columns column width 90 > must match snapshot 1`] = `
    +npm 
    +
    +Usage:
    +
    +npm install        install all the dependencies in your project
    +npm install   add the  dependency to your project
    +npm test           run this project's tests
    +npm run       run the script named 
    +npm  -h   quick help on 
    +npm -l             display usage info for all commands
    +npm help     search for help on 
    +npm help npm       more involved overview
    +
    +All commands:
    +
    +    access, adduser, audit, bugs, cache, ci, completion,
    +    config, dedupe, deprecate, diff, dist-tag, docs, doctor,
    +    edit, exec, explain, explore, find-dupes, fund, get, help,
    +    help-search, hook, init, install, install-ci-test,
    +    install-test, link, ll, login, logout, ls, org, outdated,
    +    owner, pack, ping, pkg, prefix, profile, prune, publish,
    +    query, rebuild, repo, restart, root, run-script, search,
    +    set, shrinkwrap, star, stars, start, stop, team, test,
    +    token, uninstall, unpublish, unstar, update, version, view,
    +    whoami
    +
    +Specify configs in the ini-formatted file:
    +    {USERCONFIG}
    +or on the command line via: npm  --key=value
    +
    +More configuration info: npm help config
    +Configuration fields: npm help 7 config
    +
    +npm@{VERSION} {NPMROOT}
    +`
    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 5fe20969fce315..0ffcba239f52ff 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
    @@ -241,17 +241,37 @@ Object {
         Array [
           "notsup",
           String(
    -        Valid OS:    !yours,mine
    -        Valid Arch:  x867,x5309
    -        Actual OS:   posix
    -        Actual Arch: x64
    +        Valid os:   !yours,mine
    +        Actual os:  posix
    +        Valid cpu:  x867,x5309
    +        Actual cpu: x64
           ),
         ],
       ],
       "summary": Array [
         Array [
           "notsup",
    -      "Unsupported platform for lodash@1.0.0: wanted {/"os/":/"!yours,mine/",/"arch/":/"x867,x5309/"} (current: {/"os/":/"posix/",/"arch/":/"x64/"})",
    +      "Unsupported platform for lodash@1.0.0: wanted {/"os/":/"!yours,mine/",/"cpu/":/"x867,x5309/"} (current: {/"os/":/"posix/",/"cpu/":/"x64/"})",
    +    ],
    +  ],
    +}
    +`
    +
    +exports[`test/lib/utils/error-message.js TAP bad platform omits keys with no required value > must match snapshot 1`] = `
    +Object {
    +  "detail": Array [
    +    Array [
    +      "notsup",
    +      String(
    +        Valid os:  !yours,mine
    +        Actual os: posix
    +      ),
    +    ],
    +  ],
    +  "summary": Array [
    +    Array [
    +      "notsup",
    +      "Unsupported platform for lodash@1.0.0: wanted {/"os/":/"!yours,mine/"} (current: {/"os/":/"posix/"})",
         ],
       ],
     }
    @@ -263,17 +283,17 @@ Object {
         Array [
           "notsup",
           String(
    -        Valid OS:    !yours
    -        Valid Arch:  x420
    -        Actual OS:   posix
    -        Actual Arch: x64
    +        Valid os:   !yours
    +        Actual os:  posix
    +        Valid cpu:  x420
    +        Actual cpu: x64
           ),
         ],
       ],
       "summary": Array [
         Array [
           "notsup",
    -      "Unsupported platform for lodash@1.0.0: wanted {/"os/":/"!yours/",/"arch/":/"x420/"} (current: {/"os/":/"posix/",/"arch/":/"x64/"})",
    +      "Unsupported platform for lodash@1.0.0: wanted {/"os/":/"!yours/",/"cpu/":/"x420/"} (current: {/"os/":/"posix/",/"cpu/":/"x64/"})",
         ],
       ],
     }
    diff --git a/deps/npm/tap-snapshots/test/lib/utils/exit-handler.js.test.cjs b/deps/npm/tap-snapshots/test/lib/utils/exit-handler.js.test.cjs
    index 4c163e7df5593d..93711275392339 100644
    --- a/deps/npm/tap-snapshots/test/lib/utils/exit-handler.js.test.cjs
    +++ b/deps/npm/tap-snapshots/test/lib/utils/exit-handler.js.test.cjs
    @@ -6,35 +6,33 @@
      */
     'use strict'
     exports[`test/lib/utils/exit-handler.js TAP handles unknown error with logs and debug file > debug file contents 1`] = `
    -0 timing npm:load:whichnode Completed in {TIME}ms
    -13 timing config:load Completed in {TIME}ms
    -14 timing npm:load:configload Completed in {TIME}ms
    -15 timing npm:load:mkdirpcache Completed in {TIME}ms
    -16 timing npm:load:mkdirplogs Completed in {TIME}ms
    -17 verbose title npm
    -18 verbose argv "--fetch-retries" "0" "--cache" "{CWD}/cache" "--loglevel" "notice"
    -19 timing npm:load:setTitle Completed in {TIME}ms
    -21 timing npm:load:display Completed in {TIME}ms
    -22 verbose logfile logs-max:10 dir:{CWD}/cache/_logs/{DATE}-
    -23 verbose logfile {CWD}/cache/_logs/{DATE}-debug-0.log
    -24 timing npm:load:logFile Completed in {TIME}ms
    -25 timing npm:load:timers Completed in {TIME}ms
    -26 timing npm:load:configScope Completed in {TIME}ms
    -27 timing npm:load Completed in {TIME}ms
    -28 silly logfile done cleaning log files
    -29 verbose stack Error: Unknown error
    -30 verbose cwd {CWD}/prefix
    -31 verbose Foo 1.0.0
    -32 verbose node v1.0.0
    -33 verbose npm  v1.0.0
    -34 error code ECODE
    -35 error ERR SUMMARY Unknown error
    -36 error ERR DETAIL Unknown error
    -37 verbose exit 1
    -38 timing npm Completed in {TIME}ms
    -39 verbose code 1
    -40 error A complete log of this run can be found in:
    -40 error     {CWD}/cache/_logs/{DATE}-debug-0.log
    +XX timing npm:load:whichnode Completed in {TIME}ms
    +XX timing config:load Completed in {TIME}ms
    +XX timing npm:load:configload Completed in {TIME}ms
    +XX timing npm:load:mkdirpcache Completed in {TIME}ms
    +XX timing npm:load:mkdirplogs Completed in {TIME}ms
    +XX verbose title npm
    +XX verbose argv "--fetch-retries" "0" "--cache" "{CWD}/cache" "--loglevel" "notice"
    +XX timing npm:load:setTitle Completed in {TIME}ms
    +XX timing npm:load:display Completed in {TIME}ms
    +XX verbose logfile logs-max:10 dir:{CWD}/cache/_logs/{DATE}-
    +XX verbose logfile {CWD}/cache/_logs/{DATE}-debug-0.log
    +XX timing npm:load:logFile Completed in {TIME}ms
    +XX timing npm:load:timers Completed in {TIME}ms
    +XX timing npm:load:configScope Completed in {TIME}ms
    +XX timing npm:load Completed in {TIME}ms
    +XX verbose stack Error: Unknown error
    +XX verbose cwd {CWD}/prefix
    +XX verbose Foo 1.0.0
    +XX verbose node v1.0.0
    +XX verbose npm  v1.0.0
    +XX error code ECODE
    +XX error ERR SUMMARY Unknown error
    +XX error ERR DETAIL Unknown error
    +XX verbose exit 1
    +XX timing npm Completed in {TIME}ms
    +XX verbose code 1
    +XX error A complete log of this run can be found in: {CWD}/cache/_logs/{DATE}-debug-0.log
     `
     
     exports[`test/lib/utils/exit-handler.js TAP handles unknown error with logs and debug file > logs 1`] = `
    @@ -53,7 +51,6 @@ timing npm:load:logFile Completed in {TIME}ms
     timing npm:load:timers Completed in {TIME}ms
     timing npm:load:configScope Completed in {TIME}ms
     timing npm:load Completed in {TIME}ms
    -silly logfile done cleaning log files
     verbose stack Error: Unknown error
     verbose cwd {CWD}/prefix
     verbose  Foo 1.0.0
    @@ -65,6 +62,5 @@ error ERR DETAIL Unknown error
     verbose exit 1
     timing npm Completed in {TIME}ms
     verbose code 1
    -error  A complete log of this run can be found in:
    -    {CWD}/cache/_logs/{DATE}-debug-0.log
    +error  A complete log of this run can be found in: {CWD}/cache/_logs/{DATE}-debug-0.log
     `
    diff --git a/deps/npm/tap-snapshots/test/lib/utils/update-notifier.js.test.cjs b/deps/npm/tap-snapshots/test/lib/utils/update-notifier.js.test.cjs
    index 157390997d7936..e5e9dd77569e00 100644
    --- a/deps/npm/tap-snapshots/test/lib/utils/update-notifier.js.test.cjs
    +++ b/deps/npm/tap-snapshots/test/lib/utils/update-notifier.js.test.cjs
    @@ -5,7 +5,7 @@
      * Make sure to inspect the output below.  Do not ignore changes!
      */
     'use strict'
    -exports[`test/lib/utils/update-notifier.js TAP notification situations major to current > color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 122.420.69 - color=always > must match snapshot 1`] = `
     
     New major version of npm available! 122.420.69 -> 123.420.69
     Changelog: https://github.com/npm/cli/releases/tag/v123.420.69
    @@ -13,7 +13,7 @@ Run npm install -g npm@123.420.69 to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations major to current > no color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 122.420.69 - color=false > must match snapshot 1`] = `
     
     New major version of npm available! 122.420.69 -> 123.420.69
     Changelog: 
    @@ -21,7 +21,7 @@ Run \`npm install -g npm@123.420.69\` to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations minor to current > color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 123.419.69 - color=always > must match snapshot 1`] = `
     
     New minor version of npm available! 123.419.69 -> 123.420.69
     Changelog: https://github.com/npm/cli/releases/tag/v123.420.69
    @@ -29,7 +29,7 @@ Run npm install -g npm@123.420.69 to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations minor to current > no color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 123.419.69 - color=false > must match snapshot 1`] = `
     
     New minor version of npm available! 123.419.69 -> 123.420.69
     Changelog: 
    @@ -37,66 +37,66 @@ Run \`npm install -g npm@123.420.69\` to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations minor to next version > color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 123.420.68 - color=always > must match snapshot 1`] = `
     
    -New minor version of npm available! 123.420.70 -> 123.421.70
    -Changelog: https://github.com/npm/cli/releases/tag/v123.421.70
    -Run npm install -g npm@123.421.70 to update!
    +New patch version of npm available! 123.420.68 -> 123.420.69
    +Changelog: https://github.com/npm/cli/releases/tag/v123.420.69
    +Run npm install -g npm@123.420.69 to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations minor to next version > no color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 123.420.68 - color=false > must match snapshot 1`] = `
     
    -New minor version of npm available! 123.420.70 -> 123.421.70
    -Changelog: 
    -Run \`npm install -g npm@123.421.70\` to update!
    +New patch version of npm available! 123.420.68 -> 123.420.69
    +Changelog: 
    +Run \`npm install -g npm@123.420.69\` to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations new beta available > color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 123.420.70 - color=always > must match snapshot 1`] = `
     
    -New prerelease version of npm available! 124.0.0-beta.0 -> 124.0.0-beta.99999
    -Changelog: https://github.com/npm/cli/releases/tag/v124.0.0-beta.99999
    -Run npm install -g npm@124.0.0-beta.99999 to update!
    +New minor version of npm available! 123.420.70 -> 123.421.70
    +Changelog: https://github.com/npm/cli/releases/tag/v123.421.70
    +Run npm install -g npm@123.421.70 to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations new beta available > no color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 123.420.70 - color=false > must match snapshot 1`] = `
     
    -New prerelease version of npm available! 124.0.0-beta.0 -> 124.0.0-beta.99999
    -Changelog: 
    -Run \`npm install -g npm@124.0.0-beta.99999\` to update!
    +New minor version of npm available! 123.420.70 -> 123.421.70
    +Changelog: 
    +Run \`npm install -g npm@123.421.70\` to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations patch to current > color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 123.421.69 - color=always > must match snapshot 1`] = `
     
    -New patch version of npm available! 123.420.68 -> 123.420.69
    -Changelog: https://github.com/npm/cli/releases/tag/v123.420.69
    -Run npm install -g npm@123.420.69 to update!
    +New patch version of npm available! 123.421.69 -> 123.421.70
    +Changelog: https://github.com/npm/cli/releases/tag/v123.421.70
    +Run npm install -g npm@123.421.70 to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations patch to current > no color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 123.421.69 - color=false > must match snapshot 1`] = `
     
    -New patch version of npm available! 123.420.68 -> 123.420.69
    -Changelog: 
    -Run \`npm install -g npm@123.420.69\` to update!
    +New patch version of npm available! 123.421.69 -> 123.421.70
    +Changelog: 
    +Run \`npm install -g npm@123.421.70\` to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations patch to next version > color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 124.0.0-beta.0 - color=always > must match snapshot 1`] = `
     
    -New patch version of npm available! 123.421.69 -> 123.421.70
    -Changelog: https://github.com/npm/cli/releases/tag/v123.421.70
    -Run npm install -g npm@123.421.70 to update!
    +New prerelease version of npm available! 124.0.0-beta.0 -> 124.0.0-beta.99999
    +Changelog: https://github.com/npm/cli/releases/tag/v124.0.0-beta.99999
    +Run npm install -g npm@124.0.0-beta.99999 to update!
     
     `
     
    -exports[`test/lib/utils/update-notifier.js TAP notification situations patch to next version > no color 1`] = `
    +exports[`test/lib/utils/update-notifier.js TAP notification situations 124.0.0-beta.0 - color=false > must match snapshot 1`] = `
     
    -New patch version of npm available! 123.421.69 -> 123.421.70
    -Changelog: 
    -Run \`npm install -g npm@123.421.70\` to update!
    +New prerelease version of npm available! 124.0.0-beta.0 -> 124.0.0-beta.99999
    +Changelog: 
    +Run \`npm install -g npm@124.0.0-beta.99999\` to update!
     
     `
    diff --git a/deps/npm/test/lib/commands/access.js b/deps/npm/test/lib/commands/access.js
    index b0057545ba0268..d1839aaaef2199 100644
    --- a/deps/npm/test/lib/commands/access.js
    +++ b/deps/npm/test/lib/commands/access.js
    @@ -30,6 +30,7 @@ t.test('completion', async t => {
       ])
       testComp(['npm', 'access', 'grant'], ['read-only', 'read-write'])
       testComp(['npm', 'access', 'revoke'], [])
    +  testComp(['npm', 'access', 'grant', ''], [])
     
       await t.rejects(
         access.completion({ conf: { argv: { remain: ['npm', 'access', 'foobar'] } } }),
    @@ -70,10 +71,16 @@ t.test('grant', t => {
       })
     
       t.test('read-only', async t => {
    -    const { npm } = await loadMockNpm(t)
    +    const authToken = 'abcd1234'
    +    const { npm } = await loadMockNpm(t, {
    +      config: {
    +        '//registry.npmjs.org/:_authToken': authToken,
    +      },
    +    })
         const registry = new MockRegistry({
           tap: t,
           registry: npm.config.get('registry'),
    +      authorization: authToken,
         })
         const permissions = 'read-only'
         registry.setPermissions({ spec: '@npmcli/test-package', team: '@npm:test-team', permissions })
    @@ -84,10 +91,16 @@ t.test('grant', t => {
     
     t.test('revoke', t => {
       t.test('success', async t => {
    -    const { npm } = await loadMockNpm(t)
    +    const authToken = 'abcd1234'
    +    const { npm } = await loadMockNpm(t, {
    +      config: {
    +        '//registry.npmjs.org/:_authToken': authToken,
    +      },
    +    })
         const registry = new MockRegistry({
           tap: t,
           registry: npm.config.get('registry'),
    +      authorization: authToken,
         })
         registry.removePermissions({ spec: '@npmcli/test-package', team: '@npm:test-team' })
         await npm.exec('access', ['revoke', '@npm:test-team', '@npmcli/test-package'])
    diff --git a/deps/npm/test/lib/commands/explain.js b/deps/npm/test/lib/commands/explain.js
    index 3262dfdce87af8..79c917a1cd4527 100644
    --- a/deps/npm/test/lib/commands/explain.js
    +++ b/deps/npm/test/lib/commands/explain.js
    @@ -7,7 +7,8 @@ const mockExplain = async (t, opts) => {
         mocks: {
           // keep the snapshots pared down a bit, since this has its own tests.
           '{LIB}/utils/explain-dep.js': {
    -        explainNode: (expl, depth, color) => {
    +        explainNode: (expl, depth, chalk) => {
    +          const color = chalk.level !== 0
               return `${expl.name}@${expl.version} depth=${depth} color=${color}`
             },
           },
    diff --git a/deps/npm/test/lib/commands/help.js b/deps/npm/test/lib/commands/help.js
    index d4e7a81f84a4cd..e38f1bbce24d46 100644
    --- a/deps/npm/test/lib/commands/help.js
    +++ b/deps/npm/test/lib/commands/help.js
    @@ -29,8 +29,8 @@ const genManPages = (obj) => {
     
     const mockHelp = async (t, {
       man = {
    -    1: ['whoami', 'install', 'star', 'unstar', 'uninstall', 'unpublish'].map(p => `npm-${p}`),
         5: ['npmrc', 'install', 'package-json'],
    +    1: ['whoami', 'install', 'star', 'unstar', 'uninstall', 'unpublish'].map(p => `npm-${p}`),
         7: ['disputes', 'config'],
       },
       browser = false,
    @@ -113,7 +113,7 @@ t.test('npm help whoami', async t => {
       const [spawnBin, spawnArgs] = getArgs()
       t.equal(spawnBin, 'man', 'calls man by default')
       t.equal(spawnArgs.length, 1)
    -  t.match(spawnArgs[0], /\/man\/man1\/npm-whoami\.1$/)
    +  t.match(spawnArgs[0], /npm-whoami\.1$/)
     })
     
     t.test('npm help 1 install', async t => {
    @@ -155,7 +155,7 @@ t.test('npm help package.json redirects to package-json', async t => {
       const [spawnBin, spawnArgs] = getArgs()
       t.equal(spawnBin, 'man', 'calls man by default')
       t.equal(spawnArgs.length, 1)
    -  t.match(spawnArgs[0], /\/man\/man5\/package-json\.5$/)
    +  t.match(spawnArgs[0], /package-json\.5$/)
     })
     
     t.test('npm help ?(un)star', async t => {
    @@ -168,7 +168,7 @@ t.test('npm help ?(un)star', async t => {
       t.equal(spawnBin, 'emacsclient', 'maps woman to emacs correctly')
       t.equal(spawnArgs.length, 2)
       t.match(spawnArgs[1], /^\(woman-find-file '/)
    -  t.match(spawnArgs[1], /\/man\/man1\/npm-star.1'\)$/)
    +  t.match(spawnArgs[1], /npm-star.1'\)$/)
     })
     
     t.test('npm help un*', async t => {
    @@ -179,15 +179,16 @@ t.test('npm help un*', async t => {
       const [spawnBin, spawnArgs] = getArgs()
       t.equal(spawnBin, 'man', 'calls man by default')
       t.equal(spawnArgs.length, 1)
    -  t.match(spawnArgs[0], /\/man\/man1\/npm-uninstall\.1$/)
    +  t.match(spawnArgs[0], /npm-uninstall\.1$/)
     })
     
    -t.test('npm help - prefers npm help pages', async t => {
    +t.test('npm help - prefers lowest numbered npm prefixed help pages', async t => {
       const { getArgs } = await mockHelp(t, {
         man: {
           6: ['npm-install'],
    -      1: ['install'],
    -      5: ['install', 'npm-install'],
    +      1: ['npm-install'],
    +      5: ['install'],
    +      7: ['npm-install'],
         },
         exec: ['install'],
       })
    @@ -195,15 +196,15 @@ t.test('npm help - prefers npm help pages', async t => {
       const [spawnBin, spawnArgs] = getArgs()
       t.equal(spawnBin, 'man', 'calls man by default')
       t.equal(spawnArgs.length, 1)
    -  t.match(spawnArgs[0], /\/man\/man5\/npm-install\.5$/)
    +  t.match(spawnArgs[0], /npm-install\.1$/)
     })
     
     t.test('npm help - works in the presence of strange man pages', async t => {
       const { getArgs } = await mockHelp(t, {
         man: {
    -      '6strange': ['config'],
    -      1: ['config'],
    -      '5ssl': ['config'],
    +      '1strange': ['config'],
    +      5: ['config'],
    +      '6ssl': ['config'],
         },
         exec: ['config'],
       })
    @@ -211,7 +212,7 @@ t.test('npm help - works in the presence of strange man pages', async t => {
       const [spawnBin, spawnArgs] = getArgs()
       t.equal(spawnBin, 'man', 'calls man by default')
       t.equal(spawnArgs.length, 1)
    -  t.match(spawnArgs[0], /\/man\/man1\/config\.1$/)
    +  t.match(spawnArgs[0], /config\.5$/)
     })
     
     t.test('rejects with code', async t => {
    diff --git a/deps/npm/test/lib/commands/profile.js b/deps/npm/test/lib/commands/profile.js
    index 00ccf2607524ad..1152acfdc5c468 100644
    --- a/deps/npm/test/lib/commands/profile.js
    +++ b/deps/npm/test/lib/commands/profile.js
    @@ -1,7 +1,7 @@
     const t = require('tap')
     const mockNpm = require('../../fixtures/mock-npm')
     
    -const mockProfile = async (t, { npmProfile, readUserInfo, qrcode, ...opts } = {}) => {
    +const mockProfile = async (t, { npmProfile, readUserInfo, qrcode, config, ...opts } = {}) => {
       const mocks = {
         'npm-profile': npmProfile || {
           async get () {},
    @@ -24,6 +24,10 @@ const mockProfile = async (t, { npmProfile, readUserInfo, qrcode, ...opts } = {}
     
       const mock = await mockNpm(t, {
         ...opts,
    +    config: {
    +      color: false,
    +      ...config,
    +    },
         mocks: {
           ...mocks,
           ...opts.mocks,
    @@ -95,6 +99,16 @@ t.test('profile get no args', async t => {
         t.matchSnapshot(result(), 'should output all profile info as parseable result')
       })
     
    +  t.test('--color', async t => {
    +    const { profile, result } = await mockProfile(t, {
    +      npmProfile: defaultNpmProfile,
    +      config: { color: 'always' },
    +    })
    +
    +    await profile.exec(['get'])
    +    t.matchSnapshot(result(), 'should output all profile info with color result')
    +  })
    +
       t.test('no tfa enabled', async t => {
         const npmProfile = {
           async get () {
    diff --git a/deps/npm/test/lib/commands/run-script.js b/deps/npm/test/lib/commands/run-script.js
    index a265db3cc040da..6e2bf22adddcf8 100644
    --- a/deps/npm/test/lib/commands/run-script.js
    +++ b/deps/npm/test/lib/commands/run-script.js
    @@ -34,12 +34,12 @@ const mockRs = async (t, { windows = false, runScript, ...opts } = {}) => {
     }
     
     t.test('completion', async t => {
    -  const completion = async (t, remain, pkg) => {
    +  const completion = async (t, remain, pkg, isFish = false) => {
         const { npm } = await mockRs(t,
           pkg ? { prefixDir: { 'package.json': JSON.stringify(pkg) } } : {}
         )
         const cmd = await npm.cmd('run-script')
    -    return cmd.completion({ conf: { argv: { remain } } })
    +    return cmd.completion({ conf: { argv: { remain } }, isFish })
       }
     
       t.test('already have a script name', async t => {
    @@ -60,6 +60,13 @@ t.test('completion', async t => {
         })
         t.strictSame(res, ['hello', 'world'])
       })
    +
    +  t.test('fish shell', async t => {
    +    const res = await completion(t, ['npm', 'run'], {
    +      scripts: { hello: 'echo hello', world: 'echo world' },
    +    }, true)
    +    t.strictSame(res, ['hello\techo hello', 'world\techo world'])
    +  })
     })
     
     t.test('fail if no package.json', async t => {
    diff --git a/deps/npm/test/lib/commands/view.js b/deps/npm/test/lib/commands/view.js
    index c6a4bf8fb79f44..51bc130df24e5e 100644
    --- a/deps/npm/test/lib/commands/view.js
    +++ b/deps/npm/test/lib/commands/view.js
    @@ -270,6 +270,10 @@ const loadMockNpm = async function (t, opts = {}) {
           },
         },
         ...opts,
    +    config: {
    +      color: 'always',
    +      ...opts.config,
    +    },
       })
       return mockNpm
     }
    @@ -374,7 +378,7 @@ t.test('package in cwd', async t => {
     })
     
     t.test('specific field names', async t => {
    -  const { view, outputs } = await loadMockNpm(t)
    +  const { view, outputs } = await loadMockNpm(t, { config: { color: false } })
       t.afterEach(() => outputs.length = 0)
     
       t.test('readme', async t => {
    diff --git a/deps/npm/test/lib/docs.js b/deps/npm/test/lib/docs.js
    index e8a188b6ad8c48..b8a1a4fc600747 100644
    --- a/deps/npm/test/lib/docs.js
    +++ b/deps/npm/test/lib/docs.js
    @@ -66,12 +66,12 @@ t.test('usage', async t => {
       // are all in sync. eg, this will error if a command is removed but not its docs file
       t.strictSame(
         fsCommands.sort(localeCompare),
    -    cmdList.allCommands,
    +    cmdList.commands,
         'command list and fs are the same'
       )
       t.strictSame(
         allDocs.filter(f => !bareCommands.includes(f)).sort(localeCompare),
    -    cmdList.allCommands,
    +    cmdList.commands,
         'command list and docs files are the same'
       )
     
    diff --git a/deps/npm/test/lib/load-all-commands.js b/deps/npm/test/lib/load-all-commands.js
    index dd55560369310e..1742376a36e69d 100644
    --- a/deps/npm/test/lib/load-all-commands.js
    +++ b/deps/npm/test/lib/load-all-commands.js
    @@ -5,12 +5,12 @@
     const t = require('tap')
     const util = require('util')
     const { load: loadMockNpm } = require('../fixtures/mock-npm.js')
    -const { allCommands } = require('../../lib/utils/cmd-list.js')
    +const { commands } = require('../../lib/utils/cmd-list.js')
     
     const isAsyncFn = (v) => typeof v === 'function' && /^\[AsyncFunction:/.test(util.inspect(v))
     
     t.test('load each command', async t => {
    -  for (const cmd of allCommands) {
    +  for (const cmd of commands) {
         t.test(cmd, async t => {
           const { npm, outputs, cmd: impl } = await loadMockNpm(t, {
             command: cmd,
    diff --git a/deps/npm/test/lib/npm.js b/deps/npm/test/lib/npm.js
    index e6936b3e36d5f8..61b31be6200286 100644
    --- a/deps/npm/test/lib/npm.js
    +++ b/deps/npm/test/lib/npm.js
    @@ -561,6 +561,7 @@ t.test('aliases and typos', async t => {
       await t.resolves(npm.cmd('it'), { name: 'install-test' })
       await t.resolves(npm.cmd('installTe'), { name: 'install-test' })
       await t.resolves(npm.cmd('access'), { name: 'access' })
    +  await t.resolves(npm.cmd('auth'), { name: 'owner' })
     })
     
     t.test('explicit workspace rejection', async t => {
    @@ -706,40 +707,21 @@ t.test('usage', async t => {
       })
     
       t.test('set process.stdout.columns', async t => {
    -    const { npm } = await loadMockNpm(t)
    -
    -    const colUsage = async (cols) => {
    -      const usages = []
    -      for (const col of cols) {
    -        mockGlobals(t, { 'process.stdout.columns': col })
    +    const { npm } = await loadMockNpm(t, {
    +      config: { viewer: 'man' },
    +    })
    +    t.cleanSnapshot = str =>
    +      str.replace(npm.config.get('userconfig'), '{USERCONFIG}')
    +        .replace(npm.npmRoot, '{NPMROOT}')
    +        .replace(`npm@${npm.version}`, 'npm@{VERSION}')
    +
    +    const widths = [0, 1, 10, 24, 40, 41, 75, 76, 90, 100]
    +    for (const width of widths) {
    +      t.test(`column width ${width}`, async t => {
    +        mockGlobals(t, { 'process.stdout.columns': width })
             const usage = await npm.usage
    -        usages.push(usage)
    -      }
    -      return usages
    +        t.matchSnapshot(usage)
    +      })
         }
    -
    -    t.test('max size', async t => {
    -      const usages = await colUsage([0, 76, 90, 100])
    -      t.equal(usages.filter(Boolean).length, 4)
    -      t.equal(new Set([...usages]).size, 1)
    -    })
    -
    -    t.test('across max boundary', async t => {
    -      const usages = await colUsage([75, 76])
    -      t.equal(usages.filter(Boolean).length, 2)
    -      t.equal(new Set([...usages]).size, 2)
    -    })
    -
    -    t.test('min size', async t => {
    -      const usages = await colUsage([1, 10, 24, 40])
    -      t.equal(usages.filter(Boolean).length, 4)
    -      t.equal(new Set([...usages]).size, 1)
    -    })
    -
    -    t.test('different cols within min/max', async t => {
    -      const usages = await colUsage([40, 41])
    -      t.equal(usages.filter(Boolean).length, 2)
    -      t.equal(new Set([...usages]).size, 2)
    -    })
       })
     })
    diff --git a/deps/npm/test/lib/utils/audit-error.js b/deps/npm/test/lib/utils/audit-error.js
    index 46a9dbc38cd7d3..1cb29a0857d752 100644
    --- a/deps/npm/test/lib/utils/audit-error.js
    +++ b/deps/npm/test/lib/utils/audit-error.js
    @@ -87,7 +87,7 @@ t.test('error, audit command, json', async t => {
           message: 'message',
           body: { response: 'body' },
           method: 'POST',
    -      uri: 'https://example.com/not/a/registry',
    +      uri: 'https://username:password@example.com/not/a/registry',
           headers: {
             head: ['ers'],
           },
    @@ -101,7 +101,7 @@ t.test('error, audit command, json', async t => {
         '{\n' +
           '  "message": "message",\n' +
           '  "method": "POST",\n' +
    -      '  "uri": "https://example.com/not/a/registry",\n' +
    +      '  "uri": "https://username:***@example.com/not/a/registry",\n' +
           '  "headers": {\n' +
           '    "head": [\n' +
           '      "ers"\n' +
    diff --git a/deps/npm/test/lib/utils/display.js b/deps/npm/test/lib/utils/display.js
    index cfe0181e23e79f..7a99dcb679c09c 100644
    --- a/deps/npm/test/lib/utils/display.js
    +++ b/deps/npm/test/lib/utils/display.js
    @@ -58,7 +58,7 @@ t.test('can log', async (t) => {
     
       display.log('warn', 'ERESOLVE', 'hello', { some: 'object' })
       t.match(logs.warn, [['ERESOLVE', 'hello']])
    -  t.match(explains, [[{ some: 'object' }, false, 2]])
    +  t.match(explains, [[{ some: 'object' }, null, 2]])
     })
     
     t.test('handles log throwing', async (t) => {
    diff --git a/deps/npm/test/lib/utils/error-message.js b/deps/npm/test/lib/utils/error-message.js
    index 9d07693989ea84..37b3bc6afeddc1 100644
    --- a/deps/npm/test/lib/utils/error-message.js
    +++ b/deps/npm/test/lib/utils/error-message.js
    @@ -384,6 +384,27 @@ t.test('bad platform', async t => {
         t.matchSnapshot(errorMessage(er))
         t.end()
       })
    +  t.test('omits keys with no required value', t => {
    +    const er = Object.assign(new Error('a bad plat'), {
    +      pkgid: 'lodash@1.0.0',
    +      current: {
    +        os: 'posix',
    +        cpu: 'x64',
    +        libc: 'musl',
    +      },
    +      required: {
    +        os: ['!yours', 'mine'],
    +        libc: [], // empty arrays should also lead to a key being removed
    +        cpu: undefined, // XXX npm-install-checks sets unused keys to undefined
    +      },
    +      code: 'EBADPLATFORM',
    +    })
    +    const msg = errorMessage(er)
    +    t.matchSnapshot(msg)
    +    t.notMatch(msg, /Valid cpu/, 'omits cpu from message')
    +    t.notMatch(msg, /Valid libc/, 'omits libc from message')
    +    t.end()
    +  })
     })
     
     t.test('explain ERESOLVE errors', async t => {
    @@ -393,11 +414,14 @@ t.test('explain ERESOLVE errors', async t => {
         errorMocks: {
           '{LIB}/utils/explain-eresolve.js': {
             report: (...args) => {
    -          EXPLAIN_CALLED.push(args)
    +          EXPLAIN_CALLED.push(...args)
               return { explanation: 'explanation', file: 'report' }
             },
           },
         },
    +    config: {
    +      color: 'always',
    +    },
       })
     
       const er = Object.assign(new Error('could not resolve'), {
    @@ -405,5 +429,8 @@ t.test('explain ERESOLVE errors', async t => {
       })
     
       t.matchSnapshot(errorMessage(er))
    -  t.match(EXPLAIN_CALLED, [[er, false]])
    +  t.equal(EXPLAIN_CALLED.length, 3)
    +  t.match(EXPLAIN_CALLED, [er, Function, Function])
    +  t.not(EXPLAIN_CALLED[1].level, 0, 'color chalk level is not 0')
    +  t.equal(EXPLAIN_CALLED[2].level, 0, 'colorless chalk level is 0')
     })
    diff --git a/deps/npm/test/lib/utils/exit-handler.js b/deps/npm/test/lib/utils/exit-handler.js
    index 76d5fec4c099a8..969bd05a98ceaa 100644
    --- a/deps/npm/test/lib/utils/exit-handler.js
    +++ b/deps/npm/test/lib/utils/exit-handler.js
    @@ -27,6 +27,9 @@ t.formatSnapshot = (obj) => {
     t.cleanSnapshot = (path) => cleanDate(cleanCwd(path))
       // Config loading is dependent on env so strip those from snapshots
       .replace(/.*timing config:load:.*\n/gm, '')
    +  // logfile cleaning is not awaited so it races with the process.exit
    +  // in this test and can cause snapshot failures so we always remove them
    +  .replace(/.*silly logfile.*cleaning.*\n/gm, '')
       .replace(/(Completed in )\d+(ms)/g, '$1{TIME}$2')
       .replace(/(removing )\d+( files)/g, '$1${NUM}2')
     
    @@ -106,13 +109,11 @@ const mockExitHandler = async (t, { init, load, testdir, config, mocks, files }
         errors,
         npm,
         // Make it async to make testing ergonomics a little easier so we dont need
    -    // to t.plan() every test to make sure we get process.exit called. Also
    -    // introduce a small artificial delay so the logs are consistently finished
    -    // by the time the exit handler forces process.exit
    -    exitHandler: (...args) => new Promise(res => setTimeout(() => {
    +    // to t.plan() every test to make sure we get process.exit called.
    +    exitHandler: (...args) => new Promise(res => {
           process.once('exit', res)
           exitHandler(...args)
    -    }, 50)),
    +    }),
       }
     }
     
    @@ -134,30 +135,32 @@ t.test('handles unknown error with logs and debug file', async (t) => {
     
       await exitHandler(err('Unknown error', 'ECODE'))
     
    -  const debugContent = await debugFile()
    +  const fileLogs = await debugFile()
    +  const fileLines = fileLogs.split('\n')
    +
    +  const lineNumber = /^(\d+)\s/
    +  const lastLog = fileLines[fileLines.length - 1].match(lineNumber)[1]
     
       t.equal(process.exitCode, 1)
    +
       logs.forEach((logItem, i) => {
         const logLines = format(i, ...logItem).trim().split(os.EOL)
         logLines.forEach((line) => {
    -      t.match(debugContent.trim(), line, 'log appears in debug file')
    +      t.match(fileLogs.trim(), line, 'log appears in debug file')
         })
       })
     
    -  const lastLog = debugContent
    -    .split('\n')
    -    .reduce((__, l) => parseInt(l.match(/^(\d+)\s/)[1]))
    -  t.equal(logs.length, lastLog + 1)
    +  t.equal(logs.length, parseInt(lastLog) + 1)
       t.match(logs.error, [
         ['code', 'ECODE'],
         ['ERR SUMMARY', 'Unknown error'],
         ['ERR DETAIL', 'Unknown error'],
       ])
    -  t.match(debugContent, /\d+ error code ECODE/)
    -  t.match(debugContent, /\d+ error ERR SUMMARY Unknown error/)
    -  t.match(debugContent, /\d+ error ERR DETAIL Unknown error/)
    +  t.match(fileLogs, /\d+ error code ECODE/)
    +  t.match(fileLogs, /\d+ error ERR SUMMARY Unknown error/)
    +  t.match(fileLogs, /\d+ error ERR DETAIL Unknown error/)
       t.matchSnapshot(logs, 'logs')
    -  t.matchSnapshot(debugContent, 'debug file contents')
    +  t.matchSnapshot(fileLines.map(l => l.replace(lineNumber, 'XX ')), 'debug file contents')
     })
     
     t.test('exit handler never called - loglevel silent', async (t) => {
    diff --git a/deps/npm/test/lib/utils/explain-dep.js b/deps/npm/test/lib/utils/explain-dep.js
    index 514f28d125a0d7..e5389fd26d7967 100644
    --- a/deps/npm/test/lib/utils/explain-dep.js
    +++ b/deps/npm/test/lib/utils/explain-dep.js
    @@ -1,9 +1,12 @@
     const { resolve } = require('path')
     const t = require('tap')
    +const Chalk = require('chalk')
     const { explainNode, printNode } = require('../../../lib/utils/explain-dep.js')
     const { cleanCwd } = require('../../fixtures/clean-snapshot')
     
     const testdir = t.testdirName
    +const color = new Chalk.Instance({ level: Chalk.level })
    +const noColor = new Chalk.Instance({ level: 0 })
     
     t.cleanSnapshot = (str) => cleanCwd(str)
     
    @@ -250,10 +253,10 @@ cases.workspaces = {
     
     for (const [name, expl] of Object.entries(cases)) {
       t.test(name, t => {
    -    t.matchSnapshot(printNode(expl, true), 'print color')
    -    t.matchSnapshot(printNode(expl, false), 'print nocolor')
    -    t.matchSnapshot(explainNode(expl, Infinity, true), 'explain color deep')
    -    t.matchSnapshot(explainNode(expl, 2, false), 'explain nocolor shallow')
    +    t.matchSnapshot(printNode(expl, color), 'print color')
    +    t.matchSnapshot(printNode(expl, noColor), 'print nocolor')
    +    t.matchSnapshot(explainNode(expl, Infinity, color), 'explain color deep')
    +    t.matchSnapshot(explainNode(expl, 2, noColor), 'explain nocolor shallow')
         t.end()
       })
     }
    @@ -261,6 +264,6 @@ for (const [name, expl] of Object.entries(cases)) {
     // make sure that we show the last one if it's the only one that would
     // hit the ...
     cases.manyDeps.dependents.pop()
    -t.matchSnapshot(explainNode(cases.manyDeps, 2, false), 'ellipses test one')
    +t.matchSnapshot(explainNode(cases.manyDeps, 2, noColor), 'ellipses test one')
     cases.manyDeps.dependents.pop()
    -t.matchSnapshot(explainNode(cases.manyDeps, 2, false), 'ellipses test two')
    +t.matchSnapshot(explainNode(cases.manyDeps, 2, noColor), 'ellipses test two')
    diff --git a/deps/npm/test/lib/utils/explain-eresolve.js b/deps/npm/test/lib/utils/explain-eresolve.js
    index 2c1fed77899e9e..0f60556ef2ac98 100644
    --- a/deps/npm/test/lib/utils/explain-eresolve.js
    +++ b/deps/npm/test/lib/utils/explain-eresolve.js
    @@ -1,9 +1,11 @@
     const t = require('tap')
    -const { resolve } = require('path')
    +const Chalk = require('chalk')
     const { explain, report } = require('../../../lib/utils/explain-eresolve.js')
     
     const cases = require('../../fixtures/eresolve-explanations.js')
    -const { cleanDate } = require('../../fixtures/clean-snapshot.js')
    +
    +const color = new Chalk.Instance({ level: Chalk.level })
    +const noColor = new Chalk.Instance({ level: 0 })
     
     for (const [name, expl] of Object.entries(cases)) {
       // no sense storing the whole contents of each object in the snapshot
    @@ -11,22 +13,16 @@ for (const [name, expl] of Object.entries(cases)) {
       expl.toJSON = () => ({ name, json: true })
     
       t.test(name, t => {
    -    const dir = t.testdir()
    -    const fileReport = resolve(dir, 'eresolve-report.txt')
    -    const opts = { file: fileReport, date: new Date().toISOString() }
    -
    -    t.cleanSnapshot = str => cleanDate(str.split(fileReport).join('${REPORT}'))
    -
    -    const color = report(expl, true, opts)
    -    t.matchSnapshot(color.explanation, 'report with color')
    -    t.matchSnapshot(color.file, 'report from color')
    +    const colorReport = report(expl, color, noColor)
    +    t.matchSnapshot(colorReport.explanation, 'report with color')
    +    t.matchSnapshot(colorReport.file, 'report from color')
     
    -    const noColor = report(expl, false, opts)
    -    t.matchSnapshot(noColor.explanation, 'report with no color')
    -    t.equal(noColor.file, color.file, 'same report written for object')
    +    const noColorReport = report(expl, noColor, noColor)
    +    t.matchSnapshot(noColorReport.explanation, 'report with no color')
    +    t.equal(noColorReport.file, colorReport.file, 'same report written for object')
     
    -    t.matchSnapshot(explain(expl, true, 2), 'explain with color, depth of 2')
    -    t.matchSnapshot(explain(expl, false, 6), 'explain with no color, depth of 6')
    +    t.matchSnapshot(explain(expl, color, 2), 'explain with color, depth of 2')
    +    t.matchSnapshot(explain(expl, noColor, 6), 'explain with no color, depth of 6')
     
         t.end()
       })
    diff --git a/deps/npm/test/lib/utils/log-file.js b/deps/npm/test/lib/utils/log-file.js
    index e134fe8790bd53..fde17dee96b029 100644
    --- a/deps/npm/test/lib/utils/log-file.js
    +++ b/deps/npm/test/lib/utils/log-file.js
    @@ -255,6 +255,20 @@ t.test('glob error', async t => {
       t.match(last(logs).content, /error cleaning log files .* bad glob/)
     })
     
    +t.test('do not log cleaning errors when logging is disabled', async t => {
    +  const { readLogs } = await loadLogFile(t, {
    +    logsMax: 0,
    +    mocks: {
    +      glob: () => {
    +        throw new Error('should not be logged')
    +      },
    +    },
    +  })
    +
    +  const logs = await readLogs()
    +  t.equal(logs.length, 0)
    +})
    +
     t.test('cleans old style logs too', async t => {
       const logsMax = 5
       const oldLogs = 10
    diff --git a/deps/npm/test/lib/utils/update-notifier.js b/deps/npm/test/lib/utils/update-notifier.js
    index e7830e6d9d66e0..9c12433a2d1177 100644
    --- a/deps/npm/test/lib/utils/update-notifier.js
    +++ b/deps/npm/test/lib/utils/update-notifier.js
    @@ -1,10 +1,8 @@
     const t = require('tap')
    +const { basename } = require('path')
     const tmock = require('../../fixtures/tmock')
    +const mockNpm = require('../../fixtures/mock-npm')
     
    -let ciMock = {}
    -const flatOptions = { global: false, cache: t.testdir() + '/_cacache' }
    -
    -const MANIFEST_REQUEST = []
     const CURRENT_VERSION = '123.420.69'
     const CURRENT_MAJOR = '122.420.69'
     const CURRENT_MINOR = '123.419.69'
    @@ -15,238 +13,196 @@ const NEXT_PATCH = '123.421.69'
     const CURRENT_BETA = '124.0.0-beta.99999'
     const HAVE_BETA = '124.0.0-beta.0'
     
    -let PACOTE_ERROR = null
    -const pacote = {
    -  manifest: async (spec, opts) => {
    -    if (!spec.match(/^npm@/)) {
    -      process.exit(1)
    -    }
    -    MANIFEST_REQUEST.push(spec)
    -    if (PACOTE_ERROR) {
    -      throw PACOTE_ERROR
    -    }
    -
    -    return {
    -      version:
    -        spec === 'npm@latest'
    -          ? CURRENT_VERSION
    -          : /-/.test(spec)
    -            ? CURRENT_BETA
    -            : NEXT_VERSION,
    -    }
    -  },
    -}
    -
    -const defaultNpm = {
    -  flatOptions,
    -  version: CURRENT_VERSION,
    -  config: { get: k => k !== 'global' },
    -  command: 'view',
    -  argv: ['npm'],
    -}
    -
    -const { basename } = require('path')
    -
    -let STAT_ERROR = null
    -let STAT_MTIME = null
    -let WRITE_ERROR = null
    -const fs = {
    -  ...require('fs'),
    -  stat: (path, cb) => {
    -    if (basename(path) !== '_update-notifier-last-checked') {
    -      process.exit(1)
    -    }
    -    process.nextTick(() => cb(STAT_ERROR, { mtime: new Date(STAT_MTIME) }))
    -  },
    -  writeFile: (path, content, cb) => {
    -    if (content !== '') {
    -      process.exit(1)
    -    }
    -    if (basename(path) !== '_update-notifier-last-checked') {
    -      process.exit(1)
    -    }
    -    process.nextTick(() => cb(WRITE_ERROR))
    -  },
    +const runUpdateNotifier = async (t, {
    +  STAT_ERROR,
    +  WRITE_ERROR,
    +  PACOTE_ERROR,
    +  STAT_MTIME = 0,
    +  mocks: _mocks = {},
    +  command = 'view',
    +  version = CURRENT_VERSION,
    +  argv = [],
    +  ...config
    +} = {}) => {
    +  const mockFs = {
    +    ...require('fs/promises'),
    +    stat: async (path) => {
    +      if (basename(path) !== '_update-notifier-last-checked') {
    +        t.fail('no stat allowed for non upate notifier files')
    +      }
    +      if (STAT_ERROR) {
    +        throw STAT_ERROR
    +      }
    +      return { mtime: new Date(STAT_MTIME) }
    +    },
    +    writeFile: async (path, content) => {
    +      if (content !== '') {
    +        t.fail('no write file content allowed')
    +      }
    +      if (basename(path) !== '_update-notifier-last-checked') {
    +        t.fail('no writefile allowed for non upate notifier files')
    +      }
    +      if (WRITE_ERROR) {
    +        throw WRITE_ERROR
    +      }
    +    },
    +  }
    +
    +  const MANIFEST_REQUEST = []
    +  const mockPacote = {
    +    manifest: async (spec) => {
    +      if (!spec.match(/^npm@/)) {
    +        t.fail('no pacote manifest allowed for non npm packages')
    +      }
    +      MANIFEST_REQUEST.push(spec)
    +      if (PACOTE_ERROR) {
    +        throw PACOTE_ERROR
    +      }
    +      const manifestV = spec === 'npm@latest' ? CURRENT_VERSION
    +        : /-/.test(spec) ? CURRENT_BETA : NEXT_VERSION
    +      return { version: manifestV }
    +    },
    +  }
    +
    +  const mocks = {
    +    pacote: mockPacote,
    +    'fs/promises': mockFs,
    +    '{ROOT}/package.json': { version },
    +    'ci-info': { isCI: false, name: null },
    +    ..._mocks,
    +  }
    +
    +  const mock = await mockNpm(t, {
    +    command,
    +    mocks,
    +    config,
    +    argv,
    +  })
    +  const updateNotifier = tmock(t, '{LIB}/utils/update-notifier.js', mocks)
    +
    +  const result = await updateNotifier(mock.npm)
    +
    +  return {
    +    result,
    +    MANIFEST_REQUEST,
    +  }
     }
     
    -t.afterEach(() => {
    -  MANIFEST_REQUEST.length = 0
    -  STAT_ERROR = null
    -  PACOTE_ERROR = null
    -  STAT_MTIME = null
    -  WRITE_ERROR = null
    +t.test('does not notify by default', async t => {
    +  const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t)
    +  t.not(result)
    +  t.equal(MANIFEST_REQUEST.length, 1)
     })
     
    -const runUpdateNotifier = async ({ color = true, ...npmOptions } = {}) => {
    -  const _npm = { ...defaultNpm, ...npmOptions, logColor: color }
    -  return tmock(t, '{LIB}/utils/update-notifier.js', {
    -    'ci-info': ciMock,
    -    pacote,
    -    fs,
    -  })(_npm)
    -}
    -
     t.test('situations in which we do not notify', t => {
       t.test('nothing to do if notifier disabled', async t => {
    -    t.equal(
    -      await runUpdateNotifier({
    -        config: { get: k => k !== 'update-notifier' },
    -      }),
    -      null
    -    )
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, {
    +      'update-notifier': false,
    +    })
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, [], 'no requests for manifests')
       })
     
       t.test('do not suggest update if already updating', async t => {
    -    t.equal(
    -      await runUpdateNotifier({
    -        flatOptions: { ...flatOptions, global: true },
    -        command: 'install',
    -        argv: ['npm'],
    -      }),
    -      null
    -    )
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, {
    +      command: 'install',
    +      argv: ['npm'],
    +      global: true,
    +    })
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, [], 'no requests for manifests')
       })
     
       t.test('do not suggest update if already updating with spec', async t => {
    -    t.equal(
    -      await runUpdateNotifier({
    -        flatOptions: { ...flatOptions, global: true },
    -        command: 'install',
    -        argv: ['npm@latest'],
    -      }),
    -      null
    -    )
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, {
    +      command: 'install',
    +      argv: ['npm@latest'],
    +      global: true,
    +    })
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, [], 'no requests for manifests')
       })
     
       t.test('do not update if same as latest', async t => {
    -    t.equal(await runUpdateNotifier(), null)
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t)
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, ['npm@latest'], 'requested latest version')
       })
       t.test('check if stat errors (here for coverage)', async t => {
    -    STAT_ERROR = new Error('blorg')
    -    t.equal(await runUpdateNotifier(), null)
    +    const STAT_ERROR = new Error('blorg')
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, { STAT_ERROR })
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, ['npm@latest'], 'requested latest version')
       })
       t.test('ok if write errors (here for coverage)', async t => {
    -    WRITE_ERROR = new Error('grolb')
    -    t.equal(await runUpdateNotifier(), null)
    +    const WRITE_ERROR = new Error('grolb')
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, { WRITE_ERROR })
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, ['npm@latest'], 'requested latest version')
       })
       t.test('ignore pacote failures (here for coverage)', async t => {
    -    PACOTE_ERROR = new Error('pah-KO-tchay')
    -    t.equal(await runUpdateNotifier(), null)
    +    const PACOTE_ERROR = new Error('pah-KO-tchay')
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, { PACOTE_ERROR })
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, ['npm@latest'], 'requested latest version')
       })
       t.test('do not update if newer than latest, but same as next', async t => {
    -    t.equal(await runUpdateNotifier({ version: NEXT_VERSION }), null)
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, { version: NEXT_VERSION })
    +    t.equal(result, null)
         const reqs = ['npm@latest', `npm@^${NEXT_VERSION}`]
         t.strictSame(MANIFEST_REQUEST, reqs, 'requested latest and next versions')
       })
       t.test('do not update if on the latest beta', async t => {
    -    t.equal(await runUpdateNotifier({ version: CURRENT_BETA }), null)
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, { version: CURRENT_BETA })
    +    t.equal(result, null)
         const reqs = [`npm@^${CURRENT_BETA}`]
         t.strictSame(MANIFEST_REQUEST, reqs, 'requested latest and next versions')
       })
     
       t.test('do not update in CI', async t => {
    -    t.teardown(() => {
    -      ciMock = {}
    -    })
    -    ciMock = { isCI: true, name: 'something' }
    -    t.equal(await runUpdateNotifier(), null)
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, { mocks: {
    +      'ci-info': { isCI: true, name: 'something' },
    +    } })
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, [], 'no requests for manifests')
       })
     
       t.test('only check weekly for GA releases', async t => {
         // One week (plus five minutes to account for test environment fuzziness)
    -    STAT_MTIME = Date.now() - 1000 * 60 * 60 * 24 * 7 + 1000 * 60 * 5
    -    t.equal(await runUpdateNotifier(), null)
    +    const STAT_MTIME = Date.now() - 1000 * 60 * 60 * 24 * 7 + 1000 * 60 * 5
    +    const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, { STAT_MTIME })
    +    t.equal(result, null)
         t.strictSame(MANIFEST_REQUEST, [], 'no requests for manifests')
       })
     
       t.test('only check daily for betas', async t => {
         // One day (plus five minutes to account for test environment fuzziness)
    -    STAT_MTIME = Date.now() - 1000 * 60 * 60 * 24 + 1000 * 60 * 5
    -    t.equal(await runUpdateNotifier({ version: HAVE_BETA }), null)
    -    t.strictSame(MANIFEST_REQUEST, [], 'no requests for manifests')
    +    const STAT_MTIME = Date.now() - 1000 * 60 * 60 * 24 + 1000 * 60 * 5
    +    const res = await runUpdateNotifier(t, { STAT_MTIME, version: HAVE_BETA })
    +    t.equal(res.result, null)
    +    t.strictSame(res.MANIFEST_REQUEST, [], 'no requests for manifests')
       })
     
       t.end()
     })
     
    -t.test('notification situations', t => {
    -  t.test('new beta available', async t => {
    -    const version = HAVE_BETA
    -    t.matchSnapshot(await runUpdateNotifier({ version }), 'color')
    -    t.matchSnapshot(
    -      await runUpdateNotifier({ version, color: false }),
    -      'no color'
    -    )
    -    t.strictSame(MANIFEST_REQUEST, [`npm@^${version}`, `npm@^${version}`])
    -  })
    -
    -  t.test('patch to next version', async t => {
    -    const version = NEXT_PATCH
    -    t.matchSnapshot(await runUpdateNotifier({ version }), 'color')
    -    t.matchSnapshot(
    -      await runUpdateNotifier({ version, color: false }),
    -      'no color'
    -    )
    -    t.strictSame(MANIFEST_REQUEST, [
    -      'npm@latest',
    -      `npm@^${version}`,
    -      'npm@latest',
    -      `npm@^${version}`,
    -    ])
    -  })
    -
    -  t.test('minor to next version', async t => {
    -    const version = NEXT_MINOR
    -    t.matchSnapshot(await runUpdateNotifier({ version }), 'color')
    -    t.matchSnapshot(
    -      await runUpdateNotifier({ version, color: false }),
    -      'no color'
    -    )
    -    t.strictSame(MANIFEST_REQUEST, [
    -      'npm@latest',
    -      `npm@^${version}`,
    -      'npm@latest',
    -      `npm@^${version}`,
    -    ])
    -  })
    -
    -  t.test('patch to current', async t => {
    -    const version = CURRENT_PATCH
    -    t.matchSnapshot(await runUpdateNotifier({ version }), 'color')
    -    t.matchSnapshot(
    -      await runUpdateNotifier({ version, color: false }),
    -      'no color'
    -    )
    -    t.strictSame(MANIFEST_REQUEST, ['npm@latest', 'npm@latest'])
    -  })
    -
    -  t.test('minor to current', async t => {
    -    const version = CURRENT_MINOR
    -    t.matchSnapshot(await runUpdateNotifier({ version }), 'color')
    -    t.matchSnapshot(
    -      await runUpdateNotifier({ version, color: false }),
    -      'no color'
    -    )
    -    t.strictSame(MANIFEST_REQUEST, ['npm@latest', 'npm@latest'])
    -  })
    -
    -  t.test('major to current', async t => {
    -    const version = CURRENT_MAJOR
    -    t.matchSnapshot(await runUpdateNotifier({ version }), 'color')
    -    t.matchSnapshot(
    -      await runUpdateNotifier({ version, color: false }),
    -      'no color'
    -    )
    -    t.strictSame(MANIFEST_REQUEST, ['npm@latest', 'npm@latest'])
    -  })
    -
    -  t.end()
    +t.test('notification situations', async t => {
    +  const cases = {
    +    [HAVE_BETA]: [`^{V}`],
    +    [NEXT_PATCH]: [`latest`, `^{V}`],
    +    [NEXT_MINOR]: [`latest`, `^{V}`],
    +    [CURRENT_PATCH]: ['latest'],
    +    [CURRENT_MINOR]: ['latest'],
    +    [CURRENT_MAJOR]: ['latest'],
    +  }
    +
    +  for (const [version, reqs] of Object.entries(cases)) {
    +    for (const color of [false, 'always']) {
    +      await t.test(`${version} - color=${color}`, async t => {
    +        const { result, MANIFEST_REQUEST } = await runUpdateNotifier(t, { version, color })
    +        t.matchSnapshot(result)
    +        t.strictSame(MANIFEST_REQUEST, reqs.map(r => `npm@${r.replace('{V}', version)}`))
    +      })
    +    }
    +  }
     })
    diff --git a/deps/simdutf/simdutf.cpp b/deps/simdutf/simdutf.cpp
    index d3100c1561d350..3065bcdfbb3857 100644
    --- a/deps/simdutf/simdutf.cpp
    +++ b/deps/simdutf/simdutf.cpp
    @@ -1,4 +1,4 @@
    -/* auto-generated on 2023-02-24 17:01:43 -0500. Do not edit! */
    +/* auto-generated on 2023-03-30 20:31:03 -0400. Do not edit! */
     // dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/src, filename=simdutf.cpp
     /* begin file src/simdutf.cpp */
     #include "simdutf.h"
    @@ -17218,7 +17218,7 @@ std::pair avx512_convert_utf32_to_utf8(const char32_t* b
       __m256i running_max = _mm256_setzero_si256();
       __m256i forbidden_bytemask = _mm256_setzero_si256();
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m256i in = _mm256_loadu_si256((__m256i*)buf);
    @@ -17459,7 +17459,7 @@ std::pair avx512_convert_utf32_to_utf8_with_errors(const char32_t
       const __m256i v_7fffffff = _mm256_set1_epi32((uint32_t)0x7fffffff);
       const __m256i v_10ffff = _mm256_set1_epi32((uint32_t)0x10ffff);
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m256i in = _mm256_loadu_si256((__m256i*)buf);
    @@ -17697,7 +17697,7 @@ template 
     std::pair avx512_convert_utf32_to_utf16(const char32_t* buf, size_t len, char16_t* utf16_output) {
       const char32_t* end = buf + len;
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
       __m256i forbidden_bytemask = _mm256_setzero_si256();
     
     
    @@ -17764,7 +17764,7 @@ std::pair avx512_convert_utf32_to_utf16_with_errors(const cha
       const char32_t* start = buf;
       const char32_t* end = buf + len;
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 8 + safety_margin <= end) {
         __m256i in = _mm256_loadu_si256((__m256i*)buf);
    @@ -20064,7 +20064,7 @@ std::pair avx2_convert_utf16_to_utf8(const char16_t* buf
       const __m256i v_f800 = _mm256_set1_epi16((int16_t)0xf800);
       const __m256i v_d800 = _mm256_set1_epi16((int16_t)0xd800);
       const __m256i v_c080 = _mm256_set1_epi16((int16_t)0xc080);
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m256i in = _mm256_loadu_si256((__m256i*)buf);
    @@ -20307,7 +20307,7 @@ std::pair avx2_convert_utf16_to_utf8_with_errors(const char16_t*
       const __m256i v_f800 = _mm256_set1_epi16((int16_t)0xf800);
       const __m256i v_d800 = _mm256_set1_epi16((int16_t)0xd800);
       const __m256i v_c080 = _mm256_set1_epi16((int16_t)0xc080);
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m256i in = _mm256_loadu_si256((__m256i*)buf);
    @@ -20732,7 +20732,7 @@ std::pair avx2_convert_utf32_to_utf8(const char32_t* buf
       __m256i running_max = _mm256_setzero_si256();
       __m256i forbidden_bytemask = _mm256_setzero_si256();
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m256i in = _mm256_loadu_si256((__m256i*)buf);
    @@ -20973,7 +20973,7 @@ std::pair avx2_convert_utf32_to_utf8_with_errors(const char32_t*
       const __m256i v_7fffffff = _mm256_set1_epi32((uint32_t)0x7fffffff);
       const __m256i v_10ffff = _mm256_set1_epi32((uint32_t)0x10ffff);
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m256i in = _mm256_loadu_si256((__m256i*)buf);
    @@ -21208,7 +21208,7 @@ template 
     std::pair avx2_convert_utf32_to_utf16(const char32_t* buf, size_t len, char16_t* utf16_output) {
       const char32_t* end = buf + len;
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
       __m256i forbidden_bytemask = _mm256_setzero_si256();
     
     
    @@ -21275,7 +21275,7 @@ std::pair avx2_convert_utf32_to_utf16_with_errors(const char3
       const char32_t* start = buf;
       const char32_t* end = buf + len;
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 8 + safety_margin <= end) {
         __m256i in = _mm256_loadu_si256((__m256i*)buf);
    @@ -25394,7 +25394,7 @@ std::pair sse_convert_utf16_to_utf8(const char16_t* buf,
       const __m128i v_f800 = _mm_set1_epi16((int16_t)0xf800);
       const __m128i v_d800 = _mm_set1_epi16((int16_t)0xd800);
       const __m128i v_c080 = _mm_set1_epi16((int16_t)0xc080);
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m128i in = _mm_loadu_si128((__m128i*)buf);
    @@ -25634,7 +25634,7 @@ std::pair sse_convert_utf16_to_utf8_with_errors(const char16_t* b
       const __m128i v_f800 = _mm_set1_epi16((int16_t)0xf800);
       const __m128i v_d800 = _mm_set1_epi16((int16_t)0xd800);
       const __m128i v_c080 = _mm_set1_epi16((int16_t)0xc080);
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m128i in = _mm_loadu_si128((__m128i*)buf);
    @@ -26056,7 +26056,7 @@ std::pair sse_convert_utf32_to_utf8(const char32_t* buf,
       const __m128i v_7fffffff = _mm_set1_epi32((uint32_t)0x7fffffff);
       __m128i running_max = _mm_setzero_si128();
       __m128i forbidden_bytemask = _mm_setzero_si128();
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m128i in = _mm_loadu_si128((__m128i*)buf);
    @@ -26297,7 +26297,7 @@ std::pair sse_convert_utf32_to_utf8_with_errors(const char32_t* b
       const __m128i v_7fffffff = _mm_set1_epi32((uint32_t)0x7fffffff);
       const __m128i v_10ffff = _mm_set1_epi32((uint32_t)0x10ffff);
     
    -  const size_t safety_margin = 11; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
    +  const size_t safety_margin = 12; // to avoid overruns, see issue https://github.com/simdutf/simdutf/issues/92
     
       while (buf + 16 + safety_margin <= end) {
         __m128i in = _mm_loadu_si128((__m128i*)buf);
    diff --git a/deps/simdutf/simdutf.h b/deps/simdutf/simdutf.h
    index 80189d316cba8c..bc18418fbf52cb 100644
    --- a/deps/simdutf/simdutf.h
    +++ b/deps/simdutf/simdutf.h
    @@ -1,4 +1,4 @@
    -/* auto-generated on 2023-02-24 17:01:43 -0500. Do not edit! */
    +/* auto-generated on 2023-03-30 20:31:03 -0400. Do not edit! */
     // dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/include, filename=simdutf.h
     /* begin file include/simdutf.h */
     #ifndef SIMDUTF_H
    @@ -572,7 +572,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
     #define SIMDUTF_SIMDUTF_VERSION_H
     
     /** The version of simdutf being used (major.minor.revision) */
    -#define SIMDUTF_VERSION "3.2.2"
    +#define SIMDUTF_VERSION "3.2.3"
     
     namespace simdutf {
     enum {
    @@ -587,7 +587,7 @@ enum {
       /**
        * The revision (major.minor.REVISION) of simdutf being used.
        */
    -  SIMDUTF_VERSION_REVISION = 2
    +  SIMDUTF_VERSION_REVISION = 3
     };
     } // namespace simdutf
     
    diff --git a/deps/v8/AUTHORS b/deps/v8/AUTHORS
    index af37f8db25121e..38e5cd01b2d41d 100644
    --- a/deps/v8/AUTHORS
    +++ b/deps/v8/AUTHORS
    @@ -98,6 +98,7 @@ Darshan Sen 
     David Carlier 
     David Manouchehri 
     David Sanders 
    +Debadree Chatterjee 
     Deepak Mohan 
     Deon Dior 
     Derek Tu 
    diff --git a/deps/v8/src/base/platform/platform.h b/deps/v8/src/base/platform/platform.h
    index 88d35540b1d34c..5ffc6e3b1d8efe 100644
    --- a/deps/v8/src/base/platform/platform.h
    +++ b/deps/v8/src/base/platform/platform.h
    @@ -654,9 +654,9 @@ class V8_BASE_EXPORT Stack {
         constexpr size_t kAsanRealFrameOffsetBytes = 32;
         void* real_frame = __asan_addr_is_in_fake_stack(
             __asan_get_current_fake_stack(), slot, nullptr, nullptr);
    -    return real_frame
    -               ? (static_cast(real_frame) + kAsanRealFrameOffsetBytes)
    -               : slot;
    +    return real_frame ? StackSlot(static_cast(real_frame) +
    +                                  kAsanRealFrameOffsetBytes)
    +                      : slot;
     #endif  // V8_USE_ADDRESS_SANITIZER
         return slot;
       }
    diff --git a/deps/v8/src/common/checks.h b/deps/v8/src/common/checks.h
    index 59c845b4f549ff..33d7a8458bd95f 100644
    --- a/deps/v8/src/common/checks.h
    +++ b/deps/v8/src/common/checks.h
    @@ -15,7 +15,7 @@
     
     #ifdef ENABLE_SLOW_DCHECKS
     #define SLOW_DCHECK(condition) \
    -  CHECK(!v8::internal::FLAG_enable_slow_asserts || (condition))
    +  CHECK(!v8::internal::v8_flags.enable_slow_asserts.value() || (condition))
     #define SLOW_DCHECK_IMPLIES(lhs, rhs) SLOW_DCHECK(!(lhs) || (rhs))
     #else
     #define SLOW_DCHECK(condition) ((void)0)
    diff --git a/deps/v8/src/objects/keys.cc b/deps/v8/src/objects/keys.cc
    index ac21fbf9c3d2d2..001008f3b9d268 100644
    --- a/deps/v8/src/objects/keys.cc
    +++ b/deps/v8/src/objects/keys.cc
    @@ -182,7 +182,8 @@ ExceptionStatus KeyAccumulator::AddKeys(Handle array_like,
     MaybeHandle FilterProxyKeys(KeyAccumulator* accumulator,
                                             Handle owner,
                                             Handle keys,
    -                                        PropertyFilter filter) {
    +                                        PropertyFilter filter,
    +                                        bool skip_indices) {
       if (filter == ALL_PROPERTIES) {
         // Nothing to do.
         return keys;
    @@ -192,6 +193,10 @@ MaybeHandle FilterProxyKeys(KeyAccumulator* accumulator,
       for (int i = 0; i < keys->length(); ++i) {
         Handle key(Name::cast(keys->get(i)), isolate);
         if (key->FilterKey(filter)) continue;  // Skip this key.
    +    if (skip_indices) {
    +      uint32_t index;
    +      if (key->AsArrayIndex(&index)) continue;  // Skip this key.
    +    }
         if (filter & ONLY_ENUMERABLE) {
           PropertyDescriptor desc;
           Maybe found =
    @@ -218,7 +223,8 @@ Maybe KeyAccumulator::AddKeysFromJSProxy(Handle proxy,
       // Postpone the enumerable check for for-in to the ForInFilter step.
       if (!is_for_in_) {
         ASSIGN_RETURN_ON_EXCEPTION_VALUE(
    -        isolate_, keys, FilterProxyKeys(this, proxy, keys, filter_),
    +        isolate_, keys,
    +        FilterProxyKeys(this, proxy, keys, filter_, skip_indices_),
             Nothing());
       }
       // https://tc39.es/ecma262/#sec-proxy-object-internal-methods-and-internal-slots-ownpropertykeys
    diff --git a/deps/v8/test/cctest/compiler/test-operator.cc b/deps/v8/test/cctest/compiler/test-operator.cc
    index 7428359223b015..33f0d537f3bc81 100644
    --- a/deps/v8/test/cctest/compiler/test-operator.cc
    +++ b/deps/v8/test/cctest/compiler/test-operator.cc
    @@ -210,7 +210,7 @@ TEST(TestOperator1double_Equals) {
       CHECK(!op2b.Equals(&op1a));
       CHECK(!op2b.Equals(&op1b));
     
    -  Operator op3(25, NONE, "Weepy", 0, 0, 0, 0, 0, 0);
    +  Operator1 op3(25, NONE, "Weepy", 0, 0, 0, 0, 0, 0, 1.1);
     
       CHECK(!op1a.Equals(&op3));
       CHECK(!op1b.Equals(&op3));
    diff --git a/deps/v8/test/cctest/test-api.cc b/deps/v8/test/cctest/test-api.cc
    index 5e13f3b4bae67f..755e12bb3d51fa 100644
    --- a/deps/v8/test/cctest/test-api.cc
    +++ b/deps/v8/test/cctest/test-api.cc
    @@ -14429,6 +14429,110 @@ THREADED_TEST(ProxyGetPropertyNames) {
       CheckIsSymbolAt(isolate, properties, 4, "symbol");
     }
     
    +THREADED_TEST(ProxyGetPropertyNamesWithOwnKeysTrap) {
    +  LocalContext context;
    +  v8::Isolate* isolate = context->GetIsolate();
    +  v8::HandleScope scope(isolate);
    +  v8::Local result = CompileRun(
    +      "var target = {0: 0, 1: 1, a: 2, b: 3};"
    +      "target[2**32] = '4294967296';"
    +      "target[2**32-1] = '4294967295';"
    +      "target[2**32-2] = '4294967294';"
    +      "target[Symbol('symbol')] = true;"
    +      "target.__proto__ = {__proto__:null, 2: 4, 3: 5, c: 6, d: 7};"
    +      "var result = new Proxy(target, { ownKeys: (t) => Reflect.ownKeys(t) });"
    +      "result;");
    +  v8::Local object = result.As();
    +  v8::PropertyFilter default_filter =
    +      static_cast(v8::ONLY_ENUMERABLE | v8::SKIP_SYMBOLS);
    +  v8::PropertyFilter include_symbols_filter = v8::ONLY_ENUMERABLE;
    +
    +  v8::Local properties =
    +      object->GetPropertyNames(context.local()).ToLocalChecked();
    +  const char* expected_properties1[] = {"0", "1",          "4294967294", "a",
    +                                        "b", "4294967296", "4294967295", "2",
    +                                        "3", "c",          "d"};
    +  CheckStringArray(isolate, properties, 11, expected_properties1);
    +
    +  properties =
    +      object
    +          ->GetPropertyNames(context.local(),
    +                             v8::KeyCollectionMode::kIncludePrototypes,
    +                             default_filter, v8::IndexFilter::kIncludeIndices)
    +          .ToLocalChecked();
    +  CheckStringArray(isolate, properties, 11, expected_properties1);
    +
    +  properties = object
    +                   ->GetPropertyNames(context.local(),
    +                                      v8::KeyCollectionMode::kIncludePrototypes,
    +                                      include_symbols_filter,
    +                                      v8::IndexFilter::kIncludeIndices)
    +                   .ToLocalChecked();
    +  const char* expected_properties1_1[] = {
    +      "0",          "1",     "4294967294", "a", "b", "4294967296",
    +      "4294967295", nullptr, "2",          "3", "c", "d"};
    +  CheckStringArray(isolate, properties, 12, expected_properties1_1);
    +  CheckIsSymbolAt(isolate, properties, 7, "symbol");
    +
    +  properties =
    +      object
    +          ->GetPropertyNames(context.local(),
    +                             v8::KeyCollectionMode::kIncludePrototypes,
    +                             default_filter, v8::IndexFilter::kSkipIndices)
    +          .ToLocalChecked();
    +  const char* expected_properties2[] = {"a",          "b", "4294967296",
    +                                        "4294967295", "c", "d"};
    +  CheckStringArray(isolate, properties, 6, expected_properties2);
    +
    +  properties = object
    +                   ->GetPropertyNames(context.local(),
    +                                      v8::KeyCollectionMode::kIncludePrototypes,
    +                                      include_symbols_filter,
    +                                      v8::IndexFilter::kSkipIndices)
    +                   .ToLocalChecked();
    +  const char* expected_properties2_1[] = {
    +      "a", "b", "4294967296", "4294967295", nullptr, "c", "d"};
    +  CheckStringArray(isolate, properties, 7, expected_properties2_1);
    +  CheckIsSymbolAt(isolate, properties, 4, "symbol");
    +
    +  properties =
    +      object
    +          ->GetPropertyNames(context.local(), v8::KeyCollectionMode::kOwnOnly,
    +                             default_filter, v8::IndexFilter::kIncludeIndices)
    +          .ToLocalChecked();
    +  const char* expected_properties3[] = {"0", "1",          "4294967294", "a",
    +                                        "b", "4294967296", "4294967295"};
    +  CheckStringArray(isolate, properties, 7, expected_properties3);
    +
    +  properties = object
    +                   ->GetPropertyNames(
    +                       context.local(), v8::KeyCollectionMode::kOwnOnly,
    +                       include_symbols_filter, v8::IndexFilter::kIncludeIndices)
    +                   .ToLocalChecked();
    +  const char* expected_properties3_1[] = {
    +      "0", "1", "4294967294", "a", "b", "4294967296", "4294967295", nullptr};
    +  CheckStringArray(isolate, properties, 8, expected_properties3_1);
    +  CheckIsSymbolAt(isolate, properties, 7, "symbol");
    +
    +  properties =
    +      object
    +          ->GetPropertyNames(context.local(), v8::KeyCollectionMode::kOwnOnly,
    +                             default_filter, v8::IndexFilter::kSkipIndices)
    +          .ToLocalChecked();
    +  const char* expected_properties4[] = {"a", "b", "4294967296", "4294967295"};
    +  CheckStringArray(isolate, properties, 4, expected_properties4);
    +
    +  properties = object
    +                   ->GetPropertyNames(
    +                       context.local(), v8::KeyCollectionMode::kOwnOnly,
    +                       include_symbols_filter, v8::IndexFilter::kSkipIndices)
    +                   .ToLocalChecked();
    +  const char* expected_properties4_1[] = {"a", "b", "4294967296", "4294967295",
    +                                          nullptr};
    +  CheckStringArray(isolate, properties, 5, expected_properties4_1);
    +  CheckIsSymbolAt(isolate, properties, 4, "symbol");
    +}
    +
     THREADED_TEST(AccessChecksReenabledCorrectly) {
       LocalContext context;
       v8::Isolate* isolate = context->GetIsolate();
    diff --git a/doc/api/assert.md b/doc/api/assert.md
    index d40300cc3fdb1b..1467d633c25ffd 100644
    --- a/doc/api/assert.md
    +++ b/doc/api/assert.md
    @@ -348,7 +348,7 @@ const callsfunc = tracker.calls(func);
     callsfunc(1, 2, 3);
     
     assert.deepStrictEqual(tracker.getCalls(callsfunc),
    -                       [{ thisArg: this, arguments: [1, 2, 3 ] }]);
    +                       [{ thisArg: undefined, arguments: [1, 2, 3] }]);
     ```
     
     ```cjs
    @@ -362,7 +362,7 @@ const callsfunc = tracker.calls(func);
     callsfunc(1, 2, 3);
     
     assert.deepStrictEqual(tracker.getCalls(callsfunc),
    -                       [{ thisArg: this, arguments: [1, 2, 3 ] }]);
    +                       [{ thisArg: undefined, arguments: [1, 2, 3] }]);
     ```
     
     ### `tracker.report()`
    @@ -399,7 +399,7 @@ function func() {}
     const callsfunc = tracker.calls(func, 2);
     
     // Returns an array containing information on callsfunc()
    -tracker.report();
    +console.log(tracker.report());
     // [
     //  {
     //    message: 'Expected the func function to be executed 2 time(s) but was
    @@ -425,7 +425,7 @@ function func() {}
     const callsfunc = tracker.calls(func, 2);
     
     // Returns an array containing information on callsfunc()
    -tracker.report();
    +console.log(tracker.report());
     // [
     //  {
     //    message: 'Expected the func function to be executed 2 time(s) but was
    @@ -462,24 +462,26 @@ const callsfunc = tracker.calls(func);
     
     callsfunc();
     // Tracker was called once
    -tracker.getCalls(callsfunc).length === 1;
    +assert.strictEqual(tracker.getCalls(callsfunc).length, 1);
     
     tracker.reset(callsfunc);
    -tracker.getCalls(callsfunc).length === 0;
    +assert.strictEqual(tracker.getCalls(callsfunc).length, 0);
     ```
     
     ```cjs
     const assert = require('node:assert');
     
    +const tracker = new assert.CallTracker();
    +
     function func() {}
     const callsfunc = tracker.calls(func);
     
     callsfunc();
     // Tracker was called once
    -tracker.getCalls(callsfunc).length === 1;
    +assert.strictEqual(tracker.getCalls(callsfunc).length, 1);
     
     tracker.reset(callsfunc);
    -tracker.getCalls(callsfunc).length === 0;
    +assert.strictEqual(tracker.getCalls(callsfunc).length, 0);
     ```
     
     ### `tracker.verify()`
    diff --git a/doc/api/async_context.md b/doc/api/async_context.md
    index bc5fc9004770b5..8223f2464bd341 100644
    --- a/doc/api/async_context.md
    +++ b/doc/api/async_context.md
    @@ -167,7 +167,7 @@ calls the function passed to it within the captured context.
     
     ```js
     const asyncLocalStorage = new AsyncLocalStorage();
    -const runInAsyncScope = asyncLocalStorage.run(123, () => asyncLocalStorage.snapshot());
    +const runInAsyncScope = asyncLocalStorage.run(123, () => AsyncLocalStorage.snapshot());
     const result = asyncLocalStorage.run(321, () => runInAsyncScope(() => asyncLocalStorage.getStore()));
     console.log(result);  // returns 123
     ```
    diff --git a/doc/api/cli.md b/doc/api/cli.md
    index 8588363de7cbd7..c99d02fc9394ee 100644
    --- a/doc/api/cli.md
    +++ b/doc/api/cli.md
    @@ -1214,7 +1214,7 @@ path to the blob that is used to restore the application state.
     
     When loading a snapshot, Node.js checks that:
     
    -1. The version, architecture and platform of the running Node.js binary
    +1. The version, architecture, and platform of the running Node.js binary
        are exactly the same as that of the binary that generates the snapshot.
     2. The V8 flags and CPU features are compatible with that of the binary
        that generates the snapshot.
    @@ -1941,6 +1941,8 @@ Node.js options that are allowed are:
     * `--secure-heap`
     * `--snapshot-blob`
     * `--test-only`
    +* `--test-reporter-destination`
    +* `--test-reporter`
     * `--throw-deprecation`
     * `--title`
     * `--tls-cipher-list`
    @@ -2082,6 +2084,11 @@ If `value` equals `'1'`, the check for a supported platform is skipped during
     Node.js startup. Node.js might not execute correctly. Any issues encountered
     on unsupported platforms will not be fixed.
     
    +### `NODE_TEST_CONTEXT=value`
    +
    +If `value` equals `'child'`, test reporter options will be overridden and test
    +output will be sent to stdout in the TAP format.
    +
     ### `NODE_TLS_REJECT_UNAUTHORIZED=value`
     
     If `value` equals `'0'`, certificate validation is disabled for TLS connections.
    diff --git a/doc/api/crypto.md b/doc/api/crypto.md
    index 29000bcbcca691..984cdbaa8da3c5 100644
    --- a/doc/api/crypto.md
    +++ b/doc/api/crypto.md
    @@ -4430,28 +4430,6 @@ pbkdf2('secret', 'salt', 100000, 64, 'sha512', (err, derivedKey) => {
     });
     ```
     
    -The `crypto.DEFAULT_ENCODING` property can be used to change the way the
    -`derivedKey` is passed to the callback. This property, however, has been
    -deprecated and use should be avoided.
    -
    -```mjs
    -import crypto from 'node:crypto';
    -crypto.DEFAULT_ENCODING = 'hex';
    -crypto.pbkdf2('secret', 'salt', 100000, 512, 'sha512', (err, derivedKey) => {
    -  if (err) throw err;
    -  console.log(derivedKey);  // '3745e48...aa39b34'
    -});
    -```
    -
    -```cjs
    -const crypto = require('node:crypto');
    -crypto.DEFAULT_ENCODING = 'hex';
    -crypto.pbkdf2('secret', 'salt', 100000, 512, 'sha512', (err, derivedKey) => {
    -  if (err) throw err;
    -  console.log(derivedKey);  // '3745e48...aa39b34'
    -});
    -```
    -
     An array of supported digest functions can be retrieved using
     [`crypto.getHashes()`][].
     
    @@ -4521,24 +4499,6 @@ const key = pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512');
     console.log(key.toString('hex'));  // '3745e48...08d59ae'
     ```
     
    -The `crypto.DEFAULT_ENCODING` property may be used to change the way the
    -`derivedKey` is returned. This property, however, is deprecated and use
    -should be avoided.
    -
    -```mjs
    -import crypto from 'node:crypto';
    -crypto.DEFAULT_ENCODING = 'hex';
    -const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512');
    -console.log(key);  // '3745e48...aa39b34'
    -```
    -
    -```cjs
    -const crypto = require('node:crypto');
    -crypto.DEFAULT_ENCODING = 'hex';
    -const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512');
    -console.log(key);  // '3745e48...aa39b34'
    -```
    -
     An array of supported digest functions can be retrieved using
     [`crypto.getHashes()`][].
     
    diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
    index 7417817944e9be..75b4a0387ac106 100644
    --- a/doc/api/deprecations.md
    +++ b/doc/api/deprecations.md
    @@ -3280,13 +3280,16 @@ Node-API callbacks.
     
     
     
    -Type: Documentation-only
    +Type: Documentation-only (supports [`--pending-deprecation`][])
     
     [`url.parse()`][] behavior is not standardized and prone to errors that
     have security implications. Use the [WHATWG URL API][] instead. CVEs are not
    diff --git a/doc/api/diagnostics_channel.md b/doc/api/diagnostics_channel.md
    index 30257c1e9efde2..6869dc2e72fd1e 100644
    --- a/doc/api/diagnostics_channel.md
    +++ b/doc/api/diagnostics_channel.md
    @@ -229,6 +229,56 @@ diagnostics_channel.subscribe('my-channel', onMessage);
     diagnostics_channel.unsubscribe('my-channel', onMessage);
     ```
     
    +#### `diagnostics_channel.tracingChannel(nameOrChannels)`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +* `nameOrChannels` {string|TracingChannel} Channel name or
    +  object containing all the [TracingChannel Channels][]
    +* Returns: {TracingChannel} Collection of channels to trace with
    +
    +Creates a [`TracingChannel`][] wrapper for the given
    +[TracingChannel Channels][]. If a name is given, the corresponding tracing
    +channels will be created in the form of `tracing:${name}:${eventType}` where
    +`eventType` corresponds to the types of [TracingChannel Channels][].
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +
    +const channelsByName = diagnostics_channel.tracingChannel('my-channel');
    +
    +// or...
    +
    +const channelsByCollection = diagnostics_channel.tracingChannel({
    +  start: diagnostics_channel.channel('tracing:my-channel:start'),
    +  end: diagnostics_channel.channel('tracing:my-channel:end'),
    +  asyncStart: diagnostics_channel.channel('tracing:my-channel:asyncStart'),
    +  asyncEnd: diagnostics_channel.channel('tracing:my-channel:asyncEnd'),
    +  error: diagnostics_channel.channel('tracing:my-channel:error'),
    +});
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +
    +const channelsByName = diagnostics_channel.tracingChannel('my-channel');
    +
    +// or...
    +
    +const channelsByCollection = diagnostics_channel.tracingChannel({
    +  start: diagnostics_channel.channel('tracing:my-channel:start'),
    +  end: diagnostics_channel.channel('tracing:my-channel:end'),
    +  asyncStart: diagnostics_channel.channel('tracing:my-channel:asyncStart'),
    +  asyncEnd: diagnostics_channel.channel('tracing:my-channel:asyncEnd'),
    +  error: diagnostics_channel.channel('tracing:my-channel:error'),
    +});
    +```
    +
     ### Class: `Channel`
     
     
    +
    +> Stability: 1 - Experimental
    +
    +* `store` {AsyncLocalStorage} The store to which to bind the context data
    +* `transform` {Function} Transform context data before setting the store context
    +
    +When [`channel.runStores(context, ...)`][] is called, the given context data
    +will be applied to any store bound to the channel. If the store has already been
    +bound the previous `transform` function will be replaced with the new one.
    +The `transform` function may be omitted to set the given context data as the
    +context directly.
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +import { AsyncLocalStorage } from 'node:async_hooks';
    +
    +const store = new AsyncLocalStorage();
    +
    +const channel = diagnostics_channel.channel('my-channel');
    +
    +channel.bindStore(store, (data) => {
    +  return { data };
    +});
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +const { AsyncLocalStorage } = require('node:async_hooks');
    +
    +const store = new AsyncLocalStorage();
    +
    +const channel = diagnostics_channel.channel('my-channel');
    +
    +channel.bindStore(store, (data) => {
    +  return { data };
    +});
    +```
    +
    +#### `channel.unbindStore(store)`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +* `store` {AsyncLocalStorage} The store to unbind from the channel.
    +* Returns: {boolean} `true` if the store was found, `false` otherwise.
    +
    +Remove a message handler previously registered to this channel with
    +[`channel.bindStore(store)`][].
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +import { AsyncLocalStorage } from 'node:async_hooks';
    +
    +const store = new AsyncLocalStorage();
    +
    +const channel = diagnostics_channel.channel('my-channel');
    +
    +channel.bindStore(store);
    +channel.unbindStore(store);
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +const { AsyncLocalStorage } = require('node:async_hooks');
    +
    +const store = new AsyncLocalStorage();
    +
    +const channel = diagnostics_channel.channel('my-channel');
    +
    +channel.bindStore(store);
    +channel.unbindStore(store);
    +```
    +
    +#### `channel.runStores(context, fn[, thisArg[, ...args]])`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +* `context` {any} Message to send to subscribers and bind to stores
    +* `fn` {Function} Handler to run within the entered storage context
    +* `thisArg` {any} The receiver to be used for the function call.
    +* `...args` {any} Optional arguments to pass to the function.
    +
    +Applies the given data to any AsyncLocalStorage instances bound to the channel
    +for the duration of the given function, then publishes to the channel within
    +the scope of that data is applied to the stores.
    +
    +If a transform function was given to [`channel.bindStore(store)`][] it will be
    +applied to transform the message data before it becomes the context value for
    +the store. The prior storage context is accessible from within the transform
    +function in cases where context linking is required.
    +
    +The context applied to the store should be accesible in any async code which
    +continues from execution which began during the given function, however
    +there are some situations in which [context loss][] may occur.
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +import { AsyncLocalStorage } from 'node:async_hooks';
    +
    +const store = new AsyncLocalStorage();
    +
    +const channel = diagnostics_channel.channel('my-channel');
    +
    +channel.bindStore(store, (message) => {
    +  const parent = store.getStore();
    +  return new Span(message, parent);
    +});
    +channel.runStores({ some: 'message' }, () => {
    +  store.getStore(); // Span({ some: 'message' })
    +});
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +const { AsyncLocalStorage } = require('node:async_hooks');
    +
    +const store = new AsyncLocalStorage();
    +
    +const channel = diagnostics_channel.channel('my-channel');
    +
    +channel.bindStore(store, (message) => {
    +  const parent = store.getStore();
    +  return new Span(message, parent);
    +});
    +channel.runStores({ some: 'message' }, () => {
    +  store.getStore(); // Span({ some: 'message' })
    +});
    +```
    +
    +### Class: `TracingChannel`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +The class `TracingChannel` is a collection of [TracingChannel Channels][] which
    +together express a single traceable action. It is used to formalize and
    +simplify the process of producing events for tracing application flow.
    +[`diagnostics_channel.tracingChannel()`][] is used to construct a
    +`TracingChannel`. As with `Channel` it is recommended to create and reuse a
    +single `TracingChannel` at the top-level of the file rather than creating them
    +dynamically.
    +
    +#### `tracingChannel.subscribe(subscribers)`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +* `subscribers` {Object} Set of [TracingChannel Channels][] subscribers
    +  * `start` {Function} The [`start` event][] subscriber
    +  * `end` {Function} The [`end` event][] subscriber
    +  * `asyncStart` {Function} The [`asyncStart` event][] subscriber
    +  * `asyncEnd` {Function} The [`asyncEnd` event][] subscriber
    +  * `error` {Function} The [`error` event][] subscriber
    +
    +Helper to subscribe a collection of functions to the corresponding channels.
    +This is the same as calling [`channel.subscribe(onMessage)`][] on each channel
    +individually.
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.subscribe({
    +  start(message) {
    +    // Handle start message
    +  },
    +  end(message) {
    +    // Handle end message
    +  },
    +  asyncStart(message) {
    +    // Handle asyncStart message
    +  },
    +  asyncEnd(message) {
    +    // Handle asyncEnd message
    +  },
    +  error(message) {
    +    // Handle error message
    +  },
    +});
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.subscribe({
    +  start(message) {
    +    // Handle start message
    +  },
    +  end(message) {
    +    // Handle end message
    +  },
    +  asyncStart(message) {
    +    // Handle asyncStart message
    +  },
    +  asyncEnd(message) {
    +    // Handle asyncEnd message
    +  },
    +  error(message) {
    +    // Handle error message
    +  },
    +});
    +```
    +
    +#### `tracingChannel.unsubscribe(subscribers)`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +* `subscribers` {Object} Set of [TracingChannel Channels][] subscribers
    +  * `start` {Function} The [`start` event][] subscriber
    +  * `end` {Function} The [`end` event][] subscriber
    +  * `asyncStart` {Function} The [`asyncStart` event][] subscriber
    +  * `asyncEnd` {Function} The [`asyncEnd` event][] subscriber
    +  * `error` {Function} The [`error` event][] subscriber
    +* Returns: {boolean} `true` if all handlers were successfully unsubscribed,
    +  and `false` otherwise.
    +
    +Helper to unsubscribe a collection of functions from the corresponding channels.
    +This is the same as calling [`channel.unsubscribe(onMessage)`][] on each channel
    +individually.
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.unsubscribe({
    +  start(message) {
    +    // Handle start message
    +  },
    +  end(message) {
    +    // Handle end message
    +  },
    +  asyncStart(message) {
    +    // Handle asyncStart message
    +  },
    +  asyncEnd(message) {
    +    // Handle asyncEnd message
    +  },
    +  error(message) {
    +    // Handle error message
    +  },
    +});
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.unsubscribe({
    +  start(message) {
    +    // Handle start message
    +  },
    +  end(message) {
    +    // Handle end message
    +  },
    +  asyncStart(message) {
    +    // Handle asyncStart message
    +  },
    +  asyncEnd(message) {
    +    // Handle asyncEnd message
    +  },
    +  error(message) {
    +    // Handle error message
    +  },
    +});
    +```
    +
    +#### `tracingChannel.traceSync(fn[, context[, thisArg[, ...args]]])`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +* `fn` {Function} Function to wrap a trace around
    +* `context` {Object} Shared object to correlate events through
    +* `thisArg` {any} The receiver to be used for the function call
    +* `...args` {any} Optional arguments to pass to the function
    +* Returns: {any} The return value of the given function
    +
    +Trace a synchronous function call. This will always produce a [`start` event][]
    +and [`end` event][] around the execution and may produce an [`error` event][]
    +if the given function throws an error. This will run the given function using
    +[`channel.runStores(context, ...)`][] on the `start` channel which ensures all
    +events should have any bound stores set to match this trace context.
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.traceSync(() => {
    +  // Do something
    +}, {
    +  some: 'thing',
    +});
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.traceSync(() => {
    +  // Do something
    +}, {
    +  some: 'thing',
    +});
    +```
    +
    +#### `tracingChannel.tracePromise(fn[, context[, thisArg[, ...args]]])`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +* `fn` {Function} Promise-returning function to wrap a trace around
    +* `context` {Object} Shared object to correlate trace events through
    +* `thisArg` {any} The receiver to be used for the function call
    +* `...args` {any} Optional arguments to pass to the function
    +* Returns: {Promise} Chained from promise returned by the given function
    +
    +Trace a promise-returning function call. This will always produce a
    +[`start` event][] and [`end` event][] around the synchronous portion of the
    +function execution, and will produce an [`asyncStart` event][] and
    +[`asyncEnd` event][] when a promise continuation is reached. It may also
    +produce an [`error` event][] if the given function throws an error or the
    +returned promise rejects. This will run the given function using
    +[`channel.runStores(context, ...)`][] on the `start` channel which ensures all
    +events should have any bound stores set to match this trace context.
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.tracePromise(async () => {
    +  // Do something
    +}, {
    +  some: 'thing',
    +});
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.tracePromise(async () => {
    +  // Do something
    +}, {
    +  some: 'thing',
    +});
    +```
    +
    +#### `tracingChannel.traceCallback(fn[, position[, context[, thisArg[, ...args]]]])`
    +
    +
    +
    +> Stability: 1 - Experimental
    +
    +* `fn` {Function} callback using function to wrap a trace around
    +* `position` {number} Zero-indexed argument position of expected callback
    +* `context` {Object} Shared object to correlate trace events through
    +* `thisArg` {any} The receiver to be used for the function call
    +* `...args` {any} Optional arguments to pass to the function
    +* Returns: {any} The return value of the given function
    +
    +Trace a callback-receiving function call. This will always produce a
    +[`start` event][] and [`end` event][] around the synchronous portion of the
    +function execution, and will produce a [`asyncStart` event][] and
    +[`asyncEnd` event][] around the callback execution. It may also produce an
    +[`error` event][] if the given function throws an error or the returned
    +promise rejects. This will run the given function using
    +[`channel.runStores(context, ...)`][] on the `start` channel which ensures all
    +events should have any bound stores set to match this trace context.
    +
    +The `position` will be -1 by default to indicate the final argument should
    +be used as the callback.
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.traceCallback((arg1, callback) => {
    +  // Do something
    +  callback(null, 'result');
    +}, 1, {
    +  some: 'thing',
    +}, thisArg, arg1, callback);
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +
    +channels.traceCallback((arg1, callback) => {
    +  // Do something
    +  callback(null, 'result');
    +}, {
    +  some: 'thing',
    +}, thisArg, arg1, callback);
    +```
    +
    +The callback will also be run with [`channel.runStores(context, ...)`][] which
    +enables context loss recovery in some cases.
    +
    +```mjs
    +import diagnostics_channel from 'node:diagnostics_channel';
    +import { AsyncLocalStorage } from 'node:async_hooks';
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +const myStore = new AsyncLocalStorage();
    +
    +// The start channel sets the initial store data to something
    +// and stores that store data value on the trace context object
    +channels.start.bindStore(myStore, (data) => {
    +  const span = new Span(data);
    +  data.span = span;
    +  return span;
    +});
    +
    +// Then asyncStart can restore from that data it stored previously
    +channels.asyncStart.bindStore(myStore, (data) => {
    +  return data.span;
    +});
    +```
    +
    +```cjs
    +const diagnostics_channel = require('node:diagnostics_channel');
    +const { AsyncLocalStorage } = require('node:async_hooks');
    +
    +const channels = diagnostics_channel.tracingChannel('my-channel');
    +const myStore = new AsyncLocalStorage();
    +
    +// The start channel sets the initial store data to something
    +// and stores that store data value on the trace context object
    +channels.start.bindStore(myStore, (data) => {
    +  const span = new Span(data);
    +  data.span = span;
    +  return span;
    +});
    +
    +// Then asyncStart can restore from that data it stored previously
    +channels.asyncStart.bindStore(myStore, (data) => {
    +  return data.span;
    +});
    +```
    +
    +### TracingChannel Channels
    +
    +A TracingChannel is a collection of several diagnostics\_channels representing
    +specific points in the execution lifecycle of a single traceable action. The
    +behaviour is split into five diagnostics\_channels consisting of `start`,
    +`end`, `asyncStart`, `asyncEnd`, and `error`. A single traceable action will
    +share the same event object between all events, this can be helpful for
    +managing correlation through a weakmap.
    +
    +These event objects will be extended with `result` or `error` values when
    +the task "completes". In the case of a synchronous task the `result` will be
    +the return value and the `error` will be anything thrown from the function.
    +With callback-based async functions the `result` will be the second argument
    +of the callback while the `error` will either be a thrown error visible in the
    +`end` event or the first callback argument in either of the `asyncStart` or
    +`asyncEnd` events.
    +
    +Tracing channels should follow a naming pattern of:
    +
    +* `tracing:module.class.method:start` or `tracing:module.function:start`
    +* `tracing:module.class.method:end` or `tracing:module.function:end`
    +* `tracing:module.class.method:asyncStart` or `tracing:module.function:asyncStart`
    +* `tracing:module.class.method:asyncEnd` or `tracing:module.function:asyncEnd`
    +* `tracing:module.class.method:error` or `tracing:module.function:error`
    +
    +#### `start(event)`
    +
    +* Name: `tracing:${name}:start`
    +
    +The `start` event represents the point at which a function is called. At this
    +point the event data may contain function arguments or anything else available
    +at the very start of the execution of the function.
    +
    +#### `end(event)`
    +
    +* Name: `tracing:${name}:end`
    +
    +The `end` event represents the point at which a function call returns a value.
    +In the case of an async function this is when the promise returned not when the
    +function itself makes a return statement internally. At this point, if the
    +traced function was synchronous the `result` field will be set to the return
    +value of the function. Alternatively, the `error` field may be present to
    +represent any thrown errors.
    +
    +It is recommended to listen specifically to the `error` event to track errors
    +as it may be possible for a traceable action to produce multiple errors. For
    +example, an async task which fails may be started internally before the sync
    +part of the task then throws an error.
    +
    +#### `asyncStart(event)`
    +
    +* Name: `tracing:${name}:asyncStart`
    +
    +The `asyncStart` event represents the callback or continuation of a traceable
    +function being reached. At this point things like callback arguments may be
    +available, or anything else expressing the "result" of the action.
    +
    +For callbacks-based functions, the first argument of the callback will be
    +assigned to the `error` field, if not `undefined` or `null`, and the second
    +argument will be assigned to the `result` field.
    +
    +For promises, the argument to the `resolve` path will be assigned to `result`
    +or the argument to the `reject` path will be assign to `error`.
    +
    +It is recommended to listen specifically to the `error` event to track errors
    +as it may be possible for a traceable action to produce multiple errors. For
    +example, an async task which fails may be started internally before the sync
    +part of the task then throws an error.
    +
    +#### `asyncEnd(event)`
    +
    +* Name: `tracing:${name}:asyncEnd`
    +
    +The `asyncEnd` event represents the callback of an asynchronous function
    +returning. It's not likely event data will change after the `asyncStart` event,
    +however it may be useful to see the point where the callback completes.
    +
    +#### `error(event)`
    +
    +* Name: `tracing:${name}:error`
    +
    +The `error` event represents any error produced by the traceable function
    +either synchronously or asynchronously. If an error is thrown in the
    +synchronous portion of the traced function the error will be assigned to the
    +`error` field of the event and the `error` event will be triggered. If an error
    +is received asynchronously through a callback or promise rejection it will also
    +be assigned to the `error` field of the event and trigger the `error` event.
    +
    +It is possible for a single traceable function call to produce errors multiple
    +times so this should be considered when consuming this event. For example, if
    +another async task is triggered internally which fails and then the sync part
    +of the function then throws and error two `error` events will be emitted, one
    +for the sync error and one for the async error.
    +
     ### Built-in Channels
     
     > Stability: 1 - Experimental
    @@ -496,9 +1131,21 @@ added: v16.18.0
     
     Emitted when a new thread is created.
     
    +[TracingChannel Channels]: #tracingchannel-channels
     [`'uncaughtException'`]: process.md#event-uncaughtexception
    +[`TracingChannel`]: #class-tracingchannel
     [`Worker`]: worker_threads.md#class-worker
    +[`asyncEnd` event]: #asyncendevent
    +[`asyncStart` event]: #asyncstartevent
    +[`channel.bindStore(store)`]: #channelbindstorestore-transform
    +[`channel.runStores(context, ...)`]: #channelrunstorescontext-fn-thisarg-args
     [`channel.subscribe(onMessage)`]: #channelsubscribeonmessage
    +[`channel.unsubscribe(onMessage)`]: #channelunsubscribeonmessage
     [`diagnostics_channel.channel(name)`]: #diagnostics_channelchannelname
     [`diagnostics_channel.subscribe(name, onMessage)`]: #diagnostics_channelsubscribename-onmessage
    +[`diagnostics_channel.tracingChannel()`]: #diagnostics_channeltracingchannelnameorchannels
     [`diagnostics_channel.unsubscribe(name, onMessage)`]: #diagnostics_channelunsubscribename-onmessage
    +[`end` event]: #endevent
    +[`error` event]: #errorevent
    +[`start` event]: #startevent
    +[context loss]: async_context.md#troubleshooting-context-loss
    diff --git a/doc/api/errors.md b/doc/api/errors.md
    index a895dd5a5af904..396a5c594fbf12 100644
    --- a/doc/api/errors.md
    +++ b/doc/api/errors.md
    @@ -232,14 +232,27 @@ The `constructorOpt` argument is useful for hiding implementation
     details of error generation from the user. For instance:
     
     ```js
    -function MyError() {
    -  Error.captureStackTrace(this, MyError);
    +function a() {
    +  b();
     }
     
    -// Without passing MyError to captureStackTrace, the MyError
    -// frame would show up in the .stack property. By passing
    -// the constructor, we omit that frame, and retain all frames below it.
    -new MyError().stack;
    +function b() {
    +  c();
    +}
    +
    +function c() {
    +  // Create an error without stack trace to avoid calculating the stack trace twice.
    +  const { stackTraceLimit } = Error;
    +  Error.stackTraceLimit = 0;
    +  const error = new Error();
    +  Error.stackTraceLimit = stackTraceLimit;
    +
    +  // Capture the stack trace above function b
    +  Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
    +  throw error;
    +}
    +
    +a();
     ```
     
     ### `Error.stackTraceLimit`
    diff --git a/doc/api/events.md b/doc/api/events.md
    index 6f009d6bc7d4cd..cca6fca8b392b0 100644
    --- a/doc/api/events.md
    +++ b/doc/api/events.md
    @@ -1266,6 +1266,58 @@ const { getEventListeners, EventEmitter } = require('node:events');
     }
     ```
     
    +## `events.getMaxListeners(emitterOrTarget)`
    +
    +
    +
    +* `emitterOrTarget` {EventEmitter|EventTarget}
    +* Returns: {number}
    +
    +Returns the currently set max amount of listeners.
    +
    +For `EventEmitter`s this behaves exactly the same as calling `.getMaxListeners` on
    +the emitter.
    +
    +For `EventTarget`s this is the only way to get the max event listeners for the
    +event target. If the number of event handlers on a single EventTarget exceeds
    +the max set, the EventTarget will print a warning.
    +
    +```mjs
    +import { getMaxListeners, setMaxListeners, EventEmitter } from 'node:events';
    +
    +{
    +  const ee = new EventEmitter();
    +  console.log(getMaxListeners(ee)); // 10
    +  setMaxListeners(11, ee);
    +  console.log(getMaxListeners(ee)); // 11
    +}
    +{
    +  const et = new EventTarget();
    +  console.log(getMaxListeners(et)); // 10
    +  setMaxListeners(11, et);
    +  console.log(getMaxListeners(et)); // 11
    +}
    +```
    +
    +```cjs
    +const { getMaxListeners, setMaxListeners, EventEmitter } = require('node:events');
    +
    +{
    +  const ee = new EventEmitter();
    +  console.log(getMaxListeners(ee)); // 10
    +  setMaxListeners(11, ee);
    +  console.log(getMaxListeners(ee)); // 11
    +}
    +{
    +  const et = new EventTarget();
    +  console.log(getMaxListeners(et)); // 10
    +  setMaxListeners(11, et);
    +  console.log(getMaxListeners(et)); // 11
    +}
    +```
    +
     ## `events.once(emitter, name[, options])`
     
     
     
     A 128-bit value stored as two unsigned 64-bit integers. It serves as a UUID
    -with which JavaScript objects can be "tagged" in order to ensure that they are
    -of a certain type. This is a stronger check than [`napi_instanceof`][], because
    -the latter can report a false positive if the object's prototype has been
    -manipulated. Type-tagging is most useful in conjunction with [`napi_wrap`][]
    -because it ensures that the pointer retrieved from a wrapped object can be
    -safely cast to the native type corresponding to the type tag that had been
    -previously applied to the JavaScript object.
    +with which JavaScript objects or [externals][] can be "tagged" in order to
    +ensure that they are of a certain type. This is a stronger check than
    +[`napi_instanceof`][], because the latter can report a false positive if the
    +object's prototype has been manipulated. Type-tagging is most useful in
    +conjunction with [`napi_wrap`][] because it ensures that the pointer retrieved
    +from a wrapped object can be safely cast to the native type corresponding to the
    +type tag that had been previously applied to the JavaScript object.
     
     ```c
     typedef struct {
    @@ -1799,11 +1799,11 @@ If still valid, this API returns the `napi_value` representing the
     JavaScript `Object` associated with the `napi_ref`. Otherwise, result
     will be `NULL`.
     
    -### Cleanup on exit of the current Node.js instance
    +### Cleanup on exit of the current Node.js environment
     
     While a Node.js process typically releases all its resources when exiting,
     embedders of Node.js, or future Worker support, may require addons to register
    -clean-up hooks that will be run once the current Node.js instance exits.
    +clean-up hooks that will be run once the current Node.js environment exits.
     
     Node-API provides functions for registering and un-registering such callbacks.
     When those callbacks are run, all resources that are being held by the addon
    @@ -1929,6 +1929,22 @@ the hook from being executed, unless it has already started executing.
     This must be called on any `napi_async_cleanup_hook_handle` value obtained
     from [`napi_add_async_cleanup_hook`][].
     
    +### Finalization on the exit of the Node.js environment
    +
    +The Node.js environment may be torn down at an arbitrary time as soon as
    +possible with JavaScript execution disallowed, like on the request of
    +[`worker.terminate()`][]. When the environment is being torn down, the
    +registered `napi_finalize` callbacks of JavaScript objects, Thread-safe
    +functions and environment instance data are invoked immediately and
    +independently.
    +
    +The invocation of `napi_finalize` callbacks are scheduled after the manually
    +registered cleanup hooks. In order to ensure a proper order of addon
    +finalization during environment shutdown to avoid use-after-free in the
    +`napi_finalize` callback, addons should register a cleanup hook with
    +`napi_add_env_cleanup_hook` and `napi_add_async_cleanup_hook` to manually
    +release the allocated resource in a proper order.
    +
     ## Module registration
     
     Node-API modules are registered in a manner similar to other modules
    @@ -4951,7 +4967,7 @@ To this end, Node-API provides type-tagging capabilities.
     
     A type tag is a 128-bit integer unique to the addon. Node-API provides the
     `napi_type_tag` structure for storing a type tag. When such a value is passed
    -along with a JavaScript object stored in a `napi_value` to
    +along with a JavaScript object or [external][] stored in a `napi_value` to
     `napi_type_tag_object()`, the JavaScript object will be "marked" with the
     type tag. The "mark" is invisible on the JavaScript side. When a JavaScript
     object arrives into a native binding, `napi_check_object_type_tag()` can be used
    @@ -5237,15 +5253,15 @@ napi_status napi_type_tag_object(napi_env env,
     ```
     
     * `[in] env`: The environment that the API is invoked under.
    -* `[in] js_object`: The JavaScript object to be marked.
    +* `[in] js_object`: The JavaScript object or [external][] to be marked.
     * `[in] type_tag`: The tag with which the object is to be marked.
     
     Returns `napi_ok` if the API succeeded.
     
    -Associates the value of the `type_tag` pointer with the JavaScript object.
    -`napi_check_object_type_tag()` can then be used to compare the tag that was
    -attached to the object with one owned by the addon to ensure that the object
    -has the right type.
    +Associates the value of the `type_tag` pointer with the JavaScript object or
    +[external][]. `napi_check_object_type_tag()` can then be used to compare the tag
    +that was attached to the object with one owned by the addon to ensure that the
    +object has the right type.
     
     If the object already has an associated type tag, this API will return
     `napi_invalid_arg`.
    @@ -5267,7 +5283,8 @@ napi_status napi_check_object_type_tag(napi_env env,
     ```
     
     * `[in] env`: The environment that the API is invoked under.
    -* `[in] js_object`: The JavaScript object whose type tag to examine.
    +* `[in] js_object`: The JavaScript object or [external][] whose type tag to
    +  examine.
     * `[in] type_tag`: The tag with which to compare any tag found on the object.
     * `[out] result`: Whether the type tag given matched the type tag on the
       object. `false` is also returned if no type tag was found on the object.
    @@ -6433,9 +6450,12 @@ the add-on's file name during loading.
     [`process.release`]: process.md#processrelease
     [`uv_ref`]: https://docs.libuv.org/en/v1.x/handle.html#c.uv_ref
     [`uv_unref`]: https://docs.libuv.org/en/v1.x/handle.html#c.uv_unref
    +[`worker.terminate()`]: worker_threads.md#workerterminate
     [async_hooks `type`]: async_hooks.md#type
     [context-aware addons]: addons.md#context-aware-addons
     [docs]: https://github.com/nodejs/node-addon-api#api-documentation
    +[external]: #napi_create_external
    +[externals]: #napi_create_external
     [global scope]: globals.md
     [gyp-next]: https://github.com/nodejs/gyp-next
     [module scope]: modules.md#the-module-scope
    diff --git a/doc/api/os.md b/doc/api/os.md
    index 0006b347dc2658..7d55f97f2d8a26 100644
    --- a/doc/api/os.md
    +++ b/doc/api/os.md
    @@ -74,6 +74,8 @@ added: v0.3.3
     * Returns: {Object\[]}
     
     Returns an array of objects containing information about each logical CPU core.
    +The array will be empty if no CPU information is available, such as if the
    +`/proc` file system is unavailable.
     
     The properties included on each object include:
     
    diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md
    index 1c18395662f171..8323b9ab03fcd0 100644
    --- a/doc/api/perf_hooks.md
    +++ b/doc/api/perf_hooks.md
    @@ -214,7 +214,7 @@ Returns a list of `PerformanceEntry` objects in chronological order
     with respect to `performanceEntry.startTime` whose `performanceEntry.entryType`
     is equal to `type`.
     
    -### `performance.mark([name[, options]])`
    +### `performance.mark(name[, options])`
     
     
    +
    +* {boolean} objectMode
    +* Returns: {integer}
    +
    +Returns the default highWaterMark used by streams.
    +Defaults to `16384` (16 KiB), or `16` for `objectMode`.
    +
    +### `stream.setDefaultHighWaterMark(objectMode, value)`
    +
    +
    +
    +* {boolean} objectMode
    +* {integer} highWaterMark value
    +
    +Sets the default highWaterMark used by streams.
    +
     ## API for stream implementers
     
     
    diff --git a/doc/api/test.md b/doc/api/test.md
    index 749b6ff08a5396..8e88fbf70f2f8d 100644
    --- a/doc/api/test.md
    +++ b/doc/api/test.md
    @@ -509,7 +509,13 @@ test('spies on an object method', (t) => {
     ## Test reporters
     
     
     
     The `node:test` module supports passing [`--test-reporter`][]
    @@ -531,6 +537,21 @@ The following built-reporters are supported:
     When `stdout` is a [TTY][], the `spec` reporter is used by default.
     Otherwise, the `tap` reporter is used by default.
     
    +The exact output of these reporters is subject to change between versions of
    +Node.js, and should not be relied on programmatically. If programmatic access
    +to the test runner's output is required, use the events emitted by the
    +{TestsStream}.
    +
    +The reporters are available via the `node:test/reporters` module:
    +
    +```mjs
    +import { tap, spec, dot } from 'node:test/reporters';
    +```
    +
    +```cjs
    +const { tap, spec, dot } = require('node:test/reporters');
    +```
    +
     ### Custom reporters
     
     [`--test-reporter`][] can be used to specify a path to custom reporter.
    @@ -722,8 +743,20 @@ added: v18.9.0
         **Default:** `undefined`.
     * Returns: {TestsStream}
     
    -```js
    +```mjs
    +import { tap } from 'node:test/reporters';
    +import process from 'node:process';
    +
    +run({ files: [path.resolve('./tests/test.js')] })
    +  .compose(tap)
    +  .pipe(process.stdout);
    +```
    +
    +```cjs
    +const { tap } = require('node:test/reporters');
    +
     run({ files: [path.resolve('./tests/test.js')] })
    +  .compose(tap)
       .pipe(process.stdout);
     ```
     
    diff --git a/doc/api/url.md b/doc/api/url.md
    index 593c6ce6a22bc9..4ff29bf8c20604 100644
    --- a/doc/api/url.md
    +++ b/doc/api/url.md
    @@ -662,6 +662,27 @@ added: v16.7.0
     Removes the stored {Blob} identified by the given ID. Attempting to revoke a
     ID that isn't registered will silently fail.
     
    +#### `URL.canParse(input[, base])`
    +
    +
    +
    +* `input` {string} The absolute or relative input URL to parse. If `input`
    +  is relative, then `base` is required. If `input` is absolute, the `base`
    +  is ignored. If `input` is not a string, it is [converted to a string][] first.
    +* `base` {string} The base URL to resolve against if the `input` is not
    +  absolute. If `base` is not a string, it is [converted to a string][] first.
    +* Returns: {boolean}
    +
    +Checks if an `input` relative to the `base` can be parsed to a `URL`.
    +
    +```js
    +const isValid = URL.canParse('/foo', 'https://example.org/'); // true
    +
    +const isNotValid = URL.canParse('/foo'); // false
    +```
    +
     ### Class: `URLSearchParams`
     
     
     
     * `url` {URL} The [WHATWG URL][] object to convert to an options object.
    diff --git a/doc/api/util.md b/doc/api/util.md
    index 9add56bfaf40c9..8fe3870f693f67 100644
    --- a/doc/api/util.md
    +++ b/doc/api/util.md
    @@ -2510,12 +2510,43 @@ added: v10.0.0
     * `value` {any}
     * Returns: {boolean}
     
    -Returns `true` if the value is an instance of a built-in [`Error`][] type.
    +Returns `true` if the value was returned by the constructor of a
    +[built-in `Error` type][].
     
     ```js
    -util.types.isNativeError(new Error());  // Returns true
    -util.types.isNativeError(new TypeError());  // Returns true
    -util.types.isNativeError(new RangeError());  // Returns true
    +console.log(util.types.isNativeError(new Error()));  // true
    +console.log(util.types.isNativeError(new TypeError()));  // true
    +console.log(util.types.isNativeError(new RangeError()));  // true
    +```
    +
    +Subclasses of the native error types are also native errors:
    +
    +```js
    +class MyError extends Error {}
    +console.log(util.types.isNativeError(new MyError()));  // true
    +```
    +
    +A value being `instanceof` a native error class is not equivalent to `isNativeError()`
    +returning `true` for that value. `isNativeError()` returns `true` for errors
    +which come from a different [realm][] while `instanceof Error` returns `false`
    +for these errors:
    +
    +```js
    +const vm = require('node:vm');
    +const context = vm.createContext({});
    +const myError = vm.runInContext('new Error', context);
    +console.log(util.types.isNativeError(myError)); // true
    +console.log(myError instanceof Error); // false
    +```
    +
    +Conversely, `isNativeError()` returns `false` for all objects which were not
    +returned by the constructor of a native error. That includes values
    +which are `instanceof` native errors:
    +
    +```js
    +const myError = { __proto__: Error.prototype };
    +console.log(util.types.isNativeError(myError)); // false
    +console.log(myError instanceof Error); // true
     ```
     
     ### `util.types.isNumberObject(value)`
    @@ -3330,11 +3361,13 @@ util.log('Timestamped message.');
     [`util.types.isNativeError()`]: #utiltypesisnativeerrorvalue
     [`util.types.isSharedArrayBuffer()`]: #utiltypesissharedarraybuffervalue
     [async function]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function
    +[built-in `Error` type]: https://tc39.es/ecma262/#sec-error-objects
     [compare function]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#Parameters
     [constructor]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor
     [default sort]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort
     [global symbol registry]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/for
     [list of deprecated APIS]: deprecations.md#list-of-deprecated-apis
     [pkgjs/parseargs]: https://github.com/pkgjs/parseargs
    +[realm]: https://tc39.es/ecma262/#realm
     [semantically incompatible]: https://github.com/nodejs/node/issues/4179
     [util.inspect.custom]: #utilinspectcustom
    diff --git a/doc/api/vm.md b/doc/api/vm.md
    index d7e72ab42e3de6..eff0d4a848f79a 100644
    --- a/doc/api/vm.md
    +++ b/doc/api/vm.md
    @@ -745,6 +745,8 @@ changes:
         `cachedData` was created.
       * `context` {Object} The [contextified][] object as returned by the
         `vm.createContext()` method, to compile and evaluate this `Module` in.
    +    If no context is specified, the module is evaluated in the current
    +    execution context.
       * `lineOffset` {integer} Specifies the line number offset that is displayed
         in stack traces produced by this `Module`. **Default:** `0`.
       * `columnOffset` {integer} Specifies the first-line column number offset that
    diff --git a/doc/api_assets/api.js b/doc/api_assets/api.js
    index 49906b1a2abab5..c1151ae493e8da 100644
    --- a/doc/api_assets/api.js
    +++ b/doc/api_assets/api.js
    @@ -136,6 +136,36 @@
         updateHashes();
       }
     
    +  function setupCopyButton() {
    +    const buttons = document.querySelectorAll('.copy-button');
    +    buttons.forEach((button) => {
    +      button.addEventListener('click', (el) => {
    +        const parentNode = el.target.parentNode;
    +
    +        const flavorSelector = parentNode.querySelector('.js-flavor-selector');
    +
    +        let code = '';
    +
    +        if (flavorSelector) {
    +          if (flavorSelector.checked) {
    +            code = parentNode.querySelector('.mjs').textContent;
    +          } else {
    +            code = parentNode.querySelector('.cjs').textContent;
    +          }
    +        } else {
    +          code = parentNode.querySelector('code').textContent;
    +        }
    +
    +        button.textContent = 'Copied';
    +        navigator.clipboard.writeText(code);
    +
    +        setTimeout(() => {
    +          button.textContent = 'Copy';
    +        }, 2500);
    +      });
    +    });
    +  }
    +
       function bootstrap() {
         // Check if we have JavaScript support.
         document.documentElement.classList.add('has-js');
    @@ -151,6 +181,8 @@
     
         // Make link to other versions of the doc open to the same hash target (if it exists).
         setupAltDocsLink();
    +
    +    setupCopyButton();
       }
     
       if (document.readyState === 'loading') {
    diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css
    index 42126949d55d5c..6b27fa1fb71b94 100644
    --- a/doc/api_assets/style.css
    +++ b/doc/api_assets/style.css
    @@ -973,6 +973,33 @@ kbd {
     .dark-mode .js-flavor-selector {
       filter: invert(1);
     }
    +
    +.copy-button {
    +  float: right;
    +  
    +  outline: none;
    +  font-size: 10px;
    +  color: #fff;
    +  background-color: var(--green1);
    +  line-height: 1;
    +  border-radius: 500px;
    +  border: 1px solid transparent;
    +  letter-spacing: 2px;
    +  min-width: 7.5rem;
    +  text-transform: uppercase;
    +  font-weight: 700;
    +  padding: 0 .5rem;
    +  margin-right: .2rem;
    +  height: 1.5rem;
    +  transition-property: background-color,border-color,color,box-shadow,filter;
    +  transition-duration: .3s;
    +  cursor: pointer;
    +}
    +
    +.copy-button:hover {
    +  background-color: var(--green2);
    +}
    +
     @supports (aspect-ratio: 1 / 1) {
       .js-flavor-selector {
         height: 1.5em;
    diff --git a/doc/changelogs/CHANGELOG_V19.md b/doc/changelogs/CHANGELOG_V19.md
    index 0d90c5716faa6e..7467a0d653b7e9 100644
    --- a/doc/changelogs/CHANGELOG_V19.md
    +++ b/doc/changelogs/CHANGELOG_V19.md
    @@ -8,7 +8,8 @@
     
     
     
    -19.8.1
    +19.9.0
    +19.8.1
    19.8.0
    19.7.0
    19.6.1
    @@ -45,6 +46,186 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2023-04-10, Version 19.9.0 (Current), @RafaelGSS + +### Notable Changes + +#### Tracing Channel in diagnostic\_channel + +`TracingChannel` adds a new, high-performance channel to publish tracing data about the timing and purpose of function executions. + +Contributed by Stephen Belanger in [#44943](https://github.com/nodejs/node/pull/44943) + +#### New URL.canParse API + +A new API was added to the URL. `URL.canParse` checks if an `input` with an optional base value can be parsed correctly +according to WHATWG URL specification. + +```js +const isValid = URL.canParse('/foo', 'https://example.org/'); // true +const isNotValid = URL.canParse('/foo'); // false +``` + +Contributed by Khafra in [#47179](https://github.com/nodejs/node/pull/47179) + +#### Other notable changes + +events: + +* (SEMVER-MINOR) add getMaxListeners method (Khafra) + msi: +* (SEMVER-MINOR) migrate to WiX4 (Stefan Stojanovic) + node-api: +* (SEMVER-MINOR) deprecate napi\_module\_register (Vladimir Morozov) + stream: +* (SEMVER-MINOR) add setter & getter for default highWaterMark (Robert Nagy) + test\_runner: +* (SEMVER-MINOR) expose reporter for use in run api (Chemi Atlow) + +### Commits + +* \[[`2cea7d8141`](https://github.com/nodejs/node/commit/2cea7d8141)] - **benchmark**: fix invalid requirementsURL (Deokjin Kim) [#47378](https://github.com/nodejs/node/pull/47378) +* \[[`6a4076a188`](https://github.com/nodejs/node/commit/6a4076a188)] - **benchmark**: lower URL.canParse runs (Khafra) [#47351](https://github.com/nodejs/node/pull/47351) +* \[[`23a69d9279`](https://github.com/nodejs/node/commit/23a69d9279)] - **buffer**: fix blob range error with many chunks (Khafra) [#47320](https://github.com/nodejs/node/pull/47320) +* \[[`e3d98c3e7a`](https://github.com/nodejs/node/commit/e3d98c3e7a)] - **buffer**: use private properties for brand checks in File (Khafra) [#47154](https://github.com/nodejs/node/pull/47154) +* \[[`9dc6aef98d`](https://github.com/nodejs/node/commit/9dc6aef98d)] - **build**: bump github/codeql-action from 2.2.6 to 2.2.9 (dependabot\[bot]) [#47366](https://github.com/nodejs/node/pull/47366) +* \[[`910d2967f1`](https://github.com/nodejs/node/commit/910d2967f1)] - **build**: update stale action from v7 to v8 (Rich Trott) [#47357](https://github.com/nodejs/node/pull/47357) +* \[[`666df20ad9`](https://github.com/nodejs/node/commit/666df20ad9)] - **build**: remove Python pip `--no-user` option (Christian Clauss) [#47372](https://github.com/nodejs/node/pull/47372) +* \[[`3970537bb4`](https://github.com/nodejs/node/commit/3970537bb4)] - **build**: avoid usage of pipes library (Mohammed Keyvanzadeh) [#47271](https://github.com/nodejs/node/pull/47271) +* \[[`254a03b2eb`](https://github.com/nodejs/node/commit/254a03b2eb)] - **crypto**: unify validation of checkPrime checks (Tobias Nießen) [#47165](https://github.com/nodejs/node/pull/47165) +* \[[`8e1e9edc57`](https://github.com/nodejs/node/commit/8e1e9edc57)] - **deps**: update timezone to 2023c (Node.js GitHub Bot) [#47302](https://github.com/nodejs/node/pull/47302) +* \[[`30c043c2b9`](https://github.com/nodejs/node/commit/30c043c2b9)] - **deps**: update timezone to 2023b (Node.js GitHub Bot) [#47256](https://github.com/nodejs/node/pull/47256) +* \[[`40be01bc9c`](https://github.com/nodejs/node/commit/40be01bc9c)] - **deps**: update simdutf to 3.2.3 (Node.js GitHub Bot) [#47331](https://github.com/nodejs/node/pull/47331) +* \[[`4b09222569`](https://github.com/nodejs/node/commit/4b09222569)] - **deps**: upgrade npm to 9.6.3 (npm team) [#47325](https://github.com/nodejs/node/pull/47325) +* \[[`2a6c23ea5e`](https://github.com/nodejs/node/commit/2a6c23ea5e)] - **deps**: update corepack to 0.17.1 (Node.js GitHub Bot) [#47156](https://github.com/nodejs/node/pull/47156) +* \[[`06b718363d`](https://github.com/nodejs/node/commit/06b718363d)] - **deps**: V8: cherry-pick 3e4952cb2a59 (Richard Lau) [#47236](https://github.com/nodejs/node/pull/47236) +* \[[`7e24498d81`](https://github.com/nodejs/node/commit/7e24498d81)] - **deps**: upgrade npm to 9.6.2 (npm team) [#47108](https://github.com/nodejs/node/pull/47108) +* \[[`7a4beaa182`](https://github.com/nodejs/node/commit/7a4beaa182)] - **deps**: V8: cherry-pick 215ccd593edb (Joyee Cheung) [#47212](https://github.com/nodejs/node/pull/47212) +* \[[`8a69929f23`](https://github.com/nodejs/node/commit/8a69929f23)] - **deps**: V8: cherry-pick 975ff4dbfd1b (Debadree Chatterjee) [#47209](https://github.com/nodejs/node/pull/47209) +* \[[`10569de53f`](https://github.com/nodejs/node/commit/10569de53f)] - **deps**: cherry-pick win/arm64/clang fixes (Cheng Zhao) [#47011](https://github.com/nodejs/node/pull/47011) +* \[[`ff6070eb1d`](https://github.com/nodejs/node/commit/ff6070eb1d)] - **deps**: V8: cherry-pick cb30b8e17429 (Darshan Sen) [#47307](https://github.com/nodejs/node/pull/47307) +* \[[`0bbce034f9`](https://github.com/nodejs/node/commit/0bbce034f9)] - **doc**: add a note about os.cpus() returning an empty list (codedokode) [#47363](https://github.com/nodejs/node/pull/47363) +* \[[`f8511e0b27`](https://github.com/nodejs/node/commit/f8511e0b27)] - **doc**: clarify reports are only evaluated on active versions (Rafael Gonzaga) [#47341](https://github.com/nodejs/node/pull/47341) +* \[[`863b4d9c5b`](https://github.com/nodejs/node/commit/863b4d9c5b)] - **doc**: remove Vladimir de Turckheim from Security release stewards (Vladimir de Turckheim) [#47318](https://github.com/nodejs/node/pull/47318) +* \[[`2192b5b163`](https://github.com/nodejs/node/commit/2192b5b163)] - **doc**: add importing util to example of \`process.report.getReport' (Deokjin Kim) [#47298](https://github.com/nodejs/node/pull/47298) +* \[[`1c21fbfa9a`](https://github.com/nodejs/node/commit/1c21fbfa9a)] - **doc**: vm.SourceTextModule() without context option (Axel Kittenberger) [#47295](https://github.com/nodejs/node/pull/47295) +* \[[`89445fbea9`](https://github.com/nodejs/node/commit/89445fbea9)] - **doc**: make win arm64 tier 2 platform (Stefan Stojanovic) [#47233](https://github.com/nodejs/node/pull/47233) +* \[[`296577a549`](https://github.com/nodejs/node/commit/296577a549)] - **doc**: document process for sharing project news (Michael Dawson) [#47189](https://github.com/nodejs/node/pull/47189) +* \[[`e29a1462c7`](https://github.com/nodejs/node/commit/e29a1462c7)] - **doc**: revise example of assert.CallTracker (Deokjin Kim) [#47252](https://github.com/nodejs/node/pull/47252) +* \[[`bac893adbe`](https://github.com/nodejs/node/commit/bac893adbe)] - **doc**: fix typo in SECURITY.md (Rich Trott) [#47282](https://github.com/nodejs/node/pull/47282) +* \[[`0949f238d1`](https://github.com/nodejs/node/commit/0949f238d1)] - **doc**: use serial comma in cli docs (Tobias Nießen) [#47262](https://github.com/nodejs/node/pull/47262) +* \[[`71246247a9`](https://github.com/nodejs/node/commit/71246247a9)] - **doc**: improve example for Error.captureStackTrace() (Julian Dax) [#46886](https://github.com/nodejs/node/pull/46886) +* \[[`0b2ba441b2`](https://github.com/nodejs/node/commit/0b2ba441b2)] - **doc**: clarify http error events after calling destroy() (Zach Bjornson) [#46903](https://github.com/nodejs/node/pull/46903) +* \[[`a21459e0d5`](https://github.com/nodejs/node/commit/a21459e0d5)] - **doc**: update output of example in AbortController (Deokjin Kim) [#47227](https://github.com/nodejs/node/pull/47227) +* \[[`7a2090c14c`](https://github.com/nodejs/node/commit/7a2090c14c)] - **doc**: drop one-week branch sync on major releases (Rafael Gonzaga) [#47149](https://github.com/nodejs/node/pull/47149) +* \[[`eb4de0043d`](https://github.com/nodejs/node/commit/eb4de0043d)] - **doc**: fix grammar in the collaborator guide (Mohammed Keyvanzadeh) [#47245](https://github.com/nodejs/node/pull/47245) +* \[[`908798ae19`](https://github.com/nodejs/node/commit/908798ae19)] - **doc**: update stream.reduce concurrency note (Raz Luvaton) [#47166](https://github.com/nodejs/node/pull/47166) +* \[[`36c118bc92`](https://github.com/nodejs/node/commit/36c118bc92)] - **doc**: remove use of DEFAULT\_ENCODING in PBKDF2 docs (Tobias Nießen) [#47181](https://github.com/nodejs/node/pull/47181) +* \[[`7ec87fd5ce`](https://github.com/nodejs/node/commit/7ec87fd5ce)] - **doc**: fix typos in async\_context.md (Shubham Sharma) [#47155](https://github.com/nodejs/node/pull/47155) +* \[[`a03aaba996`](https://github.com/nodejs/node/commit/a03aaba996)] - **doc**: update collaborator guide to reflect TSC changes (Rich Trott) [#47126](https://github.com/nodejs/node/pull/47126) +* \[[`c45a6977ec`](https://github.com/nodejs/node/commit/c45a6977ec)] - **doc**: clarify that `fs.create{Read,Write}Stream` support `AbortSignal` (Antoine du Hamel) [#47122](https://github.com/nodejs/node/pull/47122) +* \[[`82c7757177`](https://github.com/nodejs/node/commit/82c7757177)] - **doc**: improve documentation for util.types.isNativeError() (Julian Dax) [#46840](https://github.com/nodejs/node/pull/46840) +* \[[`8f9b9c17d5`](https://github.com/nodejs/node/commit/8f9b9c17d5)] - **doc**: rename the startup performance initiative to startup snapshot (#47111) (Joyee Cheung) +* \[[`c08995e897`](https://github.com/nodejs/node/commit/c08995e897)] - **doc**: indicate that `name` is no longer an optional argument (Daniel Roe) [#47102](https://github.com/nodejs/node/pull/47102) +* \[[`316d626e61`](https://github.com/nodejs/node/commit/316d626e61)] - **doc**: fix "maintaining dependencies" heading typos (Keyhan Vakil) [#47082](https://github.com/nodejs/node/pull/47082) +* \[[`a4b1a7761f`](https://github.com/nodejs/node/commit/a4b1a7761f)] - **esm**: skip file: URL conversion to path when possible (Antoine du Hamel) [#46305](https://github.com/nodejs/node/pull/46305) +* \[[`c5cd6b7f3b`](https://github.com/nodejs/node/commit/c5cd6b7f3b)] - **(SEMVER-MINOR)** **events**: add getMaxListeners method (Khafra) [#47039](https://github.com/nodejs/node/pull/47039) +* \[[`2c2b07ce5f`](https://github.com/nodejs/node/commit/2c2b07ce5f)] - **fs**: invalidate blob created from empty file when written to (Debadree Chatterjee) [#47199](https://github.com/nodejs/node/pull/47199) +* \[[`e33dfce401`](https://github.com/nodejs/node/commit/e33dfce401)] - **inspector**: log response and requests in the inspector for debugging (Joyee Cheung) [#46941](https://github.com/nodejs/node/pull/46941) +* \[[`f6ec81dc05`](https://github.com/nodejs/node/commit/f6ec81dc05)] - **inspector**: fix session.disconnect crash (theanarkh) [#46942](https://github.com/nodejs/node/pull/46942) +* \[[`a738164fed`](https://github.com/nodejs/node/commit/a738164fed)] - **lib**: define Event.isTrusted in the prototype (Santiago Gimeno) [#46974](https://github.com/nodejs/node/pull/46974) +* \[[`7d37dcdd9a`](https://github.com/nodejs/node/commit/7d37dcdd9a)] - **(SEMVER-MINOR)** **lib**: add tracing channel to diagnostics\_channel (Stephen Belanger) [#44943](https://github.com/nodejs/node/pull/44943) +* \[[`16d3dfa0aa`](https://github.com/nodejs/node/commit/16d3dfa0aa)] - **meta**: fix notable-change comment label url (Filip Skokan) [#47300](https://github.com/nodejs/node/pull/47300) +* \[[`2c95f6e18b`](https://github.com/nodejs/node/commit/2c95f6e18b)] - **meta**: clarify the threat model to explain the JSON.parse case (Matteo Collina) [#47276](https://github.com/nodejs/node/pull/47276) +* \[[`22b9acdbf8`](https://github.com/nodejs/node/commit/22b9acdbf8)] - **meta**: update link to collaborators discussion page (Michaël Zasso) [#47211](https://github.com/nodejs/node/pull/47211) +* \[[`dc024d930a`](https://github.com/nodejs/node/commit/dc024d930a)] - **meta**: automate description requests when notable change label is added (Danielle Adams) [#47078](https://github.com/nodejs/node/pull/47078) +* \[[`54195357f3`](https://github.com/nodejs/node/commit/54195357f3)] - **meta**: move TSC voting member(s) to regular member(s) (Node.js GitHub Bot) [#47180](https://github.com/nodejs/node/pull/47180) +* \[[`a3bffbaa11`](https://github.com/nodejs/node/commit/a3bffbaa11)] - **meta**: move TSC voting member to regular membership (Node.js GitHub Bot) [#46985](https://github.com/nodejs/node/pull/46985) +* \[[`d2a6aa6ecd`](https://github.com/nodejs/node/commit/d2a6aa6ecd)] - **meta**: update GOVERNANCE.md to reflect TSC charter changes (Rich Trott) [#47126](https://github.com/nodejs/node/pull/47126) +* \[[`b0aad345bf`](https://github.com/nodejs/node/commit/b0aad345bf)] - **meta**: ask expected behavior reason in bug template (Ben Noordhuis) [#47049](https://github.com/nodejs/node/pull/47049) +* \[[`c03e79b141`](https://github.com/nodejs/node/commit/c03e79b141)] - **(SEMVER-MINOR)** **msi**: migrate to WiX4 (Stefan Stojanovic) [#45943](https://github.com/nodejs/node/pull/45943) +* \[[`ca981be2b9`](https://github.com/nodejs/node/commit/ca981be2b9)] - **(SEMVER-MINOR)** **node-api**: deprecate napi\_module\_register (Vladimir Morozov) [#46319](https://github.com/nodejs/node/pull/46319) +* \[[`77f7200cce`](https://github.com/nodejs/node/commit/77f7200cce)] - **node-api**: extend type-tagging to externals (Gabriel Schulhof) [#47141](https://github.com/nodejs/node/pull/47141) +* \[[`55f3d215b8`](https://github.com/nodejs/node/commit/55f3d215b8)] - **node-api**: document node-api shutdown finalization (Chengzhong Wu) [#45903](https://github.com/nodejs/node/pull/45903) +* \[[`b3fe2ba59b`](https://github.com/nodejs/node/commit/b3fe2ba59b)] - **node-api**: verify cleanup hooks order (Chengzhong Wu) [#46692](https://github.com/nodejs/node/pull/46692) +* \[[`d6a12328a6`](https://github.com/nodejs/node/commit/d6a12328a6)] - **repl**: preserve preview on ESCAPE key press (Xuguang Mei) [#46878](https://github.com/nodejs/node/pull/46878) +* \[[`33b0906640`](https://github.com/nodejs/node/commit/33b0906640)] - **sea**: fix memory leak detected by asan (Darshan Sen) [#47309](https://github.com/nodejs/node/pull/47309) +* \[[`069515153f`](https://github.com/nodejs/node/commit/069515153f)] - **src**: remove usage of `std::shared_ptr::unique()` (Darshan Sen) [#47315](https://github.com/nodejs/node/pull/47315) +* \[[`4405fc879a`](https://github.com/nodejs/node/commit/4405fc879a)] - **src**: use stricter compile-time guidance (Tobias Nießen) [#46509](https://github.com/nodejs/node/pull/46509) +* \[[`bbde68e5de`](https://github.com/nodejs/node/commit/bbde68e5de)] - **src**: remove unused variable in crypto\_x509.cc (Michaël Zasso) [#47344](https://github.com/nodejs/node/pull/47344) +* \[[`7a80312e19`](https://github.com/nodejs/node/commit/7a80312e19)] - **src**: don't reset embeder signal handlers (Dmitry Vyukov) [#47188](https://github.com/nodejs/node/pull/47188) +* \[[`d0a5e7e342`](https://github.com/nodejs/node/commit/d0a5e7e342)] - **src**: fix some recently introduced coverity issues (Michael Dawson) [#47240](https://github.com/nodejs/node/pull/47240) +* \[[`0a4ff2f9a0`](https://github.com/nodejs/node/commit/0a4ff2f9a0)] - **src**: replace impossible THROW with CHECK (Tobias Nießen) [#47168](https://github.com/nodejs/node/pull/47168) +* \[[`2fd0f79963`](https://github.com/nodejs/node/commit/2fd0f79963)] - **src**: fix duplication of externalized builtin code (Keyhan Vakil) [#47079](https://github.com/nodejs/node/pull/47079) +* \[[`36a026bf44`](https://github.com/nodejs/node/commit/36a026bf44)] - **src**: remove dead comments about return\_code\_cache (Keyhan Vakil) [#47083](https://github.com/nodejs/node/pull/47083) +* \[[`aefe26692c`](https://github.com/nodejs/node/commit/aefe26692c)] - **src**: remove SSL\_CTX\_get\_tlsext\_ticket\_keys guards (Tobias Nießen) [#47068](https://github.com/nodejs/node/pull/47068) +* \[[`90f4e16350`](https://github.com/nodejs/node/commit/90f4e16350)] - **src**: fix clang 14 linker error (Keyhan Vakil) [#47057](https://github.com/nodejs/node/pull/47057) +* \[[`b0809a73da`](https://github.com/nodejs/node/commit/b0809a73da)] - **src,http2**: ensure cleanup if a frame is not sent (ywave620) [#47244](https://github.com/nodejs/node/pull/47244) +* \[[`1fc62c7b35`](https://github.com/nodejs/node/commit/1fc62c7b35)] - **(SEMVER-MINOR)** **stream**: add setter & getter for default highWaterMark (#46929) (Robert Nagy) [#46929](https://github.com/nodejs/node/pull/46929) +* \[[`b8c6ceddd5`](https://github.com/nodejs/node/commit/b8c6ceddd5)] - **stream**: expose stream symbols (Robert Nagy) [#45671](https://github.com/nodejs/node/pull/45671) +* \[[`f37825660c`](https://github.com/nodejs/node/commit/f37825660c)] - **stream**: dont wait for next item in take when finished (Raz Luvaton) [#47132](https://github.com/nodejs/node/pull/47132) +* \[[`8eceaaeb4d`](https://github.com/nodejs/node/commit/8eceaaeb4d)] - **test**: fix flaky test-watch-mode-inspect (Moshe Atlow) [#47403](https://github.com/nodejs/node/pull/47403) +* \[[`db95ed0b1b`](https://github.com/nodejs/node/commit/db95ed0b1b)] - **test**: move debugger tests with --port=0 to parallel (Joyee Cheung) [#47274](https://github.com/nodejs/node/pull/47274) +* \[[`041885ebd0`](https://github.com/nodejs/node/commit/041885ebd0)] - **test**: use --port=0 in debugger tests that do not have to work on 9229 (Joyee Cheung) [#47274](https://github.com/nodejs/node/pull/47274) +* \[[`130420b9e1`](https://github.com/nodejs/node/commit/130420b9e1)] - **test**: run doctool tests in parallel (Joyee Cheung) [#47273](https://github.com/nodejs/node/pull/47273) +* \[[`4b4336c34e`](https://github.com/nodejs/node/commit/4b4336c34e)] - **test**: verify tracePromise does not do runStores (Stephen Belanger) [#47349](https://github.com/nodejs/node/pull/47349) +* \[[`54261f3294`](https://github.com/nodejs/node/commit/54261f3294)] - **test**: run WPT files in parallel again (Filip Skokan) [#47283](https://github.com/nodejs/node/pull/47283) +* \[[`e2eb0543be`](https://github.com/nodejs/node/commit/e2eb0543be)] - **test**: update wasm/jsapi WPT (Michaël Zasso) [#47210](https://github.com/nodejs/node/pull/47210) +* \[[`d341d0389f`](https://github.com/nodejs/node/commit/d341d0389f)] - **test**: skip test-wasm-web-api on ARM (Michaël Zasso) [#47299](https://github.com/nodejs/node/pull/47299) +* \[[`567573b16a`](https://github.com/nodejs/node/commit/567573b16a)] - **test**: skip instantiateStreaming-bad-imports WPT (Michaël Zasso) [#47292](https://github.com/nodejs/node/pull/47292) +* \[[`45e7b10287`](https://github.com/nodejs/node/commit/45e7b10287)] - **test**: fix 'checks' validation test for checkPrime (Tobias Nießen) [#47139](https://github.com/nodejs/node/pull/47139) +* \[[`5749dfae70`](https://github.com/nodejs/node/commit/5749dfae70)] - **test**: update URL web-platform-tests (Yagiz Nizipli) [#47135](https://github.com/nodejs/node/pull/47135) +* \[[`49981b93d2`](https://github.com/nodejs/node/commit/49981b93d2)] - **test**: reduce flakiness of test-http-remove-header-stays-removed.js (Debadree Chatterjee) [#46855](https://github.com/nodejs/node/pull/46855) +* \[[`6772aa652a`](https://github.com/nodejs/node/commit/6772aa652a)] - **test**: fix test-child-process-exec-cwd (Stefan Stojanovic) [#47235](https://github.com/nodejs/node/pull/47235) +* \[[`41a69e772b`](https://github.com/nodejs/node/commit/41a69e772b)] - **test**: skip broken tests win arm64 (Stefan Stojanovic) [#47020](https://github.com/nodejs/node/pull/47020) +* \[[`7bcfd18f2c`](https://github.com/nodejs/node/commit/7bcfd18f2c)] - **test**: mark test-http-max-sockets as flaky on win32 (Tobias Nießen) [#47134](https://github.com/nodejs/node/pull/47134) +* \[[`b96808b3e2`](https://github.com/nodejs/node/commit/b96808b3e2)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#47222](https://github.com/nodejs/node/pull/47222) +* \[[`65955f1e46`](https://github.com/nodejs/node/commit/65955f1e46)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#47131](https://github.com/nodejs/node/pull/47131) +* \[[`bc6511a243`](https://github.com/nodejs/node/commit/bc6511a243)] - **test\_runner**: color errors only when colors are available (Moshe Atlow) [#47394](https://github.com/nodejs/node/pull/47394) +* \[[`463361e625`](https://github.com/nodejs/node/commit/463361e625)] - **test\_runner**: hide failing tests title when all tests pass (Moshe Atlow) [#47370](https://github.com/nodejs/node/pull/47370) +* \[[`eb837ce80d`](https://github.com/nodejs/node/commit/eb837ce80d)] - **test\_runner**: stringify AssertError expected and actual (Moshe Atlow) [#47088](https://github.com/nodejs/node/pull/47088) +* \[[`6b87f29000`](https://github.com/nodejs/node/commit/6b87f29000)] - **test\_runner**: add code coverage support to spec reporter (Pulkit Gupta) [#46674](https://github.com/nodejs/node/pull/46674) +* \[[`bd4697a2a3`](https://github.com/nodejs/node/commit/bd4697a2a3)] - **test\_runner**: expose reporter for use in run api (Chemi Atlow) [#47238](https://github.com/nodejs/node/pull/47238) +* \[[`3e7f8e8482`](https://github.com/nodejs/node/commit/3e7f8e8482)] - **test\_runner**: report failing tests after summary (HinataKah0) [#47164](https://github.com/nodejs/node/pull/47164) +* \[[`4530582767`](https://github.com/nodejs/node/commit/4530582767)] - **test\_runner**: count nested tests (Moshe Atlow) [#47094](https://github.com/nodejs/node/pull/47094) +* \[[`5a43586554`](https://github.com/nodejs/node/commit/5a43586554)] - **test\_runner**: accept \x1b as a escape symbol (Debadree Chatterjee) [#47050](https://github.com/nodejs/node/pull/47050) +* \[[`a5ebc896f1`](https://github.com/nodejs/node/commit/a5ebc896f1)] - **test\_runner**: support defining test reporter in NODE\_OPTIONS (Steve Herzog) [#46688](https://github.com/nodejs/node/pull/46688) +* \[[`a65fe5c29a`](https://github.com/nodejs/node/commit/a65fe5c29a)] - **tools**: fix update-openssl.yml compare version (Marco Ippolito) [#47384](https://github.com/nodejs/node/pull/47384) +* \[[`760e13c58d`](https://github.com/nodejs/node/commit/760e13c58d)] - **tools**: ensure failed daily wpt run still generates a report (Filip Skokan) [#47376](https://github.com/nodejs/node/pull/47376) +* \[[`9c975f79f0`](https://github.com/nodejs/node/commit/9c975f79f0)] - **tools**: use ref\_name to get branch pushed on (Debadree Chatterjee) [#47358](https://github.com/nodejs/node/pull/47358) +* \[[`b1d6a15028`](https://github.com/nodejs/node/commit/b1d6a15028)] - **tools**: add a at here tag for slack messages (Debadree Chatterjee) [#47358](https://github.com/nodejs/node/pull/47358) +* \[[`c340de6d51`](https://github.com/nodejs/node/commit/c340de6d51)] - **tools**: disable Codecov commit statuses (Michaël Zasso) [#47306](https://github.com/nodejs/node/pull/47306) +* \[[`034082f0e5`](https://github.com/nodejs/node/commit/034082f0e5)] - **tools**: update eslint to 8.37.0 (Node.js GitHub Bot) [#47333](https://github.com/nodejs/node/pull/47333) +* \[[`03b6650c81`](https://github.com/nodejs/node/commit/03b6650c81)] - **tools**: fix duration\_ms to be milliseconds (Moshe Atlow) [#44490](https://github.com/nodejs/node/pull/44490) +* \[[`30c667ec3a`](https://github.com/nodejs/node/commit/30c667ec3a)] - **tools**: automate brotli update (Marco Ippolito) [#47205](https://github.com/nodejs/node/pull/47205) +* \[[`83791e5459`](https://github.com/nodejs/node/commit/83791e5459)] - **tools**: fix typo in nghttp2 path (Marco Ippolito) [#47330](https://github.com/nodejs/node/pull/47330) +* \[[`53e8dad64a`](https://github.com/nodejs/node/commit/53e8dad64a)] - **tools**: add scorecard workflow (Mateo Nunez) [#47254](https://github.com/nodejs/node/pull/47254) +* \[[`2499677d0b`](https://github.com/nodejs/node/commit/2499677d0b)] - **tools**: pin actions by hash for auto-start-ci.yml (Gabriela Gutierrez) [#46820](https://github.com/nodejs/node/pull/46820) +* \[[`98f64ee724`](https://github.com/nodejs/node/commit/98f64ee724)] - **tools**: standardize base64 update (Marco Ippolito) [#47201](https://github.com/nodejs/node/pull/47201) +* \[[`c1ef1fde8f`](https://github.com/nodejs/node/commit/c1ef1fde8f)] - **tools**: update codecov branch (Rich Trott) [#47285](https://github.com/nodejs/node/pull/47285) +* \[[`9ecf2a4144`](https://github.com/nodejs/node/commit/9ecf2a4144)] - **tools**: update lint-md-dependencies to rollup\@3.20.2 (Node.js GitHub Bot) [#47255](https://github.com/nodejs/node/pull/47255) +* \[[`def7e3d908`](https://github.com/nodejs/node/commit/def7e3d908)] - **tools**: upgrade Windows digital signature to SHA256 (Tobias Nießen) [#47206](https://github.com/nodejs/node/pull/47206) +* \[[`0b78ac53ad`](https://github.com/nodejs/node/commit/0b78ac53ad)] - **tools**: standardize update-llhttp.sh (Marco Ippolito) [#47198](https://github.com/nodejs/node/pull/47198) +* \[[`deb80b1c46`](https://github.com/nodejs/node/commit/deb80b1c46)] - **tools**: add button to copy code example to clipboard (jakecastelli) [#46928](https://github.com/nodejs/node/pull/46928) +* \[[`6dca79f1ce`](https://github.com/nodejs/node/commit/6dca79f1ce)] - **tools**: standardize update-nghttp2.sh (Marco Ippolito) [#47197](https://github.com/nodejs/node/pull/47197) +* \[[`0c613c9347`](https://github.com/nodejs/node/commit/0c613c9347)] - **tools**: fix Slack notification action (Antoine du Hamel) [#47237](https://github.com/nodejs/node/pull/47237) +* \[[`3f49da5113`](https://github.com/nodejs/node/commit/3f49da5113)] - **tools**: notify on Slack when invalid commit lands (Antoine du Hamel) [#47178](https://github.com/nodejs/node/pull/47178) +* \[[`337123d657`](https://github.com/nodejs/node/commit/337123d657)] - **tools**: update daily wpt actions summary (Filip Skokan) [#47138](https://github.com/nodejs/node/pull/47138) +* \[[`78ce8d3469`](https://github.com/nodejs/node/commit/78ce8d3469)] - **tools**: allow test tap output to include unicode characters (Moshe Atlow) [#47175](https://github.com/nodejs/node/pull/47175) +* \[[`8850dacc88`](https://github.com/nodejs/node/commit/8850dacc88)] - **tools**: update lint-md-dependencies to rollup\@3.19.1 (Node.js GitHub Bot) [#47045](https://github.com/nodejs/node/pull/47045) +* \[[`d1ca5b6d47`](https://github.com/nodejs/node/commit/d1ca5b6d47)] - **tools**: align update-ada.sh with other scripts (Tony Gorez) [#47044](https://github.com/nodejs/node/pull/47044) +* \[[`b58d52301e`](https://github.com/nodejs/node/commit/b58d52301e)] - **tools**: update eslint to 8.36.0 (Node.js GitHub Bot) [#47046](https://github.com/nodejs/node/pull/47046) +* \[[`d78bef8a1f`](https://github.com/nodejs/node/commit/d78bef8a1f)] - **tools,meta**: update README and tools to reflect changes in TSC charter (Rich Trott) [#47126](https://github.com/nodejs/node/pull/47126) +* \[[`d243115f41`](https://github.com/nodejs/node/commit/d243115f41)] - **url**: improve URLSearchParams creation performance (Yagiz Nizipli) [#47190](https://github.com/nodejs/node/pull/47190) +* \[[`461ef04f87`](https://github.com/nodejs/node/commit/461ef04f87)] - **url**: add pending-deprecation to `url.parse()` (Yagiz Nizipli) [#47203](https://github.com/nodejs/node/pull/47203) +* \[[`ef62e5a59e`](https://github.com/nodejs/node/commit/ef62e5a59e)] - **(SEMVER-MINOR)** **url**: implement URL.canParse (Khafra) [#47179](https://github.com/nodejs/node/pull/47179) +* \[[`0b565e8f62`](https://github.com/nodejs/node/commit/0b565e8f62)] - **url**: allow extension of user provided URL objects (Antoine du Hamel) [#46989](https://github.com/nodejs/node/pull/46989) +* \[[`cbb362736b`](https://github.com/nodejs/node/commit/cbb362736b)] - **util**: fix inspecting error with a throwing getter for `cause` (Antoine du Hamel) [#47163](https://github.com/nodejs/node/pull/47163) +* \[[`9537672511`](https://github.com/nodejs/node/commit/9537672511)] - **vm**: properly handle defining props on any value (Nicolas DUBIEN) [#46615](https://github.com/nodejs/node/pull/46615) +* \[[`75669e98bf`](https://github.com/nodejs/node/commit/75669e98bf)] - **watch**: fix watch path with equals (Moshe Atlow) [#47369](https://github.com/nodejs/node/pull/47369) + ## 2023-03-15, Version 19.8.1 (Current), @targos diff --git a/doc/contributing/collaborator-guide.md b/doc/contributing/collaborator-guide.md index 2670915c7abd79..14963263c5546a 100644 --- a/doc/contributing/collaborator-guide.md +++ b/doc/contributing/collaborator-guide.md @@ -340,8 +340,8 @@ For undocumented APIs that are public, open a pull request documenting the API. ### Breaking changes -At least two TSC members must approve backward-incompatible changes to the -`main` branch. +At least two TSC voting members must approve backward-incompatible changes to +the `main` branch. Examples of breaking changes include: @@ -411,7 +411,7 @@ possible to avoid confusion and typosquatting attacks. For pull requests introducing new core modules: * Allow at least one week for review. -* Land only after sign-off from at least two TSC members. +* Land only after sign-off from at least two TSC voting members. * Land with a [Stability Index][] of Experimental. The module must remain Experimental until a semver-major release. @@ -509,7 +509,7 @@ The TSC serves as the final arbiter where required. squashing only keeps one author. * The "Rebase and merge" method has no way of adding metadata to the commit. 3. Make sure CI is complete and green. If the CI is not green, check for - unreliable tests and infrastructure failures. If there are not corresponding + unreliable tests and infrastructure failures. If there are no corresponding issues in the [node][unreliable tests] or [build](https://github.com/nodejs/build/issues) repositories, open new issues. Run a new CI any time someone pushes new code to the pull request. @@ -742,7 +742,7 @@ git push upstream main ### I made a mistake -* Ping a TSC member. +* Ping a TSC voting member. * With `git`, there's a way to override remote trees by force pushing (`git push -f`). This is generally forbidden as it creates conflicts in other people's forks. It is permissible for simpler slip-ups such as typos in commit diff --git a/doc/contributing/maintaining-dependencies.md b/doc/contributing/maintaining-dependencies.md index b43f1d36a40fc6..52d7e364d5875c 100644 --- a/doc/contributing/maintaining-dependencies.md +++ b/doc/contributing/maintaining-dependencies.md @@ -49,7 +49,7 @@ more of these reasons: 3. They have a system wide configuration for the dependency that all applications should respect. -## Supporting externalized dependencies with native code. +## Supporting externalized dependencies with native code Support for externalized dependencies with native code for which a shared library is available can added by: @@ -76,7 +76,7 @@ shared library is available can added by: }], ``` -## Supporting externalizable dependencies with JavaScript codeIZA +## Supporting externalizable dependencies with JavaScript code Support for an externalizable dependency with JavaScript code can be added by: diff --git a/doc/contributing/maintaining-http.md b/doc/contributing/maintaining-http.md index dab06fdc6ed84a..88d6fdb6ee55e5 100644 --- a/doc/contributing/maintaining-http.md +++ b/doc/contributing/maintaining-http.md @@ -79,7 +79,7 @@ repository. Updates are pulled into Node.js under [deps/llhttp](https://github.com/nodejs/node/tree/HEAD/deps/llhttp). In order to update Node.js with a new version of llhttp you can use the -`tools/update-llhttp.sh` script. +`tools/dep_updaters/update-llhttp.sh` script. The contents of the `deps/llhttp` folder should look like the following: diff --git a/doc/contributing/maintaining-nghttp2.md b/doc/contributing/maintaining-nghttp2.md index e75240f107aa35..41ba0b58508513 100644 --- a/doc/contributing/maintaining-nghttp2.md +++ b/doc/contributing/maintaining-nghttp2.md @@ -13,16 +13,9 @@ directory and C++ code in the ## Step 1: Updating nghttp2 -The `tools/update-nghttp2.sh` script automates the update of the +The `tools/dep_updaters/update-nghttp2.sh` script automates the update of the postject source files. -In the following examples, `x.y.z` should match the nghttp2 -version to update to. - -```console -$ ./tools/update-nghttp2.sh x.y.z -``` - ## Step 2: Test the build ```console diff --git a/doc/contributing/releases.md b/doc/contributing/releases.md index e7fb0f5d0d8b22..9c2d54ba1b4137 100644 --- a/doc/contributing/releases.md +++ b/doc/contributing/releases.md @@ -1148,8 +1148,8 @@ announced immediately following the release of 12.0.0). Approximately two months before a major release, new `vN.x` and `vN.x-staging` branches (where `N` indicates the major release) should be -created as forks of the `main` branch. Up until one week before the release -date, these must be kept in sync with `main`. +created as forks of the `main` branch. Up until the cut-off date announced by +the releaser, these must be kept in sync with `main`. The `vN.x` and `vN.x-staging` branches must be kept in sync with one another up until the date of the release. diff --git a/doc/contributing/security-release-process.md b/doc/contributing/security-release-process.md index 25f61c2ac1d4c7..517dc94348e1fc 100644 --- a/doc/contributing/security-release-process.md +++ b/doc/contributing/security-release-process.md @@ -32,7 +32,6 @@ The current security stewards are documented in the main Node.js | Datadog | Bryan | | | IBM | Joe | | | NearForm | Rafael | | -| Datadog | Vladimir | | | NodeSource | Juan | | | Red Hat | Michael | | @@ -109,7 +108,7 @@ The current security stewards are documented in the main Node.js For more information see: https://nodejs.org/en/blog/vulnerability/month-year-security-releases/ ``` (Get access from existing manager: Matteo Collina, Rodd Vagg, Michael Dawson, - Bryan English, Vladimir de Turckheim) + Bryan English) * [ ] CC `oss-security@lists.openwall.com` on pre-release diff --git a/doc/contributing/sharing-project-news.md b/doc/contributing/sharing-project-news.md new file mode 100644 index 00000000000000..0396bb466c7ee8 --- /dev/null +++ b/doc/contributing/sharing-project-news.md @@ -0,0 +1,30 @@ +# Sharing project news + +The project aims to make it easy +to share project news with those who publish newsletters +that cover Node.js. + +The project's approach is as follows: + +* The project will create one "What's new in YYYY" discussion item in + the `nodejs/node` repo for news related to Node.js core. +* Teams/groups can create a "what's new in YYYY" issue or discussion item + in one or more of their repositories. As an example see + [What's new in the Node-API and node-addon-api world? - 2023 version](https://github.com/nodejs/abi-stable-node/issues/446). +* Collaborators periodically add news as additional comments on these + issues throughout the year. +* At the end of each year the issue is closed and if appropriate a + new one is created. +* A list of these documents is maintained in the section below as a + quick way to find them. +* The next-10 team reaches out to teams/groups on an ad hoc basis + to ensure teams know about the option for sharing news. +* The next-10 team reaches out to those who publish newsletters ad hoc + to let them know about this approach and how they can find the updates. + +We trust/expect collaborators to post project related news versus news +that promotes a specific company or commercial interest. + +## Teams doing updates + +* [node-api/node-addon-api](https://github.com/nodejs/abi-stable-node/issues/446). diff --git a/doc/contributing/strategic-initiatives.md b/doc/contributing/strategic-initiatives.md index 76a4b44472e971..6369b26c43b490 100644 --- a/doc/contributing/strategic-initiatives.md +++ b/doc/contributing/strategic-initiatives.md @@ -11,7 +11,7 @@ agenda to ensure they are active and have the support they need. | Core Promise APIs | [Antoine du Hamel][aduh95] | | | QUIC / HTTP3 | [James M Snell][jasnell] | | | Shadow Realm | [Chengzhong Wu][legendecas] | | -| Startup performance | [Joyee Cheung][joyeecheung] | | +| Startup Snapshot | [Joyee Cheung][joyeecheung] | | | V8 Currency | [Michaël Zasso][targos] | | | Next-10 | [Michael Dawson][mhdawson] | | | Single executable apps | [Darshan Sen][RaisinTen] | | diff --git a/lib/_http_outgoing.js b/lib/_http_outgoing.js index bd9d5e45bfb3c1..6db6298674417d 100644 --- a/lib/_http_outgoing.js +++ b/lib/_http_outgoing.js @@ -80,12 +80,11 @@ let debug = require('internal/util/debuglog').debuglog('http', (fn) => { debug = fn; }); -const HIGH_WATER_MARK = getDefaultHighWaterMark(); - const kCorked = Symbol('corked'); const kUniqueHeaders = Symbol('kUniqueHeaders'); const kBytesWritten = Symbol('kBytesWritten'); const kErrored = Symbol('errored'); +const kHighWaterMark = Symbol('kHighWaterMark'); const nop = () => {}; @@ -150,6 +149,7 @@ function OutgoingMessage() { this._onPendingData = nop; this[kErrored] = null; + this[kHighWaterMark] = getDefaultHighWaterMark(); } ObjectSetPrototypeOf(OutgoingMessage.prototype, Stream.prototype); ObjectSetPrototypeOf(OutgoingMessage, Stream); @@ -196,7 +196,7 @@ ObjectDefineProperty(OutgoingMessage.prototype, 'writableLength', { ObjectDefineProperty(OutgoingMessage.prototype, 'writableHighWaterMark', { __proto__: null, get() { - return this.socket ? this.socket.writableHighWaterMark : HIGH_WATER_MARK; + return this.socket ? this.socket.writableHighWaterMark : this[kHighWaterMark]; }, }); @@ -403,7 +403,7 @@ function _writeRaw(data, encoding, callback, size) { this.outputData.push({ data, encoding, callback }); this.outputSize += data.length; this._onPendingData(data.length); - return this.outputSize < HIGH_WATER_MARK; + return this.outputSize < this[kHighWaterMark]; } diff --git a/lib/diagnostics_channel.js b/lib/diagnostics_channel.js index c54a5914d8d71d..be50c3b8f6e48d 100644 --- a/lib/diagnostics_channel.js +++ b/lib/diagnostics_channel.js @@ -1,11 +1,18 @@ 'use strict'; const { + ArrayPrototypeAt, ArrayPrototypeIndexOf, ArrayPrototypePush, ArrayPrototypeSplice, ObjectGetPrototypeOf, ObjectSetPrototypeOf, + Promise, + PromisePrototypeThen, + PromiseResolve, + PromiseReject, + ReflectApply, + SafeMap, SymbolHasInstance, } = primordials; @@ -22,11 +29,59 @@ const { triggerUncaughtException } = internalBinding('errors'); const { WeakReference } = internalBinding('util'); +function decRef(channel) { + if (channels.get(channel.name).decRef() === 0) { + channels.delete(channel.name); + } +} + +function incRef(channel) { + channels.get(channel.name).incRef(); +} + +function markActive(channel) { + // eslint-disable-next-line no-use-before-define + ObjectSetPrototypeOf(channel, ActiveChannel.prototype); + channel._subscribers = []; + channel._stores = new SafeMap(); +} + +function maybeMarkInactive(channel) { + // When there are no more active subscribers or bound, restore to fast prototype. + if (!channel._subscribers.length && !channel._stores.size) { + // eslint-disable-next-line no-use-before-define + ObjectSetPrototypeOf(channel, Channel.prototype); + channel._subscribers = undefined; + channel._stores = undefined; + } +} + +function defaultTransform(data) { + return data; +} + +function wrapStoreRun(store, data, next, transform = defaultTransform) { + return () => { + let context; + try { + context = transform(data); + } catch (err) { + process.nextTick(() => { + triggerUncaughtException(err, false); + }); + return next(); + } + + return store.run(context, next); + }; +} + // TODO(qard): should there be a C++ channel interface? class ActiveChannel { subscribe(subscription) { validateFunction(subscription, 'subscription'); ArrayPrototypePush(this._subscribers, subscription); + incRef(this); } unsubscribe(subscription) { @@ -35,12 +90,28 @@ class ActiveChannel { ArrayPrototypeSplice(this._subscribers, index, 1); - // When there are no more active subscribers, restore to fast prototype. - if (!this._subscribers.length) { - // eslint-disable-next-line no-use-before-define - ObjectSetPrototypeOf(this, Channel.prototype); + decRef(this); + maybeMarkInactive(this); + + return true; + } + + bindStore(store, transform) { + const replacing = this._stores.has(store); + if (!replacing) incRef(this); + this._stores.set(store, transform); + } + + unbindStore(store) { + if (!this._stores.has(store)) { + return false; } + this._stores.delete(store); + + decRef(this); + maybeMarkInactive(this); + return true; } @@ -60,12 +131,30 @@ class ActiveChannel { } } } + + runStores(data, fn, thisArg, ...args) { + let run = () => { + this.publish(data); + return ReflectApply(fn, thisArg, args); + }; + + for (const entry of this._stores.entries()) { + const store = entry[0]; + const transform = entry[1]; + run = wrapStoreRun(store, data, run, transform); + } + + return run(); + } } class Channel { constructor(name) { this._subscribers = undefined; + this._stores = undefined; this.name = name; + + channels.set(name, new WeakReference(this)); } static [SymbolHasInstance](instance) { @@ -75,8 +164,7 @@ class Channel { } subscribe(subscription) { - ObjectSetPrototypeOf(this, ActiveChannel.prototype); - this._subscribers = []; + markActive(this); this.subscribe(subscription); } @@ -84,18 +172,31 @@ class Channel { return false; } + bindStore(store, transform) { + markActive(this); + this.bindStore(store, transform); + } + + unbindStore() { + return false; + } + get hasSubscribers() { return false; } publish() {} + + runStores(data, fn, thisArg, ...args) { + return ReflectApply(fn, thisArg, args); + } } -const channels = { __proto__: null }; +const channels = new SafeMap(); function channel(name) { let channel; - const ref = channels[name]; + const ref = channels.get(name); if (ref) channel = ref.get(); if (channel) return channel; @@ -103,33 +204,20 @@ function channel(name) { throw new ERR_INVALID_ARG_TYPE('channel', ['string', 'symbol'], name); } - channel = new Channel(name); - channels[name] = new WeakReference(channel); - return channel; + return new Channel(name); } function subscribe(name, subscription) { - const chan = channel(name); - channels[name].incRef(); - chan.subscribe(subscription); + return channel(name).subscribe(subscription); } function unsubscribe(name, subscription) { - const chan = channel(name); - if (!chan.unsubscribe(subscription)) { - return false; - } - - channels[name].decRef(); - if (channels[name].getRef() === 0) { - delete channels[name]; - } - return true; + return channel(name).unsubscribe(subscription); } function hasSubscribers(name) { let channel; - const ref = channels[name]; + const ref = channels.get(name); if (ref) channel = ref.get(); if (!channel) { return false; @@ -138,10 +226,179 @@ function hasSubscribers(name) { return channel.hasSubscribers; } +const traceEvents = [ + 'start', + 'end', + 'asyncStart', + 'asyncEnd', + 'error', +]; + +function assertChannel(value, name) { + if (!(value instanceof Channel)) { + throw new ERR_INVALID_ARG_TYPE(name, ['Channel'], value); + } +} + +class TracingChannel { + constructor(nameOrChannels) { + if (typeof nameOrChannels === 'string') { + this.start = channel(`tracing:${nameOrChannels}:start`); + this.end = channel(`tracing:${nameOrChannels}:end`); + this.asyncStart = channel(`tracing:${nameOrChannels}:asyncStart`); + this.asyncEnd = channel(`tracing:${nameOrChannels}:asyncEnd`); + this.error = channel(`tracing:${nameOrChannels}:error`); + } else if (typeof nameOrChannels === 'object') { + const { start, end, asyncStart, asyncEnd, error } = nameOrChannels; + + assertChannel(start, 'nameOrChannels.start'); + assertChannel(end, 'nameOrChannels.end'); + assertChannel(asyncStart, 'nameOrChannels.asyncStart'); + assertChannel(asyncEnd, 'nameOrChannels.asyncEnd'); + assertChannel(error, 'nameOrChannels.error'); + + this.start = start; + this.end = end; + this.asyncStart = asyncStart; + this.asyncEnd = asyncEnd; + this.error = error; + } else { + throw new ERR_INVALID_ARG_TYPE('nameOrChannels', + ['string', 'object', 'Channel'], + nameOrChannels); + } + } + + subscribe(handlers) { + for (const name of traceEvents) { + if (!handlers[name]) continue; + + this[name]?.subscribe(handlers[name]); + } + } + + unsubscribe(handlers) { + let done = true; + + for (const name of traceEvents) { + if (!handlers[name]) continue; + + if (!this[name]?.unsubscribe(handlers[name])) { + done = false; + } + } + + return done; + } + + traceSync(fn, context = {}, thisArg, ...args) { + const { start, end, error } = this; + + return start.runStores(context, () => { + try { + const result = ReflectApply(fn, thisArg, args); + context.result = result; + return result; + } catch (err) { + context.error = err; + error.publish(context); + throw err; + } finally { + end.publish(context); + } + }); + } + + tracePromise(fn, context = {}, thisArg, ...args) { + const { start, end, asyncStart, asyncEnd, error } = this; + + function reject(err) { + context.error = err; + error.publish(context); + asyncStart.publish(context); + // TODO: Is there a way to have asyncEnd _after_ the continuation? + asyncEnd.publish(context); + return PromiseReject(err); + } + + function resolve(result) { + context.result = result; + asyncStart.publish(context); + // TODO: Is there a way to have asyncEnd _after_ the continuation? + asyncEnd.publish(context); + return result; + } + + return start.runStores(context, () => { + try { + let promise = ReflectApply(fn, thisArg, args); + // Convert thenables to native promises + if (!(promise instanceof Promise)) { + promise = PromiseResolve(promise); + } + return PromisePrototypeThen(promise, resolve, reject); + } catch (err) { + context.error = err; + error.publish(context); + throw err; + } finally { + end.publish(context); + } + }); + } + + traceCallback(fn, position = -1, context = {}, thisArg, ...args) { + const { start, end, asyncStart, asyncEnd, error } = this; + + function wrappedCallback(err, res) { + if (err) { + context.error = err; + error.publish(context); + } else { + context.result = res; + } + + // Using runStores here enables manual context failure recovery + asyncStart.runStores(context, () => { + try { + if (callback) { + return ReflectApply(callback, this, arguments); + } + } finally { + asyncEnd.publish(context); + } + }); + } + + const callback = ArrayPrototypeAt(args, position); + if (typeof callback !== 'function') { + throw new ERR_INVALID_ARG_TYPE('callback', ['function'], callback); + } + ArrayPrototypeSplice(args, position, 1, wrappedCallback); + + return start.runStores(context, () => { + try { + return ReflectApply(fn, thisArg, args); + } catch (err) { + context.error = err; + error.publish(context); + throw err; + } finally { + end.publish(context); + } + }); + } +} + +function tracingChannel(nameOrChannels) { + return new TracingChannel(nameOrChannels); +} + module.exports = { channel, hasSubscribers, subscribe, + tracingChannel, unsubscribe, Channel, }; diff --git a/lib/events.js b/lib/events.js index 55a551fd078396..90c442221bfa9c 100644 --- a/lib/events.js +++ b/lib/events.js @@ -215,6 +215,7 @@ module.exports = EventEmitter; module.exports.once = once; module.exports.on = on; module.exports.getEventListeners = getEventListeners; +module.exports.getMaxListeners = getMaxListeners; // Backwards-compat with node 0.10.x EventEmitter.EventEmitter = EventEmitter; @@ -932,6 +933,23 @@ function getEventListeners(emitterOrTarget, type) { emitterOrTarget); } +/** + * Returns the max listeners set. + * @param {EventEmitter | EventTarget} emitterOrTarget + * @returns {number} + */ +function getMaxListeners(emitterOrTarget) { + if (typeof emitterOrTarget?.getMaxListeners === 'function') { + return _getMaxListeners(emitterOrTarget); + } else if (emitterOrTarget?.[kMaxEventTargetListeners]) { + return emitterOrTarget[kMaxEventTargetListeners]; + } + + throw new ERR_INVALID_ARG_TYPE('emitter', + ['EventEmitter', 'EventTarget'], + emitterOrTarget); +} + /** * Creates a `Promise` that is fulfilled when the emitter * emits the given event. diff --git a/lib/internal/abort_controller.js b/lib/internal/abort_controller.js index 847d9db6699d75..2c1f43354f9f7c 100644 --- a/lib/internal/abort_controller.js +++ b/lib/internal/abort_controller.js @@ -163,7 +163,7 @@ class AbortSignal extends EventTarget { } /** - * @param {any} reason + * @param {any} [reason] * @returns {AbortSignal} */ static abort( @@ -326,7 +326,7 @@ class AbortController { } /** - * @param {any} reason + * @param {any} [reason] */ abort(reason = new DOMException('This operation was aborted', 'AbortError')) { abortSignal(this.#signal ??= createAbortSignal(), reason); diff --git a/lib/internal/blob.js b/lib/internal/blob.js index 226a071b6d1a79..9c6be6981f5b88 100644 --- a/lib/internal/blob.js +++ b/lib/internal/blob.js @@ -1,14 +1,12 @@ 'use strict'; const { - ArrayBuffer, ArrayFrom, MathMax, MathMin, ObjectDefineProperties, ObjectDefineProperty, PromiseReject, - PromiseResolve, ReflectConstruct, RegExpPrototypeExec, RegExpPrototypeSymbolReplace, @@ -71,6 +69,8 @@ const { CountQueuingStrategy, } = require('internal/webstreams/queuingstrategies'); +const { queueMicrotask } = require('internal/process/task_queues'); + const kHandle = Symbol('kHandle'); const kType = Symbol('kType'); const kLength = Symbol('kLength'); @@ -266,10 +266,6 @@ class Blob { if (!isBlob(this)) return PromiseReject(new ERR_INVALID_THIS('Blob')); - if (this.size === 0) { - return PromiseResolve(new ArrayBuffer(0)); - } - const { promise, resolve, reject } = createDeferredPromise(); const reader = this[kHandle].getReader(); const buffers = []; @@ -290,7 +286,7 @@ class Blob { } if (buffer !== undefined) buffers.push(buffer); - readNext(); + queueMicrotask(() => readNext()); }); }; readNext(); @@ -316,12 +312,6 @@ class Blob { if (!isBlob(this)) throw new ERR_INVALID_THIS('Blob'); - if (this.size === 0) { - return new lazyReadableStream({ - start(c) { c.close(); }, - }); - } - const reader = this[kHandle].getReader(); return new lazyReadableStream({ start(c) { diff --git a/lib/internal/crypto/random.js b/lib/internal/crypto/random.js index 3416b38034ea04..bcc36b346741f4 100644 --- a/lib/internal/crypto/random.js +++ b/lib/internal/crypto/random.js @@ -52,7 +52,6 @@ const { validateFunction, validateInt32, validateObject, - validateUint32, } = require('internal/validators'); const { @@ -563,7 +562,8 @@ function checkPrime(candidate, options = kEmptyObject, callback) { checks = 0, } = options; - validateUint32(checks, 'options.checks'); + // The checks option is unsigned but must fit into a signed C int for OpenSSL. + validateInt32(checks, 'options.checks', 0); const job = new CheckPrimeJob(kCryptoJobAsync, candidate, checks); job.ondone = callback; @@ -591,7 +591,8 @@ function checkPrimeSync(candidate, options = kEmptyObject) { checks = 0, } = options; - validateUint32(checks, 'options.checks'); + // The checks option is unsigned but must fit into a signed C int for OpenSSL. + validateInt32(checks, 'options.checks', 0); const job = new CheckPrimeJob(kCryptoJobSync, candidate, checks); const { 0: err, 1: result } = job.run(); diff --git a/lib/internal/event_target.js b/lib/internal/event_target.js index 60c5eb80ceabd3..fa689ef38cee01 100644 --- a/lib/internal/event_target.js +++ b/lib/internal/event_target.js @@ -119,8 +119,6 @@ class Event { isTrustedSet.add(this); } - // isTrusted is special (LegacyUnforgeable) - ObjectDefineProperty(this, 'isTrusted', isTrustedDescriptor); this[kTarget] = null; this[kIsBeingDispatched] = false; } @@ -343,6 +341,11 @@ ObjectDefineProperties( eventPhase: kEnumerableProperty, cancelBubble: kEnumerableProperty, stopPropagation: kEnumerableProperty, + // Don't conform to the spec with isTrusted. The spec defines it as + // LegacyUnforgeable but defining it in the constructor has a big + // performance impact and the property doesn't seem to be useful outside of + // browsers. + isTrusted: isTrustedDescriptor, }); function isCustomEvent(value) { diff --git a/lib/internal/file.js b/lib/internal/file.js index 8ef858d67e2d9c..4c6ca4f61fa4d8 100644 --- a/lib/internal/file.js +++ b/lib/internal/file.js @@ -21,7 +21,6 @@ const { const { codes: { - ERR_INVALID_THIS, ERR_MISSING_ARGS, }, } = require('internal/errors'); @@ -64,18 +63,10 @@ class File extends Blob { } get name() { - if (!this || !(#name in this)) { - throw new ERR_INVALID_THIS('File'); - } - return this.#name; } get lastModified() { - if (!this || !(#name in this)) { - throw new ERR_INVALID_THIS('File'); - } - return this.#lastModified; } diff --git a/lib/internal/main/watch_mode.js b/lib/internal/main/watch_mode.js index 9ef731c06f50b6..5d0d29cc2ff9da 100644 --- a/lib/internal/main/watch_mode.js +++ b/lib/internal/main/watch_mode.js @@ -6,6 +6,7 @@ const { ArrayPrototypeMap, ArrayPrototypePushApply, ArrayPrototypeSlice, + StringPrototypeStartsWith, } = primordials; const { @@ -38,7 +39,9 @@ const kPreserveOutput = getOptionValue('--watch-preserve-output'); const kCommand = ArrayPrototypeSlice(process.argv, 1); const kCommandStr = inspect(ArrayPrototypeJoin(kCommand, ' ')); const args = ArrayPrototypeFilter(process.execArgv, (arg, i, arr) => - arg !== '--watch-path' && arr[i - 1] !== '--watch-path' && arg !== '--watch' && arg !== '--watch-preserve-output'); + !StringPrototypeStartsWith(arg, '--watch-path') && + (!arr[i - 1] || !StringPrototypeStartsWith(arr[i - 1], '--watch-path')) && + arg !== '--watch' && arg !== '--watch-preserve-output'); ArrayPrototypePushApply(args, kCommand); const watcher = new FilesWatcher({ throttle: 500, mode: kShouldFilterModules ? 'filter' : 'all' }); @@ -50,7 +53,7 @@ let exited; function start() { exited = false; - const stdio = kShouldFilterModules ? ['inherit', 'inherit', 'inherit', 'ipc'] : undefined; + const stdio = kShouldFilterModules ? ['inherit', 'inherit', 'inherit', 'ipc'] : 'inherit'; child = spawn(process.execPath, args, { stdio, env: { ...process.env, WATCH_REPORT_DEPENDENCIES: '1' } }); watcher.watchChildProcessModules(child); child.once('exit', (code) => { diff --git a/lib/internal/modules/esm/get_format.js b/lib/internal/modules/esm/get_format.js index a9653d43173c05..d8cfb6df710540 100644 --- a/lib/internal/modules/esm/get_format.js +++ b/lib/internal/modules/esm/get_format.js @@ -4,9 +4,10 @@ const { ObjectPrototypeHasOwnProperty, PromisePrototypeThen, PromiseResolve, + StringPrototypeCharCodeAt, StringPrototypeSlice, } = primordials; -const { basename, extname, relative } = require('path'); +const { basename, relative } = require('path'); const { getOptionValue } = require('internal/options'); const { extensionFormatMap, @@ -41,6 +42,30 @@ function getDataProtocolModuleFormat(parsed) { return mimeToFormat(mime); } +const DOT_CODE = 46; +const SLASH_CODE = 47; + +/** + * Returns the file extension from a URL. Should give similar result to + * `require('node:path').extname(require('node:url').fileURLToPath(url))` + * when used with a `file:` URL. + * @param {URL} url + * @returns {string} + */ +function extname(url) { + const { pathname } = url; + for (let i = pathname.length - 1; i > 0; i--) { + switch (StringPrototypeCharCodeAt(pathname, i)) { + case SLASH_CODE: + return ''; + + case DOT_CODE: + return StringPrototypeCharCodeAt(pathname, i - 1) === SLASH_CODE ? '' : StringPrototypeSlice(pathname, i); + } + } + return ''; +} + /** * @param {URL} url * @param {{parentURL: string}} context @@ -48,8 +73,7 @@ function getDataProtocolModuleFormat(parsed) { * @returns {string} */ function getFileProtocolModuleFormat(url, context, ignoreErrors) { - const filepath = fileURLToPath(url); - const ext = extname(filepath); + const ext = extname(url); if (ext === '.js') { return getPackageType(url) === 'module' ? 'module' : 'commonjs'; } @@ -59,6 +83,7 @@ function getFileProtocolModuleFormat(url, context, ignoreErrors) { // Explicit undefined return indicates load hook should rerun format check if (ignoreErrors) { return undefined; } + const filepath = fileURLToPath(url); let suggestion = ''; if (getPackageType(url) === 'module' && ext === '') { const config = getPackageScopeConfig(url); @@ -119,4 +144,5 @@ module.exports = { defaultGetFormat, defaultGetFormatWithoutErrors, extensionFormatMap, + extname, }; diff --git a/lib/internal/modules/esm/translators.js b/lib/internal/modules/esm/translators.js index e185e29ad046f3..267d89f1d44730 100644 --- a/lib/internal/modules/esm/translators.js +++ b/lib/internal/modules/esm/translators.js @@ -35,8 +35,7 @@ const { Module: CJSModule, cjsParseCache, } = require('internal/modules/cjs/loader'); -const internalURLModule = require('internal/url'); -const { fileURLToPath, URL } = require('url'); +const { fileURLToPath, URL } = require('internal/url'); let debug = require('internal/util/debuglog').debuglog('esm', (fn) => { debug = fn; }); @@ -147,9 +146,7 @@ translators.set('commonjs', async function commonjsStrategy(url, source, isMain) { debug(`Translating CJSModule ${url}`); - let filename = internalURLModule.fileURLToPath(new URL(url)); - if (isWindows) - filename = StringPrototypeReplaceAll(filename, '/', '\\'); + const filename = fileURLToPath(new URL(url)); if (!cjsParse) await initCJSParse(); const { module, exportNames } = cjsPreparseModuleExports(filename); diff --git a/lib/internal/repl/utils.js b/lib/internal/repl/utils.js index 84eddf6e86322d..f3697aa9b68ae2 100644 --- a/lib/internal/repl/utils.js +++ b/lib/internal/repl/utils.js @@ -363,7 +363,7 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) { }, () => callback(new ERR_INSPECTOR_NOT_AVAILABLE())); } - const showPreview = () => { + const showPreview = (showCompletion = true) => { // Prevent duplicated previews after a refresh. if (inputPreview !== null || !repl.isCompletionEnabled) { return; @@ -379,8 +379,10 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) { hasCompletions = false; // Add the autocompletion preview. - const insertPreview = false; - showCompletionPreview(repl.line, insertPreview); + if (showCompletion) { + const insertPreview = false; + showCompletionPreview(repl.line, insertPreview); + } // Do not preview if the command is buffered. if (repl[bufferSymbol]) { diff --git a/lib/internal/streams/destroy.js b/lib/internal/streams/destroy.js index 358422e12a33e0..cfb49f2c7c7273 100644 --- a/lib/internal/streams/destroy.js +++ b/lib/internal/streams/destroy.js @@ -11,7 +11,7 @@ const { Symbol, } = primordials; const { - kDestroyed, + kIsDestroyed, isDestroyed, isFinished, isServerRequest, @@ -327,7 +327,7 @@ function destroyer(stream, err) { } if (!stream.destroyed) { - stream[kDestroyed] = true; + stream[kIsDestroyed] = true; } } diff --git a/lib/internal/streams/operators.js b/lib/internal/streams/operators.js index 9841723622418b..65c87d6e456bdf 100644 --- a/lib/internal/streams/operators.js +++ b/lib/internal/streams/operators.js @@ -409,7 +409,10 @@ function take(number, options = undefined) { } if (number-- > 0) { yield val; - } else { + } + + // Don't get another item from iterator in case we reached the end + if (number <= 0) { return; } } diff --git a/lib/internal/streams/state.js b/lib/internal/streams/state.js index 7b05a1ab0b5a51..98f8d8a6cc33d5 100644 --- a/lib/internal/streams/state.js +++ b/lib/internal/streams/state.js @@ -4,16 +4,29 @@ const { MathFloor, NumberIsInteger, } = primordials; +const { validateInteger } = require('internal/validators'); const { ERR_INVALID_ARG_VALUE } = require('internal/errors').codes; +let defaultHighWaterMarkBytes = 16 * 1024; +let defaultHighWaterMarkObjectMode = 16; + function highWaterMarkFrom(options, isDuplex, duplexKey) { return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null; } function getDefaultHighWaterMark(objectMode) { - return objectMode ? 16 : 16 * 1024; + return objectMode ? defaultHighWaterMarkObjectMode : defaultHighWaterMarkBytes; +} + +function setDefaultHighWaterMark(objectMode, value) { + validateInteger(value, 'value', 0); + if (objectMode) { + defaultHighWaterMarkObjectMode = value; + } else { + defaultHighWaterMarkBytes = value; + } } function getHighWaterMark(state, options, duplexKey, isDuplex) { @@ -33,4 +46,5 @@ function getHighWaterMark(state, options, duplexKey, isDuplex) { module.exports = { getHighWaterMark, getDefaultHighWaterMark, + setDefaultHighWaterMark, }; diff --git a/lib/internal/streams/utils.js b/lib/internal/streams/utils.js index c9e61ca8cdd8eb..1b2a6c0fbf6a05 100644 --- a/lib/internal/streams/utils.js +++ b/lib/internal/streams/utils.js @@ -1,16 +1,20 @@ 'use strict'; const { - Symbol, SymbolAsyncIterator, SymbolIterator, SymbolFor, } = primordials; -const kDestroyed = Symbol('kDestroyed'); -const kIsErrored = Symbol('kIsErrored'); -const kIsReadable = Symbol('kIsReadable'); -const kIsDisturbed = Symbol('kIsDisturbed'); +// We need to use SymbolFor to make these globally available +// for interopt with readable-stream, i.e. readable-stream +// and node core needs to be able to read/write private state +// from each other for proper interoperability. +const kIsDestroyed = SymbolFor('nodejs.stream.destroyed'); +const kIsErrored = SymbolFor('nodejs.stream.errored'); +const kIsReadable = SymbolFor('nodejs.stream.readable'); +const kIsWritable = SymbolFor('nodejs.stream.writable'); +const kIsDisturbed = SymbolFor('nodejs.stream.disturbed'); const kIsClosedPromise = SymbolFor('nodejs.webstream.isClosedPromise'); const kControllerErrorFunction = SymbolFor('nodejs.webstream.controllerErrorFunction'); @@ -104,7 +108,7 @@ function isDestroyed(stream) { const wState = stream._writableState; const rState = stream._readableState; const state = wState || rState; - return !!(stream.destroyed || stream[kDestroyed] || state?.destroyed); + return !!(stream.destroyed || stream[kIsDestroyed] || state?.destroyed); } // Have been end():d. @@ -162,6 +166,7 @@ function isReadable(stream) { } function isWritable(stream) { + if (stream && stream[kIsWritable] != null) return stream[kIsWritable]; if (typeof stream?.writable !== 'boolean') return null; if (isDestroyed(stream)) return false; return isWritableNodeStream(stream) && @@ -298,7 +303,8 @@ function isErrored(stream) { } module.exports = { - kDestroyed, + isDestroyed, + kIsDestroyed, isDisturbed, kIsDisturbed, isErrored, @@ -307,8 +313,8 @@ module.exports = { kIsReadable, kIsClosedPromise, kControllerErrorFunction, + kIsWritable, isClosed, - isDestroyed, isDuplexNodeStream, isFinished, isIterable, diff --git a/lib/internal/test_runner/harness.js b/lib/internal/test_runner/harness.js index 26f5a6ef49142c..95a8c5f8691541 100644 --- a/lib/internal/test_runner/harness.js +++ b/lib/internal/test_runner/harness.js @@ -168,6 +168,17 @@ function setup(root) { __proto__: null, bootstrapComplete: false, coverage: null, + counters: { + __proto__: null, + all: 0, + failed: 0, + passed: 0, + cancelled: 0, + skipped: 0, + todo: 0, + planned: 0, + suites: 0, + }, }; root.startTime = hrtime(); return root; diff --git a/lib/internal/test_runner/reporter/spec.js b/lib/internal/test_runner/reporter/spec.js index 3637c74111c4b7..ecc20bb866a784 100644 --- a/lib/internal/test_runner/reporter/spec.js +++ b/lib/internal/test_runner/reporter/spec.js @@ -3,6 +3,7 @@ const { ArrayPrototypeJoin, ArrayPrototypePop, + ArrayPrototypePush, ArrayPrototypeShift, ArrayPrototypeUnshift, hardenRegExp, @@ -13,10 +14,10 @@ const { const assert = require('assert'); const Transform = require('internal/streams/transform'); const { inspectWithNoCustomRetry } = require('internal/errors'); -const { green, blue, red, white, gray } = require('internal/util/colors'); +const { green, blue, red, white, gray, hasColors } = require('internal/util/colors'); +const { getCoverageReport } = require('internal/test_runner/utils'); - -const inspectOptions = { __proto__: null, colors: true, breakLength: Infinity }; +const inspectOptions = { __proto__: null, colors: hasColors, breakLength: Infinity }; const colors = { '__proto__': null, @@ -29,6 +30,7 @@ const symbols = { 'test:fail': '\u2716 ', 'test:pass': '\u2714 ', 'test:diagnostic': '\u2139 ', + 'test:coverage': '\u2139 ', 'arrow:right': '\u25B6 ', 'hyphen:minus': '\uFE63 ', }; @@ -36,6 +38,7 @@ class SpecReporter extends Transform { #stack = []; #reported = []; #indentMemo = new SafeMap(); + #failedTests = []; constructor() { super({ writableObjectMode: true }); @@ -60,54 +63,80 @@ class SpecReporter extends Transform { ), `\n${indent} `); return `\n${indent} ${message}\n`; } - #handleEvent({ type, data }) { + #formatTestReport(type, data, prefix = '', indent = '', hasChildren = false, skippedSubtest = false) { let color = colors[type] ?? white; let symbol = symbols[type] ?? ' '; - + const duration_ms = data.details?.duration_ms ? ` ${gray}(${data.details.duration_ms}ms)${white}` : ''; + const title = `${data.name}${duration_ms}${skippedSubtest ? ' # SKIP' : ''}`; + 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 error = this.#formatError(data.details?.error, indent); + if (skippedSubtest) { + color = gray; + symbol = symbols['hyphen:minus']; + } + return `${prefix}${indent}${color}${symbol}${title}${white}${error}`; + } + #handleTestReportEvent(type, data) { + const subtest = ArrayPrototypeShift(this.#stack); // This is the matching `test:start` event + if (subtest) { + assert(subtest.type === 'test:start'); + assert(subtest.data.nesting === data.nesting); + assert(subtest.data.name === data.name); + } + let prefix = ''; + while (this.#stack.length) { + // Report all the parent `test:start` events + const parent = ArrayPrototypePop(this.#stack); + assert(parent.type === 'test:start'); + const msg = parent.data; + ArrayPrototypeUnshift(this.#reported, msg); + prefix += `${this.#indent(msg.nesting)}${symbols['arrow:right']}${msg.name}\n`; + } + let hasChildren = false; + if (this.#reported[0] && this.#reported[0].nesting === data.nesting && this.#reported[0].name === data.name) { + ArrayPrototypeShift(this.#reported); + hasChildren = true; + } + const skippedSubtest = subtest && data.skip && data.skip !== undefined; + const indent = this.#indent(data.nesting); + return `${this.#formatTestReport(type, data, prefix, indent, hasChildren, skippedSubtest)}\n`; + } + #handleEvent({ type, data }) { switch (type) { case 'test:fail': - case 'test:pass': { - const subtest = ArrayPrototypeShift(this.#stack); // This is the matching `test:start` event - if (subtest) { - assert(subtest.type === 'test:start'); - assert(subtest.data.nesting === data.nesting); - assert(subtest.data.name === data.name); - } - let prefix = ''; - while (this.#stack.length) { - // Report all the parent `test:start` events - const parent = ArrayPrototypePop(this.#stack); - assert(parent.type === 'test:start'); - const msg = parent.data; - ArrayPrototypeUnshift(this.#reported, msg); - prefix += `${this.#indent(msg.nesting)}${symbols['arrow:right']}${msg.name}\n`; - } - const skippedSubtest = subtest && data.skip && data.skip !== undefined; - const indent = this.#indent(data.nesting); - const duration_ms = data.details?.duration_ms ? ` ${gray}(${data.details.duration_ms}ms)${white}` : ''; - const title = `${data.name}${duration_ms}${skippedSubtest ? ' # SKIP' : ''}`; - if (this.#reported[0] && this.#reported[0].nesting === data.nesting && this.#reported[0].name === data.name) { - // If this test has had children - it was already reported, so slightly modify the output - ArrayPrototypeShift(this.#reported); - return `${prefix}${indent}${color}${symbols['arrow:right']}${white}${title}\n\n`; - } - const error = this.#formatError(data.details?.error, indent); - if (skippedSubtest) { - color = gray; - symbol = symbols['hyphen:minus']; - } - return `${prefix}${indent}${color}${symbol}${title}${error}${white}\n`; - } + ArrayPrototypePush(this.#failedTests, data); + return this.#handleTestReportEvent(type, data); + case 'test:pass': + return this.#handleTestReportEvent(type, data); case 'test:start': ArrayPrototypeUnshift(this.#stack, { __proto__: null, data, type }); break; case 'test:diagnostic': - return `${color}${this.#indent(data.nesting)}${symbol}${data.message}${white}\n`; + return `${colors[type]}${this.#indent(data.nesting)}${symbols[type]}${data.message}${white}\n`; + case 'test:coverage': + return getCoverageReport(this.#indent(data.nesting), data.summary, symbols['test:coverage'], blue); } } _transform({ type, data }, encoding, callback) { callback(null, this.#handleEvent({ type, data })); } + _flush(callback) { + if (this.#failedTests.length === 0) { + callback(null, ''); + return; + } + const results = [`\n${colors['test:fail']}${symbols['test:fail']}failing tests:${white}\n`]; + for (let i = 0; i < this.#failedTests.length; i++) { + ArrayPrototypePush(results, this.#formatTestReport( + 'test:fail', + this.#failedTests[i], + )); + } + callback(null, ArrayPrototypeJoin(results, '\n')); + } } module.exports = SpecReporter; diff --git a/lib/internal/test_runner/reporter/tap.js b/lib/internal/test_runner/reporter/tap.js index a5402b4a6084ac..01c7436c6a6b67 100644 --- a/lib/internal/test_runner/reporter/tap.js +++ b/lib/internal/test_runner/reporter/tap.js @@ -3,17 +3,17 @@ const { ArrayPrototypeForEach, ArrayPrototypeJoin, ArrayPrototypePush, - NumberPrototypeToFixed, ObjectEntries, RegExpPrototypeSymbolReplace, SafeMap, + SafeSet, StringPrototypeReplaceAll, StringPrototypeSplit, StringPrototypeRepeat, } = primordials; const { inspectWithNoCustomRetry } = require('internal/errors'); const { isError, kEmptyObject } = require('internal/util'); -const { relative } = require('path'); +const { getCoverageReport } = require('internal/test_runner/utils'); const kDefaultIndent = ' '; // 4 spaces const kFrameStartRegExp = /^ {4}at /; const kLineBreakRegExp = /\n|\r\n/; @@ -49,7 +49,7 @@ async function * tapReporter(source) { yield `${indent(data.nesting)}# ${tapEscape(data.message)}\n`; break; case 'test:coverage': - yield reportCoverage(data.nesting, data.summary); + yield getCoverageReport(indent(data.nesting), data.summary, '# ', ''); break; } } @@ -73,47 +73,14 @@ function reportTest(nesting, testNumber, status, name, skip, todo) { return line; } -function reportCoverage(nesting, summary) { - const pad = indent(nesting); - let report = `${pad}# start of coverage report\n`; - - report += `${pad}# file | line % | branch % | funcs % | uncovered lines\n`; - - for (let i = 0; i < summary.files.length; ++i) { - const { - path, - coveredLinePercent, - coveredBranchPercent, - coveredFunctionPercent, - uncoveredLineNumbers, - } = summary.files[i]; - const relativePath = relative(summary.workingDirectory, path); - const lines = NumberPrototypeToFixed(coveredLinePercent, 2); - const branches = NumberPrototypeToFixed(coveredBranchPercent, 2); - const functions = NumberPrototypeToFixed(coveredFunctionPercent, 2); - const uncovered = ArrayPrototypeJoin(uncoveredLineNumbers, ', '); - - report += `${pad}# ${relativePath} | ${lines} | ${branches} | ` + - `${functions} | ${uncovered}\n`; - } - - const { totals } = summary; - report += `${pad}# all files | ` + - `${NumberPrototypeToFixed(totals.coveredLinePercent, 2)} | ` + - `${NumberPrototypeToFixed(totals.coveredBranchPercent, 2)} | ` + - `${NumberPrototypeToFixed(totals.coveredFunctionPercent, 2)} |\n`; - - report += `${pad}# end of coverage report\n`; - return report; -} - function reportDetails(nesting, data = kEmptyObject) { const { error, duration_ms } = data; const _indent = indent(nesting); let details = `${_indent} ---\n`; details += jsToYaml(_indent, 'duration_ms', duration_ms); - details += jsToYaml(_indent, null, error); + details += jsToYaml(_indent, 'type', data.type); + details += jsToYaml(_indent, null, error, new SafeSet()); details += `${_indent} ...\n`; return details; } @@ -143,7 +110,7 @@ function tapEscape(input) { return result; } -function jsToYaml(indent, name, value) { +function jsToYaml(indent, name, value, seen) { if (value === null || value === undefined) { return ''; } @@ -170,9 +137,16 @@ function jsToYaml(indent, name, value) { return str; } + seen.add(value); const entries = ObjectEntries(value); const isErrorObj = isError(value); let result = ''; + let propsIndent = indent; + + if (name != null) { + result += `${indent} ${name}:\n`; + propsIndent += ' '; + } for (let i = 0; i < entries.length; i++) { const { 0: key, 1: value } = entries[i]; @@ -180,8 +154,12 @@ function jsToYaml(indent, name, value) { if (isErrorObj && (key === 'cause' || key === 'code')) { continue; } + if (seen.has(value)) { + result += `${propsIndent} ${key}: \n`; + continue; + } - result += jsToYaml(indent, key, value); + result += jsToYaml(propsIndent, key, value, seen); } if (isErrorObj) { @@ -223,20 +201,20 @@ function jsToYaml(indent, name, value) { } } - result += jsToYaml(indent, 'error', errMsg); + result += jsToYaml(indent, 'error', errMsg, seen); if (errCode) { - result += jsToYaml(indent, 'code', errCode); + result += jsToYaml(indent, 'code', errCode, seen); } if (errName && errName !== 'Error') { - result += jsToYaml(indent, 'name', errName); + result += jsToYaml(indent, 'name', errName, seen); } if (errIsAssertion) { - result += jsToYaml(indent, 'expected', errExpected); - result += jsToYaml(indent, 'actual', errActual); + result += jsToYaml(indent, 'expected', errExpected, seen); + result += jsToYaml(indent, 'actual', errActual, seen); if (errOperator) { - result += jsToYaml(indent, 'operator', errOperator); + result += jsToYaml(indent, 'operator', errOperator, seen); } } diff --git a/lib/internal/test_runner/runner.js b/lib/internal/test_runner/runner.js index 5b772251be981e..6e6cb4f276a9a3 100644 --- a/lib/internal/test_runner/runner.js +++ b/lib/internal/test_runner/runner.js @@ -10,10 +10,8 @@ const { ArrayPrototypeSome, ArrayPrototypeSort, ArrayPrototypeSplice, - FunctionPrototypeCall, Number, ObjectAssign, - ObjectKeys, PromisePrototypeThen, SafePromiseAll, SafePromiseAllReturnVoid, @@ -55,8 +53,9 @@ const { YAMLToJs } = require('internal/test_runner/yaml_to_js'); const { TokenKind } = require('internal/test_runner/tap_lexer'); const { - isSupportedFileType, + countCompletedTest, doesPathMatchFilter, + isSupportedFileType, } = require('internal/test_runner/utils'); const { basename, join, resolve } = require('path'); const { once } = require('events'); @@ -67,7 +66,7 @@ const { const kFilterArgs = ['--test', '--experimental-test-coverage', '--watch']; const kFilterArgValues = ['--test-reporter', '--test-reporter-destination']; -const kDiagnosticsFilterArgs = ['tests', 'pass', 'fail', 'cancelled', 'skipped', 'todo', 'duration_ms']; +const kDiagnosticsFilterArgs = ['tests', 'suites', 'pass', 'fail', 'cancelled', 'skipped', 'todo', 'duration_ms']; const kCanceledTests = new SafeSet() .add(kCancelledByParent).add(kAborted).add(kTestTimeoutFailure); @@ -145,15 +144,16 @@ function getRunArgs({ path, inspectPort }) { ArrayPrototypePush(argv, `--inspect-port=${getInspectPort(inspectPort)}`); } ArrayPrototypePush(argv, path); + return argv; } class FileTest extends Test { #buffer = []; - #counters = { __proto__: null, all: 0, failed: 0, passed: 0, cancelled: 0, skipped: 0, todo: 0, totalFailed: 0 }; + #reportedChildren = 0; failedSubtests = false; #skipReporting() { - return this.#counters.all > 0 && (!this.error || this.error.failureType === kSubtestsFailed); + return this.#reportedChildren > 0 && (!this.error || this.error.failureType === kSubtestsFailed); } #checkNestedComment({ comment }) { const firstSpaceIndex = StringPrototypeIndexOf(comment, ' '); @@ -203,11 +203,19 @@ class FileTest extends Test { const method = pass ? 'ok' : 'fail'; this.reporter[method](nesting, this.name, testNumber, node.description, diagnostics, directive); if (nesting === 0) { - FunctionPrototypeCall(super.countSubtest, - { finished: true, skipped: skip, isTodo: todo, passed: pass, cancelled }, - this.#counters); this.failedSubtests ||= !pass; } + this.#reportedChildren++; + countCompletedTest({ + name: node.description, + finished: true, + skipped: skip, + isTodo: todo, + passed: pass, + cancelled, + nesting, + reportedType: diagnostics.type, + }, this.root.harness); break; } @@ -232,14 +240,6 @@ class FileTest extends Test { this.reportStarted(); this.#handleReportItem(ast); } - countSubtest(counters) { - if (this.#counters.all === 0) { - return super.countSubtest(counters); - } - ArrayPrototypeForEach(ObjectKeys(counters), (key) => { - counters[key] += this.#counters[key]; - }); - } reportStarted() {} report() { const skipReporting = this.#skipReporting(); @@ -260,7 +260,7 @@ function runTestFile(path, root, inspectPort, filesWatcher) { const subtest = root.createSubtest(FileTest, path, async (t) => { const args = getRunArgs({ path, inspectPort }); const stdio = ['pipe', 'pipe', 'pipe']; - const env = { ...process.env }; + const env = { ...process.env, NODE_TEST_CONTEXT: 'child' }; if (filesWatcher) { stdio.push('ipc'); env.WATCH_REPORT_DEPENDENCIES = '1'; diff --git a/lib/internal/test_runner/tap_lexer.js b/lib/internal/test_runner/tap_lexer.js index a27e6ab35ea1d1..8af5453b283a38 100644 --- a/lib/internal/test_runner/tap_lexer.js +++ b/lib/internal/test_runner/tap_lexer.js @@ -525,7 +525,7 @@ class TapLexer { } #isEscapeSymbol(char) { - return char === '\\'; + return char === '\\' || char === '\x1b'; } #isYamlStartSymbol(char) { diff --git a/lib/internal/test_runner/test.js b/lib/internal/test_runner/test.js index ffbf2d257aed62..c1203c91177f43 100644 --- a/lib/internal/test_runner/test.js +++ b/lib/internal/test_runner/test.js @@ -34,6 +34,7 @@ const { MockTracker } = require('internal/test_runner/mock'); const { TestsStream } = require('internal/test_runner/tests_stream'); const { createDeferredCallback, + countCompletedTest, isTestFailureError, parseCommandLine, } = require('internal/test_runner/utils'); @@ -186,6 +187,7 @@ class Test extends AsyncResource { this.runOnlySubtests = this.only; this.testNumber = 0; this.timeout = kDefaultTimeout; + this.root = this; } else { const nesting = parent.parent === null ? parent.nesting : parent.nesting + 1; @@ -197,6 +199,7 @@ class Test extends AsyncResource { this.runOnlySubtests = !this.only; this.testNumber = parent.subtests.length + 1; this.timeout = parent.timeout; + this.root = parent.root; } switch (typeof concurrency) { @@ -575,31 +578,7 @@ class Test extends AsyncResource { this.postRun(); } - countSubtest(counters) { - // Check SKIP and TODO tests first, as those should not be counted as - // failures. - if (this.skipped) { - counters.skipped++; - } else if (this.isTodo) { - counters.todo++; - } else if (this.cancelled) { - counters.cancelled++; - } else if (!this.passed) { - counters.failed++; - } else { - counters.passed++; - } - - if (!this.passed) { - counters.totalFailed++; - } - counters.all++; - } - postRun(pendingSubtestsError) { - const counters = { - __proto__: null, all: 0, failed: 0, passed: 0, cancelled: 0, skipped: 0, todo: 0, totalFailed: 0, - }; // If the test was failed before it even started, then the end time will // be earlier than the start time. Correct that here. if (this.endTime < this.startTime) { @@ -610,6 +589,7 @@ class Test extends AsyncResource { // The test has run, so recursively cancel any outstanding subtests and // mark this test as failed if any subtests failed. this.pendingSubtests = []; + let failed = 0; for (let i = 0; i < this.subtests.length; i++) { const subtest = this.subtests[i]; @@ -617,12 +597,14 @@ class Test extends AsyncResource { subtest.#cancel(pendingSubtestsError); subtest.postRun(pendingSubtestsError); } - subtest.countSubtest(counters); + if (!subtest.passed) { + failed++; + } } - if ((this.passed || this.parent === null) && counters.totalFailed > 0) { - const subtestString = `subtest${counters.totalFailed > 1 ? 's' : ''}`; - const msg = `${counters.totalFailed} ${subtestString} failed`; + if ((this.passed || this.parent === null) && failed > 0) { + const subtestString = `subtest${failed > 1 ? 's' : ''}`; + const msg = `${failed} ${subtestString} failed`; this.fail(new ERR_TEST_FAILURE(msg, kSubtestsFailed)); } @@ -637,18 +619,19 @@ class Test extends AsyncResource { this.parent.processPendingSubtests(); } else if (!this.reported) { this.reported = true; - this.reporter.plan(this.nesting, kFilename, counters.all); + this.reporter.plan(this.nesting, kFilename, this.root.harness.counters.planned); for (let i = 0; i < this.diagnostics.length; i++) { this.reporter.diagnostic(this.nesting, kFilename, this.diagnostics[i]); } - this.reporter.diagnostic(this.nesting, kFilename, `tests ${counters.all}`); - this.reporter.diagnostic(this.nesting, kFilename, `pass ${counters.passed}`); - this.reporter.diagnostic(this.nesting, kFilename, `fail ${counters.failed}`); - this.reporter.diagnostic(this.nesting, kFilename, `cancelled ${counters.cancelled}`); - this.reporter.diagnostic(this.nesting, kFilename, `skipped ${counters.skipped}`); - this.reporter.diagnostic(this.nesting, kFilename, `todo ${counters.todo}`); + this.reporter.diagnostic(this.nesting, kFilename, `tests ${this.root.harness.counters.all}`); + this.reporter.diagnostic(this.nesting, kFilename, `suites ${this.root.harness.counters.suites}`); + this.reporter.diagnostic(this.nesting, kFilename, `pass ${this.root.harness.counters.passed}`); + this.reporter.diagnostic(this.nesting, kFilename, `fail ${this.root.harness.counters.failed}`); + this.reporter.diagnostic(this.nesting, kFilename, `cancelled ${this.root.harness.counters.cancelled}`); + this.reporter.diagnostic(this.nesting, kFilename, `skipped ${this.root.harness.counters.skipped}`); + this.reporter.diagnostic(this.nesting, kFilename, `todo ${this.root.harness.counters.todo}`); this.reporter.diagnostic(this.nesting, kFilename, `duration_ms ${this.#duration()}`); if (this.harness?.coverage) { @@ -689,6 +672,7 @@ class Test extends AsyncResource { } report() { + countCompletedTest(this); if (this.subtests.length > 0) { this.reporter.plan(this.subtests[0].nesting, kFilename, this.subtests.length); } else { @@ -703,6 +687,10 @@ class Test extends AsyncResource { directive = this.reporter.getTodo(this.message); } + if (this.reportedType) { + details.type = this.reportedType; + } + if (this.passed) { this.reporter.ok(this.nesting, kFilename, this.testNumber, this.name, details, directive); } else { @@ -746,6 +734,7 @@ class TestHook extends Test { } class Suite extends Test { + reportedType = 'suite'; constructor(options) { super(options); diff --git a/lib/internal/test_runner/utils.js b/lib/internal/test_runner/utils.js index 388aa6c075efd7..e97f92484b8b8d 100644 --- a/lib/internal/test_runner/utils.js +++ b/lib/internal/test_runner/utils.js @@ -1,18 +1,22 @@ 'use strict'; const { + ArrayPrototypeJoin, ArrayPrototypeMap, ArrayPrototypePush, ObjectGetOwnPropertyDescriptor, + NumberPrototypeToFixed, SafePromiseAllReturnArrayLike, RegExp, RegExpPrototypeExec, SafeMap, } = primordials; -const { basename } = require('path'); + +const { basename, relative } = require('path'); const { createWriteStream } = require('fs'); const { pathToFileURL } = require('internal/url'); const { createDeferredPromise } = require('internal/util'); const { getOptionValue } = require('internal/options'); +const { green, red, white } = require('internal/util/colors'); const { codes: { @@ -166,25 +170,33 @@ function parseCommandLine() { const isTestRunner = getOptionValue('--test'); const coverage = getOptionValue('--experimental-test-coverage'); - const destinations = getOptionValue('--test-reporter-destination'); - const reporters = getOptionValue('--test-reporter'); + const isChildProcess = process.env.NODE_TEST_CONTEXT === 'child'; + let destinations; + let reporters; let testNamePatterns; let testOnlyFlag; - if (reporters.length === 0 && destinations.length === 0) { - ArrayPrototypePush(reporters, kDefaultReporter); - } + if (isChildProcess) { + reporters = [kDefaultReporter]; + destinations = [kDefaultDestination]; + } else { + destinations = getOptionValue('--test-reporter-destination'); + reporters = getOptionValue('--test-reporter'); + if (reporters.length === 0 && destinations.length === 0) { + ArrayPrototypePush(reporters, kDefaultReporter); + } - if (reporters.length === 1 && destinations.length === 0) { - ArrayPrototypePush(destinations, kDefaultDestination); - } + if (reporters.length === 1 && destinations.length === 0) { + ArrayPrototypePush(destinations, kDefaultDestination); + } - if (destinations.length !== reporters.length) { - throw new ERR_INVALID_ARG_VALUE( - '--test-reporter', - reporters, - 'must match the number of specified \'--test-reporter-destination\'', - ); + if (destinations.length !== reporters.length) { + throw new ERR_INVALID_ARG_VALUE( + '--test-reporter', + reporters, + 'must match the number of specified \'--test-reporter-destination\'', + ); + } } if (isTestRunner) { @@ -213,12 +225,84 @@ function parseCommandLine() { return globalTestOptions; } +function countCompletedTest(test, harness = test.root.harness) { + if (test.nesting === 0) { + harness.counters.planned++; + } + if (test.reportedType === 'suite') { + harness.counters.suites++; + return; + } + // Check SKIP and TODO tests first, as those should not be counted as + // failures. + if (test.skipped) { + harness.counters.skipped++; + } else if (test.isTodo) { + harness.counters.todo++; + } else if (test.cancelled) { + harness.counters.cancelled++; + } else if (!test.passed) { + harness.counters.failed++; + } else { + harness.counters.passed++; + } + harness.counters.all++; +} + + +function coverageThreshold(coverage, color) { + coverage = NumberPrototypeToFixed(coverage, 2); + if (color) { + if (coverage > 90) return `${green}${coverage}${color}`; + if (coverage < 50) return `${red}${coverage}${color}`; + } + return coverage; +} + +function getCoverageReport(pad, summary, symbol, color) { + let report = `${color}${pad}${symbol}start of coverage report\n`; + + report += `${pad}${symbol}file | line % | branch % | funcs % | uncovered lines\n`; + + for (let i = 0; i < summary.files.length; ++i) { + const { + path, + coveredLinePercent, + coveredBranchPercent, + coveredFunctionPercent, + uncoveredLineNumbers, + } = summary.files[i]; + const relativePath = relative(summary.workingDirectory, path); + const lines = coverageThreshold(coveredLinePercent, color); + const branches = coverageThreshold(coveredBranchPercent, color); + const functions = coverageThreshold(coveredFunctionPercent, color); + const uncovered = ArrayPrototypeJoin(uncoveredLineNumbers, ', '); + + report += `${pad}${symbol}${relativePath} | ${lines} | ${branches} | ` + + `${functions} | ${uncovered}\n`; + } + + const { totals } = summary; + report += `${pad}${symbol}all files | ` + + `${coverageThreshold(totals.coveredLinePercent, color)} | ` + + `${coverageThreshold(totals.coveredBranchPercent, color)} | ` + + `${coverageThreshold(totals.coveredFunctionPercent, color)} |\n`; + + report += `${pad}${symbol}end of coverage report\n`; + if (color) { + report += white; + } + return report; +} + module.exports = { convertStringToRegExp, + countCompletedTest, createDeferredCallback, doesPathMatchFilter, isSupportedFileType, isTestFailureError, parseCommandLine, setupTestReporters, + getCoverageReport, }; diff --git a/lib/internal/test_runner/yaml_to_js.js b/lib/internal/test_runner/yaml_to_js.js index 6eb193f4afd36e..724e71baaa67db 100644 --- a/lib/internal/test_runner/yaml_to_js.js +++ b/lib/internal/test_runner/yaml_to_js.js @@ -19,7 +19,7 @@ const { StringPrototypeSubstring, } = primordials; -const kYamlKeyRegex = /^(\s+)?(\w+):(\s)+([>|][-+])?(.*)$/; +const kYamlKeyRegex = /^(\s+)?(\w+):(\s)*([>|][-+])?(.*)$/; const kStackDelimiter = ' at '; function reConstructError(parsedYaml) { @@ -91,28 +91,39 @@ function YAMLToJs(lines) { return undefined; } const result = { __proto__: null }; + let context = { __proto__: null, object: result, indent: 0, currentKey: null }; let isInYamlBlock = false; for (let i = 0; i < lines.length; i++) { const line = lines[i]; if (isInYamlBlock && !StringPrototypeStartsWith(line, StringPrototypeRepeat(' ', isInYamlBlock.indent))) { - result[isInYamlBlock.key] = isInYamlBlock.key === 'stack' ? - result[isInYamlBlock.key] : ArrayPrototypeJoin(result[isInYamlBlock.key], '\n'); + context.object[isInYamlBlock.key] = isInYamlBlock.key === 'stack' ? + context.object[isInYamlBlock.key] : ArrayPrototypeJoin(context.object[isInYamlBlock.key], '\n'); isInYamlBlock = false; } if (isInYamlBlock) { const blockLine = StringPrototypeSubstring(line, isInYamlBlock.indent); - ArrayPrototypePush(result[isInYamlBlock.key], blockLine); + ArrayPrototypePush(context.object[isInYamlBlock.key], blockLine); continue; } const match = RegExpPrototypeExec(kYamlKeyRegex, line); if (match !== null) { const { 1: leadingSpaces, 2: key, 4: block, 5: value } = match; + const indent = leadingSpaces?.length ?? 0; if (block) { - isInYamlBlock = { key, indent: (leadingSpaces?.length ?? 0) + 2 }; - result[key] = []; - } else { - result[key] = getYamlValue(value); + isInYamlBlock = { key, indent: indent + 2 }; + context.object[key] = []; + continue; } + + if (indent > context.indent) { + context.object[context.currentKey] ||= {}; + context = { __proto__: null, parent: context, object: context.object[context.currentKey], indent }; + } else if (indent < context.indent) { + context = context.parent; + } + + context.currentKey = key; + context.object[key] = getYamlValue(value); } } return reConstructError(result); diff --git a/lib/internal/url.js b/lib/internal/url.js index 193965b76d346d..e89e02eb4bdf32 100644 --- a/lib/internal/url.js +++ b/lib/internal/url.js @@ -2,6 +2,7 @@ const { Array, + ArrayIsArray, ArrayPrototypeJoin, ArrayPrototypeMap, ArrayPrototypePush, @@ -88,6 +89,7 @@ const { domainToASCII: _domainToASCII, domainToUnicode: _domainToUnicode, parse, + canParse: _canParse, updateUrl, } = internalBinding('url'); @@ -155,13 +157,18 @@ function isURLSearchParams(self) { } class URLSearchParams { + [searchParams] = []; + + // "associated url object" + [context] = null; + // URL Standard says the default value is '', but as undefined and '' have // the same result, undefined is used to prevent unnecessary parsing. // Default parameter is necessary to keep URLSearchParams.length === 0 in // accordance with Web IDL spec. constructor(init = undefined) { - if (init === null || init === undefined) { - this[searchParams] = []; + if (init == null) { + // Do nothing } else if (typeof init === 'object' || typeof init === 'function') { const method = init[SymbolIterator]; if (method === this[SymbolIterator]) { @@ -169,38 +176,55 @@ class URLSearchParams { // shortcut to avoid having to go through the costly generic iterator. const childParams = init[searchParams]; this[searchParams] = childParams.slice(); - } else if (method !== null && method !== undefined) { + } else if (method != null) { + // Sequence> if (typeof method !== 'function') { throw new ERR_ARG_NOT_ITERABLE('Query pairs'); } - // Sequence> - // Note: per spec we have to first exhaust the lists then process them - const pairs = []; + // The following implementationd differs from the URL specification: + // Sequences must first be converted from ECMAScript objects before + // and operations are done on them, and the operation of converting + // the sequences would first exhaust the iterators. If the iterator + // returns something invalid in the middle, whether it would be called + // after that would be an observable change to the users. + // Exhausting the iterator and later converting them to USVString comes + // with a significant cost (~40-80%). In order optimize URLSearchParams + // creation duration, Node.js merges the iteration and converting + // iterations into a single iteration. for (const pair of init) { - if ((typeof pair !== 'object' && typeof pair !== 'function') || - pair === null || - typeof pair[SymbolIterator] !== 'function') { + if (pair == null) { throw new ERR_INVALID_TUPLE('Each query pair', '[name, value]'); - } - const convertedPair = []; - for (const element of pair) - ArrayPrototypePush(convertedPair, toUSVString(element)); - ArrayPrototypePush(pairs, convertedPair); - } + } else if (ArrayIsArray(pair)) { + // If innerSequence's size is not 2, then throw a TypeError. + if (pair.length !== 2) { + throw new ERR_INVALID_TUPLE('Each query pair', '[name, value]'); + } + // Append (innerSequence[0], innerSequence[1]) to querys list. + ArrayPrototypePush(this[searchParams], toUSVString(pair[0]), toUSVString(pair[1])); + } else { + if (((typeof pair !== 'object' && typeof pair !== 'function') || + typeof pair[SymbolIterator] !== 'function')) { + throw new ERR_INVALID_TUPLE('Each query pair', '[name, value]'); + } - this[searchParams] = []; - for (const pair of pairs) { - if (pair.length !== 2) { - throw new ERR_INVALID_TUPLE('Each query pair', '[name, value]'); + let length = 0; + + for (const element of pair) { + length++; + ArrayPrototypePush(this[searchParams], toUSVString(element)); + } + + // If innerSequence's size is not 2, then throw a TypeError. + if (length !== 2) { + throw new ERR_INVALID_TUPLE('Each query pair', '[name, value]'); + } } - ArrayPrototypePush(this[searchParams], pair[0], pair[1]); } } else { // Record // Need to use reflection APIs for full spec compliance. const visited = {}; - this[searchParams] = []; const keys = ReflectOwnKeys(init); for (let i = 0; i < keys.length; i++) { const key = keys[i]; @@ -222,13 +246,10 @@ class URLSearchParams { } } } else { - // USVString + // https://url.spec.whatwg.org/#dom-urlsearchparams-urlsearchparams init = toUSVString(init); this[searchParams] = init ? parseParams(init) : []; } - - // "associated url object" - this[context] = null; } [inspect.custom](recurseTimes, ctx) { @@ -789,6 +810,16 @@ class URL { // If there's an error, it's ignored. } } + + static canParse(url, base = undefined) { + url = `${url}`; + + if (base !== undefined) { + base = `${base}`; + } + + return _canParse(url, base); + } } ObjectDefineProperties(URL.prototype, { @@ -812,6 +843,12 @@ ObjectDefineProperties(URL.prototype, { ObjectDefineProperties(URL, { createObjectURL: kEnumerableProperty, revokeObjectURL: kEnumerableProperty, + canParse: { + __proto__: null, + configurable: true, + writable: true, + enumerable: true, + }, }); // application/x-www-form-urlencoded parser @@ -1126,26 +1163,32 @@ function domainToUnicode(domain) { return _domainToUnicode(`${domain}`); } -// Utility function that converts a URL object into an ordinary -// options object as expected by the http.request and https.request -// APIs. +/** + * Utility function that converts a URL object into an ordinary options object + * as expected by the `http.request` and `https.request` APIs. + * @param {URL} url + * @returns {Record} + */ function urlToHttpOptions(url) { + const { hostname, pathname, port, username, password, search } = url; const options = { + __proto__: null, + ...url, // In case the url object was extended by the user. protocol: url.protocol, - hostname: url.hostname && StringPrototypeStartsWith(url.hostname, '[') ? - StringPrototypeSlice(url.hostname, 1, -1) : - url.hostname, + hostname: hostname && StringPrototypeStartsWith(hostname, '[') ? + StringPrototypeSlice(hostname, 1, -1) : + hostname, hash: url.hash, - search: url.search, - pathname: url.pathname, - path: `${url.pathname || ''}${url.search || ''}`, + search: search, + pathname: pathname, + path: `${pathname || ''}${search || ''}`, href: url.href, }; - if (url.port !== '') { - options.port = Number(url.port); + if (port !== '') { + options.port = Number(port); } - if (url.username || url.password) { - options.auth = `${decodeURIComponent(url.username)}:${decodeURIComponent(url.password)}`; + if (username || password) { + options.auth = `${decodeURIComponent(username)}:${decodeURIComponent(password)}`; } return options; } diff --git a/lib/internal/util/inspect.js b/lib/internal/util/inspect.js index e6db302e9be719..57ffa96c97da40 100644 --- a/lib/internal/util/inspect.js +++ b/lib/internal/util/inspect.js @@ -1243,9 +1243,16 @@ function getStackString(error) { function getStackFrames(ctx, err, stack) { const frames = StringPrototypeSplit(stack, '\n'); + let cause; + try { + ({ cause } = err); + } catch { + // If 'cause' is a getter that throws, ignore it. + } + // Remove stack frames identical to frames in cause. - if (err.cause && isError(err.cause)) { - const causeStack = getStackString(err.cause); + if (cause != null && isError(cause)) { + const causeStack = getStackString(cause); const causeStackStart = StringPrototypeIndexOf(causeStack, '\n at'); if (causeStackStart !== -1) { const causeFrames = StringPrototypeSplit(StringPrototypeSlice(causeStack, causeStackStart + 1), '\n'); diff --git a/lib/repl.js b/lib/repl.js index 241e25f0f2095a..3240a66101474d 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -993,9 +993,8 @@ function REPLServer(prompt, clearPreview(key); if (!reverseSearch(d, key)) { ttyWrite(d, key); - if (key.name !== 'escape') { - showPreview(); - } + const showCompletionPreview = key.name !== 'escape'; + showPreview(showCompletionPreview); } return; } diff --git a/lib/stream.js b/lib/stream.js index 4c105067bae1ca..9a09401e7d016a 100644 --- a/lib/stream.js +++ b/lib/stream.js @@ -42,6 +42,7 @@ const { }, } = require('internal/errors'); const compose = require('internal/streams/compose'); +const { setDefaultHighWaterMark, getDefaultHighWaterMark } = require('internal/streams/state'); const { pipeline } = require('internal/streams/pipeline'); const { destroyer } = require('internal/streams/destroy'); const eos = require('internal/streams/end-of-stream'); @@ -51,9 +52,13 @@ const promises = require('stream/promises'); const utils = require('internal/streams/utils'); const Stream = module.exports = require('internal/streams/legacy').Stream; + +Stream.isDestroyed = utils.isDestroyed; Stream.isDisturbed = utils.isDisturbed; Stream.isErrored = utils.isErrored; Stream.isReadable = utils.isReadable; +Stream.isWritable = utils.isWritable; + Stream.Readable = require('internal/streams/readable'); for (const key of ObjectKeys(streamReturningOperators)) { const op = streamReturningOperators[key]; @@ -101,6 +106,8 @@ Stream.addAbortSignal = addAbortSignal; Stream.finished = eos; Stream.destroy = destroyer; Stream.compose = compose; +Stream.setDefaultHighWaterMark = setDefaultHighWaterMark; +Stream.getDefaultHighWaterMark = getDefaultHighWaterMark; ObjectDefineProperty(Stream, 'promises', { __proto__: null, diff --git a/lib/test/reporters.js b/lib/test/reporters.js new file mode 100644 index 00000000000000..287c07510bc13a --- /dev/null +++ b/lib/test/reporters.js @@ -0,0 +1,38 @@ +'use strict'; + +const { ObjectDefineProperties } = primordials; + +let dot; +let spec; +let tap; + +ObjectDefineProperties(module.exports, { + __proto__: null, + dot: { + __proto__: null, + configurable: true, + enumerable: true, + get() { + dot ??= require('internal/test_runner/reporter/dot'); + return dot; + }, + }, + spec: { + __proto__: null, + configurable: true, + enumerable: true, + get() { + spec ??= require('internal/test_runner/reporter/spec'); + return spec; + }, + }, + tap: { + __proto__: null, + configurable: true, + enumerable: true, + get() { + tap ??= require('internal/test_runner/reporter/tap'); + return tap; + }, + }, +}); diff --git a/lib/url.js b/lib/url.js index 9d2911cdf47f73..de77bda1159197 100644 --- a/lib/url.js +++ b/lib/url.js @@ -62,6 +62,8 @@ const { formatUrl, } = internalBinding('url'); +const { getOptionValue } = require('internal/options'); + // Original url.parse() API function Url() { @@ -146,7 +148,20 @@ const { CHAR_COLON, } = require('internal/constants'); +let urlParseWarned = false; + function urlParse(url, parseQueryString, slashesDenoteHost) { + if (!urlParseWarned && getOptionValue('--pending-deprecation')) { + urlParseWarned = true; + process.emitWarning( + '`url.parse()` behavior is not standardized and prone to ' + + 'errors that have security implications. Use the WHATWG URL API ' + + 'instead. CVEs are not issued for `url.parse()` vulnerabilities.', + 'DeprecationWarning', + 'DEP0169', + ); + } + if (url instanceof Url) return url; const urlObject = new Url(); diff --git a/src/api/environment.cc b/src/api/environment.cc index 0b5c69d381bc6d..f507602c441271 100644 --- a/src/api/environment.cc +++ b/src/api/environment.cc @@ -855,7 +855,9 @@ void AddLinkedBinding(Environment* env, const node_module& mod) { } void AddLinkedBinding(Environment* env, const napi_module& mod) { - AddLinkedBinding(env, napi_module_to_node_module(&mod)); + node_module node_mod = napi_module_to_node_module(&mod); + node_mod.nm_flags = NM_F_LINKED; + AddLinkedBinding(env, node_mod); } void AddLinkedBinding(Environment* env, @@ -876,6 +878,32 @@ void AddLinkedBinding(Environment* env, AddLinkedBinding(env, mod); } +void AddLinkedBinding(Environment* env, + const char* name, + napi_addon_register_func fn) { + node_module mod = { + -1, + NM_F_LINKED, + nullptr, // nm_dso_handle + nullptr, // nm_filename + nullptr, // nm_register_func + [](v8::Local exports, + v8::Local module, + v8::Local context, + void* priv) { + napi_module_register_by_symbol( + exports, + module, + context, + reinterpret_cast(priv)); + }, + name, + reinterpret_cast(fn), + nullptr // nm_link + }; + AddLinkedBinding(env, mod); +} + static std::atomic next_thread_id{0}; ThreadId AllocateEnvironmentThreadId() { diff --git a/src/crypto/crypto_context.cc b/src/crypto/crypto_context.cc index b9f323035ff543..cb03cd7643909f 100644 --- a/src/crypto/crypto_context.cc +++ b/src/crypto/crypto_context.cc @@ -1123,8 +1123,6 @@ void SecureContext::SetClientCertEngine( #endif // !OPENSSL_NO_ENGINE void SecureContext::GetTicketKeys(const FunctionCallbackInfo& args) { -#if !defined(OPENSSL_NO_TLSEXT) && defined(SSL_CTX_get_tlsext_ticket_keys) - SecureContext* wrap; ASSIGN_OR_RETURN_UNWRAP(&wrap, args.Holder()); @@ -1137,11 +1135,9 @@ void SecureContext::GetTicketKeys(const FunctionCallbackInfo& args) { memcpy(Buffer::Data(buff) + 32, wrap->ticket_key_aes_, 16); args.GetReturnValue().Set(buff); -#endif // !def(OPENSSL_NO_TLSEXT) && def(SSL_CTX_get_tlsext_ticket_keys) } void SecureContext::SetTicketKeys(const FunctionCallbackInfo& args) { -#if !defined(OPENSSL_NO_TLSEXT) && defined(SSL_CTX_get_tlsext_ticket_keys) SecureContext* wrap; ASSIGN_OR_RETURN_UNWRAP(&wrap, args.Holder()); @@ -1156,7 +1152,6 @@ void SecureContext::SetTicketKeys(const FunctionCallbackInfo& args) { memcpy(wrap->ticket_key_aes_, buf.data() + 32, 16); args.GetReturnValue().Set(true); -#endif // !def(OPENSSL_NO_TLSEXT) && def(SSL_CTX_get_tlsext_ticket_keys) } // Currently, EnableTicketKeyCallback and TicketKeyCallback are only present for diff --git a/src/crypto/crypto_dsa.cc b/src/crypto/crypto_dsa.cc index 6839283fbf4ca7..3fa4a415dc911a 100644 --- a/src/crypto/crypto_dsa.cc +++ b/src/crypto/crypto_dsa.cc @@ -83,16 +83,12 @@ Maybe DsaKeyGenTraits::AdditionalConfig( const FunctionCallbackInfo& args, unsigned int* offset, DsaKeyPairGenConfig* params) { - Environment* env = Environment::GetCurrent(args); CHECK(args[*offset]->IsUint32()); // modulus bits CHECK(args[*offset + 1]->IsInt32()); // divisor bits params->params.modulus_bits = args[*offset].As()->Value(); params->params.divisor_bits = args[*offset + 1].As()->Value(); - if (params->params.divisor_bits < -1) { - THROW_ERR_OUT_OF_RANGE(env, "invalid value for divisor_bits"); - return Nothing(); - } + CHECK_GE(params->params.divisor_bits, -1); *offset += 2; diff --git a/src/crypto/crypto_random.cc b/src/crypto/crypto_random.cc index 2f9e9aacb1e652..2652b7d8aae17a 100644 --- a/src/crypto/crypto_random.cc +++ b/src/crypto/crypto_random.cc @@ -15,6 +15,7 @@ using v8::ArrayBuffer; using v8::BackingStore; using v8::False; using v8::FunctionCallbackInfo; +using v8::Int32; using v8::Just; using v8::Local; using v8::Maybe; @@ -185,8 +186,6 @@ Maybe CheckPrimeTraits::AdditionalConfig( const FunctionCallbackInfo& args, unsigned int offset, CheckPrimeConfig* params) { - Environment* env = Environment::GetCurrent(args); - ArrayBufferOrViewContents candidate(args[offset]); params->candidate = @@ -195,15 +194,9 @@ Maybe CheckPrimeTraits::AdditionalConfig( candidate.size(), nullptr)); - CHECK(args[offset + 1]->IsUint32()); // Checks - - const int checks = static_cast(args[offset + 1].As()->Value()); - if (checks < 0) { - THROW_ERR_OUT_OF_RANGE(env, "invalid options.checks"); - return Nothing(); - } - - params->checks = checks; + CHECK(args[offset + 1]->IsInt32()); // Checks + params->checks = args[offset + 1].As()->Value(); + CHECK_GE(params->checks, 0); return Just(true); } diff --git a/src/crypto/crypto_x509.cc b/src/crypto/crypto_x509.cc index e1b713644a1fa7..c2d4f44f285398 100644 --- a/src/crypto/crypto_x509.cc +++ b/src/crypto/crypto_x509.cc @@ -136,7 +136,6 @@ MaybeLocal X509Certificate::GetPeerCert( const SSLPointer& ssl, GetPeerCertificateFlag flag) { ClearErrorOnReturn clear_error_on_return; - Local obj; MaybeLocal maybe_cert; bool is_server = diff --git a/src/dataqueue/queue.cc b/src/dataqueue/queue.cc index 260c70ebbf2d98..3eabf425339de5 100644 --- a/src/dataqueue/queue.cc +++ b/src/dataqueue/queue.cc @@ -787,7 +787,7 @@ class FdEntry final : public EntryImpl { public: static std::unique_ptr Create(Environment* env, Local path) { // We're only going to create the FdEntry if the file exists. - uv_fs_t req; + uv_fs_t req = uv_fs_t(); auto cleanup = OnScopeLeave([&] { uv_fs_req_cleanup(&req); }); auto buf = std::make_shared(env->isolate(), path); @@ -849,7 +849,7 @@ class FdEntry final : public EntryImpl { } static bool CheckModified(FdEntry* entry, int fd) { - uv_fs_t req; + uv_fs_t req = uv_fs_t(); auto cleanup = OnScopeLeave([&] { uv_fs_req_cleanup(&req); }); // TODO(jasnell): Note the use of a sync fs call here is a bit unfortunate. // Doing this asynchronously creates a bit of a race condition tho, a file diff --git a/src/env_properties.h b/src/env_properties.h index 65ab65de3ac3fd..9133b8efbd5b74 100644 --- a/src/env_properties.h +++ b/src/env_properties.h @@ -136,6 +136,7 @@ V(frames_received_string, "framesReceived") \ V(frames_sent_string, "framesSent") \ V(function_string, "function") \ + V(get_string, "get") \ V(get_data_clone_error_string, "_getDataCloneError") \ V(get_shared_array_buffer_id_string, "_getSharedArrayBufferId") \ V(gid_string, "gid") \ @@ -269,6 +270,7 @@ V(servername_string, "servername") \ V(service_string, "service") \ V(session_id_string, "sessionId") \ + V(set_string, "set") \ V(shell_string, "shell") \ V(signal_string, "signal") \ V(sink_string, "sink") \ diff --git a/src/inspector/node_string.cc b/src/inspector/node_string.cc index 441d9a352eaca8..171ba04bef113b 100644 --- a/src/inspector/node_string.cc +++ b/src/inspector/node_string.cc @@ -2,6 +2,7 @@ #include "node/inspector/protocol/Protocol.h" #include "node_util.h" #include "simdutf.h" +#include "util-inl.h" namespace node { namespace inspector { diff --git a/src/inspector_agent.cc b/src/inspector_agent.cc index 02842c7e5e792c..bb60e47e9d9cc7 100644 --- a/src/inspector_agent.cc +++ b/src/inspector_agent.cc @@ -248,6 +248,9 @@ class ChannelImpl final : public v8_inspector::V8Inspector::Channel, void dispatchProtocolMessage(const StringView& message) { std::string raw_message = protocol::StringUtil::StringViewToUtf8(message); + per_process::Debug(DebugCategory::INSPECTOR_SERVER, + "[inspector received] %s\n", + raw_message); std::unique_ptr value = protocol::DictionaryValue::cast(protocol::StringUtil::parseMessage( raw_message, false)); @@ -296,6 +299,13 @@ class ChannelImpl final : public v8_inspector::V8Inspector::Channel, void flushProtocolNotifications() override { } void sendMessageToFrontend(const StringView& message) { + if (per_process::enabled_debug_list.enabled( + DebugCategory::INSPECTOR_SERVER)) { + std::string raw_message = protocol::StringUtil::StringViewToUtf8(message); + per_process::Debug(DebugCategory::INSPECTOR_SERVER, + "[inspector send] %s\n", + raw_message); + } delegate_->SendMessageToFrontend(message); } diff --git a/src/inspector_js_api.cc b/src/inspector_js_api.cc index 1602faf1bd66fa..b62bdea9c5e5e1 100644 --- a/src/inspector_js_api.cc +++ b/src/inspector_js_api.cc @@ -123,9 +123,11 @@ class JSBindingsConnection : public AsyncWrap { new JSBindingsConnection(env, info.This(), callback); } + // See https://github.com/nodejs/node/pull/46942 void Disconnect() { + BaseObjectPtr strong_ref{this}; session_.reset(); - delete this; + Detach(); } static void Disconnect(const FunctionCallbackInfo& info) { diff --git a/src/node.cc b/src/node.cc index 6bdcbb3de9064b..924584477dd2a0 100644 --- a/src/node.cc +++ b/src/node.cc @@ -447,6 +447,17 @@ void ResetSignalHandlers() { if (nr == SIGKILL || nr == SIGSTOP) continue; act.sa_handler = (nr == SIGPIPE || nr == SIGXFSZ) ? SIG_IGN : SIG_DFL; + if (act.sa_handler == SIG_DFL) { + // The only bad handler value we can inhert from before exec is SIG_IGN + // (any actual function pointer is reset to SIG_DFL during exec). + // If that's the case, we want to reset it back to SIG_DFL. + // However, it's also possible that an embeder (or an LD_PRELOAD-ed + // library) has set up own signal handler for own purposes + // (e.g. profiling). If that's the case, we want to keep it intact. + struct sigaction old; + CHECK_EQ(0, sigaction(nr, nullptr, &old)); + if ((old.sa_flags & SA_SIGINFO) || old.sa_handler != SIG_IGN) continue; + } CHECK_EQ(0, sigaction(nr, &act, nullptr)); } #endif // __POSIX__ diff --git a/src/node.h b/src/node.h index 5ca2f6d0dc89b7..8f71f923ee4af4 100644 --- a/src/node.h +++ b/src/node.h @@ -75,6 +75,9 @@ #include "v8-platform.h" // NOLINT(build/include_order) #include "node_version.h" // NODE_MODULE_VERSION +#define NAPI_EXPERIMENTAL +#include "node_api.h" + #include #include #include @@ -121,8 +124,6 @@ // Forward-declare libuv loop struct uv_loop_s; -struct napi_module; - // Forward-declare these functions now to stop MSVS from becoming // terminally confused when it's done in node_internals.h namespace node { @@ -1252,6 +1253,9 @@ NODE_EXTERN void AddLinkedBinding(Environment* env, const char* name, addon_context_register_func fn, void* priv); +NODE_EXTERN void AddLinkedBinding(Environment* env, + const char* name, + napi_addon_register_func fn); /* Registers a callback with the passed-in Environment instance. The callback * is called after the event loop exits, but before the VM is disposed. diff --git a/src/node_api.h b/src/node_api.h index caf987dbd8dd8b..4d1b50414e2e02 100644 --- a/src/node_api.h +++ b/src/node_api.h @@ -31,6 +31,7 @@ struct uv_loop_s; // Forward declaration. typedef napi_value(NAPI_CDECL* napi_addon_register_func)(napi_env env, napi_value exports); +// Used by deprecated registration method napi_module_register. typedef struct napi_module { int nm_version; unsigned int nm_flags; @@ -43,70 +44,15 @@ typedef struct napi_module { #define NAPI_MODULE_VERSION 1 -#if defined(_MSC_VER) -#if defined(__cplusplus) -#define NAPI_C_CTOR(fn) \ - static void NAPI_CDECL fn(void); \ - namespace { \ - struct fn##_ { \ - fn##_() { fn(); } \ - } fn##_v_; \ - } \ - static void NAPI_CDECL fn(void) -#else // !defined(__cplusplus) -#pragma section(".CRT$XCU", read) -// The NAPI_C_CTOR macro defines a function fn that is called during CRT -// initialization. -// C does not support dynamic initialization of static variables and this code -// simulates C++ behavior. Exporting the function pointer prevents it from being -// optimized. See for details: -// https://docs.microsoft.com/en-us/cpp/c-runtime-library/crt-initialization?view=msvc-170 -#define NAPI_C_CTOR(fn) \ - static void NAPI_CDECL fn(void); \ - __declspec(dllexport, allocate(".CRT$XCU")) void(NAPI_CDECL * fn##_)(void) = \ - fn; \ - static void NAPI_CDECL fn(void) -#endif // defined(__cplusplus) -#else -#define NAPI_C_CTOR(fn) \ - static void fn(void) __attribute__((constructor)); \ - static void fn(void) -#endif - -#define NAPI_MODULE_X(modname, regfunc, priv, flags) \ - EXTERN_C_START \ - static napi_module _module = { \ - NAPI_MODULE_VERSION, \ - flags, \ - __FILE__, \ - regfunc, \ - #modname, \ - priv, \ - {0}, \ - }; \ - NAPI_C_CTOR(_register_##modname) { napi_module_register(&_module); } \ - EXTERN_C_END - #define NAPI_MODULE_INITIALIZER_X(base, version) \ NAPI_MODULE_INITIALIZER_X_HELPER(base, version) #define NAPI_MODULE_INITIALIZER_X_HELPER(base, version) base##version #ifdef __wasm32__ -#define NAPI_WASM_INITIALIZER \ - NAPI_MODULE_INITIALIZER_X(napi_register_wasm_v, NAPI_MODULE_VERSION) -#define NAPI_MODULE(modname, regfunc) \ - EXTERN_C_START \ - NAPI_MODULE_EXPORT napi_value NAPI_WASM_INITIALIZER(napi_env env, \ - napi_value exports) { \ - return regfunc(env, exports); \ - } \ - EXTERN_C_END +#define NAPI_MODULE_INITIALIZER_BASE napi_register_wasm_v #else -#define NAPI_MODULE(modname, regfunc) \ - NAPI_MODULE_X(modname, regfunc, NULL, 0) // NOLINT (readability/null_usage) -#endif - #define NAPI_MODULE_INITIALIZER_BASE napi_register_module_v +#endif #define NAPI_MODULE_INITIALIZER \ NAPI_MODULE_INITIALIZER_X(NAPI_MODULE_INITIALIZER_BASE, NAPI_MODULE_VERSION) @@ -116,12 +62,24 @@ typedef struct napi_module { NAPI_MODULE_EXPORT napi_value NAPI_MODULE_INITIALIZER(napi_env env, \ napi_value exports); \ EXTERN_C_END \ - NAPI_MODULE(NODE_GYP_MODULE_NAME, NAPI_MODULE_INITIALIZER) \ napi_value NAPI_MODULE_INITIALIZER(napi_env env, napi_value exports) +#define NAPI_MODULE(modname, regfunc) \ + NAPI_MODULE_INIT() { return regfunc(env, exports); } + +// Deprecated. Use NAPI_MODULE. +#define NAPI_MODULE_X(modname, regfunc, priv, flags) \ + NAPI_MODULE(modname, regfunc) + EXTERN_C_START -NAPI_EXTERN void NAPI_CDECL napi_module_register(napi_module* mod); +// Deprecated. Replaced by symbol-based registration defined by NAPI_MODULE +// and NAPI_MODULE_INIT macros. +#if defined(__cplusplus) && __cplusplus >= 201402L +[[deprecated]] +#endif +NAPI_EXTERN void NAPI_CDECL +napi_module_register(napi_module* mod); NAPI_EXTERN NAPI_NO_RETURN void NAPI_CDECL napi_fatal_error(const char* location, diff --git a/src/node_builtins.cc b/src/node_builtins.cc index e9bf8a5a0e0b7e..0350c80ee44026 100644 --- a/src/node_builtins.cc +++ b/src/node_builtins.cc @@ -227,8 +227,7 @@ void BuiltinLoader::AddExternalizedBuiltin(const char* id, auto it = externalized_builtin_sources.find(id); if (it != externalized_builtin_sources.end()) { source = it->second; - } - { + } else { int r = ReadFileSync(&source, filename); if (r != 0) { fprintf(stderr, @@ -256,9 +255,6 @@ bool BuiltinLoader::Add(const char* id, std::string_view utf8source) { return Add(id, UnionBytes(out)); } -// Returns Local of the compiled module if return_code_cache -// is false (we are only compiling the function). -// Otherwise return a Local containing the cache. MaybeLocal BuiltinLoader::LookupAndCompileInternal( Local context, const char* id, @@ -356,9 +352,6 @@ MaybeLocal BuiltinLoader::LookupAndCompileInternal( return scope.Escape(fun); } -// Returns Local of the compiled module if return_code_cache -// is false (we are only compiling the function). -// Otherwise return a Local containing the cache. MaybeLocal BuiltinLoader::LookupAndCompile(Local context, const char* id, Realm* optional_realm) { diff --git a/src/node_contextify.cc b/src/node_contextify.cc index 5aadefd84d6af7..a21acf06a32781 100644 --- a/src/node_contextify.cc +++ b/src/node_contextify.cc @@ -527,9 +527,21 @@ void ContextifyContext::PropertySetterCallback( !is_function) return; - USE(ctx->sandbox()->Set(context, property, value)); - if (is_contextual_store || is_function) { - args.GetReturnValue().Set(value); + if (ctx->sandbox()->Set(context, property, value).IsNothing()) return; + + Local desc; + if (is_declared_on_sandbox && + ctx->sandbox() + ->GetOwnPropertyDescriptor(context, property) + .ToLocal(&desc)) { + Environment* env = Environment::GetCurrent(context); + Local desc_obj = desc.As(); + + // We have to specify the return value for any contextual or get/set + // property + if (desc_obj->HasOwnProperty(context, env->get_string()).FromMaybe(false) || + desc_obj->HasOwnProperty(context, env->set_string()).FromMaybe(false)) + args.GetReturnValue().Set(value); } } diff --git a/src/node_http2.cc b/src/node_http2.cc index 7e8e04f440ae85..26345c429630bf 100644 --- a/src/node_http2.cc +++ b/src/node_http2.cc @@ -1072,8 +1072,7 @@ int Http2Session::OnFrameNotSent(nghttp2_session* handle, // Do not report if the frame was not sent due to the session closing if (error_code == NGHTTP2_ERR_SESSION_CLOSING || error_code == NGHTTP2_ERR_STREAM_CLOSED || - error_code == NGHTTP2_ERR_STREAM_CLOSING || - session->js_fields_->frame_error_listener_count == 0) { + error_code == NGHTTP2_ERR_STREAM_CLOSING) { // Nghttp2 contains header limit of 65536. When this value is exceeded the // pipeline is stopped and we should remove the current headers reference // to destroy the session completely. diff --git a/src/node_options.cc b/src/node_options.cc index e7b0ba1073fbb4..b8685530965c2e 100644 --- a/src/node_options.cc +++ b/src/node_options.cc @@ -569,10 +569,12 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() { &EnvironmentOptions::test_name_pattern); AddOption("--test-reporter", "report test output using the given reporter", - &EnvironmentOptions::test_reporter); + &EnvironmentOptions::test_reporter, + kAllowedInEnvvar); AddOption("--test-reporter-destination", "report given reporter to the given destination", - &EnvironmentOptions::test_reporter_destination); + &EnvironmentOptions::test_reporter_destination, + kAllowedInEnvvar); AddOption("--test-only", "run tests with 'only' option set", &EnvironmentOptions::test_only, diff --git a/src/node_sea.cc b/src/node_sea.cc index 18b661ce4ff31d..fa7fb86b0ed05c 100644 --- a/src/node_sea.cc +++ b/src/node_sea.cc @@ -91,19 +91,13 @@ std::tuple FixupArgsForSEA(int argc, char** argv) { // Repeats argv[0] at position 1 on argv as a replacement for the missing // entry point file path. if (IsSingleExecutable()) { - char** new_argv = new char*[argc + 2]; - int new_argc = 0; - new_argv[new_argc++] = argv[0]; - new_argv[new_argc++] = argv[0]; - - for (int i = 1; i < argc; ++i) { - new_argv[new_argc++] = argv[i]; - } - - new_argv[new_argc] = nullptr; - - argc = new_argc; - argv = new_argv; + static std::vector new_argv; + new_argv.reserve(argc + 2); + new_argv.emplace_back(argv[0]); + new_argv.insert(new_argv.end(), argv, argv + argc); + new_argv.emplace_back(nullptr); + argc = new_argv.size() - 1; + argv = new_argv.data(); } return {argc, argv}; diff --git a/src/node_snapshotable.cc b/src/node_snapshotable.cc index 693fad8dda40fd..0acfc46fe43953 100644 --- a/src/node_snapshotable.cc +++ b/src/node_snapshotable.cc @@ -166,22 +166,19 @@ class SnapshotSerializerDeserializer { V(std::string) #define V(TypeName) \ - if (std::is_same_v) { \ + if constexpr (std::is_same_v) { \ return #TypeName; \ - } + } else // NOLINT(readability/braces) TYPE_LIST(V) #undef V - std::string name; - if (std::is_arithmetic_v) { - if (!std::is_signed_v) { - name += "u"; - } - name += std::is_integral_v ? "int" : "float"; - name += std::to_string(sizeof(T) * 8); - name += "_t"; + if constexpr (std::is_arithmetic_v) { + return (std::is_unsigned_v ? "uint" + : std::is_integral_v ? "int" + : "float") + + std::to_string(sizeof(T) * 8) + "_t"; } - return name; + return ""; } bool is_debug = false; diff --git a/src/node_threadsafe_cow-inl.h b/src/node_threadsafe_cow-inl.h index 875b38766063f6..1cd0055ed8079f 100644 --- a/src/node_threadsafe_cow-inl.h +++ b/src/node_threadsafe_cow-inl.h @@ -7,7 +7,7 @@ namespace node { template T* CopyOnWrite::write() { - if (!data_.unique()) { + if (data_.use_count() > 1l) { data_ = std::make_shared(*data_); } return data_.get(); diff --git a/src/node_url.cc b/src/node_url.cc index 27e8448517a3a4..4089552fe03643 100644 --- a/src/node_url.cc +++ b/src/node_url.cc @@ -93,6 +93,30 @@ void Parse(const FunctionCallbackInfo& args) { args.GetReturnValue().Set(true); } +void CanParse(const FunctionCallbackInfo& args) { + CHECK_GE(args.Length(), 2); + CHECK(args[0]->IsString()); // input + // args[1] // base url + + Environment* env = Environment::GetCurrent(args); + HandleScope handle_scope(env->isolate()); + Context::Scope context_scope(env->context()); + + Utf8Value input(env->isolate(), args[0]); + ada::result base; + ada::url* base_pointer = nullptr; + if (args[1]->IsString()) { + base = ada::parse(Utf8Value(env->isolate(), args[1]).ToString()); + if (!base) { + return args.GetReturnValue().Set(false); + } + base_pointer = &base.value(); + } + ada::result out = ada::parse(input.ToStringView(), base_pointer); + + args.GetReturnValue().Set(out.has_value()); +} + void DomainToASCII(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); CHECK_GE(args.Length(), 1); @@ -285,6 +309,7 @@ void Initialize(Local target, void* priv) { SetMethod(context, target, "parse", Parse); SetMethod(context, target, "updateUrl", UpdateUrl); + SetMethodNoSideEffect(context, target, "canParse", CanParse); SetMethodNoSideEffect(context, target, "formatUrl", FormatUrl); SetMethodNoSideEffect(context, target, "domainToASCII", DomainToASCII); @@ -294,6 +319,7 @@ void Initialize(Local target, void RegisterExternalReferences(ExternalReferenceRegistry* registry) { registry->Register(Parse); + registry->Register(CanParse); registry->Register(UpdateUrl); registry->Register(FormatUrl); diff --git a/src/node_util.cc b/src/node_util.cc index f7467caf899d9c..a069fa2aa1665c 100644 --- a/src/node_util.cc +++ b/src/node_util.cc @@ -262,18 +262,13 @@ void WeakReference::Get(const FunctionCallbackInfo& args) { args.GetReturnValue().Set(weak_ref->target_.Get(isolate)); } -void WeakReference::GetRef(const FunctionCallbackInfo& args) { - WeakReference* weak_ref = Unwrap(args.Holder()); - Isolate* isolate = args.GetIsolate(); - args.GetReturnValue().Set( - v8::Number::New(isolate, weak_ref->reference_count_)); -} - void WeakReference::IncRef(const FunctionCallbackInfo& args) { WeakReference* weak_ref = Unwrap(args.Holder()); weak_ref->reference_count_++; if (weak_ref->target_.IsEmpty()) return; if (weak_ref->reference_count_ == 1) weak_ref->target_.ClearWeak(); + args.GetReturnValue().Set( + v8::Number::New(args.GetIsolate(), weak_ref->reference_count_)); } void WeakReference::DecRef(const FunctionCallbackInfo& args) { @@ -282,6 +277,8 @@ void WeakReference::DecRef(const FunctionCallbackInfo& args) { weak_ref->reference_count_--; if (weak_ref->target_.IsEmpty()) return; if (weak_ref->reference_count_ == 0) weak_ref->target_.SetWeak(); + args.GetReturnValue().Set( + v8::Number::New(args.GetIsolate(), weak_ref->reference_count_)); } static void GuessHandleType(const FunctionCallbackInfo& args) { @@ -365,7 +362,6 @@ void RegisterExternalReferences(ExternalReferenceRegistry* registry) { registry->Register(ArrayBufferViewHasBuffer); registry->Register(WeakReference::New); registry->Register(WeakReference::Get); - registry->Register(WeakReference::GetRef); registry->Register(WeakReference::IncRef); registry->Register(WeakReference::DecRef); registry->Register(GuessHandleType); @@ -457,7 +453,6 @@ void Initialize(Local target, WeakReference::kInternalFieldCount); weak_ref->Inherit(BaseObject::GetConstructorTemplate(env)); SetProtoMethod(isolate, weak_ref, "get", WeakReference::Get); - SetProtoMethod(isolate, weak_ref, "getRef", WeakReference::GetRef); SetProtoMethod(isolate, weak_ref, "incRef", WeakReference::IncRef); SetProtoMethod(isolate, weak_ref, "decRef", WeakReference::DecRef); SetConstructorFunction(context, target, "WeakReference", weak_ref); diff --git a/src/node_util.h b/src/node_util.h index fa0faa618a61bc..715686856db879 100644 --- a/src/node_util.h +++ b/src/node_util.h @@ -21,7 +21,6 @@ class WeakReference : public SnapshotableObject { v8::Local target); static void New(const v8::FunctionCallbackInfo& args); static void Get(const v8::FunctionCallbackInfo& args); - static void GetRef(const v8::FunctionCallbackInfo& args); static void IncRef(const v8::FunctionCallbackInfo& args); static void DecRef(const v8::FunctionCallbackInfo& args); diff --git a/src/node_version.h b/src/node_version.h index cec1d4b6e07b38..a31c3c1a5234b1 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 19 -#define NODE_MINOR_VERSION 8 -#define NODE_PATCH_VERSION 2 +#define NODE_MINOR_VERSION 9 +#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/test/cctest/test_linked_binding.cc b/test/cctest/test_linked_binding.cc index 7e40068b5db799..1a4e6a838b5d72 100644 --- a/test/cctest/test_linked_binding.cc +++ b/test/cctest/test_linked_binding.cc @@ -1,19 +1,19 @@ -#include "node_test_fixture.h" #include "node_api.h" +#include "node_test_fixture.h" void InitializeBinding(v8::Local exports, v8::Local module, v8::Local context, void* priv) { v8::Isolate* isolate = context->GetIsolate(); - exports->Set( - context, - v8::String::NewFromOneByte(isolate, - reinterpret_cast("key")) - .ToLocalChecked(), - v8::String::NewFromOneByte(isolate, - reinterpret_cast("value")) - .ToLocalChecked()) + exports + ->Set(context, + v8::String::NewFromOneByte(isolate, + reinterpret_cast("key")) + .ToLocalChecked(), + v8::String::NewFromOneByte( + isolate, reinterpret_cast("value")) + .ToLocalChecked()) .FromJust(); } @@ -24,18 +24,18 @@ class LinkedBindingTest : public EnvironmentTestFixture {}; TEST_F(LinkedBindingTest, SimpleTest) { const v8::HandleScope handle_scope(isolate_); const Argv argv; - Env test_env {handle_scope, argv}; + Env test_env{handle_scope, argv}; v8::Local context = isolate_->GetCurrentContext(); - const char* run_script = - "process._linkedBinding('cctest_linkedbinding').key"; - v8::Local script = v8::Script::Compile( - context, - v8::String::NewFromOneByte(isolate_, - reinterpret_cast(run_script)) - .ToLocalChecked()) - .ToLocalChecked(); + const char* run_script = "process._linkedBinding('cctest_linkedbinding').key"; + v8::Local script = + v8::Script::Compile( + context, + v8::String::NewFromOneByte( + isolate_, reinterpret_cast(run_script)) + .ToLocalChecked()) + .ToLocalChecked(); v8::Local completion_value = script->Run(context).ToLocalChecked(); v8::String::Utf8Value utf8val(isolate_, completion_value); CHECK_NOT_NULL(*utf8val); @@ -48,35 +48,35 @@ void InitializeLocalBinding(v8::Local exports, void* priv) { ++*static_cast(priv); v8::Isolate* isolate = context->GetIsolate(); - exports->Set( - context, - v8::String::NewFromOneByte(isolate, - reinterpret_cast("key")) - .ToLocalChecked(), - v8::String::NewFromOneByte(isolate, - reinterpret_cast("value")) - .ToLocalChecked()) + exports + ->Set(context, + v8::String::NewFromOneByte(isolate, + reinterpret_cast("key")) + .ToLocalChecked(), + v8::String::NewFromOneByte( + isolate, reinterpret_cast("value")) + .ToLocalChecked()) .FromJust(); } TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingTest) { const v8::HandleScope handle_scope(isolate_); const Argv argv; - Env test_env {handle_scope, argv}; + Env test_env{handle_scope, argv}; int calls = 0; AddLinkedBinding(*test_env, "local_linked", InitializeLocalBinding, &calls); v8::Local context = isolate_->GetCurrentContext(); - const char* run_script = - "process._linkedBinding('local_linked').key"; - v8::Local script = v8::Script::Compile( - context, - v8::String::NewFromOneByte(isolate_, - reinterpret_cast(run_script)) - .ToLocalChecked()) - .ToLocalChecked(); + const char* run_script = "process._linkedBinding('local_linked').key"; + v8::Local script = + v8::Script::Compile( + context, + v8::String::NewFromOneByte( + isolate_, reinterpret_cast(run_script)) + .ToLocalChecked()) + .ToLocalChecked(); v8::Local completion_value = script->Run(context).ToLocalChecked(); v8::String::Utf8Value utf8val(isolate_, completion_value); CHECK_NOT_NULL(*utf8val); @@ -86,41 +86,64 @@ TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingTest) { napi_value InitializeLocalNapiBinding(napi_env env, napi_value exports) { napi_value key, value; - CHECK_EQ( - napi_create_string_utf8(env, "hello", NAPI_AUTO_LENGTH, &key), napi_ok); - CHECK_EQ( - napi_create_string_utf8(env, "world", NAPI_AUTO_LENGTH, &value), napi_ok); + CHECK_EQ(napi_create_string_utf8(env, "hello", NAPI_AUTO_LENGTH, &key), + napi_ok); + CHECK_EQ(napi_create_string_utf8(env, "world", NAPI_AUTO_LENGTH, &value), + napi_ok); CHECK_EQ(napi_set_property(env, exports, key, value), napi_ok); return nullptr; } static napi_module local_linked_napi = { - NAPI_MODULE_VERSION, - node::ModuleFlags::kLinked, - nullptr, - InitializeLocalNapiBinding, - "local_linked_napi", - nullptr, - {0}, + NAPI_MODULE_VERSION, + node::ModuleFlags::kLinked, + nullptr, + InitializeLocalNapiBinding, + "local_linked_napi", + nullptr, + {0}, }; TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingNapiTest) { const v8::HandleScope handle_scope(isolate_); const Argv argv; - Env test_env {handle_scope, argv}; + Env test_env{handle_scope, argv}; AddLinkedBinding(*test_env, local_linked_napi); v8::Local context = isolate_->GetCurrentContext(); - const char* run_script = - "process._linkedBinding('local_linked_napi').hello"; - v8::Local script = v8::Script::Compile( - context, - v8::String::NewFromOneByte(isolate_, - reinterpret_cast(run_script)) - .ToLocalChecked()) - .ToLocalChecked(); + const char* run_script = "process._linkedBinding('local_linked_napi').hello"; + v8::Local script = + v8::Script::Compile( + context, + v8::String::NewFromOneByte( + isolate_, reinterpret_cast(run_script)) + .ToLocalChecked()) + .ToLocalChecked(); + v8::Local completion_value = script->Run(context).ToLocalChecked(); + v8::String::Utf8Value utf8val(isolate_, completion_value); + CHECK_NOT_NULL(*utf8val); + CHECK_EQ(strcmp(*utf8val, "world"), 0); +} + +TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingNapiCallbackTest) { + const v8::HandleScope handle_scope(isolate_); + const Argv argv; + Env test_env{handle_scope, argv}; + + AddLinkedBinding(*test_env, "local_linked_napi", InitializeLocalNapiBinding); + + v8::Local context = isolate_->GetCurrentContext(); + + const char* run_script = "process._linkedBinding('local_linked_napi').hello"; + v8::Local script = + v8::Script::Compile( + context, + v8::String::NewFromOneByte( + isolate_, reinterpret_cast(run_script)) + .ToLocalChecked()) + .ToLocalChecked(); v8::Local completion_value = script->Run(context).ToLocalChecked(); v8::String::Utf8Value utf8val(isolate_, completion_value); CHECK_NOT_NULL(*utf8val); @@ -129,33 +152,32 @@ TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingNapiTest) { napi_value NapiLinkedWithInstanceData(napi_env env, napi_value exports) { int* instance_data = new int(0); - CHECK_EQ( - napi_set_instance_data( - env, - instance_data, - [](napi_env env, void* data, void* hint) { - ++*static_cast(data); - }, nullptr), - napi_ok); + CHECK_EQ(napi_set_instance_data( + env, + instance_data, + [](napi_env env, void* data, void* hint) { + ++*static_cast(data); + }, + nullptr), + napi_ok); napi_value key, value; - CHECK_EQ( - napi_create_string_utf8(env, "hello", NAPI_AUTO_LENGTH, &key), napi_ok); - CHECK_EQ( - napi_create_external(env, instance_data, nullptr, nullptr, &value), - napi_ok); + CHECK_EQ(napi_create_string_utf8(env, "hello", NAPI_AUTO_LENGTH, &key), + napi_ok); + CHECK_EQ(napi_create_external(env, instance_data, nullptr, nullptr, &value), + napi_ok); CHECK_EQ(napi_set_property(env, exports, key, value), napi_ok); return nullptr; } static napi_module local_linked_napi_id = { - NAPI_MODULE_VERSION, - node::ModuleFlags::kLinked, - nullptr, - NapiLinkedWithInstanceData, - "local_linked_napi_id", - nullptr, - {0}, + NAPI_MODULE_VERSION, + node::ModuleFlags::kLinked, + nullptr, + NapiLinkedWithInstanceData, + "local_linked_napi_id", + nullptr, + {0}, }; TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingNapiInstanceDataTest) { @@ -164,7 +186,7 @@ TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingNapiInstanceDataTest) { { const Argv argv; - Env test_env {handle_scope, argv}; + Env test_env{handle_scope, argv}; AddLinkedBinding(*test_env, local_linked_napi_id); @@ -172,17 +194,54 @@ TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingNapiInstanceDataTest) { const char* run_script = "process._linkedBinding('local_linked_napi_id').hello"; - v8::Local script = v8::Script::Compile( - context, - v8::String::NewFromOneByte(isolate_, - reinterpret_cast(run_script)) - .ToLocalChecked()) - .ToLocalChecked(); + v8::Local script = + v8::Script::Compile( + context, + v8::String::NewFromOneByte( + isolate_, reinterpret_cast(run_script)) + .ToLocalChecked()) + .ToLocalChecked(); v8::Local completion_value = script->Run(context).ToLocalChecked(); CHECK(completion_value->IsExternal()); - instance_data = static_cast( - completion_value.As()->Value()); + instance_data = + static_cast(completion_value.As()->Value()); + CHECK_NE(instance_data, nullptr); + CHECK_EQ(*instance_data, 0); + } + + CHECK_EQ(*instance_data, 1); + delete instance_data; +} + +TEST_F(LinkedBindingTest, + LocallyDefinedLinkedBindingNapiCallbackInstanceDataTest) { + const v8::HandleScope handle_scope(isolate_); + int* instance_data = nullptr; + + { + const Argv argv; + Env test_env{handle_scope, argv}; + + AddLinkedBinding( + *test_env, "local_linked_napi_id", NapiLinkedWithInstanceData); + + v8::Local context = isolate_->GetCurrentContext(); + + const char* run_script = + "process._linkedBinding('local_linked_napi_id').hello"; + v8::Local script = + v8::Script::Compile( + context, + v8::String::NewFromOneByte( + isolate_, reinterpret_cast(run_script)) + .ToLocalChecked()) + .ToLocalChecked(); + v8::Local completion_value = + script->Run(context).ToLocalChecked(); + CHECK(completion_value->IsExternal()); + instance_data = + static_cast(completion_value.As()->Value()); CHECK_NE(instance_data, nullptr); CHECK_EQ(*instance_data, 0); } @@ -194,7 +253,7 @@ TEST_F(LinkedBindingTest, LocallyDefinedLinkedBindingNapiInstanceDataTest) { TEST_F(LinkedBindingTest, ManyBindingsTest) { const v8::HandleScope handle_scope(isolate_); const Argv argv; - Env test_env {handle_scope, argv}; + Env test_env{handle_scope, argv}; int calls = 0; AddLinkedBinding(*test_env, "local_linked1", InitializeLocalBinding, &calls); @@ -209,16 +268,16 @@ TEST_F(LinkedBindingTest, ManyBindingsTest) { const char* run_script = "for (let i = 1; i <= 5; i++)process._linkedBinding(`local_linked${i}`);" "process._linkedBinding('local_linked_napi').hello"; - v8::Local script = v8::Script::Compile( - context, - v8::String::NewFromOneByte(isolate_, - reinterpret_cast(run_script)) - .ToLocalChecked()) - .ToLocalChecked(); + v8::Local script = + v8::Script::Compile( + context, + v8::String::NewFromOneByte( + isolate_, reinterpret_cast(run_script)) + .ToLocalChecked()) + .ToLocalChecked(); v8::Local completion_value = script->Run(context).ToLocalChecked(); v8::String::Utf8Value utf8val(isolate_, completion_value); CHECK_NOT_NULL(*utf8val); CHECK_EQ(strcmp(*utf8val, "world"), 0); CHECK_EQ(calls, 5); } - diff --git a/test/common/wpt.js b/test/common/wpt.js index 57c409f5cc8a0f..342324182138ea 100644 --- a/test/common/wpt.js +++ b/test/common/wpt.js @@ -10,6 +10,8 @@ const os = require('os'); const { inspect } = require('util'); const { Worker } = require('worker_threads'); +const workerPath = path.join(__dirname, 'wpt/worker.js'); + function getBrowserProperties() { const { node: version } = process.versions; // e.g. 18.13.0, 20.0.0-nightly202302078e6e215481 const release = /^\d+\.\d+\.\d+$/.test(version); @@ -57,7 +59,8 @@ function codeUnitStr(char) { } class WPTReport { - constructor() { + constructor(path) { + this.filename = `report-${path.replaceAll('/', '-')}.json`; this.results = []; this.time_start = Date.now(); } @@ -96,26 +99,18 @@ class WPTReport { return result; }); - if (fs.existsSync('out/wpt/wptreport.json')) { - const prev = JSON.parse(fs.readFileSync('out/wpt/wptreport.json')); - this.results = [...prev.results, ...this.results]; - this.time_start = prev.time_start; - this.time_end = Math.max(this.time_end, prev.time_end); - this.run_info = prev.run_info; - } else { - /** - * Return required and some optional properties - * https://github.com/web-platform-tests/wpt.fyi/blob/60da175/api/README.md?plain=1#L331-L335 - */ - this.run_info = { - product: 'node.js', - ...getBrowserProperties(), - revision: process.env.WPT_REVISION || 'unknown', - os: getOs(), - }; - } + /** + * Return required and some optional properties + * https://github.com/web-platform-tests/wpt.fyi/blob/60da175/api/README.md?plain=1#L331-L335 + */ + this.run_info = { + product: 'node.js', + ...getBrowserProperties(), + revision: process.env.WPT_REVISION || 'unknown', + os: getOs(), + }; - fs.writeFileSync('out/wpt/wptreport.json', JSON.stringify(this)); + fs.writeFileSync(`out/wpt/${this.filename}`, JSON.stringify(this)); } } @@ -402,6 +397,29 @@ const kIncomplete = 'incomplete'; const kUncaught = 'uncaught'; const NODE_UNCAUGHT = 100; +const limit = (concurrency) => { + let running = 0; + const queue = []; + + const execute = async (fn) => { + if (running < concurrency) { + running++; + try { + await fn(); + } finally { + running--; + if (queue.length > 0) { + execute(queue.shift()); + } + } + } else { + queue.push(fn); + } + }; + + return execute; +}; + class WPTRunner { constructor(path) { this.path = path; @@ -425,7 +443,7 @@ class WPTRunner { this.scriptsModifier = null; if (process.env.WPT_REPORT != null) { - this.report = new WPTReport(); + this.report = new WPTReport(path); } } @@ -543,6 +561,8 @@ class WPTRunner { this.inProgress = new Set(queue.map((spec) => spec.filename)); + const run = limit(os.availableParallelism()); + for (const spec of queue) { const testFileName = spec.filename; const content = spec.getContent(); @@ -576,15 +596,7 @@ class WPTRunner { this.scriptsModifier?.(obj); scriptsToRun.push(obj); - /** - * Example test with no META variant - * https://github.com/nodejs/node/blob/03854f6/test/fixtures/wpt/WebCryptoAPI/sign_verify/hmac.https.any.js#L1-L4 - * - * Example test with multiple META variants - * https://github.com/nodejs/node/blob/03854f6/test/fixtures/wpt/WebCryptoAPI/generateKey/successes_RSASSA-PKCS1-v1_5.https.any.js#L1-L9 - */ - for (const variant of meta.variant || ['']) { - const workerPath = path.join(__dirname, 'wpt/worker.js'); + const runWorker = async (variant) => { const worker = new Worker(workerPath, { execArgv: this.flags, workerData: { @@ -635,6 +647,17 @@ class WPTRunner { }); await events.once(worker, 'exit').catch(() => {}); + }; + + /** + * Example test with no META variant + * https://github.com/nodejs/node/blob/03854f6/test/fixtures/wpt/WebCryptoAPI/sign_verify/hmac.https.any.js#L1-L4 + * + * Example test with multiple META variants + * https://github.com/nodejs/node/blob/03854f6/test/fixtures/wpt/WebCryptoAPI/generateKey/successes_RSASSA-PKCS1-v1_5.https.any.js#L1-L9 + */ + for (const variant of meta.variant || ['']) { + run(() => runWorker(variant)); } } diff --git a/test/doctool/testcfg.py b/test/doctool/testcfg.py index 5778d2f0c5ba5a..33a274a43d6451 100644 --- a/test/doctool/testcfg.py +++ b/test/doctool/testcfg.py @@ -4,4 +4,4 @@ import testpy def GetConfiguration(context, root): - return testpy.SimpleTestConfiguration(context, root, 'doctool') + return testpy.ParallelTestConfiguration(context, root, 'doctool') diff --git a/test/embedding/embedtest.cc b/test/embedding/embedtest.cc index bd639368acdf86..3592ccb9813228 100644 --- a/test/embedding/embedtest.cc +++ b/test/embedding/embedtest.cc @@ -75,7 +75,7 @@ int RunNodeInstance(MultiIsolatePlatform* platform, if (snapshot_as_file_it != args.end()) { snapshot = node::EmbedderSnapshotData::FromFile(fp); } else { - uv_fs_t req; + uv_fs_t req = uv_fs_t(); int statret = uv_fs_stat(nullptr, &req, filename, nullptr); assert(statret == 0); size_t filesize = req.statbuf.st_size; diff --git a/test/fixtures/tz-version.txt b/test/fixtures/tz-version.txt index b74fa117a22328..7daa77e00d9977 100644 --- a/test/fixtures/tz-version.txt +++ b/test/fixtures/tz-version.txt @@ -1 +1 @@ -2022g +2023c diff --git a/test/fixtures/wpt/README.md b/test/fixtures/wpt/README.md index 8919af5a7c484c..3f4c7dc79e134d 100644 --- a/test/fixtures/wpt/README.md +++ b/test/fixtures/wpt/README.md @@ -27,11 +27,11 @@ Last update: - resource-timing: https://github.com/web-platform-tests/wpt/tree/22d38586d0/resource-timing - resources: https://github.com/web-platform-tests/wpt/tree/919874f84f/resources - streams: https://github.com/web-platform-tests/wpt/tree/51750bc8d7/streams -- url: https://github.com/web-platform-tests/wpt/tree/1eaeb0e178/url +- url: https://github.com/web-platform-tests/wpt/tree/7c5c3cc125/url - user-timing: https://github.com/web-platform-tests/wpt/tree/df24fb604e/user-timing -- wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/d8dbe6990b/wasm/jsapi +- wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/cde25e7e3c/wasm/jsapi - wasm/webapi: https://github.com/web-platform-tests/wpt/tree/fd1b23eeaa/wasm/webapi -- WebCryptoAPI: https://github.com/web-platform-tests/wpt/tree/ee30029d47/WebCryptoAPI +- WebCryptoAPI: https://github.com/web-platform-tests/wpt/tree/188993d46b/WebCryptoAPI - webidl/ecmascript-binding/es-exceptions: https://github.com/web-platform-tests/wpt/tree/a370aad338/webidl/ecmascript-binding/es-exceptions - webmessaging/broadcastchannel: https://github.com/web-platform-tests/wpt/tree/e97fac4791/webmessaging/broadcastchannel diff --git a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.js b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.js index afa7db845faaee..c1837591ee85d4 100644 --- a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.js +++ b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.js @@ -1,4 +1,5 @@ // META: title=WebCryptoAPI: deriveBits() Using ECDH with CFRG Elliptic Curves +// META: script=cfrg_curves_bits_fixtures.js // META: script=cfrg_curves_bits.js // Define subtests from a `promise_test` to ensure the harness does not diff --git a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.js b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.js index 9a824ce9514b60..4e12ca0eb711fa 100644 --- a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.js +++ b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.js @@ -3,25 +3,34 @@ function define_tests() { // May want to test prefixed implementations. var subtle = self.crypto.subtle; - var pkcs8 = { - "X25519": new Uint8Array([48, 46, 2, 1, 0, 48, 5, 6, 3, 43, 101, 110, 4, 34, 4, 32, 200, 131, 142, 118, 208, 87, 223, 183, 216, 201, 90, 105, 225, 56, 22, 10, 221, 99, 115, 253, 113, 164, 210, 118, 187, 86, 227, 168, 27, 100, 255, 97]), - "X448": new Uint8Array([48, 70, 2, 1, 0, 48, 5, 6, 3, 43, 101, 111, 4, 58, 4, 56, 88, 199, 210, 154, 62, 181, 25, 178, 157, 0, 207, 177, 145, 187, 100, 252, 109, 138, 66, 216, 241, 113, 118, 39, 43, 137, 242, 39, 45, 24, 25, 41, 92, 101, 37, 192, 130, 150, 113, 176, 82, 239, 7, 39, 83, 15, 24, 142, 49, 208, 204, 83, 191, 38, 146, 158]) - }; - - var spki = { - "X25519": new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 28, 242, 177, 230, 2, 46, 197, 55, 55, 30, 215, 245, 62, 84, 250, 17, 84, 216, 62, 152, 235, 100, 234, 81, 250, 229, 179, 48, 124, 254, 151, 6]), - "X448": new Uint8Array([48, 66, 48, 5, 6, 3, 43, 101, 111, 3, 57, 0, 182, 4, 161, 209, 165, 205, 29, 148, 38, 213, 97, 239, 99, 10, 158, 177, 108, 190, 105, 213, 185, 202, 97, 94, 220, 83, 99, 62, 251, 82, 234, 49, 230, 230, 160, 161, 219, 172, 198, 231, 108, 188, 230, 72, 45, 126, 75, 163, 213, 93, 158, 128, 39, 101, 206, 111]) - }; - - var sizes = { - "X25519": 32, - "X448": 56 - }; - - var derivations = { - "X25519": new Uint8Array([39, 104, 64, 157, 250, 185, 158, 194, 59, 140, 137, 185, 63, 245, 136, 2, 149, 247, 97, 118, 8, 143, 137, 228, 61, 254, 190, 126, 161, 149, 0, 8]), - "X448": new Uint8Array([240, 246, 197, 241, 127, 148, 244, 41, 30, 171, 113, 120, 134, 109, 55, 236, 137, 6, 221, 108, 81, 65, 67, 220, 133, 190, 124, 242, 141, 239, 243, 155, 114, 110, 15, 109, 207, 129, 14, 181, 148, 220, 169, 123, 72, 130, 189, 68, 196, 62, 167, 220, 103, 244, 154, 78]) - }; + // Verify the derive functions perform checks against the all-zero value results, + // ensuring small-order points are rejected. + // https://www.rfc-editor.org/rfc/rfc7748#section-6.1 + // TODO: The spec states that the check must be done on use, but there is discussion about doing it on import. + // https://github.com/WICG/webcrypto-secure-curves/pull/13 + Object.keys(kSmallOrderPoint).forEach(function(algorithmName) { + kSmallOrderPoint[algorithmName].forEach(function(test) { + promise_test(async() => { + let derived; + let privateKey; + let publicKey; + try { + privateKey = await subtle.importKey("pkcs8", pkcs8[algorithmName], + {name: algorithmName}, + false, ["deriveBits", "deriveKey"]); + publicKey = await subtle.importKey("spki", test.vector, + {name: algorithmName}, + false, []) + derived = await subtle.deriveBits({name: algorithmName, public: publicKey}, privateKey, 8 * sizes[algorithmName]); + } catch (err) { + assert_false(privateKey === undefined, "Private key should be valid."); + assert_false(publicKey === undefined, "Public key should be valid."); + assert_equals(err.name, "OperationError", "Should throw correct error, not " + err.name + ": " + err.message + "."); + } + assert_equals(derived, undefined, "Operation succeeded, but should not have."); + }, algorithmName + " key derivation checks for all-zero value result with a key of order " + test.order); + }); + }); return importKeys(pkcs8, spki, sizes) .then(function(results) { diff --git a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits_fixtures.js b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits_fixtures.js new file mode 100644 index 00000000000000..ffdeb51eab9700 --- /dev/null +++ b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits_fixtures.js @@ -0,0 +1,37 @@ +var pkcs8 = { + "X25519": new Uint8Array([48, 46, 2, 1, 0, 48, 5, 6, 3, 43, 101, 110, 4, 34, 4, 32, 200, 131, 142, 118, 208, 87, 223, 183, 216, 201, 90, 105, 225, 56, 22, 10, 221, 99, 115, 253, 113, 164, 210, 118, 187, 86, 227, 168, 27, 100, 255, 97]), + "X448": new Uint8Array([48, 70, 2, 1, 0, 48, 5, 6, 3, 43, 101, 111, 4, 58, 4, 56, 88, 199, 210, 154, 62, 181, 25, 178, 157, 0, 207, 177, 145, 187, 100, 252, 109, 138, 66, 216, 241, 113, 118, 39, 43, 137, 242, 39, 45, 24, 25, 41, 92, 101, 37, 192, 130, 150, 113, 176, 82, 239, 7, 39, 83, 15, 24, 142, 49, 208, 204, 83, 191, 38, 146, 158]) +}; + +var spki = { + "X25519": new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 28, 242, 177, 230, 2, 46, 197, 55, 55, 30, 215, 245, 62, 84, 250, 17, 84, 216, 62, 152, 235, 100, 234, 81, 250, 229, 179, 48, 124, 254, 151, 6]), + "X448": new Uint8Array([48, 66, 48, 5, 6, 3, 43, 101, 111, 3, 57, 0, 182, 4, 161, 209, 165, 205, 29, 148, 38, 213, 97, 239, 99, 10, 158, 177, 108, 190, 105, 213, 185, 202, 97, 94, 220, 83, 99, 62, 251, 82, 234, 49, 230, 230, 160, 161, 219, 172, 198, 231, 108, 188, 230, 72, 45, 126, 75, 163, 213, 93, 158, 128, 39, 101, 206, 111]) +}; + +var sizes = { + "X25519": 32, + "X448": 56 +}; + +var derivations = { + "X25519": new Uint8Array([39, 104, 64, 157, 250, 185, 158, 194, 59, 140, 137, 185, 63, 245, 136, 2, 149, 247, 97, 118, 8, 143, 137, 228, 61, 254, 190, 126, 161, 149, 0, 8]), + "X448": new Uint8Array([240, 246, 197, 241, 127, 148, 244, 41, 30, 171, 113, 120, 134, 109, 55, 236, 137, 6, 221, 108, 81, 65, 67, 220, 133, 190, 124, 242, 141, 239, 243, 155, 114, 110, 15, 109, 207, 129, 14, 181, 148, 220, 169, 123, 72, 130, 189, 68, 196, 62, 167, 220, 103, 244, 154, 78]) +}; + +var kSmallOrderPoint = { + "X25519": [ + { order: "0", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }, + { order: "1", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }, + { order: "8", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 224, 235, 122, 124, 59, 65, 184, 174, 22, 86, 227, 250, 241, 159, 196, 106, 218, 9, 141, 235, 156, 50, 177, 253, 134, 98, 5, 22, 95, 73, 184, 0]) }, + { order: "p-1 (order 2)", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 236, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 127]) }, + { order: "p (=0, order 4)", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 237, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 127]) }, + { order: "p+1 (=1, order 1)", vector : new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 238, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 127]) }, + ], + "X448": [ + { order: "0", vector : new Uint8Array([48, 66, 48, 5, 6, 3, 43, 101, 111, 3, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }, + { order: "1", vector : new Uint8Array([48, 66, 48, 5, 6, 3, 43, 101, 111, 3, 57, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }, + { order: "p-1 (order 2)", vector : new Uint8Array([48, 66, 48, 5, 6, 3, 43, 101, 111, 3, 57, 0, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255]) }, + { order: "p (=0, order 4)", vector : new Uint8Array([48, 66, 48, 5, 6, 3, 43, 101, 111, 3, 57, 0, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255]) }, + { order: "p+1 (=1, order 1)", vector : new Uint8Array([48, 66, 48, 5, 6, 3, 43, 101, 111, 3, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255]) }, + ] +}; diff --git a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.https.any.js b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.https.any.js index 71fe87d9a874b7..96658a56e81da9 100644 --- a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.https.any.js +++ b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.https.any.js @@ -1,4 +1,5 @@ // META: title=WebCryptoAPI: deriveKey() Using ECDH with CFRG Elliptic Curves +// META: script=cfrg_curves_bits_fixtures.js // META: script=cfrg_curves_keys.js // Define subtests from a `promise_test` to ensure the harness does not diff --git a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.js b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.js index 1e8e9d48d394ad..81244ba05a8766 100644 --- a/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.js +++ b/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_keys.js @@ -3,25 +3,50 @@ function define_tests() { // May want to test prefixed implementations. var subtle = self.crypto.subtle; - var pkcs8 = { - "X25519": new Uint8Array([48, 46, 2, 1, 0, 48, 5, 6, 3, 43, 101, 110, 4, 34, 4, 32, 200, 131, 142, 118, 208, 87, 223, 183, 216, 201, 90, 105, 225, 56, 22, 10, 221, 99, 115, 253, 113, 164, 210, 118, 187, 86, 227, 168, 27, 100, 255, 97]), - "X448": new Uint8Array([48, 70, 2, 1, 0, 48, 5, 6, 3, 43, 101, 111, 4, 58, 4, 56, 88, 199, 210, 154, 62, 181, 25, 178, 157, 0, 207, 177, 145, 187, 100, 252, 109, 138, 66, 216, 241, 113, 118, 39, 43, 137, 242, 39, 45, 24, 25, 41, 92, 101, 37, 192, 130, 150, 113, 176, 82, 239, 7, 39, 83, 15, 24, 142, 49, 208, 204, 83, 191, 38, 146, 158]) - }; - - var spki = { - "X25519": new Uint8Array([48, 42, 48, 5, 6, 3, 43, 101, 110, 3, 33, 0, 28, 242, 177, 230, 2, 46, 197, 55, 55, 30, 215, 245, 62, 84, 250, 17, 84, 216, 62, 152, 235, 100, 234, 81, 250, 229, 179, 48, 124, 254, 151, 6]), - "X448": new Uint8Array([48, 66, 48, 5, 6, 3, 43, 101, 111, 3, 57, 0, 182, 4, 161, 209, 165, 205, 29, 148, 38, 213, 97, 239, 99, 10, 158, 177, 108, 190, 105, 213, 185, 202, 97, 94, 220, 83, 99, 62, 251, 82, 234, 49, 230, 230, 160, 161, 219, 172, 198, 231, 108, 188, 230, 72, 45, 126, 75, 163, 213, 93, 158, 128, 39, 101, 206, 111]) - }; - - var sizes = { - "X25519": 32, - "X448": 56 - }; - - var derivations = { - "X25519": new Uint8Array([39, 104, 64, 157, 250, 185, 158, 194, 59, 140, 137, 185, 63, 245, 136, 2, 149, 247, 97, 118, 8, 143, 137, 228, 61, 254, 190, 126, 161, 149, 0, 8]), - "X448": new Uint8Array([240, 246, 197, 241, 127, 148, 244, 41, 30, 171, 113, 120, 134, 109, 55, 236, 137, 6, 221, 108, 81, 65, 67, 220, 133, 190, 124, 242, 141, 239, 243, 155, 114, 110, 15, 109, 207, 129, 14, 181, 148, 220, 169, 123, 72, 130, 189, 68, 196, 62, 167, 220, 103, 244, 154, 78]) - }; + // Verify the derive functions perform checks against the all-zero value results, + // ensuring small-order points are rejected. + // https://www.rfc-editor.org/rfc/rfc7748#section-6.1 + // TODO: The spec states that the check must be done on use, but there is discussion about doing it on import. + // https://github.com/WICG/webcrypto-secure-curves/pull/13 + Object.keys(kSmallOrderPoint).forEach(function(algorithmName) { + kSmallOrderPoint[algorithmName].forEach(function(test) { + promise_test(async() => { + let derived; + let privateKey; + let publicKey; + try { + privateKey = await subtle.importKey("pkcs8", pkcs8[algorithmName], + {name: algorithmName}, + false, ["deriveBits", "deriveKey"]); + publicKey = await subtle.importKey("spki", test.vector, + {name: algorithmName}, + false, []) + derived = await subtle.deriveKey({name: algorithmName, public: publicKey}, privateKey, + {name: "HMAC", hash: "SHA-256", length: 256}, true, + ["sign", "verify"]); + } catch (err) { + assert_false(privateKey === undefined, "Private key should be valid."); + assert_false(publicKey === undefined, "Public key should be valid."); + assert_equals(err.name, "OperationError", "Should throw correct error, not " + err.name + ": " + err.message + "."); + } + assert_equals(derived, undefined, "Operation succeeded, but should not have."); + }, algorithmName + " deriveBits checks for all-zero value result with a key of order " + test.order); + }); + }); + + // Ensure the keys generated by each algorithm are valid for key derivation. + Object.keys(sizes).forEach(function(algorithmName) { + promise_test(async() => { + let derived; + try { + let key = await subtle.generateKey({name: algorithmName}, true, ["deriveKey", "deriveBits"]); + derived = await subtle.deriveKey({name: algorithmName, public: key.publicKey}, key.privateKey, {name: "HMAC", hash: "SHA-256", length: 256}, true, ["sign", "verify"]); + } catch (err) { + assert_unreached("Threw an unexpected error: " + err.toString() + " -"); + } + assert_false (derived === undefined, "Key derivation failed."); + }, "Key derivation using a " + algorithmName + " generated keys."); + }); return importKeys(pkcs8, spki, sizes) .then(function(results) { diff --git a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures.js b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures.js index 4e2d717595127b..a5cc08a01e9fc1 100644 --- a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures.js +++ b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures.js @@ -99,7 +99,7 @@ function run_test(algorithmNames) { } function validUsages(usages, format, data) { - if (format === 'spki') return usages.publicUsages + if (format === 'spki' || format === 'raw') return usages.publicUsages if (format === 'pkcs8') return usages.privateUsages if (format === 'jwk') { if (data === undefined) diff --git a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_Ed25519.https.any.js b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_Ed25519.https.any.js index 7d6ec6171c3e8f..7453a3a55052b3 100644 --- a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_Ed25519.https.any.js +++ b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_Ed25519.https.any.js @@ -15,6 +15,10 @@ var validKeyData = [ format: "pkcs8", data: new Uint8Array([48, 46, 2, 1, 0, 48, 5, 6, 3, 43, 101, 112, 4, 34, 4, 32, 243, 200, 244, 196, 141, 248, 120, 20, 110, 140, 211, 191, 109, 244, 229, 14, 56, 155, 167, 7, 78, 21, 194, 53, 45, 205, 93, 48, 141, 76, 168, 31]) }, + { + format: "raw", + data: new Uint8Array([216, 225, 137, 99, 216, 9, 212, 135, 217, 84, 154, 204, 174, 198, 116, 46, 126, 235, 162, 77, 138, 13, 59, 20, 183, 227, 202, 234, 6, 137, 61, 204]) + }, { format: "jwk", data: { @@ -44,6 +48,10 @@ var badKeyLengthData = [ format: "pkcs8", data: new Uint8Array([48, 46, 2, 1, 0, 48, 5, 6, 3, 43, 101, 112, 4, 34, 4, 32, 243, 200, 244, 196, 141, 248, 120, 20, 110, 140, 211, 191, 109, 244, 229, 14, 56, 155, 167, 7, 78, 21, 194, 53, 45, 205, 93, 48, 141, 76, 168]) }, + { + format: "raw", + data: new Uint8Array([216, 225, 137, 99, 216, 9, 212, 135, 217, 84, 154, 204, 174, 198, 116, 46, 126, 235, 162, 77, 138, 13, 59, 20, 183, 227, 202, 234, 6, 137, 61]) + }, { format: "jwk", data: { diff --git a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_Ed448.https.any.js b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_Ed448.https.any.js index 1035800fafa394..db2d47827af329 100644 --- a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_Ed448.https.any.js +++ b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_Ed448.https.any.js @@ -15,6 +15,10 @@ var validKeyData = [ format: "pkcs8", data: new Uint8Array([48, 71, 2, 1, 0, 48, 5, 6, 3, 43, 101, 113, 4, 59, 4, 57, 14, 255, 3, 69, 140, 40, 224, 23, 156, 82, 29, 227, 18, 201, 105, 183, 131, 67, 72, 236, 171, 153, 26, 96, 227, 178, 233, 167, 158, 76, 217, 228, 128, 239, 41, 23, 18, 210, 200, 61, 4, 114, 114, 213, 201, 244, 40, 102, 79, 105, 109, 38, 112, 69, 143, 29, 46]), }, + { + format: "raw", + data: new Uint8Array([171, 75, 184, 133, 253, 125, 44, 90, 242, 78, 131, 113, 12, 255, 160, 199, 74, 87, 226, 116, 128, 29, 178, 5, 123, 11, 220, 94, 160, 50, 182, 254, 107, 199, 139, 128, 69, 54, 90, 235, 38, 232, 110, 31, 20, 253, 52, 157, 7, 196, 132, 149, 245, 164, 106, 90, 128]), + }, { format: "jwk", data: { @@ -44,6 +48,10 @@ var badKeyLengthData = [ format: "pkcs8", data: new Uint8Array([48, 71, 2, 1, 0, 48, 5, 6, 3, 43, 101, 113, 4, 59, 4, 57, 14, 255, 3, 69, 140, 40, 224, 23, 156, 82, 29, 227, 18, 201, 105, 183, 131, 67, 72, 236, 171, 153, 26, 96, 227, 178, 233, 167, 158, 76, 217, 228, 128, 239, 41, 23, 18, 210, 200, 61, 4, 114, 114, 213, 201, 244, 40, 102, 79, 105, 109, 38, 112, 69, 143, 29]), }, + { + format: "raw", + data: new Uint8Array([171, 75, 184, 133, 253, 125, 44, 90, 242, 78, 131, 113, 12, 255, 160, 199, 74, 87, 226, 116, 128, 29, 178, 5, 123, 11, 220, 94, 160, 50, 182, 254, 107, 199, 139, 128, 69, 54, 90, 235, 38, 232, 110, 31, 20, 253, 52, 157, 7, 196, 132, 149, 245, 164, 106, 90]), + }, { format: "jwk", data: { diff --git a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_X25519.https.any.js b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_X25519.https.any.js index fe5fd54da53d2d..d4d099f7656033 100644 --- a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_X25519.https.any.js +++ b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_X25519.https.any.js @@ -15,6 +15,10 @@ var validKeyData = [ format: "pkcs8", data: new Uint8Array([48, 46, 2, 1, 0, 48, 5, 6, 3, 43, 101, 110, 4, 34, 4, 32, 200, 131, 142, 118, 208, 87, 223, 183, 216, 201, 90, 105, 225, 56, 22, 10, 221, 99, 115, 253, 113, 164, 210, 118, 187, 86, 227, 168, 27, 100, 255, 97]), }, + { + format: "raw", + data: new Uint8Array([28, 242, 177, 230, 2, 46, 197, 55, 55, 30, 215, 245, 62, 84, 250, 17, 84, 216, 62, 152, 235, 100, 234, 81, 250, 229, 179, 48, 124, 254, 151, 6]), + }, { format: "jwk", data: { @@ -44,6 +48,10 @@ var badKeyLengthData = [ format: "pkcs8", data: new Uint8Array([48, 46, 2, 1, 0, 48, 5, 6, 3, 43, 101, 110, 4, 34, 4, 32, 200, 131, 142, 118, 208, 87, 223, 183, 216, 201, 90, 105, 225, 56, 22, 10, 221, 99, 115, 253, 113, 164, 210, 118, 187, 86, 227, 168, 27, 100, 255]), }, + { + format: "raw", + data: new Uint8Array([28, 242, 177, 230, 2, 46, 197, 55, 55, 30, 215, 245, 62, 84, 250, 17, 84, 216, 62, 152, 235, 100, 234, 81, 250, 229, 179, 48, 124, 254, 151]), + }, { format: "jwk", data: { diff --git a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_X448.https.any.js b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_X448.https.any.js index 9e3b05c48ad55f..d8ac902e672566 100644 --- a/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_X448.https.any.js +++ b/test/fixtures/wpt/WebCryptoAPI/import_export/okp_importKey_failures_X448.https.any.js @@ -15,6 +15,10 @@ var validKeyData = [ format: "pkcs8", data: new Uint8Array([48, 70, 2, 1, 0, 48, 5, 6, 3, 43, 101, 111, 4, 58, 4, 56, 88, 199, 210, 154, 62, 181, 25, 178, 157, 0, 207, 177, 145, 187, 100, 252, 109, 138, 66, 216, 241, 113, 118, 39, 43, 137, 242, 39, 45, 24, 25, 41, 92, 101, 37, 192, 130, 150, 113, 176, 82, 239, 7, 39, 83, 15, 24, 142, 49, 208, 204, 83, 191, 38, 146, 158]), }, + { + format: "raw", + data: new Uint8Array([182, 4, 161, 209, 165, 205, 29, 148, 38, 213, 97, 239, 99, 10, 158, 177, 108, 190, 105, 213, 185, 202, 97, 94, 220, 83, 99, 62, 251, 82, 234, 49, 230, 230, 160, 161, 219, 172, 198, 231, 108, 188, 230, 72, 45, 126, 75, 163, 213, 93, 158, 128, 39, 101, 206, 111]), + }, { format: "jwk", data: { @@ -44,6 +48,10 @@ var badKeyLengthData = [ format: "pkcs8", data: new Uint8Array([48, 70, 2, 1, 0, 48, 5, 6, 3, 43, 101, 111, 4, 58, 4, 56, 88, 199, 210, 154, 62, 181, 25, 178, 157, 0, 207, 177, 145, 187, 100, 252, 109, 138, 66, 216, 241, 113, 118, 39, 43, 137, 242, 39, 45, 24, 25, 41, 92, 101, 37, 192, 130, 150, 113, 176, 82, 239, 7, 39, 83, 15, 24, 142, 49, 208, 204, 83, 191, 38, 146]), }, + { + format: "raw", + data: new Uint8Array([182, 4, 161, 209, 165, 205, 29, 148, 38, 213, 97, 239, 99, 10, 158, 177, 108, 190, 105, 213, 185, 202, 97, 94, 220, 83, 99, 62, 251, 82, 234, 49, 230, 230, 160, 161, 219, 172, 198, 231, 108, 188, 230, 72, 45, 126, 75, 163, 213, 93, 158, 128, 39, 101, 206]), + }, { format: "jwk", data: { diff --git a/test/fixtures/wpt/url/javascript-urls.window.js b/test/fixtures/wpt/url/javascript-urls.window.js new file mode 100644 index 00000000000000..4f617beca17082 --- /dev/null +++ b/test/fixtures/wpt/url/javascript-urls.window.js @@ -0,0 +1,63 @@ +// The results of this test are all over the map due to browsers behaving very differently for +// javascript: URLs. +// +// Chromium is pretty close execution-wise, but it parses javascript: URLs incorrectly. +// Gecko navigates to non-string return values of the result of executing a javascript: URL. +// WebKit executes javascript: URLs too early and has a harness error due to URL parsing. +// +// The expectations below should match the HTML and URL standards. +[ + { + "description": "javascript: URL that fails to parse due to invalid host", + "input": "javascript://test:test/%0aglobalThis.shouldNotExistA=1", + "property": "shouldNotExistA", + "expected": undefined + }, + { + "description": "javascript: URL that fails to parse due to invalid host and has a U+0009 in scheme", + "input": "java\x09script://test:test/%0aglobalThis.shouldNotExistB=1", + "property": "shouldNotExistB", + "expected": undefined + }, + { + "description": "javascript: URL without an opaque path", + "input": "javascript://host/1%0a//../0/;globalThis.shouldBeOne=1;/%0aglobalThis.shouldBeOne=2;/..///", + "property": "shouldBeOne", + "expected": 1 + }, + { + "description": "javascript: URL containing a JavaScript string split over path and query", + // Use ";undefined" to avoid returning a string. + "input": "javascript:globalThis.shouldBeAStringA = \"https://whatsoever.com/?a=b&c=5&x=y\";undefined", + "property": "shouldBeAStringA", + "expected": "https://whatsoever.com/?a=b&c=5&x=y" + }, + { + "description": "javascript: URL containing a JavaScript string split over path and query and has a U+000A in scheme", + // Use ";undefined" to avoid returning a string. + "input": "java\x0Ascript:globalThis.shouldBeAStringB = \"https://whatsoever.com/?a=b&c=5&x=y\";undefined", + "property": "shouldBeAStringB", + "expected": "https://whatsoever.com/?a=b&c=5&x=y" + } +].forEach(({ description, input, property, expected }) => { + // Use promise_test so the tests run in sequence. Needed for globalThis.verify below. + promise_test(t => { + const anchor = document.body.appendChild(document.createElement("a")); + t.add_cleanup(() => anchor.remove()); + anchor.href = input; + assert_equals(globalThis[property], undefined, "Property is undefined before the click"); + anchor.click(); + assert_equals(globalThis[property], undefined, "Property is undefined immediately after the click"); + + // Since we cannot reliably queue a task to run after the task queued as a result of the click() + // above, we do another click() with a new URL. + return new Promise(resolve => { + globalThis.verify = t.step_func(() => { + assert_equals(globalThis[property], expected, `Property is ${expected} once the navigation happened`); + resolve(); + }); + anchor.href = "javascript:globalThis.verify()"; + anchor.click(); + }); + }, description); +}); diff --git a/test/fixtures/wpt/url/resources/setters_tests.json b/test/fixtures/wpt/url/resources/setters_tests.json index d040d081c6d467..347caf49ab0520 100644 --- a/test/fixtures/wpt/url/resources/setters_tests.json +++ b/test/fixtures/wpt/url/resources/setters_tests.json @@ -1061,6 +1061,42 @@ "host": "", "hostname": "" } + }, + { + "href": "https://example.com/", + "new_value": "a%C2%ADb", + "expected": { + "href": "https://ab/", + "host": "ab", + "hostname": "ab" + } + }, + { + "href": "https://example.com/", + "new_value": "\u00AD", + "expected": { + "href": "https://example.com/", + "host": "example.com", + "hostname": "example.com" + } + }, + { + "href": "https://example.com/", + "new_value": "%C2%AD", + "expected": { + "href": "https://example.com/", + "host": "example.com", + "hostname": "example.com" + } + }, + { + "href": "https://example.com/", + "new_value": "xn--", + "expected": { + "href": "https://example.com/", + "host": "example.com", + "hostname": "example.com" + } } ], "hostname": [ @@ -1436,6 +1472,42 @@ "host": "", "hostname": "" } + }, + { + "href": "https://example.com/", + "new_value": "a%C2%ADb", + "expected": { + "href": "https://ab/", + "host": "ab", + "hostname": "ab" + } + }, + { + "href": "https://example.com/", + "new_value": "\u00AD", + "expected": { + "href": "https://example.com/", + "host": "example.com", + "hostname": "example.com" + } + }, + { + "href": "https://example.com/", + "new_value": "%C2%AD", + "expected": { + "href": "https://example.com/", + "host": "example.com", + "hostname": "example.com" + } + }, + { + "href": "https://example.com/", + "new_value": "xn--", + "expected": { + "href": "https://example.com/", + "host": "example.com", + "hostname": "example.com" + } } ], "port": [ diff --git a/test/fixtures/wpt/url/resources/toascii.json b/test/fixtures/wpt/url/resources/toascii.json index 4cb41e94cd4a0f..bca28b4a1e454a 100644 --- a/test/fixtures/wpt/url/resources/toascii.json +++ b/test/fixtures/wpt/url/resources/toascii.json @@ -160,23 +160,6 @@ "input": "a\u00ADb", "output": "ab" }, - { - "input": "a%C2%ADb", - "output": "ab" - }, - { - "comment": "Empty host after domain to ASCII", - "input": "\u00AD", - "output": null - }, - { - "input": "%C2%AD", - "output": null - }, - { - "input": "xn--", - "output": null - }, { "comment": "Interesting UseSTD3ASCIIRules=false cases", "input": "≠", diff --git a/test/fixtures/wpt/url/resources/urltestdata.json b/test/fixtures/wpt/url/resources/urltestdata.json index 19f9ecddbee187..a3cf976534cce6 100644 --- a/test/fixtures/wpt/url/resources/urltestdata.json +++ b/test/fixtures/wpt/url/resources/urltestdata.json @@ -8892,5 +8892,457 @@ "protocol": "https:", "search": "", "username": "" + }, + { + "input": "https://a%C2%ADb/", + "base": "about:blank", + "hash": "", + "host": "ab", + "hostname": "ab", + "href": "https://ab/", + "origin": "https://ab", + "password": "", + "pathname": "/", + "port": "", + "protocol": "https:", + "search": "", + "username": "" + }, + { + "comment": "Empty host after domain to ASCII", + "input": "https://\u00AD/", + "base": "about:blank", + "failure": true + }, + { + "input": "https://%C2%AD/", + "base": "about:blank", + "failure": true + }, + { + "input": "https://xn--/", + "base": "about:blank", + "failure": true + }, + "Non-special schemes that some implementations might incorrectly treat as special", + { + "input": "data://example.com:8080/pathname?search#hash", + "base": "about:blank", + "href": "data://example.com:8080/pathname?search#hash", + "origin": "null", + "protocol": "data:", + "username": "", + "password": "", + "host": "example.com:8080", + "hostname": "example.com", + "port": "8080", + "pathname": "/pathname", + "search": "?search", + "hash": "#hash" + }, + { + "input": "data:///test", + "base": "about:blank", + "href": "data:///test", + "origin": "null", + "protocol": "data:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "/test", + "search": "", + "hash": "" + }, + { + "input": "data://test/a/../b", + "base": "about:blank", + "href": "data://test/b", + "origin": "null", + "protocol": "data:", + "username": "", + "password": "", + "host": "test", + "hostname": "test", + "port": "", + "pathname": "/b", + "search": "", + "hash": "" + }, + { + "input": "data://:443", + "base": "about:blank", + "failure": true + }, + { + "input": "data://test:test", + "base": "about:blank", + "failure": true + }, + { + "input": "data://[:1]", + "base": "about:blank", + "failure": true + }, + { + "input": "javascript://example.com:8080/pathname?search#hash", + "base": "about:blank", + "href": "javascript://example.com:8080/pathname?search#hash", + "origin": "null", + "protocol": "javascript:", + "username": "", + "password": "", + "host": "example.com:8080", + "hostname": "example.com", + "port": "8080", + "pathname": "/pathname", + "search": "?search", + "hash": "#hash" + }, + { + "input": "javascript:///test", + "base": "about:blank", + "href": "javascript:///test", + "origin": "null", + "protocol": "javascript:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "/test", + "search": "", + "hash": "" + }, + { + "input": "javascript://test/a/../b", + "base": "about:blank", + "href": "javascript://test/b", + "origin": "null", + "protocol": "javascript:", + "username": "", + "password": "", + "host": "test", + "hostname": "test", + "port": "", + "pathname": "/b", + "search": "", + "hash": "" + }, + { + "input": "javascript://:443", + "base": "about:blank", + "failure": true + }, + { + "input": "javascript://test:test", + "base": "about:blank", + "failure": true + }, + { + "input": "javascript://[:1]", + "base": "about:blank", + "failure": true + }, + { + "input": "mailto://example.com:8080/pathname?search#hash", + "base": "about:blank", + "href": "mailto://example.com:8080/pathname?search#hash", + "origin": "null", + "protocol": "mailto:", + "username": "", + "password": "", + "host": "example.com:8080", + "hostname": "example.com", + "port": "8080", + "pathname": "/pathname", + "search": "?search", + "hash": "#hash" + }, + { + "input": "mailto:///test", + "base": "about:blank", + "href": "mailto:///test", + "origin": "null", + "protocol": "mailto:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "/test", + "search": "", + "hash": "" + }, + { + "input": "mailto://test/a/../b", + "base": "about:blank", + "href": "mailto://test/b", + "origin": "null", + "protocol": "mailto:", + "username": "", + "password": "", + "host": "test", + "hostname": "test", + "port": "", + "pathname": "/b", + "search": "", + "hash": "" + }, + { + "input": "mailto://:443", + "base": "about:blank", + "failure": true + }, + { + "input": "mailto://test:test", + "base": "about:blank", + "failure": true + }, + { + "input": "mailto://[:1]", + "base": "about:blank", + "failure": true + }, + { + "input": "intent://example.com:8080/pathname?search#hash", + "base": "about:blank", + "href": "intent://example.com:8080/pathname?search#hash", + "origin": "null", + "protocol": "intent:", + "username": "", + "password": "", + "host": "example.com:8080", + "hostname": "example.com", + "port": "8080", + "pathname": "/pathname", + "search": "?search", + "hash": "#hash" + }, + { + "input": "intent:///test", + "base": "about:blank", + "href": "intent:///test", + "origin": "null", + "protocol": "intent:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "/test", + "search": "", + "hash": "" + }, + { + "input": "intent://test/a/../b", + "base": "about:blank", + "href": "intent://test/b", + "origin": "null", + "protocol": "intent:", + "username": "", + "password": "", + "host": "test", + "hostname": "test", + "port": "", + "pathname": "/b", + "search": "", + "hash": "" + }, + { + "input": "intent://:443", + "base": "about:blank", + "failure": true + }, + { + "input": "intent://test:test", + "base": "about:blank", + "failure": true + }, + { + "input": "intent://[:1]", + "base": "about:blank", + "failure": true + }, + { + "input": "urn://example.com:8080/pathname?search#hash", + "base": "about:blank", + "href": "urn://example.com:8080/pathname?search#hash", + "origin": "null", + "protocol": "urn:", + "username": "", + "password": "", + "host": "example.com:8080", + "hostname": "example.com", + "port": "8080", + "pathname": "/pathname", + "search": "?search", + "hash": "#hash" + }, + { + "input": "urn:///test", + "base": "about:blank", + "href": "urn:///test", + "origin": "null", + "protocol": "urn:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "/test", + "search": "", + "hash": "" + }, + { + "input": "urn://test/a/../b", + "base": "about:blank", + "href": "urn://test/b", + "origin": "null", + "protocol": "urn:", + "username": "", + "password": "", + "host": "test", + "hostname": "test", + "port": "", + "pathname": "/b", + "search": "", + "hash": "" + }, + { + "input": "urn://:443", + "base": "about:blank", + "failure": true + }, + { + "input": "urn://test:test", + "base": "about:blank", + "failure": true + }, + { + "input": "urn://[:1]", + "base": "about:blank", + "failure": true + }, + { + "input": "turn://example.com:8080/pathname?search#hash", + "base": "about:blank", + "href": "turn://example.com:8080/pathname?search#hash", + "origin": "null", + "protocol": "turn:", + "username": "", + "password": "", + "host": "example.com:8080", + "hostname": "example.com", + "port": "8080", + "pathname": "/pathname", + "search": "?search", + "hash": "#hash" + }, + { + "input": "turn:///test", + "base": "about:blank", + "href": "turn:///test", + "origin": "null", + "protocol": "turn:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "/test", + "search": "", + "hash": "" + }, + { + "input": "turn://test/a/../b", + "base": "about:blank", + "href": "turn://test/b", + "origin": "null", + "protocol": "turn:", + "username": "", + "password": "", + "host": "test", + "hostname": "test", + "port": "", + "pathname": "/b", + "search": "", + "hash": "" + }, + { + "input": "turn://:443", + "base": "about:blank", + "failure": true + }, + { + "input": "turn://test:test", + "base": "about:blank", + "failure": true + }, + { + "input": "turn://[:1]", + "base": "about:blank", + "failure": true + }, + { + "input": "stun://example.com:8080/pathname?search#hash", + "base": "about:blank", + "href": "stun://example.com:8080/pathname?search#hash", + "origin": "null", + "protocol": "stun:", + "username": "", + "password": "", + "host": "example.com:8080", + "hostname": "example.com", + "port": "8080", + "pathname": "/pathname", + "search": "?search", + "hash": "#hash" + }, + { + "input": "stun:///test", + "base": "about:blank", + "href": "stun:///test", + "origin": "null", + "protocol": "stun:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "/test", + "search": "", + "hash": "" + }, + { + "input": "stun://test/a/../b", + "base": "about:blank", + "href": "stun://test/b", + "origin": "null", + "protocol": "stun:", + "username": "", + "password": "", + "host": "test", + "hostname": "test", + "port": "", + "pathname": "/b", + "search": "", + "hash": "" + }, + { + "input": "stun://:443", + "base": "about:blank", + "failure": true + }, + { + "input": "stun://test:test", + "base": "about:blank", + "failure": true + }, + { + "input": "stun://[:1]", + "base": "about:blank", + "failure": true } ] diff --git a/test/fixtures/wpt/url/url-statics-canparse.any.js b/test/fixtures/wpt/url/url-statics-canparse.any.js new file mode 100644 index 00000000000000..c87fcb4f56fcdd --- /dev/null +++ b/test/fixtures/wpt/url/url-statics-canparse.any.js @@ -0,0 +1,42 @@ +// This intentionally does not use resources/urltestdata.json to preserve resources. +[ + { + "url": undefined, + "base": undefined, + "expected": false + }, + { + "url": "a:b", + "base": undefined, + "expected": true + }, + { + "url": undefined, + "base": "a:b", + "expected": false + }, + { + "url": "a:/b", + "base": undefined, + "expected": true + }, + { + "url": undefined, + "base": "a:/b", + "expected": true + }, + { + "url": "https://test:test", + "base": undefined, + "expected": false + }, + { + "url": "a", + "base": "https://b/", + "expected": true + } +].forEach(({ url, base, expected }) => { + test(() => { + assert_equals(URL.canParse(url, base), expected); + }, `URL.canParse(${url}, ${base})`); +}); diff --git a/test/fixtures/wpt/url/urlencoded-parser.any.js b/test/fixtures/wpt/url/urlencoded-parser.any.js index 46b932bb014364..847465cb9214e1 100644 --- a/test/fixtures/wpt/url/urlencoded-parser.any.js +++ b/test/fixtures/wpt/url/urlencoded-parser.any.js @@ -2,6 +2,7 @@ { "input": "test", "output": [["test", ""]] }, { "input": "\uFEFFtest=\uFEFF", "output": [["\uFEFFtest", "\uFEFF"]] }, { "input": "%EF%BB%BFtest=%EF%BB%BF", "output": [["\uFEFFtest", "\uFEFF"]] }, + { "input": "%EF%BF%BF=%EF%BF%BF", "output": [["\uFFFF", "\uFFFF"]] }, { "input": "%FE%FF", "output": [["\uFFFD\uFFFD", ""]] }, { "input": "%FF%FE", "output": [["\uFFFD\uFFFD", ""]] }, { "input": "†&†=x", "output": [["†", ""], ["†", "x"]] }, diff --git a/test/fixtures/wpt/versions.json b/test/fixtures/wpt/versions.json index 5b907c709a9bed..6b9c6cb80a4659 100644 --- a/test/fixtures/wpt/versions.json +++ b/test/fixtures/wpt/versions.json @@ -68,7 +68,7 @@ "path": "streams" }, "url": { - "commit": "1eaeb0e178b14078bd730ffecd62cb7569315523", + "commit": "7c5c3cc125979b4768d414471e6ab655b473aae8", "path": "url" }, "user-timing": { @@ -76,7 +76,7 @@ "path": "user-timing" }, "wasm/jsapi": { - "commit": "d8dbe6990bed03ec03beee25069a9347d4c3d6d5", + "commit": "cde25e7e3c3b9d2280eb088a3fb9da988793d255", "path": "wasm/jsapi" }, "wasm/webapi": { @@ -84,7 +84,7 @@ "path": "wasm/webapi" }, "WebCryptoAPI": { - "commit": "ee30029d47cf9f7cf8f71fe851b4c29903edf851", + "commit": "188993d46b95c9c0414ba2cef8751f5e19d3d498", "path": "WebCryptoAPI" }, "webidl/ecmascript-binding/es-exceptions": { diff --git a/test/fixtures/wpt/wasm/jsapi/exception/basic.tentative.any.js b/test/fixtures/wpt/wasm/jsapi/exception/basic.tentative.any.js index 9ddebae0e968a2..acf644f904f53d 100644 --- a/test/fixtures/wpt/wasm/jsapi/exception/basic.tentative.any.js +++ b/test/fixtures/wpt/wasm/jsapi/exception/basic.tentative.any.js @@ -14,11 +14,11 @@ promise_test(async () => { const kWasmAnyRef = 0x6f; const kSig_v_r = makeSig([kWasmAnyRef], []); const builder = new WasmModuleBuilder(); - const except = builder.addException(kSig_v_r); + const tagIndex = builder.addTag(kSig_v_r); builder.addFunction("throw_param", kSig_v_r) .addBody([ kExprLocalGet, 0, - kExprThrow, except, + kExprThrow, tagIndex, ]) .exportFunc(); const buffer = builder.toBuffer(); @@ -45,11 +45,11 @@ promise_test(async () => { promise_test(async () => { const builder = new WasmModuleBuilder(); - const except = builder.addException(kSig_v_a); + const tagIndex = builder.addTag(kSig_v_a); builder.addFunction("throw_null", kSig_v_v) .addBody([ kExprRefNull, kWasmAnyFunc, - kExprThrow, except, + kExprThrow, tagIndex, ]) .exportFunc(); const buffer = builder.toBuffer(); @@ -59,11 +59,11 @@ promise_test(async () => { promise_test(async () => { const builder = new WasmModuleBuilder(); - const except = builder.addException(kSig_v_i); + const tagIndex = builder.addTag(kSig_v_i); builder.addFunction("throw_int", kSig_v_v) .addBody([ ...wasmI32Const(7), - kExprThrow, except, + kExprThrow, tagIndex, ]) .exportFunc(); const buffer = builder.toBuffer(); @@ -74,12 +74,12 @@ promise_test(async () => { promise_test(async () => { const builder = new WasmModuleBuilder(); const fnIndex = builder.addImport("module", "fn", kSig_v_v); - const except = builder.addException(kSig_v_r); + const tagIndex= builder.addTag(kSig_v_r); builder.addFunction("catch_exception", kSig_r_v) .addBody([ kExprTry, kWasmStmt, kExprCallFunction, fnIndex, - kExprCatch, except, + kExprCatch, tagIndex, kExprReturn, kExprEnd, kExprRefNull, kWasmAnyRef, diff --git a/test/fixtures/wpt/wasm/jsapi/exception/constructor.tentative.any.js b/test/fixtures/wpt/wasm/jsapi/exception/constructor.tentative.any.js index 0fd47b455e023c..7ad08e1883ba13 100644 --- a/test/fixtures/wpt/wasm/jsapi/exception/constructor.tentative.any.js +++ b/test/fixtures/wpt/wasm/jsapi/exception/constructor.tentative.any.js @@ -18,8 +18,8 @@ test(() => { }, "No arguments"); test(() => { - const argument = new WebAssembly.Tag({ parameters: [] }); - assert_throws_js(TypeError, () => WebAssembly.Exception(argument)); + const tag = new WebAssembly.Tag({ parameters: [] }); + assert_throws_js(TypeError, () => WebAssembly.Exception(tag)); }, "Calling"); test(() => { @@ -53,10 +53,10 @@ test(() => { ["i64", undefined], ]; for (const typeAndArg of typesAndArgs) { - const exn = new WebAssembly.Tag({ parameters: [typeAndArg[0]] }); + const tag = new WebAssembly.Tag({ parameters: [typeAndArg[0]] }); assert_throws_js( TypeError, - () => new WebAssembly.Exception(exn, typeAndArg[1]) + () => new WebAssembly.Exception(tag, typeAndArg[1]) ); } }, "Invalid exception argument"); diff --git a/test/fixtures/wpt/wasm/jsapi/exception/getArg.tentative.any.js b/test/fixtures/wpt/wasm/jsapi/exception/getArg.tentative.any.js index ecd2fbd42fd18a..f0a568a857f0e7 100644 --- a/test/fixtures/wpt/wasm/jsapi/exception/getArg.tentative.any.js +++ b/test/fixtures/wpt/wasm/jsapi/exception/getArg.tentative.any.js @@ -20,7 +20,7 @@ test(() => { test(() => { const tag = new WebAssembly.Tag({ parameters: [] }); const exn = new WebAssembly.Exception(tag, []); - assert_throws_js(TypeError, () => exn.getArg(tag, 1)); + assert_throws_js(RangeError, () => exn.getArg(tag, 1)); }, "Index out of bounds"); test(() => { @@ -43,7 +43,7 @@ test(() => { const tag = new WebAssembly.Tag({ parameters: [] }); const exn = new WebAssembly.Exception(tag, []); for (const value of outOfRangeValues) { - assert_throws_js(TypeError, () => exn.getArg(tag, value)); + assert_throws_js(RangeError, () => exn.getArg(tag, value)); } }, "Getting out-of-range argument"); diff --git a/test/fixtures/wpt/wasm/jsapi/exception/identity.tentative.any.js b/test/fixtures/wpt/wasm/jsapi/exception/identity.tentative.any.js new file mode 100644 index 00000000000000..65787c107e3c29 --- /dev/null +++ b/test/fixtures/wpt/wasm/jsapi/exception/identity.tentative.any.js @@ -0,0 +1,61 @@ +// META: global=window,dedicatedworker,jsshell +// META: script=/wasm/jsapi/assertions.js +// META: script=/wasm/jsapi/wasm-module-builder.js + +test(() => { + const tag = new WebAssembly.Tag({ parameters: ["i32"] }); + const exn = new WebAssembly.Exception(tag, [42]); + const exn_same_payload = new WebAssembly.Exception(tag, [42]); + const exn_diff_payload = new WebAssembly.Exception(tag, [53]); + + const builder = new WasmModuleBuilder(); + const jsfuncIndex = builder.addImport("module", "jsfunc", kSig_v_v); + const tagIndex = builder.addImportedTag("module", "tag", kSig_v_i); + const imports = { + module: { + jsfunc: function() { throw exn; }, + tag: tag + } + }; + + builder + .addFunction("catch_rethrow", kSig_v_v) + .addBody([ + kExprTry, kWasmStmt, + kExprCallFunction, jsfuncIndex, + kExprCatch, tagIndex, + kExprDrop, + kExprRethrow, 0x00, + kExprEnd + ]) + .exportFunc(); + + builder + .addFunction("catch_all_rethrow", kSig_v_v) + .addBody([ + kExprTry, kWasmStmt, + kExprCallFunction, jsfuncIndex, + kExprCatchAll, + kExprRethrow, 0x00, + kExprEnd + ]) + .exportFunc(); + + const buffer = builder.toBuffer(); + WebAssembly.instantiate(buffer, imports).then(result => { + try { + result.instance.exports.catch_rethrow(); + } catch (e) { + assert_equals(e, exn); + assert_not_equals(e, exn_same_payload); + assert_not_equals(e, exn_diff_payload); + } + try { + result.instance.exports.catch_all_rethrow(); + } catch (e) { + assert_equals(e, exn); + assert_not_equals(e, exn_same_payload); + assert_not_equals(e, exn_diff_payload); + } + }); +}, "Identity check"); diff --git a/test/fixtures/wpt/wasm/jsapi/exception/toString.tentative.any.js b/test/fixtures/wpt/wasm/jsapi/exception/toString.tentative.any.js index 52635186c762fc..00e801a6fc1a4a 100644 --- a/test/fixtures/wpt/wasm/jsapi/exception/toString.tentative.any.js +++ b/test/fixtures/wpt/wasm/jsapi/exception/toString.tentative.any.js @@ -3,8 +3,8 @@ test(() => { const argument = { parameters: [] }; const tag = new WebAssembly.Tag(argument); - const exception = new WebAssembly.Exception(tag, []); - assert_class_string(exception, "WebAssembly.Exception"); + const exn = new WebAssembly.Exception(tag, []); + assert_class_string(exn, "WebAssembly.Exception"); }, "Object.prototype.toString on an Exception"); test(() => { diff --git a/test/fixtures/wpt/wasm/jsapi/wasm-module-builder.js b/test/fixtures/wpt/wasm/jsapi/wasm-module-builder.js index 7be72f86dae752..86d836a5a37245 100644 --- a/test/fixtures/wpt/wasm/jsapi/wasm-module-builder.js +++ b/test/fixtures/wpt/wasm/jsapi/wasm-module-builder.js @@ -65,7 +65,7 @@ let kElementSectionCode = 9; // Elements section let kCodeSectionCode = 10; // Function code let kDataSectionCode = 11; // Data segments let kDataCountSectionCode = 12; // Data segment count (between Element & Code) -let kExceptionSectionCode = 13; // Exception section (between Global & Export) +let kTagSectionCode = 13; // Tag section (between Memory & Global) // Name section types let kModuleNameCode = 0; @@ -104,13 +104,13 @@ let kExternalFunction = 0; let kExternalTable = 1; let kExternalMemory = 2; let kExternalGlobal = 3; -let kExternalException = 4; +let kExternalTag = 4; let kTableZero = 0; let kMemoryZero = 0; let kSegmentZero = 0; -let kExceptionAttribute = 0; +let kTagAttribute = 0; // Useful signatures let kSig_i_i = makeSig([kWasmI32], [kWasmI32]); @@ -681,7 +681,7 @@ class WasmModuleBuilder { this.exports = []; this.globals = []; this.tables = []; - this.exceptions = []; + this.tags = []; this.functions = []; this.element_segments = []; this.data_segments = []; @@ -689,7 +689,7 @@ class WasmModuleBuilder { this.num_imported_funcs = 0; this.num_imported_globals = 0; this.num_imported_tables = 0; - this.num_imported_exceptions = 0; + this.num_imported_tags = 0; return this; } @@ -752,10 +752,10 @@ class WasmModuleBuilder { return table; } - addException(type) { + addTag(type) { let type_index = (typeof type) == "number" ? type : this.addType(type); - let except_index = this.exceptions.length + this.num_imported_exceptions; - this.exceptions.push(type_index); + let except_index = this.tags.length + this.num_imported_tags; + this.tags.push(type_index); return except_index; } @@ -804,14 +804,14 @@ class WasmModuleBuilder { return this.num_imported_tables++; } - addImportedException(module, name, type) { - if (this.exceptions.length != 0) { - throw new Error('Imported exceptions must be declared before local ones'); + addImportedTag(module, name, type) { + if (this.tags.length != 0) { + throw new Error('Imported tags must be declared before local ones'); } let type_index = (typeof type) == "number" ? type : this.addType(type); - let o = {module: module, name: name, kind: kExternalException, type: type_index}; + let o = {module: module, name: name, kind: kExternalTag, type: type_index}; this.imports.push(o); - return this.num_imported_exceptions++; + return this.num_imported_tags++; } addExport(name, index) { @@ -938,8 +938,8 @@ class WasmModuleBuilder { section.emit_u8(has_max ? 1 : 0); // flags section.emit_u32v(imp.initial); // initial if (has_max) section.emit_u32v(imp.maximum); // maximum - } else if (imp.kind == kExternalException) { - section.emit_u32v(kExceptionAttribute); + } else if (imp.kind == kExternalTag) { + section.emit_u32v(kTagAttribute); section.emit_u32v(imp.type); } else { throw new Error("unknown/unsupported import kind " + imp.kind); @@ -1036,13 +1036,13 @@ class WasmModuleBuilder { }); } - // Add exceptions. - if (wasm.exceptions.length > 0) { - if (debug) print("emitting exceptions @ " + binary.length); - binary.emit_section(kExceptionSectionCode, section => { - section.emit_u32v(wasm.exceptions.length); - for (let type of wasm.exceptions) { - section.emit_u32v(kExceptionAttribute); + // Add tags. + if (wasm.tags.length > 0) { + if (debug) print("emitting tags @ " + binary.length); + binary.emit_section(kTagSectionCode, section => { + section.emit_u32v(wasm.tags.length); + for (let type of wasm.tags) { + section.emit_u32v(kTagAttribute); section.emit_u32v(type); } }); diff --git a/test/js-native-api/test_object/test.js b/test/js-native-api/test_object/test.js index 012f737ba74b43..670ae200a35bec 100644 --- a/test/js-native-api/test_object/test.js +++ b/test/js-native-api/test_object/test.js @@ -165,12 +165,26 @@ assert.strictEqual(newObject.test_string, 'test string'); const obj2 = test_object.TypeTaggedInstance(1); const obj3 = test_object.TypeTaggedInstance(2); const obj4 = test_object.TypeTaggedInstance(3); + const external = test_object.TypeTaggedExternal(2); + const plainExternal = test_object.PlainExternal(); + + // Verify that we do not allow type tag indices greater than the largest + // available index. + assert.throws(() => test_object.TypeTaggedInstance(39), { + name: 'RangeError', + message: 'Invalid type index', + }); + assert.throws(() => test_object.TypeTaggedExternal(39), { + name: 'RangeError', + message: 'Invalid type index', + }); // Verify that type tags are correctly accepted. assert.strictEqual(test_object.CheckTypeTag(0, obj1), true); assert.strictEqual(test_object.CheckTypeTag(1, obj2), true); assert.strictEqual(test_object.CheckTypeTag(2, obj3), true); assert.strictEqual(test_object.CheckTypeTag(3, obj4), true); + assert.strictEqual(test_object.CheckTypeTag(2, external), true); // Verify that wrongly tagged objects are rejected. assert.strictEqual(test_object.CheckTypeTag(0, obj2), false); @@ -180,10 +194,19 @@ assert.strictEqual(newObject.test_string, 'test string'); assert.strictEqual(test_object.CheckTypeTag(2, obj4), false); assert.strictEqual(test_object.CheckTypeTag(3, obj3), false); assert.strictEqual(test_object.CheckTypeTag(4, obj3), false); + assert.strictEqual(test_object.CheckTypeTag(0, external), false); + assert.strictEqual(test_object.CheckTypeTag(1, external), false); + assert.strictEqual(test_object.CheckTypeTag(3, external), false); + assert.strictEqual(test_object.CheckTypeTag(4, external), false); // Verify that untagged objects are rejected. assert.strictEqual(test_object.CheckTypeTag(0, {}), false); assert.strictEqual(test_object.CheckTypeTag(1, {}), false); + assert.strictEqual(test_object.CheckTypeTag(0, plainExternal), false); + assert.strictEqual(test_object.CheckTypeTag(1, plainExternal), false); + assert.strictEqual(test_object.CheckTypeTag(2, plainExternal), false); + assert.strictEqual(test_object.CheckTypeTag(3, plainExternal), false); + assert.strictEqual(test_object.CheckTypeTag(4, plainExternal), false); } { diff --git a/test/js-native-api/test_object/test_object.c b/test/js-native-api/test_object/test_object.c index 3ae54a9b7cd65c..eb5aa2071e30a3 100644 --- a/test/js-native-api/test_object/test_object.c +++ b/test/js-native-api/test_object/test_object.c @@ -605,13 +605,23 @@ static napi_value TestSeal(napi_env env, } // We create two type tags. They are basically 128-bit UUIDs. -static const napi_type_tag type_tags[5] = { - { 0xdaf987b3cc62481a, 0xb745b0497f299531 }, - { 0xbb7936c374084d9b, 0xa9548d0762eeedb9 }, - { 0xa5ed9ce2e4c00c38, 0 }, - { 0, 0 }, - { 0xa5ed9ce2e4c00c38, 0xdaf987b3cc62481a }, +#define TYPE_TAG_COUNT 5 +static const napi_type_tag type_tags[TYPE_TAG_COUNT] = { + {0xdaf987b3cc62481a, 0xb745b0497f299531}, + {0xbb7936c374084d9b, 0xa9548d0762eeedb9}, + {0xa5ed9ce2e4c00c38, 0}, + {0, 0}, + {0xa5ed9ce2e4c00c38, 0xdaf987b3cc62481a}, }; +#define VALIDATE_TYPE_INDEX(env, type_index) \ + do { \ + if ((type_index) >= TYPE_TAG_COUNT) { \ + NODE_API_CALL((env), \ + napi_throw_range_error((env), \ + "NODE_API_TEST_INVALID_TYPE_INDEX", \ + "Invalid type index")); \ + } \ + } while (0) static napi_value TypeTaggedInstance(napi_env env, napi_callback_info info) { @@ -621,12 +631,42 @@ TypeTaggedInstance(napi_env env, napi_callback_info info) { NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &which_type, NULL, NULL)); NODE_API_CALL(env, napi_get_value_uint32(env, which_type, &type_index)); + VALIDATE_TYPE_INDEX(env, type_index); NODE_API_CALL(env, napi_create_object(env, &instance)); NODE_API_CALL(env, napi_type_tag_object(env, instance, &type_tags[type_index])); return instance; } +// V8 will not allowe us to construct an external with a NULL data value. +#define IN_LIEU_OF_NULL ((void*)0x1) + +static napi_value PlainExternal(napi_env env, napi_callback_info info) { + napi_value instance; + + NODE_API_CALL( + env, napi_create_external(env, IN_LIEU_OF_NULL, NULL, NULL, &instance)); + + return instance; +} + +static napi_value TypeTaggedExternal(napi_env env, napi_callback_info info) { + size_t argc = 1; + uint32_t type_index; + napi_value instance, which_type; + + NODE_API_CALL(env, + napi_get_cb_info(env, info, &argc, &which_type, NULL, NULL)); + NODE_API_CALL(env, napi_get_value_uint32(env, which_type, &type_index)); + VALIDATE_TYPE_INDEX(env, type_index); + NODE_API_CALL( + env, napi_create_external(env, IN_LIEU_OF_NULL, NULL, NULL, &instance)); + NODE_API_CALL(env, + napi_type_tag_object(env, instance, &type_tags[type_index])); + + return instance; +} + static napi_value CheckTypeTag(napi_env env, napi_callback_info info) { size_t argc = 2; @@ -636,6 +676,7 @@ CheckTypeTag(napi_env env, napi_callback_info info) { NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, argv, NULL, NULL)); NODE_API_CALL(env, napi_get_value_uint32(env, argv[0], &type_index)); + VALIDATE_TYPE_INDEX(env, type_index); NODE_API_CALL(env, napi_check_object_type_tag(env, argv[1], &type_tags[type_index], @@ -648,31 +689,36 @@ CheckTypeTag(napi_env env, napi_callback_info info) { EXTERN_C_START napi_value Init(napi_env env, napi_value exports) { napi_property_descriptor descriptors[] = { - DECLARE_NODE_API_PROPERTY("Get", Get), - DECLARE_NODE_API_PROPERTY("GetNamed", GetNamed), - DECLARE_NODE_API_PROPERTY("GetPropertyNames", GetPropertyNames), - DECLARE_NODE_API_PROPERTY("GetSymbolNames", GetSymbolNames), - DECLARE_NODE_API_PROPERTY("GetEnumerableWritableNames", GetEnumerableWritableNames), - DECLARE_NODE_API_PROPERTY("GetOwnWritableNames", GetOwnWritableNames), - DECLARE_NODE_API_PROPERTY("GetEnumerableConfigurableNames", GetEnumerableConfigurableNames), - DECLARE_NODE_API_PROPERTY("GetOwnConfigurableNames", GetOwnConfigurableNames), - DECLARE_NODE_API_PROPERTY("Set", Set), - DECLARE_NODE_API_PROPERTY("SetNamed", SetNamed), - DECLARE_NODE_API_PROPERTY("Has", Has), - DECLARE_NODE_API_PROPERTY("HasNamed", HasNamed), - DECLARE_NODE_API_PROPERTY("HasOwn", HasOwn), - DECLARE_NODE_API_PROPERTY("Delete", Delete), - DECLARE_NODE_API_PROPERTY("New", New), - DECLARE_NODE_API_PROPERTY("Inflate", Inflate), - DECLARE_NODE_API_PROPERTY("Wrap", Wrap), - DECLARE_NODE_API_PROPERTY("Unwrap", Unwrap), - DECLARE_NODE_API_PROPERTY("TestSetProperty", TestSetProperty), - DECLARE_NODE_API_PROPERTY("TestHasProperty", TestHasProperty), - DECLARE_NODE_API_PROPERTY("TypeTaggedInstance", TypeTaggedInstance), - DECLARE_NODE_API_PROPERTY("CheckTypeTag", CheckTypeTag), - DECLARE_NODE_API_PROPERTY("TestGetProperty", TestGetProperty), - DECLARE_NODE_API_PROPERTY("TestFreeze", TestFreeze), - DECLARE_NODE_API_PROPERTY("TestSeal", TestSeal), + DECLARE_NODE_API_PROPERTY("Get", Get), + DECLARE_NODE_API_PROPERTY("GetNamed", GetNamed), + DECLARE_NODE_API_PROPERTY("GetPropertyNames", GetPropertyNames), + DECLARE_NODE_API_PROPERTY("GetSymbolNames", GetSymbolNames), + DECLARE_NODE_API_PROPERTY("GetEnumerableWritableNames", + GetEnumerableWritableNames), + DECLARE_NODE_API_PROPERTY("GetOwnWritableNames", GetOwnWritableNames), + DECLARE_NODE_API_PROPERTY("GetEnumerableConfigurableNames", + GetEnumerableConfigurableNames), + DECLARE_NODE_API_PROPERTY("GetOwnConfigurableNames", + GetOwnConfigurableNames), + DECLARE_NODE_API_PROPERTY("Set", Set), + DECLARE_NODE_API_PROPERTY("SetNamed", SetNamed), + DECLARE_NODE_API_PROPERTY("Has", Has), + DECLARE_NODE_API_PROPERTY("HasNamed", HasNamed), + DECLARE_NODE_API_PROPERTY("HasOwn", HasOwn), + DECLARE_NODE_API_PROPERTY("Delete", Delete), + DECLARE_NODE_API_PROPERTY("New", New), + DECLARE_NODE_API_PROPERTY("Inflate", Inflate), + DECLARE_NODE_API_PROPERTY("Wrap", Wrap), + DECLARE_NODE_API_PROPERTY("Unwrap", Unwrap), + DECLARE_NODE_API_PROPERTY("TestSetProperty", TestSetProperty), + DECLARE_NODE_API_PROPERTY("TestHasProperty", TestHasProperty), + DECLARE_NODE_API_PROPERTY("TypeTaggedInstance", TypeTaggedInstance), + DECLARE_NODE_API_PROPERTY("TypeTaggedExternal", TypeTaggedExternal), + DECLARE_NODE_API_PROPERTY("PlainExternal", PlainExternal), + DECLARE_NODE_API_PROPERTY("CheckTypeTag", CheckTypeTag), + DECLARE_NODE_API_PROPERTY("TestGetProperty", TestGetProperty), + DECLARE_NODE_API_PROPERTY("TestFreeze", TestFreeze), + DECLARE_NODE_API_PROPERTY("TestSeal", TestSeal), }; init_test_null(env, exports); diff --git a/test/message/test_runner_abort.out b/test/message/test_runner_abort.out index 95a78243e729bf..91055794b03e27 100644 --- a/test/message/test_runner_abort.out +++ b/test/message/test_runner_abort.out @@ -260,10 +260,11 @@ not ok 4 - callback abort signal * ... 1..4 -# tests 4 -# pass 0 +# tests 22 +# suites 0 +# pass 8 # fail 0 -# cancelled 4 +# cancelled 14 # skipped 0 # todo 0 # duration_ms * diff --git a/test/message/test_runner_abort_suite.out b/test/message/test_runner_abort_suite.out index 06a70bdf012196..00040b760cdfb2 100644 --- a/test/message/test_runner_abort_suite.out +++ b/test/message/test_runner_abort_suite.out @@ -64,6 +64,7 @@ TAP version 13 not ok 1 - describe timeout signal --- duration_ms: * + type: 'suite' failureType: 'testAborted' error: 'The operation was aborted due to timeout' code: 23 @@ -78,6 +79,7 @@ not ok 1 - describe timeout signal not ok 2 - describe abort signal --- duration_ms: * + type: 'suite' failureType: 'testAborted' error: 'This operation was aborted' code: 20 @@ -94,10 +96,11 @@ not ok 2 - describe abort signal * ... 1..2 -# tests 2 -# pass 0 +# tests 9 +# suites 2 +# pass 4 # fail 0 -# cancelled 2 +# cancelled 5 # skipped 0 # todo 0 # duration_ms * diff --git a/test/message/test_runner_describe_it.out b/test/message/test_runner_describe_it.out index 41c4e275b5b614..209cf5bb6715e8 100644 --- a/test/message/test_runner_describe_it.out +++ b/test/message/test_runner_describe_it.out @@ -210,6 +210,7 @@ ok 21 - immediate resolve pass not ok 22 - subtest sync throw fail --- duration_ms: * + type: 'suite' failureType: 'subtestsFailed' error: '1 subtest failed' code: 'ERR_TEST_FAILURE' @@ -247,11 +248,13 @@ not ok 23 - sync throw non-error fail ok 24 - level 0a --- duration_ms: * + type: 'suite' ... # Subtest: invalid subtest - pass but subtest fails ok 25 - invalid subtest - pass but subtest fails --- duration_ms: * + type: 'suite' ... # Subtest: sync skip option ok 26 - sync skip option # SKIP @@ -494,6 +497,7 @@ not ok 53 - custom inspect symbol that throws fail not ok 54 - subtest sync throw fails --- duration_ms: * + type: 'suite' failureType: 'subtestsFailed' error: '2 subtests failed' code: 'ERR_TEST_FAILURE' @@ -511,6 +515,7 @@ not ok 54 - subtest sync throw fails not ok 55 - describe sync throw fails --- duration_ms: * + type: 'suite' failureType: 'testCodeFailure' error: 'thrown from describe' code: 'ERR_TEST_FAILURE' @@ -539,6 +544,7 @@ not ok 55 - describe sync throw fails not ok 56 - describe async throw fails --- duration_ms: * + type: 'suite' failureType: 'testCodeFailure' error: 'thrown from describe' code: 'ERR_TEST_FAILURE' @@ -587,6 +593,7 @@ not ok 56 - describe async throw fails not ok 57 - timeouts --- duration_ms: * + type: 'suite' failureType: 'subtestsFailed' error: '2 subtests failed' code: 'ERR_TEST_FAILURE' @@ -612,6 +619,7 @@ not ok 57 - timeouts not ok 58 - successful thenable --- duration_ms: * + type: 'suite' failureType: 'subtestsFailed' error: '1 subtest failed' code: 'ERR_TEST_FAILURE' @@ -620,6 +628,7 @@ not ok 58 - successful thenable not ok 59 - rejected thenable --- duration_ms: * + type: 'suite' failureType: 'testCodeFailure' error: 'custom error' code: 'ERR_TEST_FAILURE' @@ -643,10 +652,11 @@ not ok 60 - invalid subtest fail # Warning: Test "immediate reject - passes but warns" generated asynchronous activity after the test ended. This activity created the error "Error: rejected from immediate reject fail" and would have caused the test to fail, but instead triggered an unhandledRejection event. # Warning: Test "callback called twice in different ticks" generated asynchronous activity after the test ended. This activity created the error "Error [ERR_TEST_FAILURE]: callback invoked multiple times" and would have caused the test to fail, but instead triggered an uncaughtException event. # Warning: Test "callback async throw after done" generated asynchronous activity after the test ended. This activity created the error "Error: thrown from callback async throw after done" and would have caused the test to fail, but instead triggered an uncaughtException event. -# tests 60 -# pass 23 -# fail 22 -# cancelled 0 +# tests 67 +# suites 9 +# pass 29 +# fail 19 +# cancelled 4 # skipped 10 # todo 5 # duration_ms * diff --git a/test/message/test_runner_describe_nested.out b/test/message/test_runner_describe_nested.out index 1d3fe31b75c37a..fe96d2a9560b7b 100644 --- a/test/message/test_runner_describe_nested.out +++ b/test/message/test_runner_describe_nested.out @@ -10,14 +10,17 @@ TAP version 13 ok 1 - nested --- duration_ms: * + type: 'suite' ... 1..1 ok 1 - nested - no tests --- duration_ms: * + type: 'suite' ... 1..1 # tests 1 +# suites 2 # pass 1 # fail 0 # cancelled 0 diff --git a/test/message/test_runner_hooks.out b/test/message/test_runner_hooks.out index 7c82e9ff292ad5..48280122e1e21e 100644 --- a/test/message/test_runner_hooks.out +++ b/test/message/test_runner_hooks.out @@ -25,11 +25,13 @@ TAP version 13 ok 3 - nested --- duration_ms: * + type: 'suite' ... 1..3 ok 1 - describe hooks --- duration_ms: * + type: 'suite' ... # Subtest: before throws # Subtest: 1 @@ -52,6 +54,7 @@ ok 1 - describe hooks not ok 2 - before throws --- duration_ms: * + type: 'suite' failureType: 'hookFailed' error: 'failed running before hook' code: 'ERR_TEST_FAILURE' @@ -80,6 +83,7 @@ not ok 2 - before throws not ok 3 - after throws --- duration_ms: * + type: 'suite' failureType: 'hookFailed' error: 'failed running after hook' code: 'ERR_TEST_FAILURE' @@ -136,6 +140,7 @@ not ok 3 - after throws not ok 4 - beforeEach throws --- duration_ms: * + type: 'suite' failureType: 'subtestsFailed' error: '2 subtests failed' code: 'ERR_TEST_FAILURE' @@ -183,6 +188,7 @@ not ok 4 - beforeEach throws not ok 5 - afterEach throws --- duration_ms: * + type: 'suite' failureType: 'subtestsFailed' error: '2 subtests failed' code: 'ERR_TEST_FAILURE' @@ -216,6 +222,7 @@ not ok 5 - afterEach throws not ok 6 - afterEach when test fails --- duration_ms: * + type: 'suite' failureType: 'subtestsFailed' error: '1 subtest failed' code: 'ERR_TEST_FAILURE' @@ -263,6 +270,7 @@ not ok 6 - afterEach when test fails not ok 7 - afterEach throws and test fails --- duration_ms: * + type: 'suite' failureType: 'subtestsFailed' error: '2 subtests failed' code: 'ERR_TEST_FAILURE' @@ -491,10 +499,11 @@ not ok 13 - t.after() is called if test body throws ... # - after() called 1..13 -# tests 13 -# pass 2 -# fail 11 -# cancelled 0 +# tests 35 +# suites 8 +# pass 14 +# fail 19 +# cancelled 2 # skipped 0 # todo 0 # duration_ms * diff --git a/test/message/test_runner_no_refs.out b/test/message/test_runner_no_refs.out index e8560c5720b762..49c51af41caec3 100644 --- a/test/message/test_runner_no_refs.out +++ b/test/message/test_runner_no_refs.out @@ -21,10 +21,11 @@ not ok 1 - does not keep event loop alive * ... 1..1 -# tests 1 +# tests 2 +# suites 0 # pass 0 # fail 0 -# cancelled 1 +# cancelled 2 # skipped 0 # todo 0 # duration_ms * diff --git a/test/message/test_runner_only_tests.out b/test/message/test_runner_only_tests.out index 7d8240fef0c489..d0cab370edcac0 100644 --- a/test/message/test_runner_only_tests.out +++ b/test/message/test_runner_only_tests.out @@ -131,6 +131,7 @@ ok 11 - only = true, with subtests ok 12 - describe only = true, with subtests --- duration_ms: * + type: 'suite' ... # Subtest: describe only = true, with a mixture of subtests # Subtest: `it` subtest 1 @@ -167,6 +168,7 @@ ok 12 - describe only = true, with subtests ok 13 - describe only = true, with a mixture of subtests --- duration_ms: * + type: 'suite' ... # Subtest: describe only = true, with subtests # Subtest: subtest should run @@ -188,12 +190,14 @@ ok 13 - describe only = true, with a mixture of subtests ok 14 - describe only = true, with subtests --- duration_ms: * + type: 'suite' ... 1..14 -# tests 14 -# pass 4 +# tests 34 +# suites 3 +# pass 14 # fail 0 # cancelled 0 -# skipped 10 +# skipped 20 # todo 0 # duration_ms * diff --git a/test/message/test_runner_output.js b/test/message/test_runner_output.js index a53ded3dfde3ac..b00e833a212492 100644 --- a/test/message/test_runner_output.js +++ b/test/message/test_runner_output.js @@ -389,3 +389,17 @@ test('unfinished test with unhandledRejection', async () => { setImmediate(() => { throw new Error('uncaught from outside of a test'); }); + +test('assertion errors display actual and expected properly', async () => { + // Make sure the assert module is handled. + const circular = { bar: 2 }; + circular.c = circular; + const tmpLimit = Error.stackTraceLimit; + Error.stackTraceLimit = 1; + try { + assert.deepEqual({ foo: 1, bar: 1 }, circular); // eslint-disable-line no-restricted-properties + } catch (err) { + Error.stackTraceLimit = tmpLimit; + throw err; + } +}); diff --git a/test/message/test_runner_output.out b/test/message/test_runner_output.out index b6f254708010e9..c19e2058de7298 100644 --- a/test/message/test_runner_output.out +++ b/test/message/test_runner_output.out @@ -624,8 +624,39 @@ not ok 64 - unfinished test with unhandledRejection * * ... +# Subtest: assertion errors display actual and expected properly +not ok 65 - assertion errors display actual and expected properly + --- + duration_ms: * + failureType: 'testCodeFailure' + error: |- + Expected values to be loosely deep-equal: + + { + bar: 1, + foo: 1 + } + + should loosely deep-equal + + { + bar: 2, + c: [Circular *1] + } + code: 'ERR_ASSERTION' + name: 'AssertionError' + expected: + bar: 2 + c: + actual: + foo: 1 + bar: 1 + operator: 'deepEqual' + stack: |- + * + ... # Subtest: invalid subtest fail -not ok 65 - invalid subtest fail +not ok 66 - invalid subtest fail --- duration_ms: * failureType: 'parentAlreadyFinished' @@ -634,7 +665,7 @@ not ok 65 - invalid subtest fail stack: |- * ... -1..65 +1..66 # Warning: Test "unhandled rejection - passes but warns" generated asynchronous activity after the test ended. This activity created the error "Error: rejected from unhandled rejection fail" and would have caused the test to fail, but instead triggered an unhandledRejection event. # Warning: Test "async unhandled rejection - passes but warns" generated asynchronous activity after the test ended. This activity created the error "Error: rejected from async unhandled rejection fail" and would have caused the test to fail, but instead triggered an unhandledRejection event. # Warning: A resource generated asynchronous activity after the test ended. This activity created the error "Error: uncaught from outside of a test" which triggered an uncaughtException event, caught by the test runner. @@ -642,10 +673,11 @@ not ok 65 - invalid subtest fail # Warning: Test "immediate reject - passes but warns" generated asynchronous activity after the test ended. This activity created the error "Error: rejected from immediate reject fail" and would have caused the test to fail, but instead triggered an unhandledRejection event. # Warning: Test "callback called twice in different ticks" generated asynchronous activity after the test ended. This activity created the error "Error [ERR_TEST_FAILURE]: callback invoked multiple times" and would have caused the test to fail, but instead triggered an uncaughtException event. # Warning: Test "callback async throw after done" generated asynchronous activity after the test ended. This activity created the error "Error: thrown from callback async throw after done" and would have caused the test to fail, but instead triggered an uncaughtException event. -# tests 65 -# pass 27 -# fail 21 -# cancelled 2 +# tests 80 +# suites 0 +# pass 37 +# fail 25 +# cancelled 3 # skipped 10 # todo 5 # duration_ms * diff --git a/test/message/test_runner_output_cli.out b/test/message/test_runner_output_cli.out index 3baeb534704b11..ba43eabb1940e2 100644 --- a/test/message/test_runner_output_cli.out +++ b/test/message/test_runner_output_cli.out @@ -624,8 +624,39 @@ not ok 64 - unfinished test with unhandledRejection * * ... +# Subtest: assertion errors display actual and expected properly +not ok 65 - assertion errors display actual and expected properly + --- + duration_ms: * + failureType: 'testCodeFailure' + error: |- + Expected values to be loosely deep-equal: + + { + bar: 1, + foo: 1 + } + + should loosely deep-equal + + { + bar: 2, + c: [Circular *1] + } + code: 'ERR_ASSERTION' + name: 'AssertionError' + expected: + bar: 2 + c: '' + actual: + foo: 1 + bar: 1 + operator: 'deepEqual' + stack: |- + * + ... # Subtest: invalid subtest fail -not ok 65 - invalid subtest fail +not ok 66 - invalid subtest fail --- duration_ms: * failureType: 'parentAlreadyFinished' @@ -641,11 +672,12 @@ not ok 65 - invalid subtest fail # Warning: Test "immediate reject - passes but warns" generated asynchronous activity after the test ended. This activity created the error "Error: rejected from immediate reject fail" and would have caused the test to fail, but instead triggered an unhandledRejection event. # Warning: Test "callback called twice in different ticks" generated asynchronous activity after the test ended. This activity created the error "Error [ERR_TEST_FAILURE]: callback invoked multiple times" and would have caused the test to fail, but instead triggered an uncaughtException event. # Warning: Test "callback async throw after done" generated asynchronous activity after the test ended. This activity created the error "Error: thrown from callback async throw after done" and would have caused the test to fail, but instead triggered an uncaughtException event. -1..65 -# tests 65 -# pass 27 -# fail 21 -# cancelled 2 +1..66 +# tests 80 +# suites 0 +# pass 37 +# fail 25 +# cancelled 3 # skipped 10 # todo 5 # duration_ms * diff --git a/test/message/test_runner_output_dot_reporter.out b/test/message/test_runner_output_dot_reporter.out index 823ecfb146b991..5a74119b3887e5 100644 --- a/test/message/test_runner_output_dot_reporter.out +++ b/test/message/test_runner_output_dot_reporter.out @@ -1,4 +1,5 @@ ..XX...X..XXX.X..... XXX.....X..X...X.... .........X...XXX.XX. -.....XXXXXXX...XXXX +.....XXXXXXX...XXXXX + diff --git a/test/message/test_runner_output_spec_reporter.out b/test/message/test_runner_output_spec_reporter.out index 3ff9aefe7a42ce..8db20b3195e6f9 100644 --- a/test/message/test_runner_output_spec_reporter.out +++ b/test/message/test_runner_output_spec_reporter.out @@ -184,7 +184,7 @@ callback called twice in different ticks (*ms) callback called twice in future tick (*ms) Error [ERR_TEST_FAILURE]: callback invoked multiple times - * + * { failureType: 'multipleCallbackInvocations', cause: 'callback invoked multiple times', code: 'ERR_TEST_FAILURE' @@ -265,6 +265,28 @@ * * + assertion errors display actual and expected properly (*ms) + AssertionError [ERR_ASSERTION]: Expected values to be loosely deep-equal: + + { + bar: 1, + foo: 1 + } + + should loosely deep-equal + + { + bar: 2, + c: [Circular *1] + } + * { + generatedMessage: true, + code: 'ERR_ASSERTION', + actual: [Object], + expected: [Object], + operator: 'deepEqual' + } + invalid subtest fail (*ms) 'test could not be started because its parent finished' @@ -275,10 +297,242 @@ Warning: Test "immediate reject - passes but warns" generated asynchronous activity after the test ended. This activity created the error "Error: rejected from immediate reject fail" and would have caused the test to fail, but instead triggered an unhandledRejection event. Warning: Test "callback called twice in different ticks" generated asynchronous activity after the test ended. This activity created the error "Error [ERR_TEST_FAILURE]: callback invoked multiple times" and would have caused the test to fail, but instead triggered an uncaughtException event. Warning: Test "callback async throw after done" generated asynchronous activity after the test ended. This activity created the error "Error: thrown from callback async throw after done" and would have caused the test to fail, but instead triggered an uncaughtException event. - tests 65 - pass 27 - fail 21 - cancelled 2 + tests 80 + suites 0 + pass 37 + fail 25 + cancelled 3 skipped 10 todo 5 duration_ms * + + failing tests: + + sync fail todo (*ms) + Error: thrown from sync fail todo + * + * + * + * + * + * + * + + sync fail todo with message (*ms) + Error: thrown from sync fail todo with message + * + * + * + * + * + * + * + + sync throw fail (*ms) + Error: thrown from sync throw fail + * + * + * + * + * + * + * + + async throw fail (*ms) + Error: thrown from async throw fail + * + * + * + * + * + * + * + + async skip fail (*ms) + Error: thrown from async throw fail + * + * + * + * + * + * + * + + async assertion fail (*ms) + AssertionError [ERR_ASSERTION]: Expected values to be strictly equal: + + true !== false + + * + * + * + * + * + * + * { + generatedMessage: true, + code: 'ERR_ASSERTION', + actual: true, + expected: false, + operator: 'strictEqual' + } + + reject fail (*ms) + Error: rejected from reject fail + * + * + * + * + * + * + * + + +sync throw fail (*ms) + Error: thrown from subtest sync throw fail + * + * + * + * + * + * + * + * + * + * + + subtest sync throw fail (*ms) + '1 subtest failed' + + sync throw non-error fail (*ms) + Symbol(thrown symbol from sync throw non-error fail) + + +long running (*ms) + 'test did not finish before its parent and was cancelled' + + top level (*ms) + '1 subtest failed' + + sync skip option is false fail (*ms) + Error: this should be executed + * + * + * + * + * + * + * + + callback fail (*ms) + Error: callback failure + * + * + + callback also returns a Promise (*ms) + 'passed a callback but also returned a Promise' + + callback throw (*ms) + Error: thrown from callback throw + * + * + * + * + * + * + * + + callback called twice (*ms) + 'callback invoked multiple times' + + callback called twice in future tick (*ms) + Error [ERR_TEST_FAILURE]: callback invoked multiple times + * + failureType: 'multipleCallbackInvocations', + cause: 'callback invoked multiple times', + code: 'ERR_TEST_FAILURE' + } + + callback async throw (*ms) + Error: thrown from callback async throw + * + * + + custom inspect symbol fail (*ms) + customized + + custom inspect symbol that throws fail (*ms) + { foo: 1, [Symbol(nodejs.util.inspect.custom)]: [Function: [nodejs.util.inspect.custom]] } + + sync throw fails at first (*ms) + Error: thrown from subtest sync throw fails at first + * + * + * + * + * + * + * + * + * + * + + sync throw fails at second (*ms) + Error: thrown from subtest sync throw fails at second + * + * + * + * + * + * + * + * + * + * + + subtest sync throw fails (*ms) + '2 subtests failed' + + timed out async test (*ms) + 'test timed out after 5ms' + + timed out callback test (*ms) + 'test timed out after 5ms' + + rejected thenable (*ms) + 'custom error' + + unfinished test with uncaughtException (*ms) + Error: foo + * + * + * + + unfinished test with unhandledRejection (*ms) + Error: bar + * + * + * + + assertion errors display actual and expected properly (*ms) + AssertionError [ERR_ASSERTION]: Expected values to be loosely deep-equal: + + { + bar: 1, + foo: 1 + } + + should loosely deep-equal + + { + bar: 2, + c: [Circular *1] + } + * { + generatedMessage: true, + code: 'ERR_ASSERTION', + actual: [Object], + expected: [Object], + operator: 'deepEqual' + } + + invalid subtest fail (*ms) + 'test could not be started because its parent finished' diff --git a/test/message/test_runner_spec_reporter_successful.js b/test/message/test_runner_spec_reporter_successful.js new file mode 100644 index 00000000000000..e5e21e29e15e3e --- /dev/null +++ b/test/message/test_runner_spec_reporter_successful.js @@ -0,0 +1,6 @@ +// Flags: --no-warnings --test-reporter=spec +'use strict'; +require('../common'); +const { it } = require('node:test'); + +it('should pass', () => {}); diff --git a/test/message/test_runner_spec_reporter_successful.out b/test/message/test_runner_spec_reporter_successful.out new file mode 100644 index 00000000000000..e1576063021fc5 --- /dev/null +++ b/test/message/test_runner_spec_reporter_successful.out @@ -0,0 +1,9 @@ +* should pass *(*ms)* +*tests 1* +*suites 0* +*pass 1* +*fail 0* +*cancelled 0* +*skipped 0* +*todo 0* +*duration_ms * diff --git a/test/message/test_runner_test_name_pattern.out b/test/message/test_runner_test_name_pattern.out index be548ad0c6dfee..36a1da9fbeff11 100644 --- a/test/message/test_runner_test_name_pattern.out +++ b/test/message/test_runner_test_name_pattern.out @@ -38,16 +38,19 @@ ok 7 - top level skipped it enabled # SKIP ok 8 - top level describe disabled # SKIP test name does not match pattern --- duration_ms: * + type: 'suite' ... # Subtest: top level skipped describe disabled ok 9 - top level skipped describe disabled # SKIP test name does not match pattern --- duration_ms: * + type: 'suite' ... # Subtest: top level skipped describe enabled ok 10 - top level skipped describe enabled # SKIP --- duration_ms: * + type: 'suite' ... # Subtest: top level runs because name includes PaTtErN ok 11 - top level runs because name includes PaTtErN @@ -80,6 +83,7 @@ ok 12 - top level test enabled ok 3 - nested describe disabled # SKIP test name does not match pattern --- duration_ms: * + type: 'suite' ... # Subtest: nested describe enabled # Subtest: is enabled @@ -91,17 +95,20 @@ ok 12 - top level test enabled ok 4 - nested describe enabled --- duration_ms: * + type: 'suite' ... 1..4 ok 13 - top level describe enabled --- duration_ms: * + type: 'suite' ... 1..13 # tests 13 -# pass 4 +# suites 6 +# pass 6 # fail 0 # cancelled 0 -# skipped 9 +# skipped 7 # todo 0 # duration_ms * diff --git a/test/message/test_runner_test_name_pattern_with_only.out b/test/message/test_runner_test_name_pattern_with_only.out index 2e1006409cf9d3..35fbbc223c6db0 100644 --- a/test/message/test_runner_test_name_pattern_with_only.out +++ b/test/message/test_runner_test_name_pattern_with_only.out @@ -31,10 +31,11 @@ ok 4 - not only and does not match pattern # SKIP 'only' option not set duration_ms: * ... 1..4 -# tests 4 -# pass 1 +# tests 6 +# suites 0 +# pass 2 # fail 0 # cancelled 0 -# skipped 3 +# skipped 4 # todo 0 # duration_ms * diff --git a/test/message/test_runner_unresolved_promise.out b/test/message/test_runner_unresolved_promise.out index b4d6cba4ca1b43..d3fadb6b556356 100644 --- a/test/message/test_runner_unresolved_promise.out +++ b/test/message/test_runner_unresolved_promise.out @@ -26,6 +26,7 @@ not ok 3 - fail ... 1..3 # tests 3 +# suites 0 # pass 1 # fail 0 # cancelled 2 diff --git a/test/message/util-inspect-error-cause.js b/test/message/util-inspect-error-cause.js index d34a908d374975..ed9d8230fe0c40 100644 --- a/test/message/util-inspect-error-cause.js +++ b/test/message/util-inspect-error-cause.js @@ -46,3 +46,9 @@ process.nextTick(() => { console.log(inspect(cause3)); console.log(inspect(error2)); }); + +{ + const error = new Error('cause that throws'); + Reflect.defineProperty(error, 'cause', { get() { throw new Error(); } }); + console.log(inspect(error)); +} diff --git a/test/message/util-inspect-error-cause.out b/test/message/util-inspect-error-cause.out index c7a04f4a09309c..73f0a673d76e1f 100644 --- a/test/message/util-inspect-error-cause.out +++ b/test/message/util-inspect-error-cause.out @@ -33,6 +33,16 @@ Error: undefined cause at * { [cause]: undefined } +Error: cause that throws + at * + at * + at * + at * + at * + at * + at * { + [cause]: [Getter] +} RangeError: New Stack Frames at * *[90m at *[39m { diff --git a/test/node-api/test_async_cleanup_hook/binding.c b/test/node-api/test_async_cleanup_hook/binding.c index 4e88479574fb01..8ffd45af6085cb 100644 --- a/test/node-api/test_async_cleanup_hook/binding.c +++ b/test/node-api/test_async_cleanup_hook/binding.c @@ -4,6 +4,7 @@ #include #include "../../js-native-api/common.h" +static int cleanup_hook_count = 0; static void MustNotCall(napi_async_cleanup_hook_handle hook, void* arg) { assert(0); } @@ -21,6 +22,7 @@ static struct AsyncData* CreateAsyncData() { } static void AfterCleanupHookTwo(uv_handle_t* handle) { + cleanup_hook_count++; struct AsyncData* data = (struct AsyncData*) handle->data; napi_status status = napi_remove_async_cleanup_hook(data->handle); assert(status == napi_ok); @@ -28,10 +30,12 @@ static void AfterCleanupHookTwo(uv_handle_t* handle) { } static void AfterCleanupHookOne(uv_async_t* async) { + cleanup_hook_count++; uv_close((uv_handle_t*) async, AfterCleanupHookTwo); } static void AsyncCleanupHook(napi_async_cleanup_hook_handle handle, void* arg) { + cleanup_hook_count++; struct AsyncData* data = (struct AsyncData*) arg; uv_loop_t* loop; napi_status status = napi_get_uv_event_loop(data->env, &loop); @@ -44,7 +48,31 @@ static void AsyncCleanupHook(napi_async_cleanup_hook_handle handle, void* arg) { uv_async_send(&data->async); } +static void ObjectFinalizer(napi_env env, void* data, void* hint) { + // AsyncCleanupHook and its subsequent callbacks are called twice. + assert(cleanup_hook_count == 6); + + napi_ref* ref = data; + NODE_API_CALL_RETURN_VOID(env, napi_delete_reference(env, *ref)); + free(ref); +} + +static void CreateObjectWrap(napi_env env) { + napi_value js_obj; + napi_ref* ref = malloc(sizeof(*ref)); + NODE_API_CALL_RETURN_VOID(env, napi_create_object(env, &js_obj)); + NODE_API_CALL_RETURN_VOID( + env, napi_wrap(env, js_obj, ref, ObjectFinalizer, NULL, ref)); + // create a strong reference so that the finalizer is called at shutdown. + NODE_API_CALL_RETURN_VOID(env, napi_reference_ref(env, *ref, NULL)); +} + static napi_value Init(napi_env env, napi_value exports) { + // Reinitialize the static variable to be compatible with musl libc. + cleanup_hook_count = 0; + // Create object wrap before cleanup hooks. + CreateObjectWrap(env); + { struct AsyncData* data = CreateAsyncData(); data->env = env; @@ -64,6 +92,9 @@ static napi_value Init(napi_env env, napi_value exports) { napi_remove_async_cleanup_hook(must_not_call_handle); } + // Create object wrap after cleanup hooks. + CreateObjectWrap(env); + return NULL; } diff --git a/test/node-api/test_cleanup_hook/binding.c b/test/node-api/test_cleanup_hook/binding.c index 3e0ddfe9e3c59b..4dd7b3f5f2684e 100644 --- a/test/node-api/test_cleanup_hook/binding.c +++ b/test/node-api/test_cleanup_hook/binding.c @@ -1,19 +1,48 @@ +#include +#include +#include "../../js-native-api/common.h" #include "node_api.h" #include "uv.h" -#include "../../js-native-api/common.h" +static int cleanup_hook_count = 0; static void cleanup(void* arg) { + cleanup_hook_count++; printf("cleanup(%d)\n", *(int*)(arg)); } static int secret = 42; static int wrong_secret = 17; +static void ObjectFinalizer(napi_env env, void* data, void* hint) { + // cleanup is called once. + assert(cleanup_hook_count == 1); + + napi_ref* ref = data; + NODE_API_CALL_RETURN_VOID(env, napi_delete_reference(env, *ref)); + free(ref); +} + +static void CreateObjectWrap(napi_env env) { + napi_value js_obj; + napi_ref* ref = malloc(sizeof(*ref)); + NODE_API_CALL_RETURN_VOID(env, napi_create_object(env, &js_obj)); + NODE_API_CALL_RETURN_VOID( + env, napi_wrap(env, js_obj, ref, ObjectFinalizer, NULL, ref)); + // create a strong reference so that the finalizer is called at shutdown. + NODE_API_CALL_RETURN_VOID(env, napi_reference_ref(env, *ref, NULL)); +} + static napi_value Init(napi_env env, napi_value exports) { + // Create object wrap before cleanup hooks. + CreateObjectWrap(env); + napi_add_env_cleanup_hook(env, cleanup, &wrong_secret); napi_add_env_cleanup_hook(env, cleanup, &secret); napi_remove_env_cleanup_hook(env, cleanup, &wrong_secret); + // Create object wrap after cleanup hooks. + CreateObjectWrap(env); + return NULL; } diff --git a/test/node-api/test_cleanup_hook/test.js b/test/node-api/test_cleanup_hook/test.js index 354f4449045c17..300551ce678be1 100644 --- a/test/node-api/test_cleanup_hook/test.js +++ b/test/node-api/test_cleanup_hook/test.js @@ -6,7 +6,8 @@ const child_process = require('child_process'); if (process.argv[2] === 'child') { require(`./build/${common.buildType}/binding`); } else { - const { stdout } = + const { stdout, status, signal } = child_process.spawnSync(process.execPath, [__filename, 'child']); + assert.strictEqual(status, 0, `process exited with status(${status}) and signal(${signal})`); assert.strictEqual(stdout.toString().trim(), 'cleanup(42)'); } diff --git a/test/node-api/test_null_init/test_null_init.c b/test/node-api/test_null_init/test_null_init.c index d9d2200488ce41..28c283b89240f7 100644 --- a/test/node-api/test_null_init/test_null_init.c +++ b/test/node-api/test_null_init/test_null_init.c @@ -1,3 +1,53 @@ #include -NAPI_MODULE(NODE_GYP_MODULE_NAME, NULL) +// This test uses old module initialization style deprecated in current code. +// The goal is to see that all previously compiled code continues to work the +// same way as before. +// The test has a copy of previous macro definitions which are removed from +// the node_api.h file. + +#if defined(_MSC_VER) +#if defined(__cplusplus) +#define NAPI_C_CTOR(fn) \ + static void NAPI_CDECL fn(void); \ + namespace { \ + struct fn##_ { \ + fn##_() { fn(); } \ + } fn##_v_; \ + } \ + static void NAPI_CDECL fn(void) +#else // !defined(__cplusplus) +#pragma section(".CRT$XCU", read) +// The NAPI_C_CTOR macro defines a function fn that is called during CRT +// initialization. +// C does not support dynamic initialization of static variables and this code +// simulates C++ behavior. Exporting the function pointer prevents it from being +// optimized. See for details: +// https://docs.microsoft.com/en-us/cpp/c-runtime-library/crt-initialization?view=msvc-170 +#define NAPI_C_CTOR(fn) \ + static void NAPI_CDECL fn(void); \ + __declspec(dllexport, allocate(".CRT$XCU")) void(NAPI_CDECL * fn##_)(void) = \ + fn; \ + static void NAPI_CDECL fn(void) +#endif // defined(__cplusplus) +#else +#define NAPI_C_CTOR(fn) \ + static void fn(void) __attribute__((constructor)); \ + static void fn(void) +#endif + +#define NAPI_MODULE_TEST(modname, regfunc) \ + EXTERN_C_START \ + static napi_module _module = { \ + NAPI_MODULE_VERSION, \ + 0, \ + __FILE__, \ + regfunc, \ + #modname, \ + NULL, \ + {0}, \ + }; \ + NAPI_C_CTOR(_register_##modname) { napi_module_register(&_module); } \ + EXTERN_C_END + +NAPI_MODULE_TEST(NODE_GYP_MODULE_NAME, NULL) diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status index 1cbcefb9712fae..2c105b230fae0b 100644 --- a/test/parallel/parallel.status +++ b/test/parallel/parallel.status @@ -14,6 +14,9 @@ test-crypto-keygen: PASS,FLAKY # https://github.com/nodejs/node/issues/41201 test-fs-rmdir-recursive: PASS, FLAKY +# Windows on ARM +[$system==win32 && $arch==arm64] + [$system==linux] # https://github.com/nodejs/node/issues/39368 test-domain-error-types: PASS,FLAKY @@ -29,6 +32,8 @@ test-http-server-request-timeouts-mixed: PASS,FLAKY # https://github.com/nodejs/node/pull/31178 test-crypto-dh-stateless: SKIP test-crypto-keygen: SKIP +# https://github.com/nodejs/node/issues/47297 +test-wasm-web-api: SKIP [$system==solaris] # Also applies to SmartOS # https://github.com/nodejs/node/issues/43457 diff --git a/test/parallel/test-abortcontroller.js b/test/parallel/test-abortcontroller.js index ce6c72f4294043..4099a018df7daf 100644 --- a/test/parallel/test-abortcontroller.js +++ b/test/parallel/test-abortcontroller.js @@ -57,9 +57,9 @@ const { setTimeout: sleep } = require('timers/promises'); })); first.abort(); second.abort(); - const firstTrusted = Reflect.getOwnPropertyDescriptor(ev1, 'isTrusted').get; - const secondTrusted = Reflect.getOwnPropertyDescriptor(ev2, 'isTrusted').get; - const untrusted = Reflect.getOwnPropertyDescriptor(ev3, 'isTrusted').get; + const firstTrusted = Reflect.getOwnPropertyDescriptor(Object.getPrototypeOf(ev1), 'isTrusted').get; + const secondTrusted = Reflect.getOwnPropertyDescriptor(Object.getPrototypeOf(ev2), 'isTrusted').get; + const untrusted = Reflect.getOwnPropertyDescriptor(Object.getPrototypeOf(ev3), 'isTrusted').get; strictEqual(firstTrusted, secondTrusted); strictEqual(untrusted, firstTrusted); } diff --git a/test/parallel/test-blob-file-backed.js b/test/parallel/test-blob-file-backed.js index 7271fef2f3ce46..225b660c7bbdb3 100644 --- a/test/parallel/test-blob-file-backed.js +++ b/test/parallel/test-blob-file-backed.js @@ -20,12 +20,14 @@ const { Blob } = require('buffer'); const tmpdir = require('../common/tmpdir'); const testfile = path.join(tmpdir.path, 'test-file-backed-blob.txt'); const testfile2 = path.join(tmpdir.path, 'test-file-backed-blob2.txt'); +const testfile3 = path.join(tmpdir.path, 'test-file-backed-blob3.txt'); tmpdir.refresh(); const data = `${'a'.repeat(1000)}${'b'.repeat(2000)}`; writeFileSync(testfile, data); writeFileSync(testfile2, data.repeat(100)); +writeFileSync(testfile3, ''); (async () => { const blob = await openAsBlob(testfile); @@ -79,3 +81,21 @@ writeFileSync(testfile2, data.repeat(100)); await unlink(testfile2); })().then(common.mustCall()); + +(async () => { + const blob = await openAsBlob(testfile3); + strictEqual(blob.size, 0); + strictEqual(await blob.text(), ''); + writeFileSync(testfile3, 'abc'); + await rejects(blob.text(), { name: 'NotReadableError' }); + await unlink(testfile3); +})().then(common.mustCall()); + +(async () => { + const blob = await openAsBlob(testfile3); + strictEqual(blob.size, 0); + writeFileSync(testfile3, 'abc'); + const stream = blob.stream(); + const reader = stream.getReader(); + await rejects(() => reader.read(), { name: 'NotReadableError' }); +})().then(common.mustCall()); diff --git a/test/parallel/test-blob.js b/test/parallel/test-blob.js index 68fd2d547a0e80..6b6ce70687660e 100644 --- a/test/parallel/test-blob.js +++ b/test/parallel/test-blob.js @@ -315,3 +315,16 @@ assert.throws(() => new Blob({}), { delete Object.prototype.type; } + +(async () => { + // Refs: https://github.com/nodejs/node/issues/47301 + + const random = Buffer.alloc(256).fill('0'); + const chunks = []; + + for (let i = 0; i < random.length; i += 2) { + chunks.push(random.subarray(i, i + 2)); + } + + await new Blob(chunks).arrayBuffer(); +})().then(common.mustCall()); diff --git a/test/parallel/test-child-process-exec-cwd.js b/test/parallel/test-child-process-exec-cwd.js index 2f86cf10fe5e0f..49e56ef5511f8c 100644 --- a/test/parallel/test-child-process-exec-cwd.js +++ b/test/parallel/test-child-process-exec-cwd.js @@ -35,5 +35,5 @@ if (common.isWindows) { } exec(pwdcommand, { cwd: dir }, common.mustSucceed((stdout, stderr) => { - assert(stdout.startsWith(dir)); + assert(stdout.toLowerCase().startsWith(dir)); })); diff --git a/test/parallel/test-crypto-keygen.js b/test/parallel/test-crypto-keygen.js index 1a77266b057041..df8c5d93a90342 100644 --- a/test/parallel/test-crypto-keygen.js +++ b/test/parallel/test-crypto-keygen.js @@ -1278,7 +1278,7 @@ const sec1EncExp = (cipher) => getRegExpForPEM('EC PRIVATE KEY', cipher); } // Test invalid divisor lengths. (out of range) - for (const divisorLength of [-6, -9, 2147483648]) { + for (const divisorLength of [-1, -6, -9, 2147483648]) { assert.throws(() => generateKeyPair('dsa', { modulusLength: 2048, divisorLength diff --git a/test/parallel/test-crypto-prime.js b/test/parallel/test-crypto-prime.js index 88eca54bb90560..f0ec4efaf611c8 100644 --- a/test/parallel/test-crypto-prime.js +++ b/test/parallel/test-crypto-prime.js @@ -229,14 +229,27 @@ generatePrime( }); }); -['hello', {}, []].forEach((i) => { - assert.throws(() => checkPrime(2, { checks: i }), { - code: 'ERR_INVALID_ARG_TYPE' - }, common.mustNotCall()); - assert.throws(() => checkPrimeSync(2, { checks: i }), { - code: 'ERR_INVALID_ARG_TYPE' +for (const checks of ['hello', {}, []]) { + assert.throws(() => checkPrime(2n, { checks }, common.mustNotCall()), { + code: 'ERR_INVALID_ARG_TYPE', + message: /checks/ }); -}); + assert.throws(() => checkPrimeSync(2n, { checks }), { + code: 'ERR_INVALID_ARG_TYPE', + message: /checks/ + }); +} + +for (const checks of [-(2 ** 31), -1, 2 ** 31, 2 ** 32 - 1, 2 ** 32, 2 ** 50]) { + assert.throws(() => checkPrime(2n, { checks }, common.mustNotCall()), { + code: 'ERR_OUT_OF_RANGE', + message: /<= 2147483647/ + }); + assert.throws(() => checkPrimeSync(2n, { checks }), { + code: 'ERR_OUT_OF_RANGE', + message: /<= 2147483647/ + }); +} assert(!checkPrimeSync(Buffer.from([0x1]))); assert(checkPrimeSync(Buffer.from([0x2]))); diff --git a/test/sequential/test-debugger-auto-resume.mjs b/test/parallel/test-debugger-auto-resume.mjs similarity index 94% rename from test/sequential/test-debugger-auto-resume.mjs rename to test/parallel/test-debugger-auto-resume.mjs index e2f18d6e2bc79b..077258907d136b 100644 --- a/test/sequential/test-debugger-auto-resume.mjs +++ b/test/parallel/test-debugger-auto-resume.mjs @@ -21,7 +21,7 @@ addLibraryPath(process.env); }; env.NODE_INSPECT_RESUME_ON_START = '1'; - const cli = startCLI([script], [], { + const cli = startCLI(['--port=0', script], [], { env, }); diff --git a/test/sequential/test-debugger-backtrace.js b/test/parallel/test-debugger-backtrace.js similarity index 94% rename from test/sequential/test-debugger-backtrace.js rename to test/parallel/test-debugger-backtrace.js index c189cb3f5b22e6..f66cc11d70a918 100644 --- a/test/sequential/test-debugger-backtrace.js +++ b/test/parallel/test-debugger-backtrace.js @@ -13,7 +13,7 @@ const path = require('path'); { const scriptFullPath = fixtures.path('debugger', 'backtrace.js'); const script = path.relative(process.cwd(), scriptFullPath); - const cli = startCLI([script]); + const cli = startCLI(['--port=0', script]); async function runTest() { try { diff --git a/test/sequential/test-debugger-break.js b/test/parallel/test-debugger-break.js similarity index 98% rename from test/sequential/test-debugger-break.js rename to test/parallel/test-debugger-break.js index 1d92331d4e1013..65b4355cfe7bc2 100644 --- a/test/sequential/test-debugger-break.js +++ b/test/parallel/test-debugger-break.js @@ -11,7 +11,7 @@ const path = require('path'); const scriptFullPath = fixtures.path('debugger', 'break.js'); const script = path.relative(process.cwd(), scriptFullPath); -const cli = startCLI([script]); +const cli = startCLI(['--port=0', script]); (async () => { await cli.waitForInitialBreak(); diff --git a/test/sequential/test-debugger-breakpoint-exists.js b/test/parallel/test-debugger-breakpoint-exists.js similarity index 93% rename from test/sequential/test-debugger-breakpoint-exists.js rename to test/parallel/test-debugger-breakpoint-exists.js index e2efa8182e4ade..872fad2d82400c 100644 --- a/test/sequential/test-debugger-breakpoint-exists.js +++ b/test/parallel/test-debugger-breakpoint-exists.js @@ -9,7 +9,7 @@ const startCLI = require('../common/debugger'); // Test for "Breakpoint at specified location already exists" error. const script = fixtures.path('debugger', 'three-lines.js'); -const cli = startCLI([script]); +const cli = startCLI(['--port=0', script]); (async () => { try { diff --git a/test/sequential/test-debugger-clear-breakpoints.js b/test/parallel/test-debugger-clear-breakpoints.js similarity index 97% rename from test/sequential/test-debugger-clear-breakpoints.js rename to test/parallel/test-debugger-clear-breakpoints.js index 91349e105a1160..74623ec4371331 100644 --- a/test/sequential/test-debugger-clear-breakpoints.js +++ b/test/parallel/test-debugger-clear-breakpoints.js @@ -13,7 +13,7 @@ const path = require('path'); { const scriptFullPath = fixtures.path('debugger', 'break.js'); const script = path.relative(process.cwd(), scriptFullPath); - const cli = startCLI([script]); + const cli = startCLI(['--port=0', script]); function onFatal(error) { cli.quit(); diff --git a/test/sequential/test-debugger-exceptions.js b/test/parallel/test-debugger-exceptions.js similarity index 97% rename from test/sequential/test-debugger-exceptions.js rename to test/parallel/test-debugger-exceptions.js index 3f75161a6b6e3d..7f3e192251e924 100644 --- a/test/sequential/test-debugger-exceptions.js +++ b/test/parallel/test-debugger-exceptions.js @@ -13,7 +13,7 @@ const path = require('path'); { const scriptFullPath = fixtures.path('debugger', 'exceptions.js'); const script = path.relative(process.cwd(), scriptFullPath); - const cli = startCLI([script]); + const cli = startCLI(['--port=0', script]); (async () => { try { diff --git a/test/sequential/test-debugger-exec-scope.mjs b/test/parallel/test-debugger-exec-scope.mjs similarity index 91% rename from test/sequential/test-debugger-exec-scope.mjs rename to test/parallel/test-debugger-exec-scope.mjs index 08b37e279556f2..3e4241cd018fc4 100644 --- a/test/sequential/test-debugger-exec-scope.mjs +++ b/test/parallel/test-debugger-exec-scope.mjs @@ -7,7 +7,7 @@ import startCLI from '../common/debugger.js'; import assert from 'assert'; -const cli = startCLI([path('debugger/backtrace.js')]); +const cli = startCLI(['--port=0', path('debugger/backtrace.js')]); try { await cli.waitForInitialBreak(); diff --git a/test/sequential/test-debugger-exec.js b/test/parallel/test-debugger-exec.js similarity index 96% rename from test/sequential/test-debugger-exec.js rename to test/parallel/test-debugger-exec.js index 3d4bb9ff63ab91..51bc7497345ba2 100644 --- a/test/sequential/test-debugger-exec.js +++ b/test/parallel/test-debugger-exec.js @@ -8,7 +8,7 @@ const startCLI = require('../common/debugger'); const assert = require('assert'); -const cli = startCLI([fixtures.path('debugger/alive.js')]); +const cli = startCLI(['--port=0', fixtures.path('debugger/alive.js')]); async function waitInitialBreak() { try { diff --git a/test/sequential/test-debugger-heap-profiler.js b/test/parallel/test-debugger-heap-profiler.js similarity index 92% rename from test/sequential/test-debugger-heap-profiler.js rename to test/parallel/test-debugger-heap-profiler.js index dfec0fe10d5a36..1237c33f7f4567 100644 --- a/test/sequential/test-debugger-heap-profiler.js +++ b/test/parallel/test-debugger-heap-profiler.js @@ -17,7 +17,7 @@ const filename = path.join(tmpdir.path, 'node.heapsnapshot'); // Heap profiler take snapshot. { const opts = { cwd: tmpdir.path }; - const cli = startCLI([fixtures.path('debugger/empty.js')], [], opts); + const cli = startCLI(['--port=0', fixtures.path('debugger/empty.js')], [], opts); async function waitInitialBreak() { try { diff --git a/test/sequential/test-debugger-help.mjs b/test/parallel/test-debugger-help.mjs similarity index 85% rename from test/sequential/test-debugger-help.mjs rename to test/parallel/test-debugger-help.mjs index 64f569831fba5e..a4e659113bf79c 100644 --- a/test/sequential/test-debugger-help.mjs +++ b/test/parallel/test-debugger-help.mjs @@ -7,7 +7,7 @@ import startCLI from '../common/debugger.js'; import assert from 'assert'; -const cli = startCLI([path('debugger', 'empty.js')]); +const cli = startCLI(['--port=0', path('debugger', 'empty.js')]); try { await cli.waitForInitialBreak(); diff --git a/test/sequential/test-debugger-list.js b/test/parallel/test-debugger-list.js similarity index 92% rename from test/sequential/test-debugger-list.js rename to test/parallel/test-debugger-list.js index 594874e140b306..6f2e36e763a651 100644 --- a/test/sequential/test-debugger-list.js +++ b/test/parallel/test-debugger-list.js @@ -8,7 +8,7 @@ const startCLI = require('../common/debugger'); const assert = require('assert'); -const cli = startCLI([fixtures.path('debugger/three-lines.js')]); +const cli = startCLI(['--port=0', fixtures.path('debugger/three-lines.js')]); (async () => { await cli.waitForInitialBreak(); diff --git a/test/sequential/test-debugger-low-level.js b/test/parallel/test-debugger-low-level.js similarity index 91% rename from test/sequential/test-debugger-low-level.js rename to test/parallel/test-debugger-low-level.js index 93c8e1b625591d..31f67849f54748 100644 --- a/test/sequential/test-debugger-low-level.js +++ b/test/parallel/test-debugger-low-level.js @@ -9,7 +9,7 @@ const assert = require('assert'); // Debugger agent direct access. { - const cli = startCLI([fixtures.path('debugger/three-lines.js')]); + const cli = startCLI(['--port=0', fixtures.path('debugger/three-lines.js')]); const scriptPattern = /^\* (\d+): \S+debugger(?:\/|\\)three-lines\.js/m; async function testDebuggerLowLevel() { diff --git a/test/sequential/test-debugger-object-type-remote-object.js b/test/parallel/test-debugger-object-type-remote-object.js similarity index 95% rename from test/sequential/test-debugger-object-type-remote-object.js rename to test/parallel/test-debugger-object-type-remote-object.js index 7404eae3963447..a055e8ce0fb9e4 100644 --- a/test/sequential/test-debugger-object-type-remote-object.js +++ b/test/parallel/test-debugger-object-type-remote-object.js @@ -8,7 +8,7 @@ const startCLI = require('../common/debugger'); const assert = require('assert'); -const cli = startCLI([fixtures.path('debugger/empty.js')]); +const cli = startCLI(['--port=0', fixtures.path('debugger/empty.js')]); (async () => { await cli.waitForInitialBreak(); diff --git a/test/sequential/test-debugger-preserve-breaks.js b/test/parallel/test-debugger-preserve-breaks.js similarity index 97% rename from test/sequential/test-debugger-preserve-breaks.js rename to test/parallel/test-debugger-preserve-breaks.js index bb0eba961432ec..00168c570d6b7c 100644 --- a/test/sequential/test-debugger-preserve-breaks.js +++ b/test/parallel/test-debugger-preserve-breaks.js @@ -14,7 +14,7 @@ const script = path.relative(process.cwd(), scriptFullPath); // Run after quit. const runTest = async () => { - const cli = startCLI([script]); + const cli = startCLI(['--port=0', script]); try { await cli.waitForInitialBreak(); await cli.waitForPrompt(); diff --git a/test/sequential/test-debugger-profile-command.js b/test/parallel/test-debugger-profile-command.js similarity index 93% rename from test/sequential/test-debugger-profile-command.js rename to test/parallel/test-debugger-profile-command.js index 06818c2132d9c5..da81dfc6e10569 100644 --- a/test/sequential/test-debugger-profile-command.js +++ b/test/parallel/test-debugger-profile-command.js @@ -10,7 +10,7 @@ const assert = require('assert'); const fs = require('fs'); const path = require('path'); -const cli = startCLI([fixtures.path('debugger/empty.js')]); +const cli = startCLI(['--port=0', fixtures.path('debugger/empty.js')]); const rootDir = path.resolve(__dirname, '..', '..'); diff --git a/test/sequential/test-debugger-profile.js b/test/parallel/test-debugger-profile.js similarity index 92% rename from test/sequential/test-debugger-profile.js rename to test/parallel/test-debugger-profile.js index bf4a69720022cd..6cd0fc9d88d399 100644 --- a/test/sequential/test-debugger-profile.js +++ b/test/parallel/test-debugger-profile.js @@ -14,7 +14,7 @@ function delay(ms) { // Profiles. { - const cli = startCLI([fixtures.path('debugger/empty.js')]); + const cli = startCLI(['--port=0', fixtures.path('debugger/empty.js')]); function onFatal(error) { cli.quit(); diff --git a/test/sequential/test-debugger-random-port-with-inspect-port.js b/test/parallel/test-debugger-random-port-with-inspect-port.js similarity index 100% rename from test/sequential/test-debugger-random-port-with-inspect-port.js rename to test/parallel/test-debugger-random-port-with-inspect-port.js diff --git a/test/sequential/test-debugger-random-port.js b/test/parallel/test-debugger-random-port.js similarity index 100% rename from test/sequential/test-debugger-random-port.js rename to test/parallel/test-debugger-random-port.js diff --git a/test/sequential/test-debugger-repeat-last.js b/test/parallel/test-debugger-repeat-last.js similarity index 97% rename from test/sequential/test-debugger-repeat-last.js rename to test/parallel/test-debugger-repeat-last.js index 5bdcc7dc8c8642..9a9b8eecdc710d 100644 --- a/test/sequential/test-debugger-repeat-last.js +++ b/test/parallel/test-debugger-repeat-last.js @@ -8,7 +8,7 @@ const fixture = path('debugger-repeat-last.js'); const args = [ 'inspect', - `--port=${common.PORT}`, + '--port=0', fixture, ]; diff --git a/test/sequential/test-debugger-restart-message.js b/test/parallel/test-debugger-restart-message.js similarity index 95% rename from test/sequential/test-debugger-restart-message.js rename to test/parallel/test-debugger-restart-message.js index 190d0c18ccc081..e4001b47ee2df4 100644 --- a/test/sequential/test-debugger-restart-message.js +++ b/test/parallel/test-debugger-restart-message.js @@ -14,7 +14,7 @@ const startCLI = require('../common/debugger'); // Using `restart` should result in only one "Connect/For help" message. { const script = fixtures.path('debugger', 'three-lines.js'); - const cli = startCLI([script]); + const cli = startCLI(['--port=0', script]); const listeningRegExp = /Debugger listening on/g; diff --git a/test/sequential/test-debugger-run-after-quit-restart.js b/test/parallel/test-debugger-run-after-quit-restart.js similarity index 98% rename from test/sequential/test-debugger-run-after-quit-restart.js rename to test/parallel/test-debugger-run-after-quit-restart.js index a9da07dcdff8bd..2c56f7227aed69 100644 --- a/test/sequential/test-debugger-run-after-quit-restart.js +++ b/test/parallel/test-debugger-run-after-quit-restart.js @@ -13,7 +13,7 @@ const path = require('path'); { const scriptFullPath = fixtures.path('debugger', 'three-lines.js'); const script = path.relative(process.cwd(), scriptFullPath); - const cli = startCLI([script]); + const cli = startCLI(['--port=0', script]); function onFatal(error) { cli.quit(); diff --git a/test/sequential/test-debugger-sb-before-load.js b/test/parallel/test-debugger-sb-before-load.js similarity index 95% rename from test/sequential/test-debugger-sb-before-load.js rename to test/parallel/test-debugger-sb-before-load.js index e2267156b7420b..416147b4bb64c5 100644 --- a/test/sequential/test-debugger-sb-before-load.js +++ b/test/parallel/test-debugger-sb-before-load.js @@ -17,7 +17,7 @@ const script = path.relative(process.cwd(), scriptFullPath); const otherScriptFullPath = fixtures.path('debugger', 'cjs', 'other.js'); const otherScript = path.relative(process.cwd(), otherScriptFullPath); -const cli = startCLI([script]); +const cli = startCLI(['--port=0', script]); (async () => { await cli.waitForInitialBreak(); diff --git a/test/sequential/test-debugger-scripts.js b/test/parallel/test-debugger-scripts.js similarity index 95% rename from test/sequential/test-debugger-scripts.js rename to test/parallel/test-debugger-scripts.js index b0f611bd1c6491..83f578cf1cabbb 100644 --- a/test/sequential/test-debugger-scripts.js +++ b/test/parallel/test-debugger-scripts.js @@ -11,7 +11,7 @@ const assert = require('assert'); // List scripts. { const script = fixtures.path('debugger', 'three-lines.js'); - const cli = startCLI([script]); + const cli = startCLI(['--port=0', script]); (async () => { try { diff --git a/test/sequential/test-debugger-set-context-line-number.mjs b/test/parallel/test-debugger-set-context-line-number.mjs similarity index 96% rename from test/sequential/test-debugger-set-context-line-number.mjs rename to test/parallel/test-debugger-set-context-line-number.mjs index adb6d9ab9e52b0..5c6e281c1d3b4a 100644 --- a/test/sequential/test-debugger-set-context-line-number.mjs +++ b/test/parallel/test-debugger-set-context-line-number.mjs @@ -7,7 +7,7 @@ import startCLI from '../common/debugger.js'; import assert from 'assert'; const script = path('debugger', 'twenty-lines.js'); -const cli = startCLI([script]); +const cli = startCLI(['--port=0', script]); function onFatal(error) { cli.quit(); diff --git a/test/sequential/test-debugger-use-strict.js b/test/parallel/test-debugger-use-strict.js similarity index 93% rename from test/sequential/test-debugger-use-strict.js rename to test/parallel/test-debugger-use-strict.js index ae82a9fc82352b..dce928697659ea 100644 --- a/test/sequential/test-debugger-use-strict.js +++ b/test/parallel/test-debugger-use-strict.js @@ -11,7 +11,7 @@ const assert = require('assert'); // Test for files that start with strict directive. { const script = fixtures.path('debugger', 'use-strict.js'); - const cli = startCLI([script]); + const cli = startCLI(['--port=0', script]); function onFatal(error) { cli.quit(); diff --git a/test/sequential/test-debugger-watch-validation.js b/test/parallel/test-debugger-watch-validation.js similarity index 88% rename from test/sequential/test-debugger-watch-validation.js rename to test/parallel/test-debugger-watch-validation.js index 46307c18d55526..2ccd889646729d 100644 --- a/test/sequential/test-debugger-watch-validation.js +++ b/test/parallel/test-debugger-watch-validation.js @@ -8,7 +8,7 @@ const startCLI = require('../common/debugger'); const assert = require('assert'); -const cli = startCLI([fixtures.path('debugger/break.js')]); +const cli = startCLI(['--port=0', fixtures.path('debugger/break.js')]); (async () => { await cli.waitForInitialBreak(); diff --git a/test/sequential/test-debugger-watchers.mjs b/test/parallel/test-debugger-watchers.mjs similarity index 97% rename from test/sequential/test-debugger-watchers.mjs rename to test/parallel/test-debugger-watchers.mjs index 4ff7ea00a22258..d2492cde67c84e 100644 --- a/test/sequential/test-debugger-watchers.mjs +++ b/test/parallel/test-debugger-watchers.mjs @@ -7,7 +7,7 @@ import startCLI from '../common/debugger.js'; import assert from 'assert'; const script = path('debugger', 'break.js'); -const cli = startCLI([script]); +const cli = startCLI(['--port=0', script]); function onFatal(error) { cli.quit(); diff --git a/test/parallel/test-diagnostics-channel-bind-store.js b/test/parallel/test-diagnostics-channel-bind-store.js new file mode 100644 index 00000000000000..81fb299c2f637c --- /dev/null +++ b/test/parallel/test-diagnostics-channel-bind-store.js @@ -0,0 +1,108 @@ +'use strict'; + +const common = require('../common'); +const assert = require('assert'); +const dc = require('diagnostics_channel'); +const { AsyncLocalStorage } = require('async_hooks'); + +let n = 0; +const thisArg = new Date(); +const inputs = [ + { foo: 'bar' }, + { baz: 'buz' }, +]; + +const channel = dc.channel('test'); + +// Bind a storage directly to published data +const store1 = new AsyncLocalStorage(); +channel.bindStore(store1); +let store1bound = true; + +// Bind a store with transformation of published data +const store2 = new AsyncLocalStorage(); +channel.bindStore(store2, common.mustCall((data) => { + assert.strictEqual(data, inputs[n]); + return { data }; +}, 4)); + +// Regular subscribers should see publishes from runStores calls +channel.subscribe(common.mustCall((data) => { + if (store1bound) { + assert.deepStrictEqual(data, store1.getStore()); + } + assert.deepStrictEqual({ data }, store2.getStore()); + assert.strictEqual(data, inputs[n]); +}, 4)); + +// Verify stores are empty before run +assert.strictEqual(store1.getStore(), undefined); +assert.strictEqual(store2.getStore(), undefined); + +channel.runStores(inputs[n], common.mustCall(function(a, b) { + // Verify this and argument forwarding + assert.strictEqual(this, thisArg); + assert.strictEqual(a, 1); + assert.strictEqual(b, 2); + + // Verify store 1 state matches input + assert.strictEqual(store1.getStore(), inputs[n]); + + // Verify store 2 state has expected transformation + assert.deepStrictEqual(store2.getStore(), { data: inputs[n] }); + + // Should support nested contexts + n++; + channel.runStores(inputs[n], common.mustCall(function() { + // Verify this and argument forwarding + assert.strictEqual(this, undefined); + + // Verify store 1 state matches input + assert.strictEqual(store1.getStore(), inputs[n]); + + // Verify store 2 state has expected transformation + assert.deepStrictEqual(store2.getStore(), { data: inputs[n] }); + })); + n--; + + // Verify store 1 state matches input + assert.strictEqual(store1.getStore(), inputs[n]); + + // Verify store 2 state has expected transformation + assert.deepStrictEqual(store2.getStore(), { data: inputs[n] }); +}), thisArg, 1, 2); + +// Verify stores are empty after run +assert.strictEqual(store1.getStore(), undefined); +assert.strictEqual(store2.getStore(), undefined); + +// Verify unbinding works +assert.ok(channel.unbindStore(store1)); +store1bound = false; + +// Verify unbinding a store that is not bound returns false +assert.ok(!channel.unbindStore(store1)); + +n++; +channel.runStores(inputs[n], common.mustCall(() => { + // Verify after unbinding store 1 will remain undefined + assert.strictEqual(store1.getStore(), undefined); + + // Verify still bound store 2 receives expected data + assert.deepStrictEqual(store2.getStore(), { data: inputs[n] }); +})); + +// Contain transformer errors and emit on next tick +const fail = new Error('fail'); +channel.bindStore(store1, () => { + throw fail; +}); + +let calledRunStores = false; +process.once('uncaughtException', common.mustCall((err) => { + assert.strictEqual(calledRunStores, true); + assert.strictEqual(err, fail); +})); + +channel.runStores(inputs[n], common.mustCall()); +calledRunStores = true; diff --git a/test/parallel/test-diagnostics-channel-tracing-channel-async-error.js b/test/parallel/test-diagnostics-channel-tracing-channel-async-error.js new file mode 100644 index 00000000000000..7335e15de9dfb5 --- /dev/null +++ b/test/parallel/test-diagnostics-channel-tracing-channel-async-error.js @@ -0,0 +1,46 @@ +'use strict'; + +const common = require('../common'); +const dc = require('diagnostics_channel'); +const assert = require('assert'); + +const channel = dc.tracingChannel('test'); + +const expectedError = new Error('test'); +const input = { foo: 'bar' }; +const thisArg = { baz: 'buz' }; + +function check(found) { + assert.deepStrictEqual(found, input); +} + +const handlers = { + start: common.mustCall(check, 2), + end: common.mustCall(check, 2), + asyncStart: common.mustCall(check, 2), + asyncEnd: common.mustCall(check, 2), + error: common.mustCall((found) => { + check(found); + assert.deepStrictEqual(found.error, expectedError); + }, 2) +}; + +channel.subscribe(handlers); + +channel.traceCallback(function(cb, err) { + assert.deepStrictEqual(this, thisArg); + setImmediate(cb, err); +}, 0, input, thisArg, common.mustCall((err, res) => { + assert.strictEqual(err, expectedError); + assert.strictEqual(res, undefined); +}), expectedError); + +channel.tracePromise(function(value) { + assert.deepStrictEqual(this, thisArg); + return Promise.reject(value); +}, input, thisArg, expectedError).then( + common.mustNotCall(), + common.mustCall((value) => { + assert.deepStrictEqual(value, expectedError); + }) +); diff --git a/test/parallel/test-diagnostics-channel-tracing-channel-async.js b/test/parallel/test-diagnostics-channel-tracing-channel-async.js new file mode 100644 index 00000000000000..03bdc85fb14e70 --- /dev/null +++ b/test/parallel/test-diagnostics-channel-tracing-channel-async.js @@ -0,0 +1,60 @@ +'use strict'; + +const common = require('../common'); +const dc = require('diagnostics_channel'); +const assert = require('assert'); + +const channel = dc.tracingChannel('test'); + +const expectedResult = { foo: 'bar' }; +const input = { foo: 'bar' }; +const thisArg = { baz: 'buz' }; + +function check(found) { + assert.deepStrictEqual(found, input); +} + +const handlers = { + start: common.mustCall(check, 2), + end: common.mustCall(check, 2), + asyncStart: common.mustCall((found) => { + check(found); + assert.strictEqual(found.error, undefined); + assert.deepStrictEqual(found.result, expectedResult); + }, 2), + asyncEnd: common.mustCall((found) => { + check(found); + assert.strictEqual(found.error, undefined); + assert.deepStrictEqual(found.result, expectedResult); + }, 2), + error: common.mustNotCall() +}; + +channel.subscribe(handlers); + +channel.traceCallback(function(cb, err, res) { + assert.deepStrictEqual(this, thisArg); + setImmediate(cb, err, res); +}, 0, input, thisArg, common.mustCall((err, res) => { + assert.strictEqual(err, null); + assert.deepStrictEqual(res, expectedResult); +}), null, expectedResult); + +channel.tracePromise(function(value) { + assert.deepStrictEqual(this, thisArg); + return Promise.resolve(value); +}, input, thisArg, expectedResult).then( + common.mustCall((value) => { + assert.deepStrictEqual(value, expectedResult); + }), + common.mustNotCall() +); + +let failed = false; +try { + channel.traceCallback(common.mustNotCall(), 0, input, thisArg, 1, 2, 3); +} catch (err) { + assert.ok(/"callback" argument must be of type function/.test(err.message)); + failed = true; +} +assert.strictEqual(failed, true); diff --git a/test/parallel/test-diagnostics-channel-tracing-channel-callback-run-stores.js b/test/parallel/test-diagnostics-channel-tracing-channel-callback-run-stores.js new file mode 100644 index 00000000000000..874433efd2cb4a --- /dev/null +++ b/test/parallel/test-diagnostics-channel-tracing-channel-callback-run-stores.js @@ -0,0 +1,29 @@ +'use strict'; + +const common = require('../common'); +const { AsyncLocalStorage } = require('async_hooks'); +const dc = require('diagnostics_channel'); +const assert = require('assert'); + +const channel = dc.tracingChannel('test'); +const store = new AsyncLocalStorage(); + +const firstContext = { foo: 'bar' }; +const secondContext = { baz: 'buz' }; + +channel.start.bindStore(store, common.mustCall(() => { + return firstContext; +})); + +channel.asyncStart.bindStore(store, common.mustCall(() => { + return secondContext; +})); + +assert.strictEqual(store.getStore(), undefined); +channel.traceCallback(common.mustCall((cb) => { + assert.deepStrictEqual(store.getStore(), firstContext); + setImmediate(cb); +}), 0, {}, null, common.mustCall(() => { + assert.deepStrictEqual(store.getStore(), secondContext); +})); +assert.strictEqual(store.getStore(), undefined); diff --git a/test/parallel/test-diagnostics-channel-tracing-channel-promise-run-stores.js b/test/parallel/test-diagnostics-channel-tracing-channel-promise-run-stores.js new file mode 100644 index 00000000000000..5292a6fe096bae --- /dev/null +++ b/test/parallel/test-diagnostics-channel-tracing-channel-promise-run-stores.js @@ -0,0 +1,31 @@ +'use strict'; + +const common = require('../common'); +const { setTimeout } = require('node:timers/promises'); +const { AsyncLocalStorage } = require('async_hooks'); +const dc = require('diagnostics_channel'); +const assert = require('assert'); + +const channel = dc.tracingChannel('test'); +const store = new AsyncLocalStorage(); + +const firstContext = { foo: 'bar' }; +const secondContext = { baz: 'buz' }; + +channel.start.bindStore(store, common.mustCall(() => { + return firstContext; +})); + +channel.asyncStart.bindStore(store, common.mustNotCall(() => { + return secondContext; +})); + +assert.strictEqual(store.getStore(), undefined); +channel.tracePromise(common.mustCall(async () => { + assert.deepStrictEqual(store.getStore(), firstContext); + await setTimeout(1); + // Should _not_ switch to second context as promises don't have an "after" + // point at which to do a runStores. + assert.deepStrictEqual(store.getStore(), firstContext); +})); +assert.strictEqual(store.getStore(), undefined); diff --git a/test/parallel/test-diagnostics-channel-tracing-channel-run-stores.js b/test/parallel/test-diagnostics-channel-tracing-channel-run-stores.js new file mode 100644 index 00000000000000..3ffe5e6720c0e4 --- /dev/null +++ b/test/parallel/test-diagnostics-channel-tracing-channel-run-stores.js @@ -0,0 +1,21 @@ +'use strict'; + +const common = require('../common'); +const { AsyncLocalStorage } = require('async_hooks'); +const dc = require('diagnostics_channel'); +const assert = require('assert'); + +const channel = dc.tracingChannel('test'); +const store = new AsyncLocalStorage(); + +const context = { foo: 'bar' }; + +channel.start.bindStore(store, common.mustCall(() => { + return context; +})); + +assert.strictEqual(store.getStore(), undefined); +channel.traceSync(common.mustCall(() => { + assert.deepStrictEqual(store.getStore(), context); +})); +assert.strictEqual(store.getStore(), undefined); diff --git a/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js b/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js new file mode 100644 index 00000000000000..0965bf3fb495f0 --- /dev/null +++ b/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js @@ -0,0 +1,39 @@ +'use strict'; + +const common = require('../common'); +const dc = require('diagnostics_channel'); +const assert = require('assert'); + +const channel = dc.tracingChannel('test'); + +const expectedError = new Error('test'); +const input = { foo: 'bar' }; +const thisArg = { baz: 'buz' }; + +function check(found) { + assert.deepStrictEqual(found, input); +} + +const handlers = { + start: common.mustCall(check), + end: common.mustCall(check), + asyncStart: common.mustNotCall(), + asyncEnd: common.mustNotCall(), + error: common.mustCall((found) => { + check(found); + assert.deepStrictEqual(found.error, expectedError); + }) +}; + +channel.subscribe(handlers); +try { + channel.traceSync(function(err) { + assert.deepStrictEqual(this, thisArg); + assert.strictEqual(err, expectedError); + throw err; + }, input, thisArg, expectedError); + + throw new Error('It should not reach this error'); +} catch (error) { + assert.deepStrictEqual(error, expectedError); +} diff --git a/test/parallel/test-diagnostics-channel-tracing-channel-sync.js b/test/parallel/test-diagnostics-channel-tracing-channel-sync.js new file mode 100644 index 00000000000000..b28b47256b755d --- /dev/null +++ b/test/parallel/test-diagnostics-channel-tracing-channel-sync.js @@ -0,0 +1,46 @@ +'use strict'; + +const common = require('../common'); +const dc = require('diagnostics_channel'); +const assert = require('assert'); + +const channel = dc.tracingChannel('test'); + +const expectedResult = { foo: 'bar' }; +const input = { foo: 'bar' }; +const thisArg = { baz: 'buz' }; +const arg = { baz: 'buz' }; + +function check(found) { + assert.strictEqual(found, input); +} + +const handlers = { + start: common.mustCall(check), + end: common.mustCall((found) => { + check(found); + assert.strictEqual(found.result, expectedResult); + }), + asyncStart: common.mustNotCall(), + asyncEnd: common.mustNotCall(), + error: common.mustNotCall() +}; + +assert.strictEqual(channel.start.hasSubscribers, false); +channel.subscribe(handlers); +assert.strictEqual(channel.start.hasSubscribers, true); +const result1 = channel.traceSync(function(arg1) { + assert.strictEqual(arg1, arg); + assert.strictEqual(this, thisArg); + return expectedResult; +}, input, thisArg, arg); +assert.strictEqual(result1, expectedResult); + +channel.unsubscribe(handlers); +assert.strictEqual(channel.start.hasSubscribers, false); +const result2 = channel.traceSync(function(arg1) { + assert.strictEqual(arg1, arg); + assert.strictEqual(this, thisArg); + return expectedResult; +}, input, thisArg, arg); +assert.strictEqual(result2, expectedResult); diff --git a/test/parallel/test-esm-url-extname.js b/test/parallel/test-esm-url-extname.js new file mode 100644 index 00000000000000..d40601243e609a --- /dev/null +++ b/test/parallel/test-esm-url-extname.js @@ -0,0 +1,27 @@ +// Flags: --expose-internals +'use strict'; +require('../common'); +const assert = require('node:assert'); +const path = require('node:path'); +const { extname } = require('node:internal/modules/esm/get_format'); +const { fileURLToPath } = require('node:url'); + +[ + 'file:///c:/path/to/file', + 'file:///c:/path/to/file.ext', + 'file:///c:/path.to/file.ext', + 'file:///c:/path.to/file', + 'file:///c:/path.to/.file', + 'file:///c:/path.to/.file.ext', + 'file:///c:/path/to/f.ext', + 'file:///c:/path/to/..ext', + 'file:///c:/path/to/..', + 'file:///c:/file', + 'file:///c:/file.ext', + 'file:///c:/.file', + 'file:///c:/.file.ext', +].forEach((input) => { + const inputAsURL = new URL(input); + const inputAsPath = fileURLToPath(inputAsURL); + assert.strictEqual(extname(inputAsURL), path.extname(inputAsPath)); +}); diff --git a/test/parallel/test-events-customevent.js b/test/parallel/test-events-customevent.js index dc4acb312c1131..2261240c526639 100644 --- a/test/parallel/test-events-customevent.js +++ b/test/parallel/test-events-customevent.js @@ -187,7 +187,7 @@ const { Event, EventTarget, CustomEvent } = require('internal/event_target'); } { const ev = new CustomEvent('foo'); - deepStrictEqual(Object.keys(ev), ['isTrusted']); + strictEqual(ev.isTrusted, false); } // Works with EventTarget diff --git a/test/parallel/test-events-getmaxlisteners.js b/test/parallel/test-events-getmaxlisteners.js new file mode 100644 index 00000000000000..05b4e75b7218fb --- /dev/null +++ b/test/parallel/test-events-getmaxlisteners.js @@ -0,0 +1,19 @@ +'use strict'; + +require('../common'); +const assert = require('node:assert'); +const { getMaxListeners, EventEmitter, defaultMaxListeners, setMaxListeners } = require('node:events'); + +{ + const ee = new EventEmitter(); + assert.strictEqual(getMaxListeners(ee), defaultMaxListeners); + setMaxListeners(101, ee); + assert.strictEqual(getMaxListeners(ee), 101); +} + +{ + const et = new EventTarget(); + assert.strictEqual(getMaxListeners(et), defaultMaxListeners); + setMaxListeners(101, et); + assert.strictEqual(getMaxListeners(et), 101); +} diff --git a/test/parallel/test-eventtarget.js b/test/parallel/test-eventtarget.js index f6208a3b8b8844..ce372f7d6fc8f8 100644 --- a/test/parallel/test-eventtarget.js +++ b/test/parallel/test-eventtarget.js @@ -126,7 +126,7 @@ let asyncTest = Promise.resolve(); } { const ev = new Event('foo'); - deepStrictEqual(Object.keys(ev), ['isTrusted']); + strictEqual(ev.isTrusted, false); } { const eventTarget = new EventTarget(); diff --git a/test/parallel/test-file.js b/test/parallel/test-file.js index 64a83f77ef919d..bfc4548421be23 100644 --- a/test/parallel/test-file.js +++ b/test/parallel/test-file.js @@ -146,10 +146,15 @@ const { inspect } = require('util'); { const getter = Object.getOwnPropertyDescriptor(File.prototype, 'name').get; - assert.throws( - () => getter.call(undefined), // eslint-disable-line no-useless-call - { - code: 'ERR_INVALID_THIS', - } - ); + + [ + undefined, + null, + true, + ].forEach((invalidThis) => { + assert.throws( + () => getter.call(invalidThis), + TypeError + ); + }); } diff --git a/test/parallel/test-h2-large-header-cause-client-to-hangup.js b/test/parallel/test-h2-large-header-cause-client-to-hangup.js new file mode 100644 index 00000000000000..b8b08cecf6817c --- /dev/null +++ b/test/parallel/test-h2-large-header-cause-client-to-hangup.js @@ -0,0 +1,38 @@ +'use strict'; + +const common = require('../common'); +if (!common.hasCrypto) + common.skip('missing crypto'); +const http2 = require('http2'); +const assert = require('assert'); +const { + DEFAULT_SETTINGS_MAX_HEADER_LIST_SIZE, + NGHTTP2_CANCEL, +} = http2.constants; + +const headerSize = DEFAULT_SETTINGS_MAX_HEADER_LIST_SIZE; +const timeout = common.platformTimeout(2_000); +const timer = setTimeout(() => assert.fail(`http2 client timedout +when server can not manage to send a header of size ${headerSize}`), timeout); + +const server = http2.createServer((req, res) => { + res.setHeader('foobar', 'a'.repeat(DEFAULT_SETTINGS_MAX_HEADER_LIST_SIZE)); + res.end(); +}); + +server.listen(0, common.mustCall(() => { + const clientSession = http2.connect(`http://localhost:${server.address().port}`); + clientSession.on('close', common.mustCall()); + clientSession.on('remoteSettings', send); + + function send() { + const stream = clientSession.request({ ':path': '/' }); + stream.on('close', common.mustCall(() => { + assert.strictEqual(stream.rstCode, NGHTTP2_CANCEL); + clearTimeout(timer); + server.close(); + })); + + stream.end(); + } +})); diff --git a/test/parallel/test-http-client-request-options.js b/test/parallel/test-http-client-request-options.js new file mode 100644 index 00000000000000..e642ef4fa94d01 --- /dev/null +++ b/test/parallel/test-http-client-request-options.js @@ -0,0 +1,27 @@ +'use strict'; + +const common = require('../common'); +const assert = require('node:assert'); +const http = require('node:http'); + +const headers = { foo: 'Bar' }; +const server = http.createServer(common.mustCall((req, res) => { + assert.strictEqual(req.url, '/ping?q=term'); + assert.strictEqual(req.headers?.foo, headers.foo); + req.resume(); + req.on('end', () => { + res.writeHead(200); + res.end('pong'); + }); +})); + +server.listen(0, common.localhostIPv4, () => { + const { address, port } = server.address(); + const url = new URL(`http://${address}:${port}/ping?q=term`); + url.headers = headers; + const clientReq = http.request(url); + clientReq.on('close', common.mustCall(() => { + server.close(); + })); + clientReq.end(); +}); diff --git a/test/parallel/test-http-remove-header-stays-removed.js b/test/parallel/test-http-remove-header-stays-removed.js index 3885ebd905f758..6eba1799cd7d3f 100644 --- a/test/parallel/test-http-remove-header-stays-removed.js +++ b/test/parallel/test-http-remove-header-stays-removed.js @@ -20,7 +20,7 @@ // USE OR OTHER DEALINGS IN THE SOFTWARE. 'use strict'; -require('../common'); +const common = require('../common'); const assert = require('assert'); const http = require('http'); @@ -56,6 +56,14 @@ server.listen(0, function() { res.setEncoding('ascii'); res.on('data', function(chunk) { response += chunk; + if (response === 'beep boop\n') { + setTimeout(function() { + // The socket should be closed immediately, with no keep-alive, because + // no content-length or transfer-encoding are used: + assert.strictEqual(res.socket.closed, true); + server.close(); + }, common.platformTimeout(15)); + } }); }); }); diff --git a/test/parallel/test-inspector-connect-to-main-thread.js b/test/parallel/test-inspector-connect-to-main-thread.js new file mode 100644 index 00000000000000..7254145a2733f0 --- /dev/null +++ b/test/parallel/test-inspector-connect-to-main-thread.js @@ -0,0 +1,20 @@ +'use strict'; +const common = require('../common'); + +common.skipIfInspectorDisabled(); + +const { Session } = require('inspector'); +const { Worker, isMainThread, workerData } = require('worker_threads'); + +if (!workerData) { + common.skipIfWorker(); +} + +if (isMainThread) { + new Worker(__filename, { workerData: {} }); +} else { + const session = new Session(); + session.connectToMainThread(); + // Do not crash + session.disconnect(); +} diff --git a/test/parallel/test-repl-history-navigation.js b/test/parallel/test-repl-history-navigation.js index 39ccc3732c3d82..a3826e547a27fe 100644 --- a/test/parallel/test-repl-history-navigation.js +++ b/test/parallel/test-repl-history-navigation.js @@ -614,6 +614,24 @@ const tests = [ ], clean: false }, + { + // Test that preview should not be removed when pressing ESCAPE key + env: { NODE_REPL_HISTORY: defaultHistoryPath }, + skip: !process.features.inspector, + test: [ + '1+1', + ESCAPE, + ENTER, + ], + expected: [ + prompt, ...'1+1', + '\n// 2', + '\n// 2', + '2\n', + prompt, + ], + clean: false + }, ]; const numtests = tests.length; diff --git a/test/parallel/test-runner-cli.js b/test/parallel/test-runner-cli.js index 8cfceedfe6a53a..5e913eb6de9e5d 100644 --- a/test/parallel/test-runner-cli.js +++ b/test/parallel/test-runner-cli.js @@ -155,9 +155,10 @@ const testFixtures = fixtures.path('test-runner'); assert.match(stdout, /# Subtest: level 0b/); assert.match(stdout, /not ok 4 - level 0b/); assert.match(stdout, / {2}error: 'level 0b error'/); - assert.match(stdout, /# tests 4/); - assert.match(stdout, /# pass 2/); - assert.match(stdout, /# fail 2/); + assert.match(stdout, /# tests 8/); + assert.match(stdout, /# pass 4/); + assert.match(stdout, /# fail 3/); + assert.match(stdout, /# skipped 1/); } { diff --git a/test/parallel/test-runner-coverage.js b/test/parallel/test-runner-coverage.js index ae4a539cff4991..01fc8667199e50 100644 --- a/test/parallel/test-runner-coverage.js +++ b/test/parallel/test-runner-coverage.js @@ -18,7 +18,7 @@ function findCoverageFileForPid(pid) { }); } -function getCoverageFixtureReport() { +function getTapCoverageFixtureReport() { const report = [ '# start of coverage report', '# file | line % | branch % | funcs % | uncovered lines', @@ -37,64 +37,120 @@ function getCoverageFixtureReport() { return report; } -test('--experimental-test-coverage and --test cannot be combined', () => { - // TODO(cjihrig): This test can be removed once multi-process code coverage - // is supported. - const args = ['--test', '--experimental-test-coverage']; - const result = spawnSync(process.execPath, args); - - // 9 is the documented exit code for an invalid CLI argument. - assert.strictEqual(result.status, 9); - assert.match( - result.stderr.toString(), - /--experimental-test-coverage cannot be used with --test/ - ); -}); +function getSpecCoverageFixtureReport() { + const report = [ + '\u2139 start of coverage report', + '\u2139 file | line % | branch % | funcs % | uncovered lines', + '\u2139 test/fixtures/test-runner/coverage.js | 78.65 | 38.46 | 60.00 | 12, ' + + '13, 16, 17, 18, 19, 20, 21, 22, 27, 39, 43, 44, 61, 62, 66, 67, 71, 72', + '\u2139 test/fixtures/test-runner/invalid-tap.js | 100.00 | 100.00 | 100.00 | ', + '\u2139 test/fixtures/v8-coverage/throw.js | 71.43 | 50.00 | 100.00 | 5, 6', + '\u2139 all files | 78.35 | 43.75 | 60.00 |', + '\u2139 end of coverage report', + ].join('\n'); -test('handles the inspector not being available', (t) => { - if (process.features.inspector) { - return; + if (common.isWindows) { + return report.replaceAll('/', '\\'); } - const fixture = fixtures.path('test-runner', 'coverage.js'); - const args = ['--experimental-test-coverage', fixture]; - const result = spawnSync(process.execPath, args); + return report; +} - assert(!result.stdout.toString().includes('# start of coverage report')); - assert(result.stderr.toString().includes('coverage could not be collected')); - assert.strictEqual(result.status, 0); - assert(!findCoverageFileForPid(result.pid)); -}); +test('test coverage report', async (t) => { + await t.test('--experimental-test-coverage and --test cannot be combined', () => { + // TODO(cjihrig): This test can be removed once multi-process code coverage + // is supported. + const args = ['--test', '--experimental-test-coverage']; + const result = spawnSync(process.execPath, args); + + // 9 is the documented exit code for an invalid CLI argument. + assert.strictEqual(result.status, 9); + assert.match( + result.stderr.toString(), + /--experimental-test-coverage cannot be used with --test/ + ); + }); -test('coverage is reported and dumped to NODE_V8_COVERAGE if present', (t) => { - if (!process.features.inspector) { - return; - } + await t.test('handles the inspector not being available', (t) => { + if (process.features.inspector) { + return; + } - const fixture = fixtures.path('test-runner', 'coverage.js'); - const args = ['--experimental-test-coverage', fixture]; - const options = { env: { ...process.env, NODE_V8_COVERAGE: tmpdir.path } }; - const result = spawnSync(process.execPath, args, options); - const report = getCoverageFixtureReport(); + const fixture = fixtures.path('test-runner', 'coverage.js'); + const args = ['--experimental-test-coverage', fixture]; + const result = spawnSync(process.execPath, args); - assert(result.stdout.toString().includes(report)); - assert.strictEqual(result.stderr.toString(), ''); - assert.strictEqual(result.status, 0); - assert(findCoverageFileForPid(result.pid)); + assert(!result.stdout.toString().includes('# start of coverage report')); + assert(result.stderr.toString().includes('coverage could not be collected')); + assert.strictEqual(result.status, 0); + assert(!findCoverageFileForPid(result.pid)); + }); }); -test('coverage is reported without NODE_V8_COVERAGE present', (t) => { - if (!process.features.inspector) { - return; - } +test('test tap coverage reporter', async (t) => { + await t.test('coverage is reported and dumped to NODE_V8_COVERAGE if present', (t) => { + if (!process.features.inspector) { + return; + } + + const fixture = fixtures.path('test-runner', 'coverage.js'); + const args = ['--experimental-test-coverage', '--test-reporter', 'tap', fixture]; + const options = { env: { ...process.env, NODE_V8_COVERAGE: tmpdir.path } }; + const result = spawnSync(process.execPath, args, options); + const report = getTapCoverageFixtureReport(); + + assert(result.stdout.toString().includes(report)); + assert.strictEqual(result.stderr.toString(), ''); + assert.strictEqual(result.status, 0); + assert(findCoverageFileForPid(result.pid)); + }); + + await t.test('coverage is reported without NODE_V8_COVERAGE present', (t) => { + if (!process.features.inspector) { + return; + } + + const fixture = fixtures.path('test-runner', 'coverage.js'); + const args = ['--experimental-test-coverage', '--test-reporter', 'tap', fixture]; + const result = spawnSync(process.execPath, args); + const report = getTapCoverageFixtureReport(); - const fixture = fixtures.path('test-runner', 'coverage.js'); - const args = ['--experimental-test-coverage', fixture]; - const result = spawnSync(process.execPath, args); - const report = getCoverageFixtureReport(); + assert(result.stdout.toString().includes(report)); + assert.strictEqual(result.stderr.toString(), ''); + assert.strictEqual(result.status, 0); + assert(!findCoverageFileForPid(result.pid)); + }); +}); - assert(result.stdout.toString().includes(report)); - assert.strictEqual(result.stderr.toString(), ''); - assert.strictEqual(result.status, 0); - assert(!findCoverageFileForPid(result.pid)); +test('test spec coverage reporter', async (t) => { + await t.test('coverage is reported and dumped to NODE_V8_COVERAGE if present', (t) => { + if (!process.features.inspector) { + return; + } + const fixture = fixtures.path('test-runner', 'coverage.js'); + const args = ['--experimental-test-coverage', '--test-reporter', 'spec', fixture]; + const options = { env: { ...process.env, NODE_V8_COVERAGE: tmpdir.path } }; + const result = spawnSync(process.execPath, args, options); + const report = getSpecCoverageFixtureReport(); + + assert(result.stdout.toString().includes(report)); + assert.strictEqual(result.stderr.toString(), ''); + assert.strictEqual(result.status, 0); + assert(findCoverageFileForPid(result.pid)); + }); + + await t.test('coverage is reported without NODE_V8_COVERAGE present', (t) => { + if (!process.features.inspector) { + return; + } + const fixture = fixtures.path('test-runner', 'coverage.js'); + const args = ['--experimental-test-coverage', '--test-reporter', 'spec', fixture]; + const result = spawnSync(process.execPath, args); + const report = getSpecCoverageFixtureReport(); + + assert(result.stdout.toString().includes(report)); + assert.strictEqual(result.stderr.toString(), ''); + assert.strictEqual(result.status, 0); + assert(!findCoverageFileForPid(result.pid)); + }); }); diff --git a/test/parallel/test-runner-extraneous-async-activity.js b/test/parallel/test-runner-extraneous-async-activity.js index bc4be25d5f974b..a95925dbb75414 100644 --- a/test/parallel/test-runner-extraneous-async-activity.js +++ b/test/parallel/test-runner-extraneous-async-activity.js @@ -12,7 +12,7 @@ const { spawnSync } = require('child_process'); const stdout = child.stdout.toString(); assert.match(stdout, /^# Warning: Test "extraneous async activity test" generated asynchronous activity after the test ended/m); assert.match(stdout, /^# pass 1/m); - assert.match(stdout, /^# fail 0$/m); + assert.match(stdout, /^# fail 1$/m); assert.match(stdout, /^# cancelled 0$/m); assert.strictEqual(child.status, 1); assert.strictEqual(child.signal, null); @@ -26,7 +26,7 @@ const { spawnSync } = require('child_process'); const stdout = child.stdout.toString(); assert.match(stdout, /^# Warning: Test "extraneous async activity test" generated asynchronous activity after the test ended/m); assert.match(stdout, /^# pass 1$/m); - assert.match(stdout, /^# fail 0$/m); + assert.match(stdout, /^# fail 1$/m); assert.match(stdout, /^# cancelled 0$/m); assert.strictEqual(child.status, 1); assert.strictEqual(child.signal, null); diff --git a/test/parallel/test-runner-run.mjs b/test/parallel/test-runner-run.mjs index 6ac007bfb5dd6c..b37bdf94f38c02 100644 --- a/test/parallel/test-runner-run.mjs +++ b/test/parallel/test-runner-run.mjs @@ -2,6 +2,7 @@ import * as common from '../common/index.mjs'; import * as fixtures from '../common/fixtures.mjs'; import { join } from 'node:path'; import { describe, it, run } from 'node:test'; +import { dot, spec, tap } from 'node:test/reporters'; import assert from 'node:assert'; const testFixtures = fixtures.path('test-runner'); @@ -65,4 +66,39 @@ describe('require(\'node:test\').run', { concurrency: true }, () => { code: 'ERR_INVALID_ARG_TYPE' })); }); + + it('should be piped with dot', async () => { + const result = await run({ files: [join(testFixtures, 'test/random.cjs')] }).compose(dot).toArray(); + assert.deepStrictEqual(result, [ + '.', + '\n', + ]); + }); + + it('should be piped with spec', async () => { + const specReporter = new spec(); + const result = await run({ files: [join(testFixtures, 'test/random.cjs')] }).compose(specReporter).toArray(); + const stringResults = result.map((bfr) => bfr.toString()); + assert.match(stringResults[0], /this should pass/); + assert.match(stringResults[1], /tests 1/); + assert.match(stringResults[1], /pass 1/); + }); + + it('should be piped with tap', async () => { + const result = await run({ files: [join(testFixtures, 'test/random.cjs')] }).compose(tap).toArray(); + assert.strictEqual(result.length, 13); + assert.strictEqual(result[0], 'TAP version 13\n'); + assert.strictEqual(result[1], '# Subtest: this should pass\n'); + assert.strictEqual(result[2], 'ok 1 - this should pass\n'); + assert.match(result[3], /duration_ms: \d+\.?\d*/); + assert.strictEqual(result[4], '1..1\n'); + assert.strictEqual(result[5], '# tests 1\n'); + assert.strictEqual(result[6], '# suites 0\n'); + assert.strictEqual(result[7], '# pass 1\n'); + assert.strictEqual(result[8], '# fail 0\n'); + assert.strictEqual(result[9], '# cancelled 0\n'); + assert.strictEqual(result[10], '# skipped 0\n'); + assert.strictEqual(result[11], '# todo 0\n'); + assert.match(result[12], /# duration_ms \d+\.?\d*/); + }); }); diff --git a/test/parallel/test-runner-tap-lexer.js b/test/parallel/test-runner-tap-lexer.js index afc6eea1d2c08b..96c27fecdea7d0 100644 --- a/test/parallel/test-runner-tap-lexer.js +++ b/test/parallel/test-runner-tap-lexer.js @@ -480,3 +480,15 @@ ok 1 assert.strictEqual(tokens[index].value, token.value); }); } + +{ + const tokens = TAPLexer('\x1b'); + + [ + { kind: TokenKind.ESCAPE, value: '\x1b' }, + { kind: TokenKind.EOL, value: '' }, + ].forEach((token, index) => { + assert.strictEqual(tokens[index].kind, token.kind); + assert.strictEqual(tokens[index].value, token.value); + }); +} diff --git a/test/parallel/test-single-executable-application.js b/test/parallel/test-single-executable-application.js index 902093dc6e412d..9ceb61883e1664 100644 --- a/test/parallel/test-single-executable-application.js +++ b/test/parallel/test-single-executable-application.js @@ -16,11 +16,6 @@ if (!process.config.variables.single_executable_application) if (!['darwin', 'win32', 'linux'].includes(process.platform)) common.skip(`Unsupported platform ${process.platform}.`); -if (process.platform === 'linux' && process.config.variables.asan) { - // Source of the memory leak - https://github.com/nodejs/node/blob/da0bc6db98cef98686122ea1e2cd2dbd2f52d123/src/node_sea.cc#L94. - common.skip('Running the resultant binary fails because of a memory leak ASAN error.'); -} - if (process.platform === 'linux' && process.config.variables.is_debug === 1) common.skip('Running the resultant binary fails with `Couldn\'t read target executable"`.'); diff --git a/test/parallel/test-stream-drop-take.js b/test/parallel/test-stream-drop-take.js index cb55a4f7ee1813..97e6c74dfa67ea 100644 --- a/test/parallel/test-stream-drop-take.js +++ b/test/parallel/test-stream-drop-take.js @@ -4,7 +4,7 @@ const common = require('../common'); const { Readable, } = require('stream'); -const { deepStrictEqual, rejects, throws } = require('assert'); +const { deepStrictEqual, rejects, throws, strictEqual } = require('assert'); const { from } = Readable; @@ -49,6 +49,28 @@ const naturals = () => from(async function*() { })().then(common.mustCall()); } + +// Don't wait for next item in the original stream when already consumed the requested take amount +{ + let reached = false; + let resolve; + const promise = new Promise((res) => resolve = res); + + const stream = from((async function *() { + yield 1; + await promise; + reached = true; + yield 2; + })()); + + stream.take(1) + .toArray() + .then(common.mustCall(() => { + strictEqual(reached, false); + })) + .finally(() => resolve()); +} + { // Coercion (async () => { diff --git a/test/parallel/test-stream-set-default-hwm.js b/test/parallel/test-stream-set-default-hwm.js new file mode 100644 index 00000000000000..3d78907b74f5a5 --- /dev/null +++ b/test/parallel/test-stream-set-default-hwm.js @@ -0,0 +1,36 @@ +'use strict'; + +require('../common'); + +const assert = require('node:assert'); +const { + setDefaultHighWaterMark, + getDefaultHighWaterMark, + Writable, + Readable, + Transform +} = require('stream'); + +assert.notStrictEqual(getDefaultHighWaterMark(false), 32 * 1000); +setDefaultHighWaterMark(false, 32 * 1000); +assert.strictEqual(getDefaultHighWaterMark(false), 32 * 1000); + +assert.notStrictEqual(getDefaultHighWaterMark(true), 32); +setDefaultHighWaterMark(true, 32); +assert.strictEqual(getDefaultHighWaterMark(true), 32); + +const w = new Writable({ + write() {} +}); +assert.strictEqual(w.writableHighWaterMark, 32 * 1000); + +const r = new Readable({ + read() {} +}); +assert.strictEqual(r.readableHighWaterMark, 32 * 1000); + +const t = new Transform({ + transform() {} +}); +assert.strictEqual(t.writableHighWaterMark, 32 * 1000); +assert.strictEqual(t.readableHighWaterMark, 32 * 1000); diff --git a/test/parallel/test-vm-global-setter.js b/test/parallel/test-vm-global-setter.js index 878937f612ad64..36aab52e44e166 100644 --- a/test/parallel/test-vm-global-setter.js +++ b/test/parallel/test-vm-global-setter.js @@ -3,27 +3,156 @@ const common = require('../common'); const assert = require('assert'); const vm = require('vm'); +const getSetSymbolReceivingFunction = Symbol('sym-1'); +const getSetSymbolReceivingNumber = Symbol('sym-2'); +const symbolReceivingNumber = Symbol('sym-3'); +const unknownSymbolReceivingNumber = Symbol('sym-4'); + const window = createWindow(); -const descriptor = - Object.getOwnPropertyDescriptor(window.globalProxy, 'onhashchange'); +const descriptor1 = Object.getOwnPropertyDescriptor( + window.globalProxy, + 'getSetPropReceivingFunction' +); +assert.strictEqual(typeof descriptor1.get, 'function'); +assert.strictEqual(typeof descriptor1.set, 'function'); +assert.strictEqual(descriptor1.configurable, true); + +const descriptor2 = Object.getOwnPropertyDescriptor( + window.globalProxy, + 'getSetPropReceivingNumber' +); +assert.strictEqual(typeof descriptor2.get, 'function'); +assert.strictEqual(typeof descriptor2.set, 'function'); +assert.strictEqual(descriptor2.configurable, true); + +const descriptor3 = Object.getOwnPropertyDescriptor( + window.globalProxy, + 'propReceivingNumber' +); +assert.strictEqual(descriptor3.value, 44); + +const descriptor4 = Object.getOwnPropertyDescriptor( + window.globalProxy, + 'unknownPropReceivingNumber' +); +assert.strictEqual(descriptor4, undefined); + +const descriptor5 = Object.getOwnPropertyDescriptor( + window.globalProxy, + getSetSymbolReceivingFunction +); +assert.strictEqual(typeof descriptor5.get, 'function'); +assert.strictEqual(typeof descriptor5.set, 'function'); +assert.strictEqual(descriptor5.configurable, true); + +const descriptor6 = Object.getOwnPropertyDescriptor( + window.globalProxy, + getSetSymbolReceivingNumber +); +assert.strictEqual(typeof descriptor6.get, 'function'); +assert.strictEqual(typeof descriptor6.set, 'function'); +assert.strictEqual(descriptor6.configurable, true); + +const descriptor7 = Object.getOwnPropertyDescriptor( + window.globalProxy, + symbolReceivingNumber +); +assert.strictEqual(descriptor7.value, 48); -assert.strictEqual(typeof descriptor.get, 'function'); -assert.strictEqual(typeof descriptor.set, 'function'); -assert.strictEqual(descriptor.configurable, true); +const descriptor8 = Object.getOwnPropertyDescriptor( + window.globalProxy, + unknownSymbolReceivingNumber +); +assert.strictEqual(descriptor8, undefined); + +const descriptor9 = Object.getOwnPropertyDescriptor( + window.globalProxy, + 'getSetPropThrowing' +); +assert.strictEqual(typeof descriptor9.get, 'function'); +assert.strictEqual(typeof descriptor9.set, 'function'); +assert.strictEqual(descriptor9.configurable, true); + +const descriptor10 = Object.getOwnPropertyDescriptor( + window.globalProxy, + 'nonWritableProp' +); +assert.strictEqual(descriptor10.value, 51); +assert.strictEqual(descriptor10.writable, false); // Regression test for GH-42962. This assignment should not throw. -window.globalProxy.onhashchange = () => {}; +window.globalProxy.getSetPropReceivingFunction = () => {}; +assert.strictEqual(window.globalProxy.getSetPropReceivingFunction, 42); + +window.globalProxy.getSetPropReceivingNumber = 143; +assert.strictEqual(window.globalProxy.getSetPropReceivingNumber, 43); + +window.globalProxy.propReceivingNumber = 144; +assert.strictEqual(window.globalProxy.propReceivingNumber, 144); + +window.globalProxy.unknownPropReceivingNumber = 145; +assert.strictEqual(window.globalProxy.unknownPropReceivingNumber, 145); + +window.globalProxy[getSetSymbolReceivingFunction] = () => {}; +assert.strictEqual(window.globalProxy[getSetSymbolReceivingFunction], 46); -assert.strictEqual(window.globalProxy.onhashchange, 42); +window.globalProxy[getSetSymbolReceivingNumber] = 147; +assert.strictEqual(window.globalProxy[getSetSymbolReceivingNumber], 47); + +window.globalProxy[symbolReceivingNumber] = 148; +assert.strictEqual(window.globalProxy[symbolReceivingNumber], 148); + +window.globalProxy[unknownSymbolReceivingNumber] = 149; +assert.strictEqual(window.globalProxy[unknownSymbolReceivingNumber], 149); + +assert.throws( + () => (window.globalProxy.getSetPropThrowing = 150), + new Error('setter called') +); +assert.strictEqual(window.globalProxy.getSetPropThrowing, 50); + +assert.throws( + () => (window.globalProxy.nonWritableProp = 151), + new TypeError('Cannot redefine property: nonWritableProp') +); +assert.strictEqual(window.globalProxy.nonWritableProp, 51); function createWindow() { const obj = {}; vm.createContext(obj); - Object.defineProperty(obj, 'onhashchange', { + Object.defineProperty(obj, 'getSetPropReceivingFunction', { get: common.mustCall(() => 42), set: common.mustCall(), - configurable: true + configurable: true, + }); + Object.defineProperty(obj, 'getSetPropReceivingNumber', { + get: common.mustCall(() => 43), + set: common.mustCall(), + configurable: true, + }); + obj.propReceivingNumber = 44; + Object.defineProperty(obj, getSetSymbolReceivingFunction, { + get: common.mustCall(() => 46), + set: common.mustCall(), + configurable: true, + }); + Object.defineProperty(obj, getSetSymbolReceivingNumber, { + get: common.mustCall(() => 47), + set: common.mustCall(), + configurable: true, + }); + obj[symbolReceivingNumber] = 48; + Object.defineProperty(obj, 'getSetPropThrowing', { + get: common.mustCall(() => 50), + set: common.mustCall(() => { + throw new Error('setter called'); + }), + configurable: true, + }); + Object.defineProperty(obj, 'nonWritableProp', { + value: 51, + writable: false, }); obj.globalProxy = vm.runInContext('this', obj); diff --git a/test/parallel/test-vm-global-symbol.js b/test/parallel/test-vm-global-symbol.js index a0dfbac7b8b10b..92038d9bfcf02d 100644 --- a/test/parallel/test-vm-global-symbol.js +++ b/test/parallel/test-vm-global-symbol.js @@ -4,6 +4,7 @@ const assert = require('assert'); const vm = require('vm'); const global = vm.runInContext('this', vm.createContext()); + const totoSymbol = Symbol.for('toto'); Object.defineProperty(global, totoSymbol, { enumerable: true, @@ -13,3 +14,13 @@ Object.defineProperty(global, totoSymbol, { }); assert.strictEqual(global[totoSymbol], 4); assert.ok(Object.getOwnPropertySymbols(global).includes(totoSymbol)); + +const totoKey = 'toto'; +Object.defineProperty(global, totoKey, { + enumerable: true, + writable: true, + value: 5, + configurable: true, +}); +assert.strictEqual(global[totoKey], 5); +assert.ok(Object.getOwnPropertyNames(global).includes(totoKey)); diff --git a/test/parallel/test-vm-not-strict.js b/test/parallel/test-vm-not-strict.js new file mode 100644 index 00000000000000..8a72158a8a0fc0 --- /dev/null +++ b/test/parallel/test-vm-not-strict.js @@ -0,0 +1,37 @@ +/* eslint-disable strict, no-var, no-delete-var, no-undef, node-core/required-modules, node-core/require-common-first */ +// Importing common would break the execution. Indeed running `vm.runInThisContext` alters the global context +// when declaring new variables with `var`. The other rules (strict, no-var, no-delete-var) have been disabled +// in order to be able to test this specific not-strict case playing with `var` and `delete`. +// Related to bug report: https://github.com/nodejs/node/issues/43129 +var assert = require('assert'); +var vm = require('vm'); + +var data = []; +var a = 'direct'; +delete a; +data.push(a); + +var item2 = vm.runInThisContext(` +var unusedB = 1; +var data = []; +var b = "this"; +delete b; +data.push(b); +data[0] +`); +data.push(item2); + +vm.runInContext( + ` +var unusedC = 1; +var c = "new"; +delete c; +data.push(c); +`, + vm.createContext({ data: data }) +); + +assert.deepStrictEqual(data, ['direct', 'this', 'new']); + +assert.strictEqual(typeof unusedB, 'number'); // Declared within runInThisContext +assert.strictEqual(typeof unusedC, 'undefined'); // Declared within runInContext diff --git a/test/parallel/test-whatwg-url-custom-searchparams-constructor.js b/test/parallel/test-whatwg-url-custom-searchparams-constructor.js index 878caed43ff0ab..1b7409680b2a2a 100644 --- a/test/parallel/test-whatwg-url-custom-searchparams-constructor.js +++ b/test/parallel/test-whatwg-url-custom-searchparams-constructor.js @@ -47,6 +47,10 @@ function makeIterableFunc(array) { assert.throws(() => new URLSearchParams([null]), tupleError); assert.throws(() => new URLSearchParams([{ [Symbol.iterator]: 42 }]), tupleError); + + assert.throws(() => new URLSearchParams( + makeIterableFunc([['key', 'val', 'val2']]) + ), tupleError); } { diff --git a/test/pseudo-tty/test_runner_default_reporter.js b/test/pseudo-tty/test_runner_default_reporter.js index 1c6cda0ebbdd51..1596603b217660 100644 --- a/test/pseudo-tty/test_runner_default_reporter.js +++ b/test/pseudo-tty/test_runner_default_reporter.js @@ -9,3 +9,7 @@ const test = require('node:test'); test('should pass', () => {}); test('should fail', () => { throw new Error('fail'); }); test('should skip', { skip: true }, () => {}); +test('parent', () => { + test('should fail', () => { throw new Error('fail'); }); + test('should pass but parent fail', () => {}); +}); diff --git a/test/pseudo-tty/test_runner_default_reporter.out b/test/pseudo-tty/test_runner_default_reporter.out index 795b7e556d13d8..f032cf0a291562 100644 --- a/test/pseudo-tty/test_runner_default_reporter.out +++ b/test/pseudo-tty/test_runner_default_reporter.out @@ -1,5 +1,5 @@ [32m* should pass [90m(*ms)[39m[39m -[31m* should fail [90m(*ms)[39m +[31m* should fail [90m(*ms)[39m[39m Error: fail at * [90m(*)[39m [90m at *[39m @@ -8,12 +8,53 @@ [90m at *[39m [90m at *[39m [90m at *[39m -** + [90m* should skip [90m(*ms)[39m # SKIP[39m -[34m* tests 3[39m +* parent + [31m* should fail [90m(*ms)[39m[39m + Error: fail + at * [90m(*)[39m + [90m at *[39m + [90m at *[39m + [90m at *[39m + [90m at *[39m + + [31m* should pass but parent fail [90m(*ms)[39m[39m + [32m'test did not finish before its parent and was cancelled'[39m + +[31m* [39mparent [90m(*ms)[39m + +[34m* tests 6[39m +[34m* suites 0[39m [34m* pass 1[39m -[34m* fail 1[39m -[34m* cancelled 0[39m +[34m* fail 3[39m +[34m* cancelled 1[39m [34m* skipped 1[39m [34m* todo 0[39m [34m* duration_ms *[39m + +[31m* failing tests:[39m + +[31m* should fail [90m(*ms)[39m[39m + Error: fail + at * [90m(*)[39m + [90m at *[39m + [90m at *[39m + [90m at *[39m + [90m at *[39m + [90m at *[39m + [90m at *[39m + +[31m* should fail [90m(*ms)[39m[39m + Error: fail + at * [90m(*)[39m + [90m at *[39m + [90m at *[39m + [90m at *[39m + [90m at *[39m + +[31m* should pass but parent fail [90m(*ms)[39m[39m + [32m'test did not finish before its parent and was cancelled'[39m + +[31m* parent [90m(*ms)[39m[39m + [32m'2 subtests failed'[39m diff --git a/test/sequential/sequential.status b/test/sequential/sequential.status index 5d88747b7066ce..5cefcb95773bed 100644 --- a/test/sequential/sequential.status +++ b/test/sequential/sequential.status @@ -12,6 +12,8 @@ test-watch-mode: PASS, FLAKY test-watch-mode-inspect: PASS, FLAKY [$system==win32] +# https://github.com/nodejs/node/issues/47116 +test-http-max-sockets: PASS, FLAKY [$system==linux] diff --git a/test/sequential/test-debugger-launch.mjs b/test/sequential/test-debugger-launch.mjs index 9d4016c1f5d5e4..d501d0f9eb21eb 100644 --- a/test/sequential/test-debugger-launch.mjs +++ b/test/sequential/test-debugger-launch.mjs @@ -1,6 +1,7 @@ import { skipIfInspectorDisabled } from '../common/index.mjs'; skipIfInspectorDisabled(); +// This must be in sequential because we check that the default port is 9229. import { path } from '../common/fixtures.mjs'; import startCLI from '../common/debugger.js'; diff --git a/test/sequential/test-watch-mode-inspect.mjs b/test/sequential/test-watch-mode-inspect.mjs index e403744bb07d9c..a04ba474f6a47f 100644 --- a/test/sequential/test-watch-mode-inspect.mjs +++ b/test/sequential/test-watch-mode-inspect.mjs @@ -60,9 +60,10 @@ describe('watch mode - inspect', () => { // There should be a process per restart and one per parent process. // Message about Debugger should appear once per restart. + // On some systems restart can happen multiple times. const restarts = stdout.filter((line) => line === 'safe to debug now').length; - assert.strictEqual(stderr.match(/Debugger listening on ws:\/\//g).length, restarts); - assert.strictEqual(new Set(pids).size, restarts + 1); + assert.ok(stderr.match(/Debugger listening on ws:\/\//g).length >= restarts); + assert.ok(new Set(pids).size >= restarts + 1); }); it('should prevent attaching debugger with SIGUSR1 to outer process', { skip: common.isWindows }, async () => { diff --git a/test/sequential/test-watch-mode.mjs b/test/sequential/test-watch-mode.mjs index fbfd887571e6af..e0b23107f703f6 100644 --- a/test/sequential/test-watch-mode.mjs +++ b/test/sequential/test-watch-mode.mjs @@ -137,6 +137,23 @@ describe('watch mode', { concurrency: false, timeout: 60_000 }, () => { }); }); + it('should watch changes to a file with watch-path', { + skip: !supportsRecursive, + }, async () => { + const file = createTmpFile(); + const watchedFile = fixtures.path('watch-mode/subdir/file.js'); + const { stderr, stdout } = await spawnWithRestarts({ + file, + watchedFile, + args: ['--watch-path', fixtures.path('./watch-mode/subdir'), file], + }); + assert.strictEqual(stderr, ''); + assertRestartedCorrectly({ + stdout, + messages: { inner: 'running', completed: `Completed running ${inspect(file)}`, restarted: `Restarting ${inspect(file)}` }, + }); + }); + it('should watch when running an non-existing file - when specified under --watch-path', { skip: !supportsRecursive }, async () => { @@ -148,7 +165,28 @@ describe('watch mode', { concurrency: false, timeout: 60_000 }, () => { args: ['--watch-path', fixtures.path('./watch-mode/subdir/'), file], }); - assert.strictEqual(stderr, ''); + assert.match(stderr, /Error: Cannot find module/); + assert(stderr.match(/Error: Cannot find module/g).length >= 2); + + assertRestartedCorrectly({ + stdout, + messages: { completed: `Failed running ${inspect(file)}`, restarted: `Restarting ${inspect(file)}` }, + }); + }); + + it('should watch when running an non-existing file - when specified under --watch-path with equals', { + skip: !supportsRecursive + }, async () => { + const file = fixtures.path('watch-mode/subdir/non-existing.js'); + const watchedFile = fixtures.path('watch-mode/subdir/file.js'); + const { stderr, stdout } = await spawnWithRestarts({ + file, + watchedFile, + args: [`--watch-path=${fixtures.path('./watch-mode/subdir/')}`, file], + }); + + assert.match(stderr, /Error: Cannot find module/); + assert(stderr.match(/Error: Cannot find module/g).length >= 2); assertRestartedCorrectly({ stdout, messages: { completed: `Failed running ${inspect(file)}`, restarted: `Restarting ${inspect(file)}` }, diff --git a/test/wpt/status/dom/events.json b/test/wpt/status/dom/events.json index 90825d76a358d6..c0f4104c452b85 100644 --- a/test/wpt/status/dom/events.json +++ b/test/wpt/status/dom/events.json @@ -11,6 +11,13 @@ "Event-dispatch-listener-order.window.js": { "skip": "document is not defined" }, + "Event-isTrusted.any.js": { + "fail": { + "expected": [ + "Event-isTrusted" + ] + } + }, "EventListener-addEventListener.sub.window.js": { "skip": "document is not defined" }, diff --git a/test/wpt/status/url.json b/test/wpt/status/url.json index c333559537f6a9..257c1961b97604 100644 --- a/test/wpt/status/url.json +++ b/test/wpt/status/url.json @@ -34,5 +34,9 @@ }, "IdnaTestV2.window.js": { "requires": ["small-icu"] + }, + "javascript-urls.window.js": { + "required": ["small-icu"], + "skip": "requires document.body reference" } } diff --git a/test/wpt/status/wasm/webapi.json b/test/wpt/status/wasm/webapi.json index 6328e55dc18bc9..3e2075655e5af2 100644 --- a/test/wpt/status/wasm/webapi.json +++ b/test/wpt/status/wasm/webapi.json @@ -16,5 +16,8 @@ }, "status.any.js": { "skip": "WPTRunner does not support fetch()" + }, + "instantiateStreaming-bad-imports.any.js": { + "skip": "Flaky on ARM with V8 >= 11.2" } } diff --git a/test/wpt/testcfg.py b/test/wpt/testcfg.py index 3c356cf474d83c..db235699ddfe57 100644 --- a/test/wpt/testcfg.py +++ b/test/wpt/testcfg.py @@ -3,4 +3,4 @@ import testpy def GetConfiguration(context, root): - return testpy.SimpleTestConfiguration(context, root, 'wpt') + return testpy.ParallelTestConfiguration(context, root, 'wpt') diff --git a/tools/dep_updaters/update-ada.sh b/tools/dep_updaters/update-ada.sh index 5b693520349313..ff4b9001d37e59 100755 --- a/tools/dep_updaters/update-ada.sh +++ b/tools/dep_updaters/update-ada.sh @@ -4,12 +4,22 @@ set -e BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd) DEPS_DIR="$BASE_DIR/deps" -ADA_VERSION=$1 +[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node" +[ -x "$NODE" ] || NODE=$(command -v node) -if [ "$#" -le 0 ]; then - echo "Error: please provide an ada version to update to" - echo " e.g. $0 1.0.0" - exit 1 +NEW_VERSION="$("$NODE" --input-type=module <<'EOF' +const res = await fetch('https://api.github.com/repos/ada-url/ada/releases/latest'); +if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res }); +const { tag_name } = await res.json(); +console.log(tag_name.replace('v', '')); +EOF +)" + +CURRENT_VERSION=$(grep "#define ADA_VERSION" "$DEPS_DIR/ada/ada.h" | sed -n "s/^.*VERSION \"\(.*\)\"/\1/p") + +if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then + echo "Skipped because ada is on the latest version." + exit 0 fi echo "Making temporary workspace..." @@ -24,8 +34,8 @@ cleanup () { trap cleanup INT TERM EXIT -ADA_REF="v$ADA_VERSION" -ADA_ZIP="ada-$ADA_VERSION.zip" +ADA_REF="v$NEW_VERSION" +ADA_ZIP="ada-$NEW_VERSION.zip" ADA_LICENSE="LICENSE-MIT" cd "$WORKSPACE" @@ -47,5 +57,9 @@ echo "" echo "Please git add ada, commit the new version:" echo "" echo "$ git add -A deps/ada" -echo "$ git commit -m \"deps: update ada to $ADA_VERSION\"" +echo "$ git commit -m \"deps: update ada 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" diff --git a/tools/dep_updaters/update-base64.sh b/tools/dep_updaters/update-base64.sh new file mode 100755 index 00000000000000..05d1c58402d1d6 --- /dev/null +++ b/tools/dep_updaters/update-base64.sh @@ -0,0 +1,64 @@ +#!/bin/sh +set -e +# Shell script to update base64 in the source tree to a specific version + +BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd) +DEPS_DIR="$BASE_DIR/deps" + +[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node" +[ -x "$NODE" ] || NODE=$(command -v node) + +NEW_VERSION="$("$NODE" --input-type=module <<'EOF' +const res = await fetch('https://api.github.com/repos/aklomp/base64/releases/latest'); +if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res }); +const { tag_name } = await res.json(); +console.log(tag_name.replace('v', '')); +EOF +)" + +CURRENT_VERSION=$(grep "base64 LANGUAGES C VERSION" ./deps/base64/base64/CMakeLists.txt | sed -n "s/^.*VERSION \(.*\))/\1/p") + +echo "Comparing $NEW_VERSION with $CURRENT_VERSION" + +if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then + echo "Skipped because base64 is on the latest version." + exit 0 +fi + +echo "Making temporary workspace" + +WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp') + +cleanup () { + EXIT_CODE=$? + [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE" + exit $EXIT_CODE +} + +trap cleanup INT TERM EXIT + +cd "$WORKSPACE" + +echo "Fetching base64 source archive" +curl -sL "https://api.github.com/repos/aklomp/base64/tarball/v$NEW_VERSION" | tar xzf - +mv aklomp-base64-* base64 + +echo "Replacing existing base64" +rm -rf "$DEPS_DIR/base64/base64" +mv "$WORKSPACE/base64" "$DEPS_DIR/base64/" + +# Build configuration is handled by `deps/base64/base64.gyp`, but since `config.h` has to be present for the build +# to work, we create it and leave it empty. +echo "// Intentionally empty" >> "$DEPS_DIR/base64/base64/lib/config.h" + +echo "All done!" +echo "" +echo "Please git add base64/base64, commit the new version:" +echo "" +echo "$ git add -A deps/base64/base64" +echo "$ git commit -m \"deps: update base64 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" diff --git a/tools/dep_updaters/update-brotli.sh b/tools/dep_updaters/update-brotli.sh new file mode 100755 index 00000000000000..651ae57d3f2e62 --- /dev/null +++ b/tools/dep_updaters/update-brotli.sh @@ -0,0 +1,75 @@ +#!/bin/sh +set -e +# Shell script to update brotli in the source tree to a specific version + +BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd) +DEPS_DIR="$BASE_DIR/deps" + +[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node" +[ -x "$NODE" ] || NODE=$(command -v node) + +NEW_VERSION="$("$NODE" --input-type=module <<'EOF' +const res = await fetch('https://api.github.com/repos/google/brotli/releases/latest'); +if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res }); +const { tag_name } = await res.json(); +console.log(tag_name.replace('v', '')); +EOF +)" + +VERSION_HEX=$(grep "#define BROTLI_VERSION" ./deps/brotli/c/common/version.h | sed 's/.* //') + +major=$(( ($VERSION_HEX >> 24) & 0xff )) +minor=$(( ($VERSION_HEX >> 12) & 0xfff )) +patch=$(( $VERSION_HEX & 0xfff )) +CURRENT_VERSION="${major}.${minor}.${patch}" + +echo "Comparing $NEW_VERSION with $CURRENT_VERSION" + +if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then + echo "Skipped because brotli is on the latest version." + exit 0 +fi + +echo "Making temporary workspace" + +WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp') + +cleanup () { + EXIT_CODE=$? + [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE" + exit $EXIT_CODE +} + +trap cleanup INT TERM EXIT + +cd "$WORKSPACE" + +BROTLI_TARBALL="v$NEW_VERSION.tar.gz" + +echo "Fetching brotli source archive" +curl -sL -o "$BROTLI_TARBALL" "https://github.com/google/brotli/archive/$BROTLI_TARBALL" +gzip -dc "$BROTLI_TARBALL" | tar xf - +rm "$BROTLI_TARBALL" +mv "brotli-$NEW_VERSION" "brotli" + +echo "Copying existing gyp file" +cp "$DEPS_DIR/brotli/brotli.gyp" "$WORKSPACE/brotli" + +echo "Deleting existing brotli" +rm -rf "$DEPS_DIR/brotli" +mkdir "$DEPS_DIR/brotli" + +echo "Update c and LICENSE" +mv "$WORKSPACE/brotli/c" "$WORKSPACE/brotli/LICENSE" "$WORKSPACE/brotli/brotli.gyp" "$DEPS_DIR/brotli" + +echo "All done!" +echo "" +echo "Please git add brotli, commit the new version:" +echo "" +echo "$ git add -A deps/brotli" +echo "$ git commit -m \"deps: update brotli 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" diff --git a/tools/dep_updaters/update-llhttp.sh b/tools/dep_updaters/update-llhttp.sh new file mode 100755 index 00000000000000..9c46536f205b40 --- /dev/null +++ b/tools/dep_updaters/update-llhttp.sh @@ -0,0 +1,83 @@ +#!/bin/sh +set -e + +# Shell script to update llhttp in the source tree to specific version + +BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd) +DEPS_DIR="${BASE_DIR}/deps" + +[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node" +[ -x "$NODE" ] || NODE=$(command -v node) + +NEW_VERSION="$("$NODE" --input-type=module <<'EOF' +const res = await fetch('https://api.github.com/repos/nodejs/llhttp/releases/latest'); +if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res }); +const { tag_name } = await res.json(); +console.log(tag_name.replace('release/v', '')); +EOF +)" + +CURRENT_MAJOR_VERSION=$(grep "#define LLHTTP_VERSION_MAJOR" ./deps/llhttp/include/llhttp.h | sed -n "s/^.*MAJOR \(.*\)/\1/p") +CURRENT_MINOR_VERSION=$(grep "#define LLHTTP_VERSION_MINOR" ./deps/llhttp/include/llhttp.h | sed -n "s/^.*MINOR \(.*\)/\1/p") +CURRENT_PATCH_VERSION=$(grep "#define LLHTTP_VERSION_PATCH" ./deps/llhttp/include/llhttp.h | sed -n "s/^.*PATCH \(.*\)/\1/p") +CURRENT_VERSION="$CURRENT_MAJOR_VERSION.$CURRENT_MINOR_VERSION.$CURRENT_PATCH_VERSION" + +echo "Comparing $NEW_VERSION with $CURRENT_VERSION" + +if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then + echo "Skipped because llhttp is on the latest version." + exit 0 +fi + +cleanup () { + EXIT_CODE=$? + [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE" + exit $EXIT_CODE +} + +echo "Making temporary workspace ..." +WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp') +trap cleanup INT TERM EXIT + +cd "$WORKSPACE" + +if echo "$NEW_VERSION" | grep -qs "/" ; then # Download a release + REPO="git@github.com:$NEW_VERSION.git" + BRANCH=$2 + [ -z "$BRANCH" ] && BRANCH=main + + echo "Cloning llhttp source archive $REPO ..." + git clone "$REPO" llhttp + cd llhttp + echo "Checking out branch $BRANCH ..." + git checkout "$BRANCH" + + echo "Building llhtttp ..." + npm install + make release + + echo "Copying llhtttp release ..." + rm -rf "$DEPS_DIR/llhttp" + cp -a release "$DEPS_DIR/llhttp" +else + echo "Download llhttp release $NEW_VERSION ..." + curl -sL -o llhttp.tar.gz "https://github.com/nodejs/llhttp/archive/refs/tags/release/v$NEW_VERSION.tar.gz" + gzip -dc llhttp.tar.gz | tar xf - + + echo "Copying llhtttp release ..." + rm -rf "$DEPS_DIR/llhttp" + cp -a "llhttp-release-v$NEW_VERSION" "$DEPS_DIR/llhttp" +fi + +echo "" +echo "All done!" +echo "" +echo "Please git add llhttp, commit the new version:" +echo "" +echo "$ git add -A deps/llhttp" +echo "$ git commit -m \"deps: update llhttp 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" diff --git a/tools/update-nghttp2.sh b/tools/dep_updaters/update-nghttp2.sh similarity index 52% rename from tools/update-nghttp2.sh rename to tools/dep_updaters/update-nghttp2.sh index ba01f8d6bdef9f..c53a620ba096ec 100755 --- a/tools/update-nghttp2.sh +++ b/tools/dep_updaters/update-nghttp2.sh @@ -2,13 +2,27 @@ set -e # Shell script to update nghttp2 in the source tree to specific version -BASE_DIR=$(cd "$(dirname "$0")/.." && pwd) +BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd) DEPS_DIR="$BASE_DIR/deps" -NGHTTP2_VERSION=$1 -if [ "$#" -le 0 ]; then - echo "Error: please provide an nghttp2 version to update to" - exit 1 +[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node" +[ -x "$NODE" ] || NODE=$(command -v node) + +NEW_VERSION="$("$NODE" --input-type=module <<'EOF' +const res = await fetch('https://api.github.com/repos/nghttp2/nghttp2/releases/latest'); +if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res }); +const { tag_name } = await res.json(); +console.log(tag_name.replace('v', '')); +EOF +)" + +CURRENT_VERSION=$(grep "#define NGHTTP2_VERSION" ./deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h | sed -n "s/^.*VERSION \"\(.*\)\"/\1/p") + +echo "Comparing $NEW_VERSION with $CURRENT_VERSION" + +if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then + echo "Skipped because nghttp2 is on the latest version." + exit 0 fi echo "Making temporary workspace" @@ -23,8 +37,8 @@ cleanup () { trap cleanup INT TERM EXIT -NGHTTP2_REF="v$NGHTTP2_VERSION" -NGHTTP2_TARBALL="nghttp2-$NGHTTP2_VERSION.tar.gz" +NGHTTP2_REF="v$NEW_VERSION" +NGHTTP2_TARBALL="nghttp2-$NEW_VERSION.tar.gz" cd "$WORKSPACE" @@ -32,7 +46,7 @@ echo "Fetching nghttp2 source archive" curl -sL -o "$NGHTTP2_TARBALL" "https://github.com/nghttp2/nghttp2/releases/download/$NGHTTP2_REF/$NGHTTP2_TARBALL" gzip -dc "$NGHTTP2_TARBALL" | tar xf - rm "$NGHTTP2_TARBALL" -mv "nghttp2-$NGHTTP2_VERSION" nghttp2 +mv "nghttp2-$NEW_VERSION" nghttp2 echo "Removing everything, except lib/ and COPYING" cd nghttp2 @@ -59,5 +73,9 @@ echo "" echo "Please git add nghttp2, commit the new version:" echo "" echo "$ git add -A deps/nghttp2" -echo "$ git commit -m \"deps: update nghttp2 to $NGHTTP2_VERSION\"" +echo "$ git commit -m \"deps: update nghttp2 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" diff --git a/tools/doc/html.mjs b/tools/doc/html.mjs index 86df5162f58000..d5dd7973e206ac 100644 --- a/tools/doc/html.mjs +++ b/tools/doc/html.mjs @@ -226,10 +226,13 @@ export function preprocessElements({ filename }) { const className = isJSFlavorSnippet(node) ? `language-js ${node.lang}` : `language-${node.lang}`; + const highlighted = `${(getLanguage(node.lang || '') ? highlight(node.value, { language: node.lang }) : node).value}`; node.type = 'html'; + const copyButton = ''; + if (isJSFlavorSnippet(node)) { const previousNode = parent.children[index - 1] || {}; const nextNode = parent.children[index + 1] || {}; @@ -253,16 +256,17 @@ export function preprocessElements({ filename }) { ' aria-label="Show modern ES modules syntax">' + previousNode.value + highlighted + + copyButton + ''; node.lang = null; previousNode.value = ''; previousNode.lang = null; } else { // Isolated JS snippet, no need to add the checkbox. - node.value = `
    ${highlighted}
    `; + node.value = `
    ${highlighted} ${copyButton}
    `; } } else { - node.value = `
    ${highlighted}
    `; + node.value = `
    ${highlighted} ${copyButton}
    `; } } else if (node.type === 'html' && common.isYAMLBlock(node.value)) { node.value = parseYAML(node.value); diff --git a/tools/doc/type-parser.mjs b/tools/doc/type-parser.mjs index afca9383fc0b04..6073241f119543 100644 --- a/tools/doc/type-parser.mjs +++ b/tools/doc/type-parser.mjs @@ -57,6 +57,8 @@ const customTypesMap = { 'Module Namespace Object': 'https://tc39.github.io/ecma262/#sec-module-namespace-exotic-objects', + 'AsyncLocalStorage': 'async_context.html#class-asynclocalstorage', + 'AsyncHook': 'async_hooks.html#async_hookscreatehookcallbacks', 'AsyncResource': 'async_hooks.html#class-asyncresource', @@ -108,6 +110,7 @@ const customTypesMap = { 'dgram.Socket': 'dgram.html#class-dgramsocket', 'Channel': 'diagnostics_channel.html#class-channel', + 'TracingChannel': 'diagnostics_channel.html#class-tracingchannel', 'Domain': 'domain.html#class-domain', diff --git a/tools/find-inactive-tsc.mjs b/tools/find-inactive-tsc.mjs index 2d4b71ad5b7430..52cba2d2d8f3db 100755 --- a/tools/find-inactive-tsc.mjs +++ b/tools/find-inactive-tsc.mjs @@ -1,12 +1,10 @@ #!/usr/bin/env node -// Identify inactive TSC members. +// Identify inactive TSC voting members. // From the TSC Charter: -// A TSC member is automatically removed from the TSC if, during a 3-month -// period, all of the following are true: -// * They attend fewer than 25% of the regularly scheduled meetings. -// * They do not participate in any TSC votes. +// A TSC voting member is automatically converted to a TSC regular member if +// they do not participate in three consecutive TSC votes. import cp from 'node:child_process'; import fs from 'node:fs'; @@ -20,9 +18,8 @@ const args = parseArgs({ }); const verbose = args.values.verbose; -const SINCE = args.positionals[0] || '3 months ago'; -async function runGitCommand(cmd, options = {}) { +async function runShellCommand(cmd, options = {}) { const childProcess = cp.spawn('/bin/sh', ['-c', cmd], { cwd: options.cwd ?? new URL('..', import.meta.url), encoding: 'utf8', @@ -34,17 +31,14 @@ async function runGitCommand(cmd, options = {}) { const errorHandler = new Promise( (_, reject) => childProcess.on('error', reject), ); - let returnValue = options.mapFn ? new Set() : ''; + let returnValue = options.returnAsArray ? [] : ''; await Promise.race([errorHandler, Promise.resolve()]); // If no mapFn, return the value. If there is a mapFn, use it to make a Set to // return. for await (const line of lines) { await Promise.race([errorHandler, Promise.resolve()]); - if (options.mapFn) { - const val = options.mapFn(line); - if (val) { - returnValue.add(val); - } + if (options.returnAsArray) { + returnValue.push(line); } else { returnValue += line; } @@ -60,6 +54,13 @@ async function getTscFromReadme() { const returnedArray = []; let foundTscHeading = false; for await (const line of readmeText) { + // Until three votes have passed from March 16, 2023, we will need this. + // After that point, we can use this for setting `foundTscHeading` below + // and remove this. + if (line === '#### TSC voting members') { + continue; + } + // If we've found the TSC heading already, stop processing at the next // heading. if (foundTscHeading && line.startsWith('#')) { @@ -84,36 +85,6 @@ async function getTscFromReadme() { return returnedArray; } -async function getAttendance(tscMembers, meetings) { - const attendance = {}; - for (const member of tscMembers) { - attendance[member] = 0; - } - for (const meeting of meetings) { - // Get the file contents. - const meetingFile = - await fs.promises.readFile(path.join('.tmp', meeting), 'utf8'); - // Extract the attendee list. - const startMarker = '## Present'; - const start = meetingFile.indexOf(startMarker) + startMarker.length; - const end = meetingFile.indexOf('## Agenda'); - meetingFile.substring(start, end).trim().split('\n') - .map((line) => { - const match = line.match(/@(\S+)/); - if (match) { - return match[1]; - } - // Using `console.warn` so that stdout output is not generated. - // The stdout output is consumed in find-inactive-tsc.yml. - console.warn(`Attendee entry does not contain GitHub handle: ${line}`); - return ''; - }) - .filter((handle) => tscMembers.includes(handle)) - .forEach((handle) => { attendance[handle]++; }); - } - return attendance; -} - async function getVotingRecords(tscMembers, votes) { const votingRecords = {}; for (const member of tscMembers) { @@ -122,7 +93,7 @@ async function getVotingRecords(tscMembers, votes) { for (const vote of votes) { // Get the vote data. const voteData = JSON.parse( - await fs.promises.readFile(path.join('.tmp', vote), 'utf8'), + await fs.promises.readFile(path.join('.tmp/votes', vote), 'utf8'), ); for (const member in voteData.votes) { if (tscMembers.includes(member)) { @@ -133,22 +104,22 @@ async function getVotingRecords(tscMembers, votes) { return votingRecords; } -async function moveTscToEmeritus(peopleToMove) { +async function moveVotingToRegular(peopleToMove) { const readmeText = readline.createInterface({ input: fs.createReadStream(new URL('../README.md', import.meta.url)), crlfDelay: Infinity, }); let fileContents = ''; - let inTscSection = false; - let inTscEmeritusSection = false; + let inTscVotingSection = false; + let inTscRegularSection = false; let memberFirstLine = ''; const textToMove = []; let moveToInactive = false; for await (const line of readmeText) { - // If we've been processing TSC emeriti and we reach the end of + // If we've been processing TSC regular members and we reach the end of // the list, print out the remaining entries to be moved because they come // alphabetically after the last item. - if (inTscEmeritusSection && line === '' && + if (inTscRegularSection && line === '' && fileContents.endsWith('>\n')) { while (textToMove.length) { fileContents += textToMove.pop(); @@ -158,21 +129,21 @@ async function moveTscToEmeritus(peopleToMove) { // If we've found the TSC heading already, stop processing at the // next heading. if (line.startsWith('#')) { - inTscSection = false; - inTscEmeritusSection = false; + inTscVotingSection = false; + inTscRegularSection = false; } - const isTsc = inTscSection && line.length; - const isTscEmeritus = inTscEmeritusSection && line.length; + const isTscVoting = inTscVotingSection && line.length; + const isTscRegular = inTscRegularSection && line.length; - if (line === '### TSC (Technical Steering Committee)') { - inTscSection = true; + if (line === '#### TSC voting members') { + inTscVotingSection = true; } - if (line === '### TSC emeriti') { - inTscEmeritusSection = true; + if (line === '#### TSC regular members') { + inTscRegularSection = true; } - if (isTsc) { + if (isTscVoting) { if (line.startsWith('* ')) { memberFirstLine = line; const match = line.match(/^\* \[([^\]]+)/); @@ -191,7 +162,7 @@ async function moveTscToEmeritus(peopleToMove) { } } - if (isTscEmeritus) { + if (isTscRegular) { if (line.startsWith('* ')) { memberFirstLine = line; } else if (line.startsWith(' **')) { @@ -207,7 +178,7 @@ async function moveTscToEmeritus(peopleToMove) { } } - if (!isTsc && !isTscEmeritus) { + if (!isTscVoting && !isTscRegular) { fileContents += `${line}\n`; } } @@ -215,71 +186,54 @@ async function moveTscToEmeritus(peopleToMove) { return fileContents; } -// Get current TSC members, then get TSC members at start of period. Only check -// TSC members who are on both lists. This way, we don't flag someone who has -// only been on the TSC for a week and therefore hasn't attended any meetings. +// Get current TSC voting members, then get TSC voting members at start of +// period. Only check TSC voting members who are on both lists. This way, we +// don't flag someone who hasn't been on the TSC long enough to have missed 3 +// consecutive votes. const tscMembersAtEnd = await getTscFromReadme(); -const startCommit = await runGitCommand(`git rev-list -1 --before '${SINCE}' HEAD`); -await runGitCommand(`git checkout ${startCommit} -- README.md`); -const tscMembersAtStart = await getTscFromReadme(); -await runGitCommand('git reset HEAD README.md'); -await runGitCommand('git checkout -- README.md'); - -const tscMembers = tscMembersAtEnd.filter( - (memberAtEnd) => tscMembersAtStart.includes(memberAtEnd), -); - -// Get all meetings since SINCE. +// Get the last three votes. // Assumes that the TSC repo is cloned in the .tmp dir. -const meetings = await runGitCommand( - `git whatchanged --since '${SINCE}' --name-only --pretty=format: meetings`, - { cwd: '.tmp', mapFn: (line) => line }, +const votes = await runShellCommand( + 'ls *.json | sort -rn | head -3', + { cwd: '.tmp/votes', returnAsArray: true }, ); -// Get TSC meeting attendance. -const attendance = await getAttendance(tscMembers, meetings); -const lightAttendance = tscMembers.filter( - (member) => attendance[member] < meetings.size * 0.25, -); +// Reverse the votes list so the oldest of the three votes is first. +votes.reverse(); -// Get all votes since SINCE. -// Assumes that the TSC repo is cloned in the .tmp dir. -const votes = await runGitCommand( - `git whatchanged --since '${SINCE}' --name-only --pretty=format: votes/*.json`, - { cwd: '.tmp', mapFn: (line) => line }, +const startCommit = await runShellCommand(`git rev-list -1 --before '${votes[0]}' HEAD`); +await runShellCommand(`git checkout ${startCommit} -- README.md`); +const tscMembersAtStart = await getTscFromReadme(); +await runShellCommand('git reset HEAD README.md'); +await runShellCommand('git checkout -- README.md'); + +const tscMembers = tscMembersAtEnd.filter( + (memberAtEnd) => tscMembersAtStart.includes(memberAtEnd), ); // Check voting record. const votingRecords = await getVotingRecords(tscMembers, votes); -const noVotes = tscMembers.filter( +const inactive = tscMembers.filter( (member) => votingRecords[member] === 0, ); -const inactive = lightAttendance.filter((member) => noVotes.includes(member)); - if (inactive.length) { // The stdout output is consumed in find-inactive-tsc.yml. If format of output // changes, find-inactive-tsc.yml may need to be updated. console.log(`INACTIVE_TSC_HANDLES=${inactive.map((entry) => '@' + entry).join(' ')}`); - const commitDetails = inactive.map((entry) => { - let details = `Since ${SINCE}, `; - details += `${entry} attended ${attendance[entry]} out of ${meetings.size} meetings`; - details += ` and voted in ${votingRecords[entry]} of ${votes.size} votes.`; - return details; - }); - console.log(`DETAILS_FOR_COMMIT_BODY=${commitDetails.join(' ')}`); + const commitDetails = `${inactive.join(' ')} did not participate in three consecutive TSC votes: ${votes.join(' ')}`; + console.log(`DETAILS_FOR_COMMIT_BODY=${commitDetails}`); if (process.env.GITHUB_ACTIONS) { // Using console.warn() to avoid messing with find-inactive-tsc which // consumes stdout. console.warn('Generating new README.md file...'); - const newReadmeText = await moveTscToEmeritus(inactive); + const newReadmeText = await moveVotingToRegular(inactive); fs.writeFileSync(new URL('../README.md', import.meta.url), newReadmeText); } } if (verbose) { - console.log(attendance); console.log(votingRecords); } diff --git a/tools/lint-md/lint-md.mjs b/tools/lint-md/lint-md.mjs index fb8f0deb277c6f..88d51374547d21 100644 --- a/tools/lint-md/lint-md.mjs +++ b/tools/lint-md/lint-md.mjs @@ -11966,20 +11966,20 @@ function parseParameters(value) { const parameters = {}; return value .replace( - /\s+([-\w]+)(?:=(?:"((?:\\[\s\S]|[^"])+)"|'((?:\\[\s\S]|[^'])+)'|((?:\\[\s\S]|[^"'\s])+)))?/gi, + /\s+([-\w]+)(?:=(?:"((?:\\[\s\S]|[^"])*)"|'((?:\\[\s\S]|[^'])*)'|((?:\\[\s\S]|[^"'\s])+)))?/gi, replacer ) .replace(/\s+/g, '') ? null : parameters function replacer(_, $1, $2, $3, $4) { - let value = $2 || $3 || $4 || ''; + let value = $2 === undefined ? ($3 === undefined ? $4 : $3) : $2; const number = Number(value); - if (value === 'true' || value === '') { + if (value === 'true' || value === undefined) { value = true; } else if (value === 'false') { value = false; - } else if (!Number.isNaN(number)) { + } else if (value.trim() && !Number.isNaN(number)) { value = number; } parameters[$1] = value; diff --git a/tools/lint-md/package-lock.json b/tools/lint-md/package-lock.json index 2c9e36cb286fdd..c5d5039b6af444 100644 --- a/tools/lint-md/package-lock.json +++ b/tools/lint-md/package-lock.json @@ -18,7 +18,7 @@ "devDependencies": { "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-node-resolve": "^15.0.1", - "rollup": "^3.18.0", + "rollup": "^3.20.2", "rollup-plugin-cleanup": "^3.2.1" } }, @@ -130,9 +130,9 @@ } }, "node_modules/@types/mdast": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", - "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", + "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", "dependencies": { "@types/unist": "*" } @@ -268,9 +268,9 @@ } }, "node_modules/deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, "engines": { "node": ">=0.10.0" @@ -556,9 +556,9 @@ } }, "node_modules/mdast-comment-marker": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/mdast-comment-marker/-/mdast-comment-marker-2.1.1.tgz", - "integrity": "sha512-ktFfySmbRfOPiWoLkRKqkkyYkDnBVX5b5FqXwnvV1TmgVOl49ETsYK4hPKqrlM15y7AtxNDKIKwJRkZa3TWkng==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-comment-marker/-/mdast-comment-marker-2.1.2.tgz", + "integrity": "sha512-HED3ezseRVkBzZ0uK4q6RJMdufr/2p3VfVZstE3H1N9K8bwtspztWo6Xd7rEatuGNoCXaBna8oEqMwUn0Ve1bw==", "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-mdx-expression": "^1.1.0" @@ -2232,9 +2232,9 @@ } }, "node_modules/rollup": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.18.0.tgz", - "integrity": "sha512-J8C6VfEBjkvYPESMQYxKHxNOh4A5a3FlP+0BETGo34HEcE4eTlgCrO2+eWzlu2a/sHs2QUkZco+wscH7jhhgWg==", + "version": "3.20.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.20.2.tgz", + "integrity": "sha512-3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg==", "dev": true, "bin": { "rollup": "dist/bin/rollup" diff --git a/tools/lint-md/package.json b/tools/lint-md/package.json index 500bca26a8bba7..f973bf335b6a3c 100644 --- a/tools/lint-md/package.json +++ b/tools/lint-md/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-node-resolve": "^15.0.1", - "rollup": "^3.18.0", + "rollup": "^3.20.2", "rollup-plugin-cleanup": "^3.2.1" } } diff --git a/tools/merge-wpt-reports.mjs b/tools/merge-wpt-reports.mjs new file mode 100644 index 00000000000000..9199714f4b1032 --- /dev/null +++ b/tools/merge-wpt-reports.mjs @@ -0,0 +1,32 @@ +import * as fs from 'node:fs'; +import * as path from 'node:path'; +import * as url from 'node:url'; + +const __dirname = path.dirname(url.fileURLToPath(import.meta.url)); + +const outDir = path.resolve(__dirname, '../out/wpt'); +const files = fs.readdirSync(outDir); +const reports = files.filter((file) => file.endsWith('.json')); + +const startTimes = []; +const endTimes = []; +const results = []; +let runInfo; + +for (const file of reports) { + const report = JSON.parse(fs.readFileSync(path.resolve(outDir, file))); + fs.unlinkSync(path.resolve(outDir, file)); + results.push(...report.results); + startTimes.push(report.time_start); + endTimes.push(report.time_end); + runInfo ||= report.run_info; +} + +const mergedReport = { + time_start: Math.min(...startTimes), + time_end: Math.max(...endTimes), + run_info: runInfo, + results, +}; + +fs.writeFileSync(path.resolve(outDir, 'wptreport.json'), JSON.stringify(mergedReport)); diff --git a/tools/msvs/msi/NuGet.Config b/tools/msvs/msi/NuGet.Config new file mode 100644 index 00000000000000..19d85b78fdf998 --- /dev/null +++ b/tools/msvs/msi/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + diff --git a/tools/msvs/msi/custom_actions.cc b/tools/msvs/msi/custom_actions/custom_actions.cc similarity index 87% rename from tools/msvs/msi/custom_actions.cc rename to tools/msvs/msi/custom_actions/custom_actions.cc index 32811dcb19469d..d747823423eeb5 100644 --- a/tools/msvs/msi/custom_actions.cc +++ b/tools/msvs/msi/custom_actions/custom_actions.cc @@ -77,27 +77,6 @@ extern "C" UINT WINAPI SetInstallScope(MSIHANDLE hInstall) { return WcaFinalize(ERROR_SUCCESS); } - -extern "C" UINT WINAPI BroadcastEnvironmentUpdate(MSIHANDLE hInstall) { - HRESULT hr = S_OK; - UINT er = ERROR_SUCCESS; - - hr = WcaInitialize(hInstall, "BroadcastEnvironmentUpdate"); - ExitOnFailure(hr, "Failed to initialize"); - - SendMessageTimeoutW(HWND_BROADCAST, - WM_SETTINGCHANGE, - 0, - (LPARAM) L"Environment", - SMTO_ABORTIFHUNG, - 5000, - NULL); - -LExit: - er = SUCCEEDED(hr) ? ERROR_SUCCESS : ERROR_INSTALL_FAILURE; - return WcaFinalize(er); -} - #define AUTHENTICATED_USERS_SID L"S-1-5-11" extern "C" UINT WINAPI GetLocalizedUserNames(MSIHANDLE hInstall) { diff --git a/tools/msvs/msi/custom_actions.def b/tools/msvs/msi/custom_actions/custom_actions.def similarity index 72% rename from tools/msvs/msi/custom_actions.def rename to tools/msvs/msi/custom_actions/custom_actions.def index 93f2a28f45e45e..5561777ae77539 100644 --- a/tools/msvs/msi/custom_actions.def +++ b/tools/msvs/msi/custom_actions/custom_actions.def @@ -2,5 +2,4 @@ LIBRARY "custom_actions" EXPORTS SetInstallScope -BroadcastEnvironmentUpdate GetLocalizedUserNames diff --git a/tools/msvs/msi/custom_actions.vcxproj b/tools/msvs/msi/custom_actions/custom_actions.vcxproj similarity index 82% rename from tools/msvs/msi/custom_actions.vcxproj rename to tools/msvs/msi/custom_actions/custom_actions.vcxproj index 2fed47b6e4a781..6de11e1eae3474 100644 --- a/tools/msvs/msi/custom_actions.vcxproj +++ b/tools/msvs/msi/custom_actions/custom_actions.vcxproj @@ -112,7 +112,7 @@ Disabled - $(WixSdkDir)\inc;%(AdditionalIncludeDirectories) + $(PkgWixToolset_WcaUtil)\build\native\include;$(PkgWixToolset_DUtil)\build\native\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebug @@ -122,7 +122,7 @@ msi.lib;dutil.lib;wcautil.lib;version.lib;%(AdditionalDependencies) - $(WixSdkDir)\lib\x86;%(AdditionalLibraryDirectories) + $(PkgWixToolset_WcaUtil)\build\native\v14\x86;$(PkgWixToolset_DUtil)\build\native\v14\x86;%(AdditionalLibraryDirectories) custom_actions.def true Windows @@ -131,7 +131,7 @@ Disabled - $(WixSdkDir)\inc;%(AdditionalIncludeDirectories) + $(PkgWixToolset_WcaUtil)\build\native\include;$(PkgWixToolset_DUtil)\build\native\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebug @@ -141,7 +141,7 @@ msi.lib;dutil.lib;wcautil.lib;version.lib;%(AdditionalDependencies) - $(WixSdkDir)\lib\ARM64;%(AdditionalLibraryDirectories) + $(PkgWixToolset_WcaUtil)\build\native\v14\ARM64;$(PkgWixToolset_DUtil)\build\native\v14\ARM64;%(AdditionalLibraryDirectories) custom_actions.def true Windows @@ -150,7 +150,7 @@ Disabled - $(WixSdkDir)\inc;%(AdditionalIncludeDirectories) + $(PkgWixToolset_WcaUtil)\build\native\include;$(PkgWixToolset_DUtil)\build\native\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebug @@ -160,7 +160,7 @@ msi.lib;dutil.lib;wcautil.lib;version.lib;%(AdditionalDependencies) - $(WixSdkDir)\lib\x64;%(AdditionalLibraryDirectories) + $(PkgWixToolset_WcaUtil)\build\native\v14\x64;$(PkgWixToolset_DUtil)\build\native\v14\x64;%(AdditionalLibraryDirectories) custom_actions.def true Windows @@ -170,7 +170,7 @@ MaxSpeed true - $(WixSdkDir)\inc;%(AdditionalIncludeDirectories) + $(PkgWixToolset_WcaUtil)\build\native\include;$(PkgWixToolset_DUtil)\build\native\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) MultiThreaded true @@ -184,7 +184,7 @@ msi.lib;dutil.lib;wcautil.lib;version.lib;%(AdditionalDependencies) - $(WixSdkDir)\lib\x86;%(AdditionalLibraryDirectories) + $(PkgWixToolset_WcaUtil)\build\native\v14\x86;$(PkgWixToolset_DUtil)\build\native\v14\x86;%(AdditionalLibraryDirectories) custom_actions.def true Windows @@ -196,7 +196,7 @@ MaxSpeed true - $(WixSdkDir)\inc;%(AdditionalIncludeDirectories) + $(PkgWixToolset_WcaUtil)\build\native\include;$(PkgWixToolset_DUtil)\build\native\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) MultiThreaded true @@ -210,7 +210,7 @@ msi.lib;dutil.lib;wcautil.lib;version.lib;%(AdditionalDependencies) - $(WixSdkDir)\lib\ARM64;%(AdditionalLibraryDirectories) + $(PkgWixToolset_WcaUtil)\build\native\v14\ARM64;$(PkgWixToolset_DUtil)\build\native\v14\ARM64;%(AdditionalLibraryDirectories) custom_actions.def true Windows @@ -222,7 +222,7 @@ MaxSpeed true - $(WixSdkDir)\inc;%(AdditionalIncludeDirectories) + $(PkgWixToolset_WcaUtil)\build\native\include;$(PkgWixToolset_DUtil)\build\native\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) MultiThreaded true @@ -236,7 +236,7 @@ msi.lib;dutil.lib;wcautil.lib;version.lib;%(AdditionalDependencies) - $(WixSdkDir)\lib\x64;%(AdditionalLibraryDirectories) + $(PkgWixToolset_WcaUtil)\build\native\v14\x64;$(PkgWixToolset_DUtil)\build\native\v14\x64;%(AdditionalLibraryDirectories) custom_actions.def true Windows @@ -254,4 +254,12 @@ + + + + + + <_NuGetTargetFallbackMoniker>$(_NuGetTargetFallbackMoniker);native,Version=v0.0 + $(RuntimeIdentifiers);win-arm64 + diff --git a/tools/msvs/msi/i18n/en-us.wxl b/tools/msvs/msi/i18n/en-us.wxl deleted file mode 100644 index dc69f218240149..00000000000000 --- a/tools/msvs/msi/i18n/en-us.wxl +++ /dev/null @@ -1,43 +0,0 @@ - - - - 1033 - - The Setup Wizard will install [ProductName] on your computer. - Choose a custom location or click Next to install. - - A later version of [ProductName] is already installed. Setup will now exit. - - [ProductName] Setup - {\WixUI_Font_Title}Tools for Native Modules - Optionally install the tools necessary to compile native modules. - WixUI_Bmp_Banner - Some npm modules need to be compiled from C/C++ when installing. If you want to be able to install such modules, some tools (Python and Visual Studio Build Tools) need to be installed. - Automatically install the necessary tools. Note that this will also install Chocolatey. The script will pop-up in a new window after the installation completes. - Alternatively, follow the instructions at https://github.com/nodejs/node-gyp#on-windows]]> to install the dependencies yourself. - - - Node.js runtime - Install the core [ProductName] runtime (node.exe). - - npm package manager - Install npm, the recommended package manager for [ProductName]. - - corepack manager - Install corepack, the universal package manager for [ProductName]. - - Online documentation shortcuts - Add start menu entries that link the online documentation for [ProductName] [FullVersion] and the [ProductName] website. - - Add to PATH - Add [ProductName], npm, and modules that were globally installed by npm to the PATH environment variable. - - Node.js and npm - Add [ProductName] and npm (if installed) to the PATH environment variable. - - npm modules - Add modules that are installed globally by npm to the PATH environment variable. This option works for the current user only; other users need to update their PATH manually. - - - Node.js has been successfully installed. - diff --git a/tools/msvs/msi/nodemsi.sln b/tools/msvs/msi/nodemsi.sln index 86b4b10dcb043f..e06530f5e24abd 100644 --- a/tools/msvs/msi/nodemsi.sln +++ b/tools/msvs/msi/nodemsi.sln @@ -1,9 +1,13 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "nodemsi", "nodemsi.wixproj", "{1D808FF0-B5A9-4BE9-859D-B334B6F48BE2}" +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.33027.164 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{B7DD6F7E-DEF8-4E67-B5B7-07EF123DB6F0}") = "nodemsi", "nodemsi\nodemsi.wixproj", "{1D808FF0-B5A9-4BE9-859D-B334B6F48BE2}" + ProjectSection(ProjectDependencies) = postProject + {B70585F8-DAB7-40FA-9904-13CF53A73A06} = {B70585F8-DAB7-40FA-9904-13CF53A73A06} + EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "custom_actions", "custom_actions.vcxproj", "{B70585F8-DAB7-40FA-9904-13CF53A73A06}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "custom_actions", "custom_actions\custom_actions.vcxproj", "{B70585F8-DAB7-40FA-9904-13CF53A73A06}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -43,4 +47,7 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FB650322-7A09-471D-A635-F2DBDCEECDB8} + EndGlobalSection EndGlobal diff --git a/tools/msvs/msi/nodemsi.wixproj b/tools/msvs/msi/nodemsi.wixproj deleted file mode 100644 index 0cf215daca5978..00000000000000 --- a/tools/msvs/msi/nodemsi.wixproj +++ /dev/null @@ -1,93 +0,0 @@ - - - - Debug - x86 - 3.5 - {1d808ff0-b5a9-4be9-859d-b334b6f48be2} - 2.0 - node-v$(FullVersion)-$(Platform) - Package - True - $(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets - $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets - 0.0.0.0 - - - ..\..\..\ - obj\$(Configuration)\ - Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFilesFolder - - - ..\..\..\ - obj\$(Configuration)\ - Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFilesFolder - - - ..\..\..\ - obj\$(Configuration)\ - Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFiles64Folder - en-US - - - ..\..\..\ - obj\$(Configuration)\ - Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFiles64Folder - - - ..\..\..\ - obj\$(Configuration)\ - Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFiles64Folder - - - ..\..\..\ - obj\$(Configuration)\ - Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFiles64Folder - - - True - - - - - npm.wxs - - - corepack.wxs - - - - - $(WixExtDir)\WixUIExtension.dll - WixUIExtension - - - $(WixExtDir)\WiXUtilExtension.dll - WiXUtilExtension - - - - - - - - custom_actions - {b70585f8-dab7-40fa-9904-13cf53a73a06} - True - True - Binaries;Content;Satellites - INSTALLFOLDER - - - - - - - - - - - move "!(TargetPath)" "$(TargetDir)\$(TargetFileName)" - move "!(TargetPdbPath)" "$(TargetDir)\$(TargetPdbName)" - - diff --git a/tools/msvs/msi/nodemsi/i18n/en-us.wxl b/tools/msvs/msi/nodemsi/i18n/en-us.wxl new file mode 100644 index 00000000000000..5074d5a43125f7 --- /dev/null +++ b/tools/msvs/msi/nodemsi/i18n/en-us.wxl @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools/msvs/msi/nodemsi/nodemsi.wixproj b/tools/msvs/msi/nodemsi/nodemsi.wixproj new file mode 100644 index 00000000000000..b1463cf65696b9 --- /dev/null +++ b/tools/msvs/msi/nodemsi/nodemsi.wixproj @@ -0,0 +1,70 @@ + + + + Debug + x86 + 3.5 + {1d808ff0-b5a9-4be9-859d-b334b6f48be2} + node-v$(FullVersion)-$(Platform) + Package + 0.0.0.0 + + + ..\..\..\..\ + obj\$(Configuration)\ + Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFilesFolder + + + ..\..\..\..\ + obj\$(Configuration)\ + Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFilesFolder + + + ..\..\..\..\ + obj\$(Configuration)\ + Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFiles64Folder + en-US + + + ..\..\..\..\ + obj\$(Configuration)\ + Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFiles64Folder + + + ..\..\..\..\ + obj\$(Configuration)\ + Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFiles64Folder + + + ..\..\..\..\ + obj\$(Configuration)\ + Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NpmSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\npm\;CorepackSourceDir=..\..\..\..\Release\node-v$(FullVersion)-win-$(Platform)\node_modules\corepack\;ProgramFilesFolderId=ProgramFiles64Folder + + + + npm.wxs + + + corepack.wxs + + + + + + + + + + + + + + + + + + + move "$(TargetDir)en-us\$(TargetFileName)" "$(TargetPath)" + move "$(TargetDir)en-us\$(TargetPdbFileName)" "$(TargetPdbPath)" + + diff --git a/tools/msvs/msi/product.wxs b/tools/msvs/msi/nodemsi/product.wxs old mode 100755 new mode 100644 similarity index 79% rename from tools/msvs/msi/product.wxs rename to tools/msvs/msi/nodemsi/product.wxs index c6984777fac3fa..de4a6a34cee118 --- a/tools/msvs/msi/product.wxs +++ b/tools/msvs/msi/nodemsi/product.wxs @@ -1,6 +1,6 @@ - - + @@ -8,24 +8,18 @@ - + - + UpgradeCode="47c07a3a-42ef-4213-a85d-8f5a59077c28" + InstallerVersion="200" + Compressed="yes"> - - - - = 603) OR (VersionNT >= 602 AND MsiNTProductType <> 1)]]> - + @@ -46,10 +40,9 @@ - - - - + + + + AllowAbsent="no"> @@ -79,7 +72,6 @@ - - - - - + + + - - - + + - + @@ -197,13 +187,13 @@ + - - - - - - - - + + + + + + + - + @@ -314,38 +304,39 @@ - + - - + + - + - - - + + + @@ -383,34 +374,35 @@ - 1 + - NOT Installed - Installed AND PATCH - 1 - LicenseAccepted = "1" - 1 - 1 - 1 - 1 - 1 - NOT Installed OR WixUI_InstallMode = "Change" - Installed AND NOT PATCH - Installed AND PATCH - 1 - 1 - 1 - 1 - 1 - Installed - NOT Installed - 1 - 1 - 1 - NATIVETOOLSCHECKBOX = 1 - 1 + + + + + + + + + + + + + + + + + + + + + + + + + @@ -420,6 +412,6 @@ - + diff --git a/tools/node_modules/eslint/conf/rule-type-list.json b/tools/node_modules/eslint/conf/rule-type-list.json index 517f8219166efb..d5823acc898ec4 100644 --- a/tools/node_modules/eslint/conf/rule-type-list.json +++ b/tools/node_modules/eslint/conf/rule-type-list.json @@ -6,12 +6,12 @@ ], "deprecated": { "name": "Deprecated", - "description": "These rules have been deprecated in accordance with the deprecation policy, and replaced by newer rules:", + "description": "These rules have been deprecated in accordance with the deprecation policy, and replaced by newer rules:", "rules": [] }, "removed": { "name": "Removed", - "description": "These rules from older versions of ESLint (before the deprecation policy existed) have been replaced by newer rules:", + "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"] }, diff --git a/tools/node_modules/eslint/lib/cli-engine/file-enumerator.js b/tools/node_modules/eslint/lib/cli-engine/file-enumerator.js index 9625e4aa701767..5dff8d09ccdf77 100644 --- a/tools/node_modules/eslint/lib/cli-engine/file-enumerator.js +++ b/tools/node_modules/eslint/lib/cli-engine/file-enumerator.js @@ -349,7 +349,7 @@ class FileEnumerator { return this._iterateFilesWithFile(absolutePath); } if (globInputPaths && isGlobPattern(pattern)) { - return this._iterateFilesWithGlob(absolutePath, isDot); + return this._iterateFilesWithGlob(pattern, isDot); } return []; @@ -398,15 +398,17 @@ class FileEnumerator { _iterateFilesWithGlob(pattern, dotfiles) { debug(`Glob: ${pattern}`); - const directoryPath = path.resolve(getGlobParent(pattern)); - const globPart = pattern.slice(directoryPath.length + 1); + const { cwd } = internalSlotsMap.get(this); + const directoryPath = path.resolve(cwd, getGlobParent(pattern)); + const absolutePath = path.resolve(cwd, pattern); + const globPart = absolutePath.slice(directoryPath.length + 1); /* * recursive if there are `**` or path separators in the glob part. * Otherwise, patterns such as `src/*.js`, it doesn't need recursive. */ const recursive = /\*\*|\/|\\/u.test(globPart); - const selector = new Minimatch(pattern, minimatchOpts); + const selector = new Minimatch(absolutePath, minimatchOpts); debug(`recursive? ${recursive}`); diff --git a/tools/node_modules/eslint/lib/config/default-config.js b/tools/node_modules/eslint/lib/config/default-config.js index aa0dfb2a522f49..99ea7b9f84e474 100644 --- a/tools/node_modules/eslint/lib/config/default-config.js +++ b/tools/node_modules/eslint/lib/config/default-config.js @@ -19,9 +19,6 @@ exports.defaultConfig = [ { plugins: { "@": { - parsers: { - espree: require("espree") - }, /* * Because we try to delay loading rules until absolutely @@ -43,7 +40,7 @@ exports.defaultConfig = [ languageOptions: { sourceType: "module", ecmaVersion: "latest", - parser: "@/espree", + parser: require("espree"), parserOptions: {} } }, diff --git a/tools/node_modules/eslint/lib/config/flat-config-array.js b/tools/node_modules/eslint/lib/config/flat-config-array.js index 46d436db5cff54..689dc429f5021f 100644 --- a/tools/node_modules/eslint/lib/config/flat-config-array.js +++ b/tools/node_modules/eslint/lib/config/flat-config-array.js @@ -36,6 +36,45 @@ function splitPluginIdentifier(identifier) { }; } +/** + * Returns the name of an object in the config by reading its `meta` key. + * @param {Object} object The object to check. + * @returns {string?} The name of the object if found or `null` if there + * is no name. + */ +function getObjectId(object) { + + // first check old-style name + let name = object.name; + + if (!name) { + + if (!object.meta) { + return null; + } + + name = object.meta.name; + + if (!name) { + return null; + } + } + + // now check for old-style version + let version = object.version; + + if (!version) { + version = object.meta && object.meta.version; + } + + // if there's a version then append that + if (version) { + return `${name}@${version}`; + } + + return name; +} + const originalBaseConfig = Symbol("originalBaseConfig"); //----------------------------------------------------------------------------- @@ -151,16 +190,15 @@ class FlatConfigArray extends ConfigArray { // Check parser value if (languageOptions && languageOptions.parser) { - if (typeof languageOptions.parser === "string") { - const { pluginName, objectName: localParserName } = splitPluginIdentifier(languageOptions.parser); + const { parser } = languageOptions; - parserName = languageOptions.parser; + if (typeof parser === "object") { + parserName = getObjectId(parser); - if (!plugins || !plugins[pluginName] || !plugins[pluginName].parsers || !plugins[pluginName].parsers[localParserName]) { - throw new TypeError(`Key "parser": Could not find "${localParserName}" in plugin "${pluginName}".`); + if (!parserName) { + invalidParser = true; } - languageOptions.parser = plugins[pluginName].parsers[localParserName]; } else { invalidParser = true; } @@ -178,6 +216,13 @@ class FlatConfigArray extends ConfigArray { } config.processor = plugins[pluginName].processors[localProcessorName]; + } else if (typeof processor === "object") { + processorName = getObjectId(processor); + + if (!processorName) { + invalidProcessor = true; + } + } else { invalidProcessor = true; } @@ -191,16 +236,25 @@ class FlatConfigArray extends ConfigArray { value: function() { if (invalidParser) { - throw new Error("Caching is not supported when parser is an object."); + throw new Error("Could not serialize parser object (missing 'meta' object)."); } if (invalidProcessor) { - throw new Error("Caching is not supported when processor is an object."); + throw new Error("Could not serialize processor object (missing 'meta' object)."); } return { ...this, - plugins: Object.keys(plugins), + plugins: Object.entries(plugins).map(([namespace, plugin]) => { + + const pluginId = getObjectId(plugin); + + if (!pluginId) { + return namespace; + } + + return `${namespace}:${pluginId}`; + }), languageOptions: { ...languageOptions, parser: parserName 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 cb8e7961add509..bb6e9f899aca15 100644 --- a/tools/node_modules/eslint/lib/config/flat-config-schema.js +++ b/tools/node_modules/eslint/lib/config/flat-config-schema.js @@ -179,18 +179,6 @@ function assertIsObject(value) { } } -/** - * Validates that a value is an object or a string. - * @param {any} value The value to check. - * @returns {void} - * @throws {TypeError} If the value isn't an object or a string. - */ -function assertIsObjectOrString(value) { - if ((!value || typeof value !== "object") && typeof value !== "string") { - throw new TypeError("Expected an object or string."); - } -} - //----------------------------------------------------------------------------- // Low-Level Schemas //----------------------------------------------------------------------------- @@ -242,15 +230,13 @@ const globalsSchema = { const parserSchema = { merge: "replace", validate(value) { - assertIsObjectOrString(value); - if (typeof value === "object" && typeof value.parse !== "function" && typeof value.parseForESLint !== "function") { - throw new TypeError("Expected object to have a parse() or parseForESLint() method."); + if (!value || typeof value !== "object" || + (typeof value.parse !== "function" && typeof value.parseForESLint !== "function") + ) { + throw new TypeError("Expected object with parse() or parseForESLint() method."); } - if (typeof value === "string") { - assertIsPluginMemberName(value); - } } }; diff --git a/tools/node_modules/eslint/lib/eslint/eslint-helpers.js b/tools/node_modules/eslint/lib/eslint/eslint-helpers.js index 72cf9114e73e65..54b0c69d7c8ee5 100644 --- a/tools/node_modules/eslint/lib/eslint/eslint-helpers.js +++ b/tools/node_modules/eslint/lib/eslint/eslint-helpers.js @@ -526,9 +526,9 @@ async function findFiles({ } // save patterns for later use based on whether globs are enabled - if (globInputPaths && isGlobPattern(filePath)) { + if (globInputPaths && isGlobPattern(pattern)) { - const basePath = globParent(filePath); + const basePath = path.resolve(cwd, globParent(pattern)); // group in cwd if possible and split out others if (isPathInside(basePath, cwd)) { diff --git a/tools/node_modules/eslint/lib/linter/linter.js b/tools/node_modules/eslint/lib/linter/linter.js index 0f1bd4f77611aa..3b099004d2bea7 100644 --- a/tools/node_modules/eslint/lib/linter/linter.js +++ b/tools/node_modules/eslint/lib/linter/linter.js @@ -857,47 +857,22 @@ function parse(text, languageOptions, filePath) { } } -/** - * Gets the scope for the current node - * @param {ScopeManager} scopeManager The scope manager for this AST - * @param {ASTNode} currentNode The node to get the scope of - * @returns {eslint-scope.Scope} The scope information for this node - */ -function getScope(scopeManager, currentNode) { - - // On Program node, get the outermost scope to avoid return Node.js special function scope or ES modules scope. - const inner = currentNode.type !== "Program"; - - for (let node = currentNode; node; node = node.parent) { - const scope = scopeManager.acquire(node, inner); - - if (scope) { - if (scope.type === "function-expression-name") { - return scope.childScopes[0]; - } - return scope; - } - } - - return scopeManager.scopes[0]; -} - /** * Marks a variable as used in the current scope - * @param {ScopeManager} scopeManager The scope manager for this AST. The scope may be mutated by this function. + * @param {SourceCode} sourceCode The source code for the currently linted file. * @param {ASTNode} currentNode The node currently being traversed * @param {LanguageOptions} languageOptions The options used to parse this text * @param {string} name The name of the variable that should be marked as used. * @returns {boolean} True if the variable was found and marked as used, false if not. */ -function markVariableAsUsed(scopeManager, currentNode, languageOptions, name) { +function markVariableAsUsed(sourceCode, currentNode, languageOptions, name) { const parserOptions = languageOptions.parserOptions; const sourceType = languageOptions.sourceType; const hasGlobalReturn = (parserOptions.ecmaFeatures && parserOptions.ecmaFeatures.globalReturn) || sourceType === "commonjs"; const specialScope = hasGlobalReturn || sourceType === "module"; - const currentScope = getScope(scopeManager, currentNode); + const currentScope = sourceCode.getScope(currentNode); // Special Node.js scope means we need to start one level deeper const initialScope = currentScope.type === "global" && specialScope ? currentScope.childScopes[0] : currentScope; @@ -1026,9 +1001,9 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO getCwd: () => cwd, getFilename: () => filename, getPhysicalFilename: () => physicalFilename || filename, - getScope: () => getScope(sourceCode.scopeManager, currentNode), + getScope: () => sourceCode.getScope(currentNode), getSourceCode: () => sourceCode, - markVariableAsUsed: name => markVariableAsUsed(sourceCode.scopeManager, currentNode, languageOptions, name), + markVariableAsUsed: name => markVariableAsUsed(sourceCode, currentNode, languageOptions, name), parserOptions: { ...languageOptions.parserOptions }, diff --git a/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js b/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js index 510cbc688ceef4..97055d104f4169 100644 --- a/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +++ b/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js @@ -345,7 +345,7 @@ class FlatRuleTester { * @returns {void} */ static setDefaultConfig(config) { - if (typeof config !== "object") { + if (typeof config !== "object" || config === null) { throw new TypeError("FlatRuleTester.setDefaultConfig: config must be an object"); } sharedDefaultConfig = config; diff --git a/tools/node_modules/eslint/lib/rule-tester/rule-tester.js b/tools/node_modules/eslint/lib/rule-tester/rule-tester.js index 48df3b79b943dc..8518299d0b04e0 100644 --- a/tools/node_modules/eslint/lib/rule-tester/rule-tester.js +++ b/tools/node_modules/eslint/lib/rule-tester/rule-tester.js @@ -412,7 +412,7 @@ class RuleTester { * @returns {void} */ static setDefaultConfig(config) { - if (typeof config !== "object") { + if (typeof config !== "object" || config === null) { throw new TypeError("RuleTester.setDefaultConfig: config must be an object"); } defaultConfig = config; diff --git a/tools/node_modules/eslint/lib/rules/camelcase.js b/tools/node_modules/eslint/lib/rules/camelcase.js index ee1b6bf598d31e..910e8b6e583147 100644 --- a/tools/node_modules/eslint/lib/rules/camelcase.js +++ b/tools/node_modules/eslint/lib/rules/camelcase.js @@ -73,6 +73,7 @@ module.exports = { const ignoreImports = options.ignoreImports; const ignoreGlobals = options.ignoreGlobals; const allow = options.allow || []; + const sourceCode = context.getSourceCode(); //-------------------------------------------------------------------------- // Helpers @@ -245,8 +246,8 @@ module.exports = { return { // Report camelcase of global variable references ------------------ - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); if (!ignoreGlobals) { diff --git a/tools/node_modules/eslint/lib/rules/consistent-this.js b/tools/node_modules/eslint/lib/rules/consistent-this.js index 947873b8e4a75b..b1fbd0ebedf536 100644 --- a/tools/node_modules/eslint/lib/rules/consistent-this.js +++ b/tools/node_modules/eslint/lib/rules/consistent-this.js @@ -36,6 +36,7 @@ module.exports = { create(context) { let aliases = []; + const sourceCode = context.getSourceCode(); if (context.options.length === 0) { aliases.push("that"); @@ -115,10 +116,11 @@ module.exports = { /** * Check each alias to ensure that is was assigned to the correct value. + * @param {ASTNode} node The node that represents the scope to check. * @returns {void} */ - function ensureWasAssigned() { - const scope = context.getScope(); + function ensureWasAssigned(node) { + const scope = sourceCode.getScope(node); aliases.forEach(alias => { checkWasAssigned(alias, scope); diff --git a/tools/node_modules/eslint/lib/rules/global-require.js b/tools/node_modules/eslint/lib/rules/global-require.js index ceb0a8e8415448..c8a5fc309a162b 100644 --- a/tools/node_modules/eslint/lib/rules/global-require.js +++ b/tools/node_modules/eslint/lib/rules/global-require.js @@ -71,9 +71,11 @@ module.exports = { }, create(context) { + const sourceCode = context.getSourceCode(); + return { CallExpression(node) { - const currentScope = context.getScope(); + const currentScope = sourceCode.getScope(node); if (node.callee.name === "require" && !isShadowed(currentScope, node.callee)) { const isGoodRequire = context.getAncestors().every(parent => ACCEPTABLE_PARENTS.has(parent.type)); diff --git a/tools/node_modules/eslint/lib/rules/handle-callback-err.js b/tools/node_modules/eslint/lib/rules/handle-callback-err.js index 5189564b668357..300dbb0dee20b8 100644 --- a/tools/node_modules/eslint/lib/rules/handle-callback-err.js +++ b/tools/node_modules/eslint/lib/rules/handle-callback-err.js @@ -38,6 +38,7 @@ module.exports = { create(context) { const errorArgument = context.options[0] || "err"; + const sourceCode = context.getSourceCode(); /** * Checks if the given argument should be interpreted as a regexp pattern. @@ -79,7 +80,7 @@ module.exports = { * @returns {void} */ function checkForError(node) { - const scope = context.getScope(), + const scope = sourceCode.getScope(node), parameters = getParameters(scope), firstParameter = parameters[0]; diff --git a/tools/node_modules/eslint/lib/rules/id-blacklist.js b/tools/node_modules/eslint/lib/rules/id-blacklist.js index 5ea61e94f69f24..9d1efac3787b7c 100644 --- a/tools/node_modules/eslint/lib/rules/id-blacklist.js +++ b/tools/node_modules/eslint/lib/rules/id-blacklist.js @@ -140,6 +140,7 @@ module.exports = { const denyList = new Set(context.options); const reportedNodes = new Set(); + const sourceCode = context.getSourceCode(); let globalScope; @@ -231,8 +232,8 @@ module.exports = { return { - Program() { - globalScope = context.getScope(); + Program(node) { + globalScope = sourceCode.getScope(node); }, Identifier(node) { diff --git a/tools/node_modules/eslint/lib/rules/id-denylist.js b/tools/node_modules/eslint/lib/rules/id-denylist.js index fe0a0b50bd2c48..0d9328137b2638 100644 --- a/tools/node_modules/eslint/lib/rules/id-denylist.js +++ b/tools/node_modules/eslint/lib/rules/id-denylist.js @@ -121,6 +121,7 @@ module.exports = { const denyList = new Set(context.options); const reportedNodes = new Set(); + const sourceCode = context.getSourceCode(); let globalScope; @@ -210,8 +211,8 @@ module.exports = { return { - Program() { - globalScope = context.getScope(); + Program(node) { + globalScope = sourceCode.getScope(node); }, [[ diff --git a/tools/node_modules/eslint/lib/rules/id-match.js b/tools/node_modules/eslint/lib/rules/id-match.js index ec87af18d5b767..73a3bd2f97e16d 100644 --- a/tools/node_modules/eslint/lib/rules/id-match.js +++ b/tools/node_modules/eslint/lib/rules/id-match.js @@ -67,6 +67,7 @@ module.exports = { onlyDeclarations = !!options.onlyDeclarations, ignoreDestructuring = !!options.ignoreDestructuring; + const sourceCode = context.getSourceCode(); let globalScope; //-------------------------------------------------------------------------- @@ -170,8 +171,8 @@ module.exports = { return { - Program() { - globalScope = context.getScope(); + Program(node) { + globalScope = sourceCode.getScope(node); }, Identifier(node) { diff --git a/tools/node_modules/eslint/lib/rules/logical-assignment-operators.js b/tools/node_modules/eslint/lib/rules/logical-assignment-operators.js index cd533e63a732c7..f1c0119d99f56a 100644 --- a/tools/node_modules/eslint/lib/rules/logical-assignment-operators.js +++ b/tools/node_modules/eslint/lib/rules/logical-assignment-operators.js @@ -159,7 +159,7 @@ module.exports = { type: "suggestion", docs: { - description: "Require or disallow logical assignment logical operator shorthand", + description: "Require or disallow logical assignment operator shorthand", recommended: false, url: "https://eslint.org/docs/rules/logical-assignment-operators" }, @@ -206,7 +206,7 @@ module.exports = { const mode = context.options[0] === "never" ? "never" : "always"; const checkIf = mode === "always" && context.options.length > 1 && context.options[1].enforceForIfStatements; const sourceCode = context.getSourceCode(); - const isStrict = context.getScope().isStrict; + const isStrict = sourceCode.getScope(sourceCode.ast).isStrict; /** * Returns false if the access could be a getter @@ -409,7 +409,7 @@ module.exports = { } const body = hasBody ? ifNode.consequent.body[0] : ifNode.consequent; - const scope = context.getScope(); + const scope = sourceCode.getScope(ifNode); const existence = getExistence(ifNode.test, scope); if ( diff --git a/tools/node_modules/eslint/lib/rules/multiline-comment-style.js b/tools/node_modules/eslint/lib/rules/multiline-comment-style.js index 68cd666532dc30..9cb7f3473e5a12 100644 --- a/tools/node_modules/eslint/lib/rules/multiline-comment-style.js +++ b/tools/node_modules/eslint/lib/rules/multiline-comment-style.js @@ -22,7 +22,37 @@ module.exports = { }, fixable: "whitespace", - schema: [{ enum: ["starred-block", "separate-lines", "bare-block"] }], + schema: { + anyOf: [ + { + type: "array", + items: [ + { + enum: ["starred-block", "bare-block"] + } + ], + additionalItems: false + }, + { + type: "array", + items: [ + { + enum: ["separate-lines"] + }, + { + type: "object", + properties: { + checkJSDoc: { + type: "boolean" + } + }, + additionalProperties: false + } + ], + additionalItems: false + } + ] + }, messages: { expectedBlock: "Expected a block comment instead of consecutive line comments.", expectedBareBlock: "Expected a block comment without padding stars.", @@ -37,6 +67,8 @@ module.exports = { create(context) { const sourceCode = context.getSourceCode(); const option = context.options[0] || "starred-block"; + const params = context.options[1] || {}; + const checkJSDoc = !!params.checkJSDoc; //---------------------------------------------------------------------- // Helpers @@ -333,11 +365,18 @@ module.exports = { "separate-lines"(commentGroup) { const [firstComment] = commentGroup; - if (firstComment.type !== "Block" || isJSDocComment(commentGroup)) { + const isJSDoc = isJSDocComment(commentGroup); + + if (firstComment.type !== "Block" || (!checkJSDoc && isJSDoc)) { return; } - const commentLines = getCommentLines(commentGroup); + let commentLines = getCommentLines(commentGroup); + + if (isJSDoc) { + commentLines = commentLines.slice(1, commentLines.length - 1); + } + const tokenAfter = sourceCode.getTokenAfter(firstComment, { includeComments: true }); if (tokenAfter && firstComment.loc.end.line === tokenAfter.loc.start.line) { diff --git a/tools/node_modules/eslint/lib/rules/no-alert.js b/tools/node_modules/eslint/lib/rules/no-alert.js index ba0125c877b030..8af188971c5562 100644 --- a/tools/node_modules/eslint/lib/rules/no-alert.js +++ b/tools/node_modules/eslint/lib/rules/no-alert.js @@ -101,10 +101,12 @@ module.exports = { }, create(context) { + const sourceCode = context.getSourceCode(); + return { CallExpression(node) { const callee = skipChainExpression(node.callee), - currentScope = context.getScope(); + currentScope = sourceCode.getScope(node); // without window. if (callee.type === "Identifier") { diff --git a/tools/node_modules/eslint/lib/rules/no-catch-shadow.js b/tools/node_modules/eslint/lib/rules/no-catch-shadow.js index 49f1ba9649b7e9..5e8b51e092dd53 100644 --- a/tools/node_modules/eslint/lib/rules/no-catch-shadow.js +++ b/tools/node_modules/eslint/lib/rules/no-catch-shadow.js @@ -39,6 +39,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + //-------------------------------------------------------------------------- // Helpers //-------------------------------------------------------------------------- @@ -60,7 +62,7 @@ module.exports = { return { "CatchClause[param!=null]"(node) { - let scope = context.getScope(); + let scope = sourceCode.getScope(node); /* * When ecmaVersion >= 6, CatchClause creates its own scope diff --git a/tools/node_modules/eslint/lib/rules/no-console.js b/tools/node_modules/eslint/lib/rules/no-console.js index bad6b6f4ee8295..4651282214d6fa 100644 --- a/tools/node_modules/eslint/lib/rules/no-console.js +++ b/tools/node_modules/eslint/lib/rules/no-console.js @@ -51,6 +51,7 @@ module.exports = { create(context) { const options = context.options[0] || {}; const allowed = options.allow || []; + const sourceCode = context.getSourceCode(); /** * Checks whether the given reference is 'console' or not. @@ -109,8 +110,8 @@ module.exports = { } return { - "Program:exit"() { - const scope = context.getScope(); + "Program:exit"(node) { + const scope = sourceCode.getScope(node); const consoleVar = astUtils.getVariableByName(scope, "console"); const shadowed = consoleVar && consoleVar.defs.length > 0; diff --git a/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js b/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js index 2cd8928ebfb5b7..4b2337b4771d8a 100644 --- a/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js +++ b/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js @@ -453,10 +453,12 @@ module.exports = { }, create(context) { + const sourceCode = context.getSourceCode(); + return { LogicalExpression(node) { const { operator, left } = node; - const scope = context.getScope(); + const scope = sourceCode.getScope(node); if ((operator === "&&" || operator === "||") && isConstant(scope, left, true)) { context.report({ node: left, messageId: "constantShortCircuit", data: { property: "truthiness", operator } }); @@ -465,7 +467,7 @@ module.exports = { } }, BinaryExpression(node) { - const scope = context.getScope(); + const scope = sourceCode.getScope(node); const { right, left, operator } = node; const rightConstantOperand = findBinaryExpressionConstantOperand(scope, left, right, operator); const leftConstantOperand = findBinaryExpressionConstantOperand(scope, right, left, operator); diff --git a/tools/node_modules/eslint/lib/rules/no-constant-condition.js b/tools/node_modules/eslint/lib/rules/no-constant-condition.js index 2ef687f6dca7eb..de548472b7d006 100644 --- a/tools/node_modules/eslint/lib/rules/no-constant-condition.js +++ b/tools/node_modules/eslint/lib/rules/no-constant-condition.js @@ -48,6 +48,7 @@ module.exports = { const options = context.options[0] || {}, checkLoops = options.checkLoops !== false, loopSetStack = []; + const sourceCode = context.getSourceCode(); let loopsInCurrentScope = new Set(); @@ -62,7 +63,7 @@ module.exports = { * @private */ function trackConstantConditionLoop(node) { - if (node.test && isConstant(context.getScope(), node.test, true)) { + if (node.test && isConstant(sourceCode.getScope(node), node.test, true)) { loopsInCurrentScope.add(node); } } @@ -87,7 +88,7 @@ module.exports = { * @private */ function reportIfConstant(node) { - if (node.test && isConstant(context.getScope(), node.test, true)) { + if (node.test && isConstant(sourceCode.getScope(node), node.test, true)) { context.report({ node: node.test, messageId: "unexpected" }); } } diff --git a/tools/node_modules/eslint/lib/rules/no-control-regex.js b/tools/node_modules/eslint/lib/rules/no-control-regex.js index ba108437257440..c42f86d12778ec 100644 --- a/tools/node_modules/eslint/lib/rules/no-control-regex.js +++ b/tools/node_modules/eslint/lib/rules/no-control-regex.js @@ -5,7 +5,7 @@ "use strict"; -const RegExpValidator = require("regexpp").RegExpValidator; +const RegExpValidator = require("@eslint-community/regexpp").RegExpValidator; const collector = new (class { constructor() { this._source = ""; diff --git a/tools/node_modules/eslint/lib/rules/no-else-return.js b/tools/node_modules/eslint/lib/rules/no-else-return.js index f3ceedb4cd7ff8..56234d54d3b8e8 100644 --- a/tools/node_modules/eslint/lib/rules/no-else-return.js +++ b/tools/node_modules/eslint/lib/rules/no-else-return.js @@ -47,6 +47,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + //-------------------------------------------------------------------------- // Helpers //-------------------------------------------------------------------------- @@ -169,25 +171,24 @@ module.exports = { /** * Display the context report if rule is violated - * @param {Node} node The 'else' node + * @param {Node} elseNode The 'else' node * @returns {void} */ - function displayReport(node) { - const currentScope = context.getScope(); + function displayReport(elseNode) { + const currentScope = sourceCode.getScope(elseNode.parent); context.report({ - node, + node: elseNode, messageId: "unexpected", fix(fixer) { - if (!isSafeFromNameCollisions(node, currentScope)) { + if (!isSafeFromNameCollisions(elseNode, currentScope)) { return null; } - const sourceCode = context.getSourceCode(); - const startToken = sourceCode.getFirstToken(node); + const startToken = sourceCode.getFirstToken(elseNode); const elseToken = sourceCode.getTokenBefore(startToken); - const source = sourceCode.getText(node); + const source = sourceCode.getText(elseNode); const lastIfToken = sourceCode.getTokenBefore(elseToken); let fixedSource, firstTokenOfElseBlock; @@ -203,14 +204,14 @@ module.exports = { * safe to remove the else keyword, because ASI will not add a semicolon * after the if block */ - const ifBlockMaybeUnsafe = node.parent.consequent.type !== "BlockStatement" && lastIfToken.value !== ";"; + const ifBlockMaybeUnsafe = elseNode.parent.consequent.type !== "BlockStatement" && lastIfToken.value !== ";"; const elseBlockUnsafe = /^[([/+`-]/u.test(firstTokenOfElseBlock.value); if (ifBlockMaybeUnsafe && elseBlockUnsafe) { return null; } - const endToken = sourceCode.getLastToken(node); + const endToken = sourceCode.getLastToken(elseNode); const lastTokenOfElseBlock = sourceCode.getTokenBefore(endToken); if (lastTokenOfElseBlock.value !== ";") { @@ -244,8 +245,8 @@ module.exports = { * Also, to avoid name collisions between two else blocks. */ return new FixTracker(fixer, sourceCode) - .retainEnclosingFunction(node) - .replaceTextRange([elseToken.range[0], node.range[1]], fixedSource); + .retainEnclosingFunction(elseNode) + .replaceTextRange([elseToken.range[0], elseNode.range[1]], fixedSource); } }); } diff --git a/tools/node_modules/eslint/lib/rules/no-eval.js b/tools/node_modules/eslint/lib/rules/no-eval.js index a1b32cc307bd97..76d6859ab5d2b0 100644 --- a/tools/node_modules/eslint/lib/rules/no-eval.js +++ b/tools/node_modules/eslint/lib/rules/no-eval.js @@ -84,7 +84,7 @@ module.exports = { * @returns {void} */ function enterThisScope(node) { - const strict = context.getScope().isStrict; + const strict = sourceCode.getScope(node).isStrict; funcInfo = { upper: funcInfo, @@ -221,7 +221,7 @@ module.exports = { }, Program(node) { - const scope = context.getScope(), + const scope = sourceCode.getScope(node), features = context.parserOptions.ecmaFeatures || {}, strict = scope.isStrict || @@ -239,8 +239,8 @@ module.exports = { }; }, - "Program:exit"() { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); exitThisScope(); reportAccessingEval(globalScope); diff --git a/tools/node_modules/eslint/lib/rules/no-extend-native.js b/tools/node_modules/eslint/lib/rules/no-extend-native.js index 52c6bd3110331e..b1965964394367 100644 --- a/tools/node_modules/eslint/lib/rules/no-extend-native.js +++ b/tools/node_modules/eslint/lib/rules/no-extend-native.js @@ -51,6 +51,7 @@ module.exports = { create(context) { const config = context.options[0] || {}; + const sourceCode = context.getSourceCode(); const exceptions = new Set(config.exceptions || []); const modifiedBuiltins = new Set( Object.keys(globals.builtin) @@ -159,8 +160,8 @@ module.exports = { return { - "Program:exit"() { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); modifiedBuiltins.forEach(builtin => { const builtinVar = globalScope.set.get(builtin); diff --git a/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js b/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js index 45252fee0e90ad..5f9411b46374b4 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js @@ -10,7 +10,7 @@ //------------------------------------------------------------------------------ const astUtils = require("./utils/ast-utils"); -const eslintUtils = require("eslint-utils"); +const eslintUtils = require("@eslint-community/eslint-utils"); const precedence = astUtils.getPrecedence; 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 d3ea7d33415feb..efb01a337a28ba 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-parens.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-parens.js @@ -8,7 +8,7 @@ // Rule Definition //------------------------------------------------------------------------------ -const { isParenthesized: isParenthesizedRaw } = require("eslint-utils"); +const { isParenthesized: isParenthesizedRaw } = require("@eslint-community/eslint-utils"); const astUtils = require("./utils/ast-utils.js"); /** @type {import('../shared/types').Rule} */ diff --git a/tools/node_modules/eslint/lib/rules/no-global-assign.js b/tools/node_modules/eslint/lib/rules/no-global-assign.js index 9f2f0ee3642f47..4659dcc94c1cc4 100644 --- a/tools/node_modules/eslint/lib/rules/no-global-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-global-assign.js @@ -41,6 +41,7 @@ module.exports = { create(context) { const config = context.options[0]; + const sourceCode = context.getSourceCode(); const exceptions = (config && config.exceptions) || []; /** @@ -84,8 +85,8 @@ module.exports = { } return { - Program() { - const globalScope = context.getScope(); + Program(node) { + const globalScope = sourceCode.getScope(node); globalScope.variables.forEach(checkVariable); } diff --git a/tools/node_modules/eslint/lib/rules/no-implicit-globals.js b/tools/node_modules/eslint/lib/rules/no-implicit-globals.js index c2cdd03f2ce83c..de9c4c274d488c 100644 --- a/tools/node_modules/eslint/lib/rules/no-implicit-globals.js +++ b/tools/node_modules/eslint/lib/rules/no-implicit-globals.js @@ -43,6 +43,7 @@ module.exports = { create(context) { const checkLexicalBindings = context.options[0] && context.options[0].lexicalBindings === true; + const sourceCode = context.getSourceCode(); /** * Reports the node. @@ -62,8 +63,8 @@ module.exports = { } return { - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); scope.variables.forEach(variable => { diff --git a/tools/node_modules/eslint/lib/rules/no-implied-eval.js b/tools/node_modules/eslint/lib/rules/no-implied-eval.js index 44f146171aa027..c99af2d3968a00 100644 --- a/tools/node_modules/eslint/lib/rules/no-implied-eval.js +++ b/tools/node_modules/eslint/lib/rules/no-implied-eval.js @@ -10,7 +10,7 @@ //------------------------------------------------------------------------------ const astUtils = require("./utils/ast-utils"); -const { getStaticValue } = require("eslint-utils"); +const { getStaticValue } = require("@eslint-community/eslint-utils"); //------------------------------------------------------------------------------ // Rule Definition @@ -37,6 +37,7 @@ module.exports = { create(context) { const GLOBAL_CANDIDATES = Object.freeze(["global", "window", "globalThis"]); const EVAL_LIKE_FUNC_PATTERN = /^(?:set(?:Interval|Timeout)|execScript)$/u; + const sourceCode = context.getSourceCode(); /** * Checks whether a node is evaluated as a string or not. @@ -66,7 +67,7 @@ module.exports = { if (firstArgument) { - const staticValue = getStaticValue(firstArgument, context.getScope()); + const staticValue = getStaticValue(firstArgument, sourceCode.getScope(node)); const isStaticString = staticValue && typeof staticValue.value === "string"; const isString = isStaticString || isEvaluatedString(firstArgument); @@ -117,8 +118,8 @@ module.exports = { reportImpliedEvalCallExpression(node); } }, - "Program:exit"() { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); GLOBAL_CANDIDATES .map(candidate => astUtils.getVariableByName(globalScope, candidate)) diff --git a/tools/node_modules/eslint/lib/rules/no-import-assign.js b/tools/node_modules/eslint/lib/rules/no-import-assign.js index fc104fe6c46b69..dcfebaf631b564 100644 --- a/tools/node_modules/eslint/lib/rules/no-import-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-import-assign.js @@ -9,7 +9,7 @@ // Helpers //------------------------------------------------------------------------------ -const { findVariable } = require("eslint-utils"); +const { findVariable } = require("@eslint-community/eslint-utils"); const astUtils = require("./utils/ast-utils"); const WellKnownMutationFunctions = { @@ -194,9 +194,11 @@ module.exports = { }, create(context) { + const sourceCode = context.getSourceCode(); + return { ImportDeclaration(node) { - const scope = context.getScope(); + const scope = sourceCode.getScope(node); for (const variable of context.getDeclaredVariables(node)) { const shouldCheckMembers = variable.defs.some( diff --git a/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js b/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js index 81b083536d8827..b2e11a0082115c 100644 --- a/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js +++ b/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js @@ -8,7 +8,7 @@ // Requirements //------------------------------------------------------------------------------ -const RegExpValidator = require("regexpp").RegExpValidator; +const RegExpValidator = require("@eslint-community/regexpp").RegExpValidator; const validator = new RegExpValidator(); const validFlags = /[dgimsuy]/gu; const undefined1 = void 0; diff --git a/tools/node_modules/eslint/lib/rules/no-invalid-this.js b/tools/node_modules/eslint/lib/rules/no-invalid-this.js index b9cb43af5d7c2d..1048f22861a085 100644 --- a/tools/node_modules/eslint/lib/rules/no-invalid-this.js +++ b/tools/node_modules/eslint/lib/rules/no-invalid-this.js @@ -95,7 +95,7 @@ module.exports = { } if (codePath.origin === "program") { - const scope = context.getScope(); + const scope = sourceCode.getScope(node); const features = context.parserOptions.ecmaFeatures || {}; // `this` at the top level of scripts always refers to the global object @@ -120,7 +120,7 @@ module.exports = { * always valid, so we can set `init: true` right away. */ stack.push({ - init: !context.getScope().isStrict, + init: !sourceCode.getScope(node).isStrict, node, valid: true }); diff --git a/tools/node_modules/eslint/lib/rules/no-label-var.js b/tools/node_modules/eslint/lib/rules/no-label-var.js index a07d283f522b5e..440d09d149d6fa 100644 --- a/tools/node_modules/eslint/lib/rules/no-label-var.js +++ b/tools/node_modules/eslint/lib/rules/no-label-var.js @@ -34,6 +34,7 @@ module.exports = { }, create(context) { + const sourceCode = context.getSourceCode(); //-------------------------------------------------------------------------- // Helpers @@ -59,7 +60,7 @@ module.exports = { LabeledStatement(node) { // Fetch the innermost scope. - const scope = context.getScope(); + const scope = sourceCode.getScope(node); /* * Recursively find the identifier walking up the scope, starting diff --git a/tools/node_modules/eslint/lib/rules/no-lone-blocks.js b/tools/node_modules/eslint/lib/rules/no-lone-blocks.js index eb97f958c3c13e..23f581d3fc62a6 100644 --- a/tools/node_modules/eslint/lib/rules/no-lone-blocks.js +++ b/tools/node_modules/eslint/lib/rules/no-lone-blocks.js @@ -33,6 +33,7 @@ module.exports = { // A stack of lone blocks to be checked for block-level bindings const loneBlocks = []; let ruleDef; + const sourceCode = context.getSourceCode(); /** * Reports a node as invalid. @@ -120,8 +121,8 @@ module.exports = { } }; - ruleDef.FunctionDeclaration = function() { - if (context.getScope().isStrict) { + ruleDef.FunctionDeclaration = function(node) { + if (sourceCode.getScope(node).isStrict) { markLoneBlock(); } }; diff --git a/tools/node_modules/eslint/lib/rules/no-loop-func.js b/tools/node_modules/eslint/lib/rules/no-loop-func.js index f81a71336800a8..ff0668172261da 100644 --- a/tools/node_modules/eslint/lib/rules/no-loop-func.js +++ b/tools/node_modules/eslint/lib/rules/no-loop-func.js @@ -168,6 +168,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + /** * Reports functions which match the following condition: * @@ -183,7 +185,7 @@ module.exports = { return; } - const references = context.getScope().through; + const references = sourceCode.getScope(node).through; const unsafeRefs = references.filter(r => !isSafe(loopNode, r)).map(r => r.identifier.name); if (unsafeRefs.length > 0) { diff --git a/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js b/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js index 5649f2e37fecb4..ddbcaefd549e59 100644 --- a/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js +++ b/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js @@ -3,17 +3,16 @@ */ "use strict"; -const { CALL, CONSTRUCT, ReferenceTracker, getStringIfConstant } = require("eslint-utils"); -const { RegExpValidator, RegExpParser, visitRegExpAST } = require("regexpp"); +const { CALL, CONSTRUCT, ReferenceTracker, getStringIfConstant } = require("@eslint-community/eslint-utils"); +const { RegExpParser, visitRegExpAST } = require("@eslint-community/regexpp"); const { isCombiningCharacter, isEmojiModifier, isRegionalIndicatorSymbol, isSurrogatePair } = require("./utils/unicode"); const astUtils = require("./utils/ast-utils.js"); +const { isValidWithUnicodeFlag } = require("./utils/regular-expressions"); //------------------------------------------------------------------------------ // Helpers //------------------------------------------------------------------------------ -const REGEXPP_LATEST_ECMA_VERSION = 2022; - /** * Iterate character sequences of a given nodes. * @@ -185,46 +184,18 @@ module.exports = { } } - /** - * Checks if the given regular expression pattern would be valid with the `u` flag. - * @param {string} pattern The regular expression pattern to verify. - * @returns {boolean} `true` if the pattern would be valid with the `u` flag. - * `false` if the pattern would be invalid with the `u` flag or the configured - * ecmaVersion doesn't support the `u` flag. - */ - function isValidWithUnicodeFlag(pattern) { - const { ecmaVersion } = context.languageOptions; - - // ecmaVersion <= 5 doesn't support the 'u' flag - if (ecmaVersion <= 5) { - return false; - } - - const validator = new RegExpValidator({ - ecmaVersion: Math.min(ecmaVersion, REGEXPP_LATEST_ECMA_VERSION) - }); - - try { - validator.validatePattern(pattern, void 0, void 0, /* uFlag = */ true); - } catch { - return false; - } - - return true; - } - return { "Literal[regex]"(node) { verify(node, node.regex.pattern, node.regex.flags, fixer => { - if (!isValidWithUnicodeFlag(node.regex.pattern)) { + if (!isValidWithUnicodeFlag(context.languageOptions.ecmaVersion, node.regex.pattern)) { return null; } return fixer.insertTextAfter(node, "u"); }); }, - "Program"() { - const scope = context.getScope(); + "Program"(node) { + const scope = sourceCode.getScope(node); const tracker = new ReferenceTracker(scope); /* @@ -232,22 +203,22 @@ module.exports = { * E.g., `new RegExp()`, `RegExp()`, `new window.RegExp()`, * `const {RegExp: a} = window; new a()`, etc... */ - for (const { node } of tracker.iterateGlobalReferences({ + for (const { node: refNode } of tracker.iterateGlobalReferences({ RegExp: { [CALL]: true, [CONSTRUCT]: true } })) { - const [patternNode, flagsNode] = node.arguments; + const [patternNode, flagsNode] = refNode.arguments; const pattern = getStringIfConstant(patternNode, scope); const flags = getStringIfConstant(flagsNode, scope); if (typeof pattern === "string") { - verify(node, pattern, flags || "", fixer => { + verify(refNode, pattern, flags || "", fixer => { - if (!isValidWithUnicodeFlag(pattern)) { + if (!isValidWithUnicodeFlag(context.languageOptions.ecmaVersion, pattern)) { return null; } - if (node.arguments.length === 1) { - const penultimateToken = sourceCode.getLastToken(node, { skip: 1 }); // skip closing parenthesis + if (refNode.arguments.length === 1) { + const penultimateToken = sourceCode.getLastToken(refNode, { skip: 1 }); // skip closing parenthesis return fixer.insertTextAfter( penultimateToken, diff --git a/tools/node_modules/eslint/lib/rules/no-native-reassign.js b/tools/node_modules/eslint/lib/rules/no-native-reassign.js index 634fea93308d5e..27fd38ab86a9b0 100644 --- a/tools/node_modules/eslint/lib/rules/no-native-reassign.js +++ b/tools/node_modules/eslint/lib/rules/no-native-reassign.js @@ -47,6 +47,7 @@ module.exports = { create(context) { const config = context.options[0]; const exceptions = (config && config.exceptions) || []; + const sourceCode = context.getSourceCode(); /** * Reports write references. @@ -87,8 +88,8 @@ module.exports = { } return { - Program() { - const globalScope = context.getScope(); + Program(node) { + const globalScope = sourceCode.getScope(node); globalScope.variables.forEach(checkVariable); } diff --git a/tools/node_modules/eslint/lib/rules/no-new-func.js b/tools/node_modules/eslint/lib/rules/no-new-func.js index 4759f380b29f5e..4680ae5d7ca15b 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-func.js +++ b/tools/node_modules/eslint/lib/rules/no-new-func.js @@ -40,27 +40,28 @@ module.exports = { }, create(context) { + const sourceCode = context.getSourceCode(); return { - "Program:exit"() { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); const variable = globalScope.set.get("Function"); if (variable && variable.defs.length === 0) { variable.references.forEach(ref => { - const node = ref.identifier; - const { parent } = node; + const idNode = ref.identifier; + const { parent } = idNode; let evalNode; if (parent) { - if (node === parent.callee && ( + if (idNode === parent.callee && ( parent.type === "NewExpression" || parent.type === "CallExpression" )) { evalNode = parent; } else if ( parent.type === "MemberExpression" && - node === parent.object && + idNode === parent.object && callMethods.has(astUtils.getStaticPropertyName(parent)) ) { const maybeCallee = parent.parent.type === "ChainExpression" ? parent.parent : parent; diff --git a/tools/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js b/tools/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js index a8405002b7fd06..05171c92b322bc 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +++ b/tools/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js @@ -35,21 +35,23 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + return { - "Program:exit"() { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); for (const nonConstructorName of nonConstructorGlobalFunctionNames) { const variable = globalScope.set.get(nonConstructorName); if (variable && variable.defs.length === 0) { variable.references.forEach(ref => { - const node = ref.identifier; - const parent = node.parent; + const idNode = ref.identifier; + const parent = idNode.parent; - if (parent && parent.type === "NewExpression" && parent.callee === node) { + if (parent && parent.type === "NewExpression" && parent.callee === idNode) { context.report({ - node, + node: idNode, messageId: "noNewNonconstructor", data: { name: nonConstructorName } }); diff --git a/tools/node_modules/eslint/lib/rules/no-new-object.js b/tools/node_modules/eslint/lib/rules/no-new-object.js index 4dbe8db736503d..6351a279fa162f 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-object.js +++ b/tools/node_modules/eslint/lib/rules/no-new-object.js @@ -34,10 +34,13 @@ module.exports = { }, create(context) { + + const sourceCode = context.getSourceCode(); + return { NewExpression(node) { const variable = astUtils.getVariableByName( - context.getScope(), + sourceCode.getScope(node), node.callee.name ); diff --git a/tools/node_modules/eslint/lib/rules/no-new-symbol.js b/tools/node_modules/eslint/lib/rules/no-new-symbol.js index 534201c0ba662d..551f4a9a414bac 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-symbol.js +++ b/tools/node_modules/eslint/lib/rules/no-new-symbol.js @@ -29,19 +29,21 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + return { - "Program:exit"() { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); const variable = globalScope.set.get("Symbol"); if (variable && variable.defs.length === 0) { variable.references.forEach(ref => { - const node = ref.identifier; - const parent = node.parent; + const idNode = ref.identifier; + const parent = idNode.parent; - if (parent && parent.type === "NewExpression" && parent.callee === node) { + if (parent && parent.type === "NewExpression" && parent.callee === idNode) { context.report({ - node, + node: idNode, messageId: "noNewSymbol" }); } diff --git a/tools/node_modules/eslint/lib/rules/no-obj-calls.js b/tools/node_modules/eslint/lib/rules/no-obj-calls.js index d24d28589f3b5c..40df43e1501bbe 100644 --- a/tools/node_modules/eslint/lib/rules/no-obj-calls.js +++ b/tools/node_modules/eslint/lib/rules/no-obj-calls.js @@ -9,7 +9,7 @@ // Requirements //------------------------------------------------------------------------------ -const { CALL, CONSTRUCT, ReferenceTracker } = require("eslint-utils"); +const { CALL, CONSTRUCT, ReferenceTracker } = require("@eslint-community/eslint-utils"); const getPropertyName = require("./utils/ast-utils").getStaticPropertyName; //------------------------------------------------------------------------------ @@ -58,9 +58,11 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + return { - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); const tracker = new ReferenceTracker(scope); const traceMap = {}; @@ -71,12 +73,12 @@ module.exports = { }; } - for (const { node, path } of tracker.iterateGlobalReferences(traceMap)) { - const name = getReportNodeName(node.callee); + for (const { node: refNode, path } of tracker.iterateGlobalReferences(traceMap)) { + const name = getReportNodeName(refNode.callee); const ref = path[0]; const messageId = name === ref ? "unexpectedCall" : "unexpectedRefCall"; - context.report({ node, messageId, data: { name, ref } }); + context.report({ node: refNode, messageId, data: { name, ref } }); } } }; diff --git a/tools/node_modules/eslint/lib/rules/no-promise-executor-return.js b/tools/node_modules/eslint/lib/rules/no-promise-executor-return.js index caa195ffa07e5e..2a99c6fe812047 100644 --- a/tools/node_modules/eslint/lib/rules/no-promise-executor-return.js +++ b/tools/node_modules/eslint/lib/rules/no-promise-executor-return.js @@ -9,7 +9,7 @@ // Requirements //------------------------------------------------------------------------------ -const { findVariable } = require("eslint-utils"); +const { findVariable } = require("@eslint-community/eslint-utils"); //------------------------------------------------------------------------------ // Helpers @@ -84,6 +84,7 @@ module.exports = { create(context) { let funcInfo = null; + const sourceCode = context.getSourceCode(); /** * Reports the given node. @@ -99,7 +100,7 @@ module.exports = { onCodePathStart(_, node) { funcInfo = { upper: funcInfo, - shouldCheck: functionTypesToCheck.has(node.type) && isPromiseExecutor(node, context.getScope()) + shouldCheck: functionTypesToCheck.has(node.type) && isPromiseExecutor(node, sourceCode.getScope(node)) }; if (funcInfo.shouldCheck && node.type === "ArrowFunctionExpression" && node.expression) { diff --git a/tools/node_modules/eslint/lib/rules/no-redeclare.js b/tools/node_modules/eslint/lib/rules/no-redeclare.js index 59749cb6643456..c16c030f9a1bac 100644 --- a/tools/node_modules/eslint/lib/rules/no-redeclare.js +++ b/tools/node_modules/eslint/lib/rules/no-redeclare.js @@ -129,7 +129,7 @@ module.exports = { * @private */ function checkForBlock(node) { - const scope = context.getScope(); + const scope = sourceCode.getScope(node); /* * In ES5, some node type such as `BlockStatement` doesn't have that scope. @@ -141,8 +141,8 @@ module.exports = { } return { - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); findVariablesInScope(scope); diff --git a/tools/node_modules/eslint/lib/rules/no-regex-spaces.js b/tools/node_modules/eslint/lib/rules/no-regex-spaces.js index 6d74aabe2632b3..48ee8c3d0246c0 100644 --- a/tools/node_modules/eslint/lib/rules/no-regex-spaces.js +++ b/tools/node_modules/eslint/lib/rules/no-regex-spaces.js @@ -10,7 +10,7 @@ //------------------------------------------------------------------------------ const astUtils = require("./utils/ast-utils"); -const regexpp = require("regexpp"); +const regexpp = require("@eslint-community/regexpp"); //------------------------------------------------------------------------------ // Helpers @@ -54,6 +54,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + /** * Validate regular expression * @param {ASTNode} nodeToReport Node to report. @@ -149,7 +151,7 @@ module.exports = { * @private */ function checkFunction(node) { - const scope = context.getScope(); + const scope = sourceCode.getScope(node); const regExpVar = astUtils.getVariableByName(scope, "RegExp"); const shadowed = regExpVar && regExpVar.defs.length > 0; const patternNode = node.arguments[0]; diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-globals.js b/tools/node_modules/eslint/lib/rules/no-restricted-globals.js index b666238382dec8..ffc39c801f032f 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-globals.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-globals.js @@ -50,6 +50,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + // If no globals are restricted, we don't need to do anything if (context.options.length === 0) { return {}; @@ -99,8 +101,8 @@ module.exports = { } return { - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); // Report variables declared elsewhere (ex: variables defined as "global" by eslint) scope.variables.forEach(variable => { diff --git a/tools/node_modules/eslint/lib/rules/no-setter-return.js b/tools/node_modules/eslint/lib/rules/no-setter-return.js index 25e8f1428b2575..46969d6dd704f5 100644 --- a/tools/node_modules/eslint/lib/rules/no-setter-return.js +++ b/tools/node_modules/eslint/lib/rules/no-setter-return.js @@ -10,7 +10,7 @@ //------------------------------------------------------------------------------ const astUtils = require("./utils/ast-utils"); -const { findVariable } = require("eslint-utils"); +const { findVariable } = require("@eslint-community/eslint-utils"); //------------------------------------------------------------------------------ // Helpers @@ -156,6 +156,7 @@ module.exports = { create(context) { let funcInfo = null; + const sourceCode = context.getSourceCode(); /** * Creates and pushes to the stack a function info object for the given function node. @@ -163,7 +164,7 @@ module.exports = { * @returns {void} */ function enterFunction(node) { - const outerScope = getOuterScope(context.getScope()); + const outerScope = getOuterScope(sourceCode.getScope(node)); funcInfo = { upper: funcInfo, diff --git a/tools/node_modules/eslint/lib/rules/no-shadow.js b/tools/node_modules/eslint/lib/rules/no-shadow.js index 3af9354ebd7de1..dda9f5fd7beaa4 100644 --- a/tools/node_modules/eslint/lib/rules/no-shadow.js +++ b/tools/node_modules/eslint/lib/rules/no-shadow.js @@ -67,6 +67,7 @@ module.exports = { allow: (context.options[0] && context.options[0].allow) || [], ignoreOnInitialization: context.options[0] && context.options[0].ignoreOnInitialization }; + const sourceCode = context.getSourceCode(); /** * Checks whether or not a given location is inside of the range of a given node. @@ -318,8 +319,8 @@ module.exports = { } return { - "Program:exit"() { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); const stack = globalScope.childScopes.slice(); while (stack.length) { diff --git a/tools/node_modules/eslint/lib/rules/no-undef-init.js b/tools/node_modules/eslint/lib/rules/no-undef-init.js index 2cb1c3f3710169..6e8a1fad72ad8a 100644 --- a/tools/node_modules/eslint/lib/rules/no-undef-init.js +++ b/tools/node_modules/eslint/lib/rules/no-undef-init.js @@ -39,7 +39,7 @@ module.exports = { VariableDeclarator(node) { const name = sourceCode.getText(node.id), init = node.init && node.init.name, - scope = context.getScope(), + scope = sourceCode.getScope(node), undefinedVar = astUtils.getVariableByName(scope, "undefined"), shadowed = undefinedVar && undefinedVar.defs.length > 0, lastToken = sourceCode.getLastToken(node); diff --git a/tools/node_modules/eslint/lib/rules/no-undef.js b/tools/node_modules/eslint/lib/rules/no-undef.js index e920ce6c28885f..4cd3fa9b679145 100644 --- a/tools/node_modules/eslint/lib/rules/no-undef.js +++ b/tools/node_modules/eslint/lib/rules/no-undef.js @@ -54,10 +54,11 @@ module.exports = { create(context) { const options = context.options[0]; const considerTypeOf = options && options.typeof === true || false; + const sourceCode = context.getSourceCode(); return { - "Program:exit"(/* node */) { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); globalScope.through.forEach(ref => { const identifier = ref.identifier; diff --git a/tools/node_modules/eslint/lib/rules/no-undefined.js b/tools/node_modules/eslint/lib/rules/no-undefined.js index e006320b522369..7203894c39774e 100644 --- a/tools/node_modules/eslint/lib/rules/no-undefined.js +++ b/tools/node_modules/eslint/lib/rules/no-undefined.js @@ -28,6 +28,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + /** * Report an invalid "undefined" identifier node. * @param {ASTNode} node The node to report. @@ -66,8 +68,8 @@ module.exports = { } return { - "Program:exit"() { - const globalScope = context.getScope(); + "Program:exit"(node) { + const globalScope = sourceCode.getScope(node); const stack = [globalScope]; diff --git a/tools/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js b/tools/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js index 12f61e98e6a1c0..3df0a7d87df154 100644 --- a/tools/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +++ b/tools/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js @@ -340,8 +340,8 @@ module.exports = { } return { - "Program:exit"() { - const queue = [context.getScope()]; + "Program:exit"(node) { + const queue = [sourceCode.getScope(node)]; groupMap = new Map(); diff --git a/tools/node_modules/eslint/lib/rules/no-unused-vars.js b/tools/node_modules/eslint/lib/rules/no-unused-vars.js index 778889a7676f97..79f972f4b042af 100644 --- a/tools/node_modules/eslint/lib/rules/no-unused-vars.js +++ b/tools/node_modules/eslint/lib/rules/no-unused-vars.js @@ -673,7 +673,7 @@ module.exports = { return { "Program:exit"(programNode) { - const unusedVars = collectUnusedVariables(context.getScope(), []); + const unusedVars = collectUnusedVariables(sourceCode.getScope(programNode), []); for (let i = 0, l = unusedVars.length; i < l; ++i) { const unusedVar = unusedVars[i]; diff --git a/tools/node_modules/eslint/lib/rules/no-use-before-define.js b/tools/node_modules/eslint/lib/rules/no-use-before-define.js index 5fd25940128f49..60cb905b0d64dd 100644 --- a/tools/node_modules/eslint/lib/rules/no-use-before-define.js +++ b/tools/node_modules/eslint/lib/rules/no-use-before-define.js @@ -258,6 +258,7 @@ module.exports = { create(context) { const options = parseOptions(context.options[0]); + const sourceCode = context.getSourceCode(); /** * Determines whether a given reference should be checked. @@ -339,8 +340,8 @@ module.exports = { } return { - Program() { - checkReferencesInScope(context.getScope()); + Program(node) { + checkReferencesInScope(sourceCode.getScope(node)); } }; } diff --git a/tools/node_modules/eslint/lib/rules/no-useless-backreference.js b/tools/node_modules/eslint/lib/rules/no-useless-backreference.js index f23535bc359d96..bef1bee11f9342 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-backreference.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-backreference.js @@ -9,8 +9,8 @@ // Requirements //------------------------------------------------------------------------------ -const { CALL, CONSTRUCT, ReferenceTracker, getStringIfConstant } = require("eslint-utils"); -const { RegExpParser, visitRegExpAST } = require("regexpp"); +const { CALL, CONSTRUCT, ReferenceTracker, getStringIfConstant } = require("@eslint-community/eslint-utils"); +const { RegExpParser, visitRegExpAST } = require("@eslint-community/regexpp"); //------------------------------------------------------------------------------ // Helpers @@ -82,6 +82,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + /** * Checks and reports useless backreferences in the given regular expression. * @param {ASTNode} node Node that represents regular expression. A regex literal or RegExp constructor call. @@ -167,8 +169,8 @@ module.exports = { checkRegex(node, pattern, flags); }, - Program() { - const scope = context.getScope(), + Program(node) { + const scope = sourceCode.getScope(node), tracker = new ReferenceTracker(scope), traceMap = { RegExp: { @@ -177,13 +179,13 @@ module.exports = { } }; - for (const { node } of tracker.iterateGlobalReferences(traceMap)) { - const [patternNode, flagsNode] = node.arguments, + for (const { node: refNode } of tracker.iterateGlobalReferences(traceMap)) { + const [patternNode, flagsNode] = refNode.arguments, pattern = getStringIfConstant(patternNode, scope), flags = getStringIfConstant(flagsNode, scope); if (typeof pattern === "string") { - checkRegex(node, pattern, flags || ""); + checkRegex(refNode, pattern, flags || ""); } } } diff --git a/tools/node_modules/eslint/lib/rules/object-shorthand.js b/tools/node_modules/eslint/lib/rules/object-shorthand.js index b755aea3f48427..64a506ba6cccf6 100644 --- a/tools/node_modules/eslint/lib/rules/object-shorthand.js +++ b/tools/node_modules/eslint/lib/rules/object-shorthand.js @@ -354,11 +354,12 @@ module.exports = { /** * Enters a function. This creates a new lexical identifier scope, so a new Set of arrow functions is pushed onto the stack. * Also, this marks all `arguments` identifiers so that they can be detected later. + * @param {ASTNode} node The node representing the function. * @returns {void} */ - function enterFunction() { + function enterFunction(node) { lexicalScopeStack.unshift(new Set()); - context.getScope().variables.filter(variable => variable.name === "arguments").forEach(variable => { + sourceCode.getScope(node).variables.filter(variable => variable.name === "arguments").forEach(variable => { variable.references.map(ref => ref.identifier).forEach(identifier => argumentsIdentifiers.add(identifier)); }); } diff --git a/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js b/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js index 340e5e35a11cc9..68c630e0a98e56 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js +++ b/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js @@ -270,7 +270,7 @@ module.exports = { } // Skip if it's using arguments. - const variable = getVariableOfArguments(context.getScope()); + const variable = getVariableOfArguments(sourceCode.getScope(node)); if (variable && variable.references.length > 0) { return; diff --git a/tools/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js b/tools/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js index fec5319723e44d..a0eac79be1093e 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +++ b/tools/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js @@ -10,7 +10,7 @@ //------------------------------------------------------------------------------ const astUtils = require("./utils/ast-utils"); -const { CALL, ReferenceTracker } = require("eslint-utils"); +const { CALL, ReferenceTracker } = require("@eslint-community/eslint-utils"); //------------------------------------------------------------------------------ // Helpers @@ -172,8 +172,8 @@ module.exports = { } return { - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); const tracker = new ReferenceTracker(scope); const trackMap = { Math: { @@ -181,8 +181,8 @@ module.exports = { } }; - for (const { node } of tracker.iterateGlobalReferences(trackMap)) { - report(node); + for (const { node: refNode } of tracker.iterateGlobalReferences(trackMap)) { + report(refNode); } } }; diff --git a/tools/node_modules/eslint/lib/rules/prefer-named-capture-group.js b/tools/node_modules/eslint/lib/rules/prefer-named-capture-group.js index 66259fc7beda5c..4fbf6886f27d99 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-named-capture-group.js +++ b/tools/node_modules/eslint/lib/rules/prefer-named-capture-group.js @@ -14,8 +14,8 @@ const { CONSTRUCT, ReferenceTracker, getStringIfConstant -} = require("eslint-utils"); -const regexpp = require("regexpp"); +} = require("@eslint-community/eslint-utils"); +const regexpp = require("@eslint-community/regexpp"); //------------------------------------------------------------------------------ // Helpers @@ -151,8 +151,8 @@ module.exports = { checkRegex(node.regex.pattern, node, node, node.regex.flags.includes("u")); } }, - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); const tracker = new ReferenceTracker(scope); const traceMap = { RegExp: { @@ -161,12 +161,12 @@ module.exports = { } }; - for (const { node } of tracker.iterateGlobalReferences(traceMap)) { - const regex = getStringIfConstant(node.arguments[0]); - const flags = getStringIfConstant(node.arguments[1]); + for (const { node: refNode } of tracker.iterateGlobalReferences(traceMap)) { + const regex = getStringIfConstant(refNode.arguments[0]); + const flags = getStringIfConstant(refNode.arguments[1]); if (regex) { - checkRegex(regex, node, node.arguments[0], flags && flags.includes("u")); + checkRegex(regex, refNode, refNode.arguments[0], flags && flags.includes("u")); } } } diff --git a/tools/node_modules/eslint/lib/rules/prefer-object-has-own.js b/tools/node_modules/eslint/lib/rules/prefer-object-has-own.js index 023d0a64f4c5b7..55eba59d6ac12d 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-object-has-own.js +++ b/tools/node_modules/eslint/lib/rules/prefer-object-has-own.js @@ -61,6 +61,9 @@ module.exports = { fixable: "code" }, create(context) { + + const sourceCode = context.getSourceCode(); + return { CallExpression(node) { if (!(node.callee.type === "MemberExpression" && node.callee.object.type === "MemberExpression")) { @@ -72,7 +75,7 @@ module.exports = { const isObject = hasLeftHandObject(node.callee.object); // check `Object` scope - const scope = context.getScope(); + const scope = sourceCode.getScope(node); const variable = astUtils.getVariableByName(scope, "Object"); if ( @@ -85,7 +88,6 @@ module.exports = { node, messageId: "useHasOwn", fix(fixer) { - const sourceCode = context.getSourceCode(); if (sourceCode.getCommentsInside(node.callee).length > 0) { return null; diff --git a/tools/node_modules/eslint/lib/rules/prefer-object-spread.js b/tools/node_modules/eslint/lib/rules/prefer-object-spread.js index 7d8f7857b3c3ac..f574d2aadc8546 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-object-spread.js +++ b/tools/node_modules/eslint/lib/rules/prefer-object-spread.js @@ -6,7 +6,7 @@ "use strict"; -const { CALL, ReferenceTracker } = require("eslint-utils"); +const { CALL, ReferenceTracker } = require("@eslint-community/eslint-utils"); const { isCommaToken, isOpeningParenToken, @@ -265,8 +265,8 @@ module.exports = { const sourceCode = context.getSourceCode(); return { - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); const tracker = new ReferenceTracker(scope); const trackMap = { Object: { @@ -275,22 +275,22 @@ module.exports = { }; // Iterate all calls of `Object.assign` (only of the global variable `Object`). - for (const { node } of tracker.iterateGlobalReferences(trackMap)) { + for (const { node: refNode } of tracker.iterateGlobalReferences(trackMap)) { if ( - node.arguments.length >= 1 && - node.arguments[0].type === "ObjectExpression" && - !hasArraySpread(node) && + refNode.arguments.length >= 1 && + refNode.arguments[0].type === "ObjectExpression" && + !hasArraySpread(refNode) && !( - node.arguments.length > 1 && - hasArgumentsWithAccessors(node) + refNode.arguments.length > 1 && + hasArgumentsWithAccessors(refNode) ) ) { - const messageId = node.arguments.length === 1 + const messageId = refNode.arguments.length === 1 ? "useLiteralMessage" : "useSpreadMessage"; - const fix = defineFixer(node, sourceCode); + const fix = defineFixer(refNode, sourceCode); - context.report({ node, messageId, fix }); + context.report({ node: refNode, messageId, fix }); } } } diff --git a/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js b/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js index fdf18874e77c83..94b52155ee2039 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js +++ b/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js @@ -10,16 +10,15 @@ //------------------------------------------------------------------------------ const astUtils = require("./utils/ast-utils"); -const { CALL, CONSTRUCT, ReferenceTracker, findVariable } = require("eslint-utils"); -const { RegExpValidator, visitRegExpAST, RegExpParser } = require("regexpp"); +const { CALL, CONSTRUCT, ReferenceTracker, findVariable } = require("@eslint-community/eslint-utils"); +const { RegExpValidator, visitRegExpAST, RegExpParser } = require("@eslint-community/regexpp"); const { canTokensBeAdjacent } = require("./utils/ast-utils"); +const { REGEXPP_LATEST_ECMA_VERSION } = require("./utils/regular-expressions"); //------------------------------------------------------------------------------ // Helpers //------------------------------------------------------------------------------ -const REGEXPP_LATEST_ECMA_VERSION = 2022; - /** * Determines whether the given node is a string literal. * @param {ASTNode} node Node to check. @@ -163,7 +162,7 @@ module.exports = { * @returns {boolean} True if the identifier is a reference to a global variable. */ function isGlobalReference(node) { - const scope = context.getScope(); + const scope = sourceCode.getScope(node); const variable = findVariable(scope, node); return variable !== null && variable.scope.type === "global" && variable.defs.length === 0; @@ -375,8 +374,8 @@ module.exports = { } return { - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); const tracker = new ReferenceTracker(scope); const traceMap = { RegExp: { @@ -385,16 +384,16 @@ module.exports = { } }; - for (const { node } of tracker.iterateGlobalReferences(traceMap)) { - if (disallowRedundantWrapping && isUnnecessarilyWrappedRegexLiteral(node)) { - const regexNode = node.arguments[0]; + for (const { node: refNode } of tracker.iterateGlobalReferences(traceMap)) { + if (disallowRedundantWrapping && isUnnecessarilyWrappedRegexLiteral(refNode)) { + const regexNode = refNode.arguments[0]; - if (node.arguments.length === 2) { + if (refNode.arguments.length === 2) { const suggests = []; - const argFlags = getStringValue(node.arguments[1]) || ""; + const argFlags = getStringValue(refNode.arguments[1]) || ""; - if (canFixTo(node, regexNode.regex.pattern, argFlags)) { + if (canFixTo(refNode, regexNode.regex.pattern, argFlags)) { suggests.push({ messageId: "replaceWithLiteralAndFlags", pattern: regexNode.regex.pattern, @@ -407,7 +406,7 @@ module.exports = { if ( !areFlagsEqual(mergedFlags, argFlags) && - canFixTo(node, regexNode.regex.pattern, mergedFlags) + canFixTo(refNode, regexNode.regex.pattern, mergedFlags) ) { suggests.push({ messageId: "replaceWithIntendedLiteralAndFlags", @@ -417,7 +416,7 @@ module.exports = { } context.report({ - node, + node: refNode, messageId: "unexpectedRedundantRegExpWithFlags", suggest: suggests.map(({ flags, pattern, messageId }) => ({ messageId, @@ -425,42 +424,42 @@ module.exports = { flags }, fix(fixer) { - return fixer.replaceText(node, getSafeOutput(node, `/${pattern}/${flags}`)); + return fixer.replaceText(refNode, getSafeOutput(refNode, `/${pattern}/${flags}`)); } })) }); } else { const outputs = []; - if (canFixTo(node, regexNode.regex.pattern, regexNode.regex.flags)) { + if (canFixTo(refNode, regexNode.regex.pattern, regexNode.regex.flags)) { outputs.push(sourceCode.getText(regexNode)); } context.report({ - node, + node: refNode, messageId: "unexpectedRedundantRegExp", suggest: outputs.map(output => ({ messageId: "replaceWithLiteral", fix(fixer) { return fixer.replaceText( - node, - getSafeOutput(node, output) + refNode, + getSafeOutput(refNode, output) ); } })) }); } - } else if (hasOnlyStaticStringArguments(node)) { - let regexContent = getStringValue(node.arguments[0]); + } else if (hasOnlyStaticStringArguments(refNode)) { + let regexContent = getStringValue(refNode.arguments[0]); let noFix = false; let flags; - if (node.arguments[1]) { - flags = getStringValue(node.arguments[1]); + if (refNode.arguments[1]) { + flags = getStringValue(refNode.arguments[1]); } - if (!canFixTo(node, regexContent, flags)) { + if (!canFixTo(refNode, regexContent, flags)) { noFix = true; } @@ -494,12 +493,12 @@ module.exports = { const newRegExpValue = `/${regexContent || "(?:)"}/${flags || ""}`; context.report({ - node, + node: refNode, messageId: "unexpectedRegExp", suggest: noFix ? [] : [{ messageId: "replaceWithLiteral", fix(fixer) { - return fixer.replaceText(node, getSafeOutput(node, newRegExpValue)); + return fixer.replaceText(refNode, getSafeOutput(refNode, newRegExpValue)); } }] }); diff --git a/tools/node_modules/eslint/lib/rules/prefer-rest-params.js b/tools/node_modules/eslint/lib/rules/prefer-rest-params.js index 14b9ae55a4b8bc..9c8f291bd5a809 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-rest-params.js +++ b/tools/node_modules/eslint/lib/rules/prefer-rest-params.js @@ -79,6 +79,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + /** * Reports a given reference. * @param {eslint-scope.Reference} reference A reference to report. @@ -94,10 +96,11 @@ module.exports = { /** * Reports references of the implicit `arguments` variable if exist. + * @param {ASTNode} node The node representing the function. * @returns {void} */ - function checkForArguments() { - const argumentsVar = getVariableOfArguments(context.getScope()); + function checkForArguments(node) { + const argumentsVar = getVariableOfArguments(sourceCode.getScope(node)); if (argumentsVar) { argumentsVar diff --git a/tools/node_modules/eslint/lib/rules/radix.js b/tools/node_modules/eslint/lib/rules/radix.js index 0618d9844ad295..4210c123a67b47 100644 --- a/tools/node_modules/eslint/lib/rules/radix.js +++ b/tools/node_modules/eslint/lib/rules/radix.js @@ -104,6 +104,7 @@ module.exports = { create(context) { const mode = context.options[0] || MODE_ALWAYS; + const sourceCode = context.getSourceCode(); /** * Checks the arguments of a given CallExpression node and reports it if it @@ -131,7 +132,6 @@ module.exports = { { messageId: "addRadixParameter10", fix(fixer) { - const sourceCode = context.getSourceCode(); const tokens = sourceCode.getTokens(node); const lastToken = tokens[tokens.length - 1]; // Parenthesis. const secondToLastToken = tokens[tokens.length - 2]; // May or may not be a comma. @@ -162,18 +162,18 @@ module.exports = { } return { - "Program:exit"() { - const scope = context.getScope(); + "Program:exit"(node) { + const scope = sourceCode.getScope(node); let variable; // Check `parseInt()` variable = astUtils.getVariableByName(scope, "parseInt"); if (variable && !isShadowed(variable)) { variable.references.forEach(reference => { - const node = reference.identifier; + const idNode = reference.identifier; - if (astUtils.isCallee(node)) { - checkArguments(node.parent); + if (astUtils.isCallee(idNode)) { + checkArguments(idNode.parent); } }); } @@ -182,12 +182,12 @@ module.exports = { variable = astUtils.getVariableByName(scope, "Number"); if (variable && !isShadowed(variable)) { variable.references.forEach(reference => { - const node = reference.identifier.parent; - const maybeCallee = node.parent.type === "ChainExpression" - ? node.parent - : node; + const parentNode = reference.identifier.parent; + const maybeCallee = parentNode.parent.type === "ChainExpression" + ? parentNode.parent + : parentNode; - if (isParseIntMethod(node) && astUtils.isCallee(maybeCallee)) { + if (isParseIntMethod(parentNode) && astUtils.isCallee(maybeCallee)) { checkArguments(maybeCallee.parent); } }); diff --git a/tools/node_modules/eslint/lib/rules/require-atomic-updates.js b/tools/node_modules/eslint/lib/rules/require-atomic-updates.js index 7a5f822ab28c9a..4ed256a4a51751 100644 --- a/tools/node_modules/eslint/lib/rules/require-atomic-updates.js +++ b/tools/node_modules/eslint/lib/rules/require-atomic-updates.js @@ -204,8 +204,8 @@ module.exports = { let stack = null; return { - onCodePathStart(codePath) { - const scope = context.getScope(); + onCodePathStart(codePath, node) { + const scope = sourceCode.getScope(node); const shouldVerify = scope.type === "function" && (scope.block.async || scope.block.generator); diff --git a/tools/node_modules/eslint/lib/rules/require-unicode-regexp.js b/tools/node_modules/eslint/lib/rules/require-unicode-regexp.js index 4236af6db4775e..2fe1539cfcca7a 100644 --- a/tools/node_modules/eslint/lib/rules/require-unicode-regexp.js +++ b/tools/node_modules/eslint/lib/rules/require-unicode-regexp.js @@ -14,7 +14,9 @@ const { CONSTRUCT, ReferenceTracker, getStringIfConstant -} = require("eslint-utils"); +} = require("@eslint-community/eslint-utils"); +const astUtils = require("./utils/ast-utils.js"); +const { isValidWithUnicodeFlag } = require("./utils/regular-expressions"); //------------------------------------------------------------------------------ // Rule Definition @@ -31,7 +33,10 @@ module.exports = { url: "https://eslint.org/docs/rules/require-unicode-regexp" }, + hasSuggestions: true, + messages: { + addUFlag: "Add the 'u' flag.", requireUFlag: "Use the 'u' flag." }, @@ -39,28 +44,79 @@ module.exports = { }, create(context) { + + const sourceCode = context.getSourceCode(); + return { "Literal[regex]"(node) { const flags = node.regex.flags || ""; if (!flags.includes("u")) { - context.report({ node, messageId: "requireUFlag" }); + context.report({ + messageId: "requireUFlag", + node, + suggest: isValidWithUnicodeFlag(context.languageOptions.ecmaVersion, node.regex.pattern) + ? [ + { + fix(fixer) { + return fixer.insertTextAfter(node, "u"); + }, + messageId: "addUFlag" + } + ] + : null + }); } }, - Program() { - const scope = context.getScope(); + Program(node) { + const scope = sourceCode.getScope(node); const tracker = new ReferenceTracker(scope); const trackMap = { RegExp: { [CALL]: true, [CONSTRUCT]: true } }; - for (const { node } of tracker.iterateGlobalReferences(trackMap)) { - const flagsNode = node.arguments[1]; + for (const { node: refNode } of tracker.iterateGlobalReferences(trackMap)) { + const [patternNode, flagsNode] = refNode.arguments; + const pattern = getStringIfConstant(patternNode, scope); const flags = getStringIfConstant(flagsNode, scope); if (!flagsNode || (typeof flags === "string" && !flags.includes("u"))) { - context.report({ node, messageId: "requireUFlag" }); + context.report({ + messageId: "requireUFlag", + node: refNode, + suggest: typeof pattern === "string" && isValidWithUnicodeFlag(context.languageOptions.ecmaVersion, pattern) + ? [ + { + fix(fixer) { + if (flagsNode) { + if ((flagsNode.type === "Literal" && typeof flagsNode.value === "string") || flagsNode.type === "TemplateLiteral") { + const flagsNodeText = sourceCode.getText(flagsNode); + + return fixer.replaceText(flagsNode, [ + flagsNodeText.slice(0, flagsNodeText.length - 1), + flagsNodeText.slice(flagsNodeText.length - 1) + ].join("u")); + } + + // We intentionally don't suggest concatenating + "u" to non-literals + return null; + } + + const penultimateToken = sourceCode.getLastToken(refNode, { skip: 1 }); // skip closing parenthesis + + return fixer.insertTextAfter( + penultimateToken, + astUtils.isCommaToken(penultimateToken) + ? ' "u",' + : ', "u"' + ); + }, + messageId: "addUFlag" + } + ] + : null + }); } } } diff --git a/tools/node_modules/eslint/lib/rules/symbol-description.js b/tools/node_modules/eslint/lib/rules/symbol-description.js index 1c8a364986c8e2..e96a428ce1d11b 100644 --- a/tools/node_modules/eslint/lib/rules/symbol-description.js +++ b/tools/node_modules/eslint/lib/rules/symbol-description.js @@ -35,6 +35,8 @@ module.exports = { create(context) { + const sourceCode = context.getSourceCode(); + /** * Reports if node does not conform the rule in case rule is set to * report missing description @@ -51,16 +53,16 @@ module.exports = { } return { - "Program:exit"() { - const scope = context.getScope(); + "Program:exit"(node) { + const scope = sourceCode.getScope(node); const variable = astUtils.getVariableByName(scope, "Symbol"); if (variable && variable.defs.length === 0) { variable.references.forEach(reference => { - const node = reference.identifier; + const idNode = reference.identifier; - if (astUtils.isCallee(node)) { - checkArgument(node.parent); + if (astUtils.isCallee(idNode)) { + checkArgument(idNode.parent); } }); } diff --git a/tools/node_modules/eslint/lib/rules/utils/regular-expressions.js b/tools/node_modules/eslint/lib/rules/utils/regular-expressions.js new file mode 100644 index 00000000000000..234a1cb8b1140b --- /dev/null +++ b/tools/node_modules/eslint/lib/rules/utils/regular-expressions.js @@ -0,0 +1,42 @@ +/** + * @fileoverview Common utils for regular expressions. + * @author Josh Goldberg + * @author Toru Nagashima + */ + +"use strict"; + +const { RegExpValidator } = require("@eslint-community/regexpp"); + +const REGEXPP_LATEST_ECMA_VERSION = 2022; + +/** + * Checks if the given regular expression pattern would be valid with the `u` flag. + * @param {number} ecmaVersion ECMAScript version to parse in. + * @param {string} pattern The regular expression pattern to verify. + * @returns {boolean} `true` if the pattern would be valid with the `u` flag. + * `false` if the pattern would be invalid with the `u` flag or the configured + * ecmaVersion doesn't support the `u` flag. + */ +function isValidWithUnicodeFlag(ecmaVersion, pattern) { + if (ecmaVersion <= 5) { // ecmaVersion <= 5 doesn't support the 'u' flag + return false; + } + + const validator = new RegExpValidator({ + ecmaVersion: Math.min(ecmaVersion, REGEXPP_LATEST_ECMA_VERSION) + }); + + try { + validator.validatePattern(pattern, void 0, void 0, /* uFlag = */ true); + } catch { + return false; + } + + return true; +} + +module.exports = { + isValidWithUnicodeFlag, + REGEXPP_LATEST_ECMA_VERSION +}; diff --git a/tools/node_modules/eslint/lib/rules/valid-typeof.js b/tools/node_modules/eslint/lib/rules/valid-typeof.js index 908d5725e224c6..6ba5d466118fd9 100644 --- a/tools/node_modules/eslint/lib/rules/valid-typeof.js +++ b/tools/node_modules/eslint/lib/rules/valid-typeof.js @@ -44,7 +44,7 @@ module.exports = { const VALID_TYPES = new Set(["symbol", "undefined", "object", "boolean", "number", "string", "function", "bigint"]), OPERATORS = new Set(["==", "===", "!=", "!=="]); - + const sourceCode = context.getSourceCode(); const requireStringLiterals = context.options[0] && context.options[0].requireStringLiterals; let globalScope; @@ -77,8 +77,8 @@ module.exports = { return { - Program() { - globalScope = context.getScope(); + Program(node) { + globalScope = sourceCode.getScope(node); }, UnaryExpression(node) { diff --git a/tools/node_modules/eslint/lib/rules/wrap-iife.js b/tools/node_modules/eslint/lib/rules/wrap-iife.js index 4c2c9275d879cf..66ea3f8fa462af 100644 --- a/tools/node_modules/eslint/lib/rules/wrap-iife.js +++ b/tools/node_modules/eslint/lib/rules/wrap-iife.js @@ -10,7 +10,7 @@ //------------------------------------------------------------------------------ const astUtils = require("./utils/ast-utils"); -const eslintUtils = require("eslint-utils"); +const eslintUtils = require("@eslint-community/eslint-utils"); //---------------------------------------------------------------------- // Helpers diff --git a/tools/node_modules/eslint/lib/source-code/source-code.js b/tools/node_modules/eslint/lib/source-code/source-code.js index 49b2820a846a0f..7e1630cc73bdcb 100644 --- a/tools/node_modules/eslint/lib/source-code/source-code.js +++ b/tools/node_modules/eslint/lib/source-code/source-code.js @@ -9,7 +9,7 @@ //------------------------------------------------------------------------------ const - { isCommentToken } = require("eslint-utils"), + { isCommentToken } = require("@eslint-community/eslint-utils"), TokenStore = require("./token-store"), astUtils = require("../shared/ast-utils"), Traverser = require("../shared/traverser"); @@ -143,6 +143,8 @@ function isSpaceBetween(sourceCode, first, second, checkInsideOfJSXText) { // Public Interface //------------------------------------------------------------------------------ +const caches = Symbol("caches"); + /** * Represents parsed source code. */ @@ -175,6 +177,13 @@ class SourceCode extends TokenStore { validate(ast); super(ast.tokens, ast.comments); + /** + * General purpose caching for the class. + */ + this[caches] = new Map([ + ["scopes", new WeakMap()] + ]); + /** * The flag to indicate that the source code has Unicode BOM. * @type {boolean} @@ -588,6 +597,48 @@ class SourceCode extends TokenStore { return positionIndex; } + + /** + * Gets the scope for the given node + * @param {ASTNode} currentNode The node to get the scope of + * @returns {eslint-scope.Scope} The scope information for this node + * @throws {TypeError} If the `currentNode` argument is missing. + */ + getScope(currentNode) { + + if (!currentNode) { + throw new TypeError("Missing required argument: node."); + } + + // check cache first + const cache = this[caches].get("scopes"); + const cachedScope = cache.get(currentNode); + + if (cachedScope) { + return cachedScope; + } + + // On Program node, get the outermost scope to avoid return Node.js special function scope or ES modules scope. + const inner = currentNode.type !== "Program"; + + for (let node = currentNode; node; node = node.parent) { + const scope = this.scopeManager.acquire(node, inner); + + if (scope) { + if (scope.type === "function-expression-name") { + cache.set(currentNode, scope.childScopes[0]); + return scope.childScopes[0]; + } + + cache.set(currentNode, scope); + return scope; + } + } + + cache.set(currentNode, this.scopeManager.scopes[0]); + return this.scopeManager.scopes[0]; + } + } module.exports = SourceCode; diff --git a/tools/node_modules/eslint/lib/source-code/token-store/index.js b/tools/node_modules/eslint/lib/source-code/token-store/index.js index 25db8a4f4dbe59..46a96b2f4b189d 100644 --- a/tools/node_modules/eslint/lib/source-code/token-store/index.js +++ b/tools/node_modules/eslint/lib/source-code/token-store/index.js @@ -9,7 +9,7 @@ //------------------------------------------------------------------------------ const assert = require("assert"); -const { isCommentToken } = require("eslint-utils"); +const { isCommentToken } = require("@eslint-community/eslint-utils"); const cursors = require("./cursors"); const ForwardTokenCursor = require("./forward-token-cursor"); const PaddedTokenCursor = require("./padded-token-cursor"); diff --git a/tools/node_modules/eslint/lib/source-code/token-store/utils.js b/tools/node_modules/eslint/lib/source-code/token-store/utils.js index a2bd77de71a32e..859831916eaa20 100644 --- a/tools/node_modules/eslint/lib/source-code/token-store/utils.js +++ b/tools/node_modules/eslint/lib/source-code/token-store/utils.js @@ -49,13 +49,18 @@ exports.getFirstIndex = function getFirstIndex(tokens, indexMap, startLoc) { } if ((startLoc - 1) in indexMap) { const index = indexMap[startLoc - 1]; - const token = (index >= 0 && index < tokens.length) ? tokens[index] : null; + const token = tokens[index]; + + // If the mapped index is out of bounds, the returned cursor index will point after the end of the tokens array. + if (!token) { + return tokens.length; + } /* * For the map of "comment's location -> token's index", it points the next token of a comment. * In that case, +1 is unnecessary. */ - if (token && token.range[0] >= startLoc) { + if (token.range[0] >= startLoc) { return index; } return index + 1; @@ -77,13 +82,18 @@ exports.getLastIndex = function getLastIndex(tokens, indexMap, endLoc) { } if ((endLoc - 1) in indexMap) { const index = indexMap[endLoc - 1]; - const token = (index >= 0 && index < tokens.length) ? tokens[index] : null; + const token = tokens[index]; + + // If the mapped index is out of bounds, the returned cursor index will point before the end of the tokens array. + if (!token) { + return tokens.length - 1; + } /* * For the map of "comment's location -> token's index", it points the next token of a comment. * In that case, -1 is necessary. */ - if (token && token.range[1] > endLoc) { + if (token.range[1] > endLoc) { return index - 1; } return index; diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/configuration.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/configuration.js index f0c7db6cb0f3da..414cef79c2db86 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/configuration.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/configuration.js @@ -51,13 +51,6 @@ var _moduleTypes = require("./module-types"); var _patternToRegex = require("../pattern-to-regex"); var _configError = require("../../errors/config-error"); var fs = require("../../gensync-utils/fs"); -function _module() { - const data = require("module"); - _module = function () { - return data; - }; - return data; -} var _rewriteStackTrace = require("../../errors/rewrite-stack-trace"); const debug = _debug()("babel:config:loading:files:configuration"); const ROOT_CONFIG_FILENAMES = ["babel.config.js", "babel.config.cjs", "babel.config.mjs", "babel.config.json", "babel.config.cts"]; diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import-meta-resolve.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import-meta-resolve.js index 2a666021030fb8..84b9a27a9061f7 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import-meta-resolve.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import-meta-resolve.js @@ -4,13 +4,6 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.default = resolve; -function _module() { - const data = require("module"); - _module = function () { - return data; - }; - return data; -} var _importMetaResolve = require("../../vendor/import-meta-resolve"); 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); }); }; } diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/module-types.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/module-types.js index df7ea2847f91d7..7e7dfdcf5f2ab1 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/module-types.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/module-types.js @@ -20,13 +20,6 @@ function _url() { }; return data; } -function _module() { - const data = require("module"); - _module = function () { - return data; - }; - return data; -} function _semver() { const data = require("semver"); _semver = function () { diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/plugins.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/plugins.js index e4156a3482bc02..ac4a8fdbad9676 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/plugins.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/plugins.js @@ -38,13 +38,6 @@ function _url() { return data; } var _importMetaResolve = require("./import-meta-resolve"); -function _module() { - const data = require("module"); - _module = function () { - return data; - }; - return data; -} function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } const debug = _debug()("babel:config:loading:files:plugins"); diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/index.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/index.js index f58755f21413d7..e250d01a190395 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/index.js @@ -38,7 +38,10 @@ const maybeErrback = runner => (argOrCallback, maybeCallback) => { callback = maybeCallback; arg = argOrCallback; } - return callback ? runner.errback(arg, callback) : runner.sync(arg); + if (!callback) { + return runner.sync(arg); + } + runner.errback(arg, callback); }; const loadPartialConfig = maybeErrback(_partial.loadPartialConfig); exports.loadPartialConfig = loadPartialConfig; @@ -58,9 +61,9 @@ const createConfigItemAsync = createConfigItemRunner.async; exports.createConfigItemAsync = createConfigItemAsync; function createConfigItem(target, options, callback) { if (callback !== undefined) { - return createConfigItemRunner.errback(target, options, callback); + createConfigItemRunner.errback(target, options, callback); } else if (typeof options === "function") { - return createConfigItemRunner.errback(target, undefined, callback); + createConfigItemRunner.errback(target, undefined, callback); } else { return createConfigItemRunner.sync(target, options); } 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 8b6dc73d1a71fb..888f8a8c80547e 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,15 +224,8 @@ var _transform = require("./transform"); var _transformFile = require("./transform-file"); var _transformAst = require("./transform-ast"); var _parse = require("./parse"); -function _module() { - const data = require("module"); - _module = function () { - return data; - }; - return data; -} var thisFile = require("./index"); -const version = "7.21.0"; +const version = "7.21.3"; exports.version = version; const DEFAULT_EXTENSIONS = Object.freeze([".js", ".jsx", ".es6", ".es", ".mjs", ".cjs"]); exports.DEFAULT_EXTENSIONS = DEFAULT_EXTENSIONS; diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file.js index 3864bff7c71c16..d08a85f92992ab 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file.js @@ -27,7 +27,7 @@ const transformFileRunner = _gensync()(function* (filename, opts) { return yield* (0, _transformation.run)(config, code); }); function transformFile(...args) { - return transformFileRunner.errback(...args); + transformFileRunner.errback(...args); } function transformFileSync(...args) { return transformFileRunner.sync(...args); diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/plugin-pass.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/plugin-pass.js index ddde8dc4a02eed..15ef510e11513c 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/plugin-pass.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/plugin-pass.js @@ -31,7 +31,7 @@ class PluginPass { return this.file.addHelper(name); } addImport() { - return this.file.addImport(); + this.file.addImport(); } buildCodeFrameError(node, msg, _Error) { return this.file.buildCodeFrameError(node, msg, _Error); 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 27819d200549ad..5f0b5d43d5c4f4 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.21.0", + "version": "7.21.3", "description": "Babel compiler core.", "main": "./lib/index.js", "author": "The Babel Team (https://babel.dev/team)", @@ -48,14 +48,14 @@ "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.21.0", + "@babel/generator": "^7.21.3", "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-module-transforms": "^7.21.0", + "@babel/helper-module-transforms": "^7.21.2", "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.0", + "@babel/parser": "^7.21.3", "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.0", - "@babel/types": "^7.21.0", + "@babel/traverse": "^7.21.3", + "@babel/types": "^7.21.3", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -66,7 +66,7 @@ "@babel/helper-transform-fixture-test-runner": "^7.20.14", "@babel/plugin-syntax-flow": "^7.18.6", "@babel/plugin-transform-flow-strip-types": "^7.21.0", - "@babel/plugin-transform-modules-commonjs": "^7.20.11", + "@babel/plugin-transform-modules-commonjs": "^7.21.2", "@babel/preset-env": "^7.20.2", "@jridgewell/trace-mapping": "^0.3.17", "@types/convert-source-map": "^1.5.1", diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/analyze-scope.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/analyze-scope.cjs index 2a0384507304bd..0a09015ffc5b71 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/analyze-scope.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/analyze-scope.cjs @@ -1,17 +1,10 @@ function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); } - function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } } - function _classPrivateFieldGet(receiver, privateMap) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "get"); return _classApplyDescriptorGet(receiver, descriptor); } - function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; } - function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "set"); _classApplyDescriptorSet(receiver, descriptor, value); return value; } - function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError("attempted to " + action + " private field on non-instance"); } return privateMap.get(receiver); } - function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError("attempted to set read only private field"); } descriptor.value = value; } } - const { Definition, PatternVisitor: OriginalPatternVisitor, @@ -19,13 +12,10 @@ const { Scope, ScopeManager } = require("@nicolo-ribaudo/eslint-scope-5-internals"); - const { getKeys: fallback } = require("eslint-visitor-keys"); - let visitorKeysMap; - function getVisitorValues(nodeType, client) { if (visitorKeysMap) return visitorKeysMap[nodeType]; const { @@ -37,12 +27,10 @@ function getVisitorValues(nodeType, client) { if (!flowFlippedAliasKeys.includes(value)) { acc[key] = value; } - return acc; }, {}); return visitorKeysMap[nodeType]; } - const propertyTypes = { callProperties: { type: "loop", @@ -87,240 +75,173 @@ const propertyTypes = { type: "id" } }; - class PatternVisitor extends OriginalPatternVisitor { ArrayPattern(node) { node.elements.forEach(this.visit, this); } - ObjectPattern(node) { node.properties.forEach(this.visit, this); } - } - var _client = new WeakMap(); - class Referencer extends OriginalReferencer { constructor(options, scopeManager, client) { super(options, scopeManager); - _classPrivateFieldInitSpec(this, _client, { writable: true, value: void 0 }); - _classPrivateFieldSet(this, _client, client); } - visitPattern(node, options, callback) { if (!node) { return; } - this._checkIdentifierOrVisit(node.typeAnnotation); - if (node.type === "AssignmentPattern") { this._checkIdentifierOrVisit(node.left.typeAnnotation); } - if (typeof options === "function") { callback = options; options = { processRightHandNodes: false }; } - const visitor = new PatternVisitor(this.options, node, callback); visitor.visit(node); - if (options.processRightHandNodes) { visitor.rightHandNodes.forEach(this.visit, this); } } - visitClass(node) { this._visitArray(node.decorators); - const typeParamScope = this._nestTypeParamScope(node); - this._visitTypeAnnotation(node.implements); - this._visitTypeAnnotation(node.superTypeParameters && node.superTypeParameters.params); - super.visitClass(node); - if (typeParamScope) { this.close(node); } } - visitFunction(node) { const typeParamScope = this._nestTypeParamScope(node); - this._checkIdentifierOrVisit(node.returnType); - super.visitFunction(node); - if (typeParamScope) { this.close(node); } } - visitProperty(node) { var _node$value; - if (((_node$value = node.value) == null ? void 0 : _node$value.type) === "TypeCastExpression") { this._visitTypeAnnotation(node.value); } - this._visitArray(node.decorators); - super.visitProperty(node); } - InterfaceDeclaration(node) { this._createScopeVariable(node, node.id); - const typeParamScope = this._nestTypeParamScope(node); - this._visitArray(node.extends); - this.visit(node.body); - if (typeParamScope) { this.close(node); } } - TypeAlias(node) { this._createScopeVariable(node, node.id); - const typeParamScope = this._nestTypeParamScope(node); - this.visit(node.right); - if (typeParamScope) { this.close(node); } } - ClassProperty(node) { this._visitClassProperty(node); } - ClassPrivateProperty(node) { this._visitClassProperty(node); } - PropertyDefinition(node) { this._visitClassProperty(node); } - ClassPrivateMethod(node) { super.MethodDefinition(node); } - DeclareModule(node) { this._visitDeclareX(node); } - DeclareFunction(node) { this._visitDeclareX(node); } - DeclareVariable(node) { this._visitDeclareX(node); } - DeclareClass(node) { this._visitDeclareX(node); } - OptionalMemberExpression(node) { super.MemberExpression(node); } - _visitClassProperty(node) { this._visitTypeAnnotation(node.typeAnnotation); - this.visitProperty(node); } - _visitDeclareX(node) { if (node.id) { this._createScopeVariable(node, node.id); } - const typeParamScope = this._nestTypeParamScope(node); - if (typeParamScope) { this.close(node); } } - _createScopeVariable(node, name) { this.currentScope().variableScope.__define(name, new Definition("Variable", name, node, null, null, null)); } - _nestTypeParamScope(node) { if (!node.typeParameters) { return null; } - const parentScope = this.scopeManager.__currentScope; const scope = new Scope(this.scopeManager, "type-parameters", parentScope, node, false); - this.scopeManager.__nestScope(scope); - for (let j = 0; j < node.typeParameters.params.length; j++) { const name = node.typeParameters.params[j]; - scope.__define(name, new Definition("TypeParameter", name, name)); - if (name.typeAnnotation) { this._checkIdentifierOrVisit(name); } } - scope.__define = function () { return parentScope.__define.apply(parentScope, arguments); }; - return scope; } - _visitTypeAnnotation(node) { if (!node) { return; } - if (Array.isArray(node)) { node.forEach(this._visitTypeAnnotation, this); return; } - const visitorValues = getVisitorValues(node.type, _classPrivateFieldGet(this, _client)); - if (!visitorValues) { return; } - for (let i = 0; i < visitorValues.length; i++) { const visitorValue = visitorValues[i]; const propertyType = propertyTypes[visitorValue]; const nodeProperty = node[visitorValue]; - if (propertyType == null || nodeProperty == null) { continue; } - if (propertyType.type === "loop") { for (let j = 0; j < nodeProperty.length; j++) { if (Array.isArray(propertyType.values)) { for (let k = 0; k < propertyType.values.length; k++) { const loopPropertyNode = nodeProperty[j][propertyType.values[k]]; - if (loopPropertyNode) { this._checkIdentifierOrVisit(loopPropertyNode); } @@ -346,7 +267,6 @@ class Referencer extends OriginalReferencer { } } } - _checkIdentifierOrVisit(node) { if (node != null && node.typeAnnotation) { this._visitTypeAnnotation(node.typeAnnotation); @@ -356,7 +276,6 @@ class Referencer extends OriginalReferencer { this._visitTypeAnnotation(node); } } - _visitArray(nodeList) { if (nodeList) { for (const node of nodeList) { @@ -364,12 +283,9 @@ class Referencer extends OriginalReferencer { } } } - } - module.exports = function analyzeScope(ast, parserOptions, client) { var _parserOptions$ecmaFe; - const options = { ignoreEval: true, optimistic: false, diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/client.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/client.cjs index a6ffce73a848e5..474c8975b567f7 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/client.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/client.cjs @@ -1,29 +1,16 @@ var _class, _worker, _worker_threads, _worker_threads_cache; - function _classStaticPrivateFieldSpecSet(receiver, classConstructor, descriptor, value) { _classCheckPrivateStaticAccess(receiver, classConstructor); _classCheckPrivateStaticFieldDescriptor(descriptor, "set"); _classApplyDescriptorSet(receiver, descriptor, value); return value; } - function _classStaticPrivateFieldSpecGet(receiver, classConstructor, descriptor) { _classCheckPrivateStaticAccess(receiver, classConstructor); _classCheckPrivateStaticFieldDescriptor(descriptor, "get"); return _classApplyDescriptorGet(receiver, descriptor); } - function _classCheckPrivateStaticFieldDescriptor(descriptor, action) { if (descriptor === undefined) { throw new TypeError("attempted to " + action + " private static field before its declaration"); } } - function _classCheckPrivateStaticAccess(receiver, classConstructor) { if (receiver !== classConstructor) { throw new TypeError("Private static access of wrong provenance"); } } - function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); } - function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } } - function _classPrivateFieldGet(receiver, privateMap) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "get"); return _classApplyDescriptorGet(receiver, descriptor); } - function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; } - function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "set"); _classApplyDescriptorSet(receiver, descriptor, value); return value; } - function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError("attempted to " + action + " private field on non-instance"); } return privateMap.get(receiver); } - function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError("attempted to set read only private field"); } descriptor.value = value; } } - const path = require("path"); - const ACTIONS = { GET_VERSION: "GET_VERSION", GET_TYPES_INFO: "GET_TYPES_INFO", @@ -32,112 +19,83 @@ const ACTIONS = { MAYBE_PARSE: "MAYBE_PARSE", MAYBE_PARSE_SYNC: "MAYBE_PARSE_SYNC" }; - var _send = new WeakMap(); - var _vCache = new WeakMap(); - var _tiCache = new WeakMap(); - var _vkCache = new WeakMap(); - var _tlCache = new WeakMap(); - class Client { constructor(send) { _classPrivateFieldInitSpec(this, _send, { writable: true, value: void 0 }); - _classPrivateFieldInitSpec(this, _vCache, { writable: true, value: void 0 }); - _classPrivateFieldInitSpec(this, _tiCache, { writable: true, value: void 0 }); - _classPrivateFieldInitSpec(this, _vkCache, { writable: true, value: void 0 }); - _classPrivateFieldInitSpec(this, _tlCache, { writable: true, value: void 0 }); - _classPrivateFieldSet(this, _send, send); } - getVersion() { var _classPrivateFieldGet2; - return (_classPrivateFieldGet2 = _classPrivateFieldGet(this, _vCache)) != null ? _classPrivateFieldGet2 : _classPrivateFieldSet(this, _vCache, _classPrivateFieldGet(this, _send).call(this, ACTIONS.GET_VERSION, undefined)); } - getTypesInfo() { var _classPrivateFieldGet3; - return (_classPrivateFieldGet3 = _classPrivateFieldGet(this, _tiCache)) != null ? _classPrivateFieldGet3 : _classPrivateFieldSet(this, _tiCache, _classPrivateFieldGet(this, _send).call(this, ACTIONS.GET_TYPES_INFO, undefined)); } - getVisitorKeys() { var _classPrivateFieldGet4; - return (_classPrivateFieldGet4 = _classPrivateFieldGet(this, _vkCache)) != null ? _classPrivateFieldGet4 : _classPrivateFieldSet(this, _vkCache, _classPrivateFieldGet(this, _send).call(this, ACTIONS.GET_VISITOR_KEYS, undefined)); } - getTokLabels() { var _classPrivateFieldGet5; - return (_classPrivateFieldGet5 = _classPrivateFieldGet(this, _tlCache)) != null ? _classPrivateFieldGet5 : _classPrivateFieldSet(this, _tlCache, _classPrivateFieldGet(this, _send).call(this, ACTIONS.GET_TOKEN_LABELS, undefined)); } - maybeParse(code, options) { return _classPrivateFieldGet(this, _send).call(this, ACTIONS.MAYBE_PARSE, { code, options }); } - } - exports.WorkerClient = (_worker = new WeakMap(), (_class = class WorkerClient extends Client { constructor() { super((action, payload) => { const signal = new Int32Array(new SharedArrayBuffer(8)); const subChannel = new (_classStaticPrivateFieldSpecGet(WorkerClient, _class, _worker_threads).MessageChannel)(); - _classPrivateFieldGet(this, _worker).postMessage({ signal, port: subChannel.port1, action, payload }, [subChannel.port1]); - Atomics.wait(signal, 0, 0); - const { message } = _classStaticPrivateFieldSpecGet(WorkerClient, _class, _worker_threads).receiveMessageOnPort(subChannel.port2); - if (message.error) throw Object.assign(message.error, message.errorData);else return message.result; }); - _classPrivateFieldInitSpec(this, _worker, { writable: true, value: new (_classStaticPrivateFieldSpecGet(WorkerClient, _class, _worker_threads).Worker)(path.resolve(__dirname, "../lib/worker/index.cjs"), { env: _classStaticPrivateFieldSpecGet(WorkerClient, _class, _worker_threads).SHARE_ENV }) }); - _classPrivateFieldGet(this, _worker).unref(); } - }, _worker_threads = { get: _get_worker_threads, set: void 0 @@ -145,26 +103,20 @@ exports.WorkerClient = (_worker = new WeakMap(), (_class = class WorkerClient ex writable: true, value: void 0 }, _class)); - function _get_worker_threads() { var _classStaticPrivateFi2; - return (_classStaticPrivateFi2 = _classStaticPrivateFieldSpecGet(_class, _class, _worker_threads_cache)) != null ? _classStaticPrivateFi2 : _classStaticPrivateFieldSpecSet(_class, _class, _worker_threads_cache, require("worker_threads")); } - { var _class2, _handleMessage; - exports.LocalClient = (_class2 = class LocalClient extends Client { constructor() { var _classStaticPrivateFi; - (_classStaticPrivateFi = _classStaticPrivateFieldSpecGet(LocalClient, _class2, _handleMessage)) != null ? _classStaticPrivateFi : _classStaticPrivateFieldSpecSet(LocalClient, _class2, _handleMessage, require("./worker/handle-message.cjs")); super((action, payload) => { return _classStaticPrivateFieldSpecGet(LocalClient, _class2, _handleMessage).call(LocalClient, action === ACTIONS.MAYBE_PARSE ? ACTIONS.MAYBE_PARSE_SYNC : action, payload); }); } - }, _handleMessage = { writable: true, value: void 0 diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/configuration.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/configuration.cjs index e4b76b2ac907c0..b5ab70a3af7363 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/configuration.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/configuration.cjs @@ -1,16 +1,13 @@ const _excluded = ["babelOptions", "ecmaVersion", "sourceType", "requireConfigFile"]; - function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } - exports.normalizeESLintConfig = function (options) { const { - babelOptions = {}, - ecmaVersion = 2020, - sourceType = "module", - requireConfigFile = true - } = options, - otherOptions = _objectWithoutPropertiesLoose(options, _excluded); - + babelOptions = {}, + ecmaVersion = 2020, + sourceType = "module", + requireConfigFile = true + } = options, + otherOptions = _objectWithoutPropertiesLoose(options, _excluded); return Object.assign({ babelOptions: Object.assign({ cwd: process.cwd() diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertAST.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertAST.cjs index 286a88a66a75dc..7a37d13f1f3fce 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertAST.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertAST.cjs @@ -1,9 +1,7 @@ const ESLINT_VERSION = require("../utils/eslint-version.cjs"); - function* it(children) { if (Array.isArray(children)) yield* children;else yield children; } - function traverse(node, visitorKeys, visitor) { const { type @@ -11,7 +9,6 @@ function traverse(node, visitorKeys, visitor) { if (!type) return; const keys = visitorKeys[type]; if (!keys) return; - for (const key of keys) { for (const child of it(node[key])) { if (child && typeof child === "object") { @@ -22,79 +19,62 @@ function traverse(node, visitorKeys, visitor) { } } } - const convertNodesVisitor = { enter(node) { if (node.innerComments) { delete node.innerComments; } - if (node.trailingComments) { delete node.trailingComments; } - if (node.leadingComments) { delete node.leadingComments; } }, - exit(node) { if (node.extra) { delete node.extra; } - if (node.loc.identifierName) { delete node.loc.identifierName; } - if (node.type === "TypeParameter") { node.type = "Identifier"; node.typeAnnotation = node.bound; delete node.bound; } - if (node.type === "QualifiedTypeIdentifier") { delete node.id; } - if (node.type === "ObjectTypeProperty") { delete node.key; } - if (node.type === "ObjectTypeIndexer") { delete node.id; } - if (node.type === "FunctionTypeParam") { delete node.name; } - if (node.type === "ImportDeclaration") { delete node.isType; } - if (node.type === "TemplateLiteral") { for (let i = 0; i < node.quasis.length; i++) { const q = node.quasis[i]; q.range[0] -= 1; - if (q.tail) { q.range[1] += 1; } else { q.range[1] += 2; } - q.loc.start.column -= 1; - if (q.tail) { q.loc.end.column += 1; } else { q.loc.end.column += 2; } - if (ESLINT_VERSION >= 8) { q.start -= 1; - if (q.tail) { q.end += 1; } else { @@ -104,31 +84,24 @@ const convertNodesVisitor = { } } } - }; - function convertNodes(ast, visitorKeys) { traverse(ast, visitorKeys, convertNodesVisitor); } - function convertProgramNode(ast) { ast.type = "Program"; ast.sourceType = ast.program.sourceType; ast.body = ast.program.body; delete ast.program; delete ast.errors; - if (ast.comments.length) { const lastComment = ast.comments[ast.comments.length - 1]; - if (ast.tokens.length) { const lastToken = ast.tokens[ast.tokens.length - 1]; - if (lastComment.end > lastToken.end) { ast.range[1] = lastToken.end; ast.loc.end.line = lastToken.loc.end.line; ast.loc.end.column = lastToken.loc.end.column; - if (ESLINT_VERSION >= 8) { ast.end = lastToken.end; } @@ -140,17 +113,14 @@ function convertProgramNode(ast) { ast.loc.end.line = 1; } } - if (ast.body && ast.body.length > 0) { ast.loc.start.line = ast.body[0].loc.start.line; ast.range[0] = ast.body[0].start; - if (ESLINT_VERSION >= 8) { ast.start = ast.body[0].start; } } } - module.exports = function convertAST(ast, visitorKeys) { convertNodes(ast, visitorKeys); convertProgramNode(ast); diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertComments.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertComments.cjs index 559cee9348c103..4e09df6965babd 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertComments.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertComments.cjs @@ -5,7 +5,6 @@ module.exports = function convertComments(comments) { } else if (comment.type === "CommentLine") { comment.type = "Line"; } - if (!comment.range) { comment.range = [comment.start, comment.end]; } diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertTokens.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertTokens.cjs index 017d5c467c6bb3..bd8ac682c87e61 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertTokens.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/convertTokens.cjs @@ -1,10 +1,8 @@ const ESLINT_VERSION = require("../utils/eslint-version.cjs"); - function convertTemplateType(tokens, tl) { let curlyBrace = null; let templateTokens = []; const result = []; - function addTemplateType() { const start = templateTokens[0]; const end = templateTokens[templateTokens.length - 1]; @@ -14,7 +12,6 @@ function convertTemplateType(tokens, tl) { } else if (token.type.label !== tl.template) { result += token.type.label; } - return result; }, ""); result.push({ @@ -29,7 +26,6 @@ function convertTemplateType(tokens, tl) { }); templateTokens = []; } - tokens.forEach(token => { switch (token.type.label) { case tl.backQuote: @@ -37,49 +33,38 @@ function convertTemplateType(tokens, tl) { result.push(curlyBrace); curlyBrace = null; } - templateTokens.push(token); - if (templateTokens.length > 1) { addTemplateType(); } - break; - case tl.dollarBraceL: templateTokens.push(token); addTemplateType(); break; - case tl.braceR: if (curlyBrace) { result.push(curlyBrace); } - curlyBrace = token; break; - case tl.template: if (curlyBrace) { templateTokens.push(curlyBrace); curlyBrace = null; } - templateTokens.push(token); break; - default: if (curlyBrace) { result.push(curlyBrace); curlyBrace = null; } - result.push(token); } }); return result; } - function convertToken(token, source, tl) { const { type @@ -88,7 +73,6 @@ function convertToken(token, source, tl) { label } = type; token.range = [token.start, token.end]; - if (label === tl.name) { if (token.value === "static") { token.type = "Keyword"; @@ -97,7 +81,6 @@ function convertToken(token, source, tl) { } } else if (label === tl.semi || label === tl.comma || label === tl.parenL || label === tl.parenR || label === tl.braceL || label === tl.braceR || label === tl.slash || label === tl.dot || label === tl.bracketL || label === tl.bracketR || label === tl.ellipsis || label === tl.arrow || label === tl.pipeline || label === tl.star || label === tl.incDec || label === tl.colon || label === tl.question || label === tl.template || label === tl.backQuote || label === tl.dollarBraceL || label === tl.at || label === tl.logicalOR || label === tl.logicalAND || label === tl.nullishCoalescing || label === tl.bitwiseOR || label === tl.bitwiseXOR || label === tl.bitwiseAND || label === tl.equality || label === tl.relational || label === tl.bitShift || label === tl.plusMin || label === tl.modulo || label === tl.exponent || label === tl.bang || label === tl.tilde || label === tl.doubleColon || label === tl.hash || label === tl.questionDot || label === tl.braceHashL || label === tl.braceBarL || label === tl.braceBarR || label === tl.bracketHashL || label === tl.bracketBarL || label === tl.bracketBarR || label === tl.doubleCaret || label === tl.doubleAt || type.isAssign) { var _token$value; - token.type = "Punctuator"; (_token$value = token.value) != null ? _token$value : token.value = label; } else if (label === tl.jsxTagStart) { @@ -138,30 +121,24 @@ function convertToken(token, source, tl) { } else if (label === tl.templateNonTail || label === tl.templateTail) { token.type = "Template"; } - if (typeof token.type !== "string") { delete token.type.rightAssociative; } } - module.exports = function convertTokens(tokens, code, tl) { const result = []; const templateTypeMergedTokens = convertTemplateType(tokens, tl); - for (let i = 0, { - length - } = templateTypeMergedTokens; i < length - 1; i++) { + length + } = templateTypeMergedTokens; i < length - 1; i++) { const token = templateTypeMergedTokens[i]; const tokenType = token.type; - if (tokenType === "CommentLine" || tokenType === "CommentBlock") { continue; } - { if (ESLINT_VERSION >= 8 && i + 1 < length && tokenType.label === tl.hash) { const nextToken = templateTypeMergedTokens[i + 1]; - if (nextToken.type.label === tl.name && token.end === nextToken.start) { i++; nextToken.type = "PrivateIdentifier"; @@ -176,7 +153,6 @@ module.exports = function convertTokens(tokens, code, tl) { convertToken(token, code, tl); result.push(token); } - return result; }; diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/index.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/index.cjs index 3b421b5fd7167e..4590116fcdebab 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/index.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/convert/index.cjs @@ -1,22 +1,17 @@ const convertTokens = require("./convertTokens.cjs"); - const convertComments = require("./convertComments.cjs"); - const convertAST = require("./convertAST.cjs"); - exports.ast = function convert(ast, code, tokLabels, visitorKeys) { ast.tokens = convertTokens(ast.tokens, code, tokLabels); convertComments(ast.comments); convertAST(ast, visitorKeys); return ast; }; - exports.error = function convertError(err) { if (err instanceof SyntaxError) { err.lineNumber = err.loc.line; err.column = err.loc.column; } - return err; }; diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/experimental-worker.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/experimental-worker.cjs index 9fcde9d4584713..9f8179be7fd5c0 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/experimental-worker.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/experimental-worker.cjs @@ -1,23 +1,16 @@ const [major, minor] = process.versions.node.split(".").map(Number); - if (major < 12 || major === 12 && minor < 3) { throw new Error("@babel/eslint-parser/experimental-worker requires Node.js >= 12.3.0"); } - const { normalizeESLintConfig } = require("./configuration.cjs"); - const analyzeScope = require("./analyze-scope.cjs"); - const baseParse = require("./parse.cjs"); - const { WorkerClient } = require("./client.cjs"); - const client = new WorkerClient(); - exports.parseForESLint = function (code, options = {}) { const normalizedOptions = normalizeESLintConfig(options); const ast = baseParse(code, normalizedOptions, client); diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/index.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/index.cjs index a164660e5dabd4..926ecc1324cf0d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/index.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/index.cjs @@ -1,22 +1,20 @@ const { normalizeESLintConfig } = require("./configuration.cjs"); - const analyzeScope = require("./analyze-scope.cjs"); - const baseParse = require("./parse.cjs"); - const { LocalClient, WorkerClient } = require("./client.cjs"); - const client = new LocalClient(); - +exports.meta = { + name: "@babel/eslint-parser", + version: "7.21.3" +}; exports.parse = function (code, options = {}) { return baseParse(code, normalizeESLintConfig(options), client); }; - exports.parseForESLint = function (code, options = {}) { const normalizedOptions = normalizeESLintConfig(options); const ast = baseParse(code, normalizedOptions, client); diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/parse.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/parse.cjs index 5caa20713970cb..a7cae86909f289 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/parse.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/parse.cjs @@ -1,14 +1,11 @@ "use strict"; const semver = require("semver"); - const convert = require("./convert/index.cjs"); - const babelParser = require((((v, w) => (v = v.split("."), w = w.split("."), +v[0] > +w[0] || v[0] == w[0] && +v[1] >= +w[1]))(process.versions.node, "8.9") ? require.resolve : (r, { paths: [b] }, M = require("module")) => { let f = M._findPath(r, M._nodeModulePaths(b).concat(b)); - if (f) return f; f = new Error(`Cannot resolve module '${r}'`); f.code = "MODULE_NOT_FOUND"; @@ -16,26 +13,20 @@ const babelParser = require((((v, w) => (v = v.split("."), w = w.split("."), +v[ })("@babel/parser", { paths: [require.resolve("@babel/core/package.json")] })); - let isRunningMinSupportedCoreVersion = null; - module.exports = function parse(code, options, client) { const minSupportedCoreVersion = ">=7.2.0"; - if (typeof isRunningMinSupportedCoreVersion !== "boolean") { isRunningMinSupportedCoreVersion = semver.satisfies(client.getVersion(), minSupportedCoreVersion); } - if (!isRunningMinSupportedCoreVersion) { - throw new Error(`@babel/eslint-parser@${"7.19.1"} does not support @babel/core@${client.getVersion()}. Please upgrade to @babel/core@${minSupportedCoreVersion}.`); + throw new Error(`@babel/eslint-parser@${"7.21.3"} does not support @babel/core@${client.getVersion()}. Please upgrade to @babel/core@${minSupportedCoreVersion}.`); } - const { ast, parserOptions } = client.maybeParse(code, options); if (ast) return ast; - try { return convert.ast(babelParser.parse(code, parserOptions), code, client.getTokLabels(), client.getVisitorKeys()); } catch (err) { diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/ast-info.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/ast-info.cjs index adb65a9375c805..6a5985ee14cd70 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/ast-info.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/ast-info.cjs @@ -1,9 +1,6 @@ const ESLINT_VISITOR_KEYS = require("eslint-visitor-keys").KEYS; - const babel = require("./babel-core.cjs"); - let visitorKeys; - exports.getVisitorKeys = function getVisitorKeys() { if (!visitorKeys) { const newTypes = { @@ -20,12 +17,9 @@ exports.getVisitorKeys = function getVisitorKeys() { }; visitorKeys = Object.assign({}, newTypes, babel.types.VISITOR_KEYS, conflictTypes); } - return visitorKeys; }; - let tokLabels; - exports.getTokLabels = function getTokLabels() { return tokLabels || (tokLabels = (p => p.reduce((o, [k, v]) => Object.assign({}, o, { [k]: v diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/babel-core.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/babel-core.cjs index 01d4573363a21a..426a6d1d571c0e 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/babel-core.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/babel-core.cjs @@ -9,7 +9,6 @@ function initialize(babel) { exports.loadPartialConfigAsync = babel.loadPartialConfigAsync; exports.createConfigItem = babel.createConfigItem; } - { initialize(require("@babel/core")); } diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/configuration.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/configuration.cjs index 5aab1914ead32c..0d9e1ae7b214de 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/configuration.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/configuration.cjs @@ -1,32 +1,23 @@ 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); }); }; } - const babel = require("./babel-core.cjs"); - const ESLINT_VERSION = require("../utils/eslint-version.cjs"); - function getParserPlugins(babelOptions) { var _babelOptions$parserO, _babelOptions$parserO2; - const babelParserPlugins = (_babelOptions$parserO = (_babelOptions$parserO2 = babelOptions.parserOpts) == null ? void 0 : _babelOptions$parserO2.plugins) != null ? _babelOptions$parserO : []; const estreeOptions = { classFeatures: ESLINT_VERSION >= 8 }; - for (const plugin of babelParserPlugins) { if (Array.isArray(plugin) && plugin[0] === "estree") { Object.assign(estreeOptions, plugin[1]); break; } } - return [["estree", estreeOptions], ...babelParserPlugins]; } - function normalizeParserOptions(options) { var _options$allowImportE, _options$ecmaFeatures, _options$ecmaFeatures2; - return Object.assign({ sourceType: options.sourceType, filename: options.filePath @@ -47,27 +38,21 @@ function normalizeParserOptions(options) { }, options.babelOptions.caller) }); } - function validateResolvedConfig(config, options, parseOptions) { if (config !== null) { if (options.requireConfigFile !== false) { if (!config.hasFilesystemConfig()) { let error = `No Babel config file detected for ${config.options.filename}. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.`; - if (config.options.filename.includes("node_modules")) { error += `\nIf you have a .babelrc.js file or use package.json#babel, keep in mind that it's not used when parsing dependencies. If you want your config to be applied to your whole app, consider using babel.config.js or babel.config.json instead.`; } - throw new Error(error); } } - if (config.options) return config.options; } - return getDefaultParserOptions(parseOptions); } - function getDefaultParserOptions(options) { return Object.assign({ plugins: [] @@ -79,13 +64,11 @@ function getDefaultParserOptions(options) { only: null }); } - exports.normalizeBabelParseConfig = _asyncToGenerator(function* (options) { const parseOptions = normalizeParserOptions(options); const config = yield babel.loadPartialConfigAsync(parseOptions); return validateResolvedConfig(config, options, parseOptions); }); - exports.normalizeBabelParseConfigSync = function (options) { const parseOptions = normalizeParserOptions(options); const config = babel.loadPartialConfigSync(parseOptions); diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/extract-parser-options-plugin.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/extract-parser-options-plugin.cjs index 1ddd6179beadb0..29f4c3b138e83f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/extract-parser-options-plugin.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/extract-parser-options-plugin.cjs @@ -3,7 +3,6 @@ module.exports = function extractParserOptionsPlugin() { parserOverride(code, opts) { return opts; } - }; }; diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/handle-message.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/handle-message.cjs index c227db8278deea..a3083454d1909f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/handle-message.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/handle-message.cjs @@ -1,43 +1,33 @@ const babel = require("./babel-core.cjs"); - const maybeParse = require("./maybeParse.cjs"); - const { getVisitorKeys, getTokLabels } = require("./ast-info.cjs"); - const { normalizeBabelParseConfig, normalizeBabelParseConfigSync } = require("./configuration.cjs"); - module.exports = function handleMessage(action, payload) { switch (action) { case "GET_VERSION": return babel.version; - case "GET_TYPES_INFO": return { FLOW_FLIPPED_ALIAS_KEYS: babel.types.FLIPPED_ALIAS_KEYS.Flow, VISITOR_KEYS: babel.types.VISITOR_KEYS }; - case "GET_TOKEN_LABELS": return getTokLabels(); - case "GET_VISITOR_KEYS": return getVisitorKeys(); - case "MAYBE_PARSE": return normalizeBabelParseConfig(payload.options).then(options => maybeParse(payload.code, options)); - case "MAYBE_PARSE_SYNC": { return maybeParse(payload.code, normalizeBabelParseConfigSync(payload.options)); } } - throw new Error(`Unknown internal parser worker action: ${action}`); }; diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/index.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/index.cjs index ea1c2a794c01f9..5287153267ef50 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/index.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/index.cjs @@ -1,15 +1,10 @@ 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); }); }; } - const babel = require("./babel-core.cjs"); - const handleMessage = require("./handle-message.cjs"); - const { parentPort } = require("worker_threads"); - parentPort.addListener("message", _asyncToGenerator(function* ({ signal, port, @@ -17,7 +12,6 @@ parentPort.addListener("message", _asyncToGenerator(function* ({ payload }) { let response; - try { if (babel.init) yield babel.init; response = { @@ -29,7 +23,6 @@ parentPort.addListener("message", _asyncToGenerator(function* ({ errorData: Object.assign({}, error) }; } - try { port.postMessage(response); } catch (_unused) { diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/maybeParse.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/maybeParse.cjs index aa49494d8a4e77..37dbfbaee062c2 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/maybeParse.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/worker/maybeParse.cjs @@ -1,18 +1,13 @@ const babel = require("./babel-core.cjs"); - const convert = require("../convert/index.cjs"); - const { getVisitorKeys, getTokLabels } = require("./ast-info.cjs"); - const extractParserOptionsPlugin = require("./extract-parser-options-plugin.cjs"); - const ref = {}; let extractParserOptionsConfigItem; const MULTIPLE_OVERRIDES = /More than one plugin attempted to override parsing/; - module.exports = function maybeParse(code, options) { if (!extractParserOptionsConfigItem) { extractParserOptionsConfigItem = babel.createConfigItem([extractParserOptionsPlugin, ref], { @@ -20,12 +15,10 @@ module.exports = function maybeParse(code, options) { type: "plugin" }); } - const { plugins } = options; options.plugins = plugins.concat(extractParserOptionsConfigItem); - try { return { parserOptions: babel.parseSync(code, options), @@ -36,16 +29,13 @@ module.exports = function maybeParse(code, options) { throw err; } } - options.plugins = plugins; let ast; - try { ast = babel.parseSync(code, options); } catch (err) { throw convert.error(err); } - return { ast: convert.ast(ast, code, getTokLabels(), getVisitorKeys()), parserOptions: null diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/package.json b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/package.json index f1615977e14e11..a083731aa6e232 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/package.json @@ -1,6 +1,6 @@ { "name": "@babel/eslint-parser", - "version": "7.19.1", + "version": "7.21.3", "description": "ESLint parser that allows for linting of experimental syntax transformed by Babel", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", @@ -36,7 +36,7 @@ "semver": "^6.3.0" }, "devDependencies": { - "@babel/core": "^7.19.1", + "@babel/core": "^7.21.3", "dedent": "^0.7.0", "eslint": "^8.22.0" } diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/buffer.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/buffer.js index 774fe36826650e..def555245c87f6 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/buffer.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/buffer.js @@ -235,7 +235,10 @@ class Buffer { return this._queueCursor !== 0 || !!this._last; } exactSource(loc, cb) { - if (!this._map) return cb(); + if (!this._map) { + cb(); + return; + } this.source("start", loc); const identifierName = loc.identifierName; const sourcePos = this._sourcePosition; @@ -260,8 +263,9 @@ class Buffer { this._normalizePosition(prop, loc, lineOffset, columnOffset); } withSource(prop, loc, cb) { - if (!this._map) return cb(); - this.source(prop, loc); + if (this._map) { + this.source(prop, loc); + } cb(); } _normalizePosition(prop, loc, lineOffset, columnOffset) { diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/types.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/types.js index c37a731281d5fc..e02aa98147f27d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/types.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/types.js @@ -175,10 +175,8 @@ function StringLiteral(node) { this.token(raw); return; } - const val = _jsesc(node.value, Object.assign(this.format.jsescOption, this.format.jsonCompatibleStrings && { - json: true - })); - return this.token(val); + const val = _jsesc(node.value, this.format.jsescOption); + this.token(val); } function BigIntLiteral(node) { const raw = this.getPossibleRaw(node); diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/index.js index f52ff2aa0d8ef8..d0ef9862850a5b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/index.js @@ -44,7 +44,7 @@ function normalizeOptions(code, opts) { }; { format.decoratorsBeforeExport = opts.decoratorsBeforeExport; - format.jsonCompatibleStrings = opts.jsonCompatibleStrings; + format.jsescOption.json = opts.jsonCompatibleStrings; } if (format.minified) { format.compact = true; @@ -53,7 +53,7 @@ function normalizeOptions(code, opts) { format.shouldPrintComment = format.shouldPrintComment || (value => format.comments || value.includes("@license") || value.includes("@preserve")); } if (format.compact === "auto") { - format.compact = code.length > 500000; + format.compact = typeof code === "string" && code.length > 500000; if (format.compact) { console.error("[BABEL] Note: The code generator has deoptimised the styling of " + `${opts.filename} as it exceeds the max of ${"500KB"}.`); } diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js index dbee2fc57aa35d..ff17be07536965 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js @@ -8,6 +8,7 @@ var _buffer = require("./buffer"); var n = require("./node"); var _t = require("@babel/types"); var generatorFunctions = require("./generators"); +require("@jridgewell/trace-mapping"); const { isFunction, isStatement, @@ -150,7 +151,10 @@ class Printer { this._buf.removeTrailingNewline(); } exactSource(loc, cb) { - if (!loc) return cb(); + if (!loc) { + cb(); + return; + } this._catchUp("start", loc); this._buf.exactSource(loc, cb); } @@ -165,7 +169,10 @@ class Printer { this._buf.sourceWithOffset(prop, loc, lineOffset, columnOffset); } withSource(prop, loc, cb) { - if (!loc) return cb(); + if (!loc) { + cb(); + return; + } this._catchUp(prop, loc); this._buf.withSource(prop, loc, cb); } @@ -455,13 +462,13 @@ class Printer { } printSequence(nodes, parent, opts = {}) { opts.statement = true; - return this.printJoin(nodes, parent, opts); + this.printJoin(nodes, parent, opts); } printList(items, parent, opts = {}) { if (opts.separator == null) { opts.separator = commaSeparator; } - return this.printJoin(items, parent, opts); + this.printJoin(items, parent, opts); } _printNewline(newLine, opts) { if (this.format.retainLines || this.format.compact) return; diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/package.json b/tools/node_modules/eslint/node_modules/@babel/generator/package.json index 074c9a94e15533..105522cca50eba 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/generator/package.json @@ -1,6 +1,6 @@ { "name": "@babel/generator", - "version": "7.21.1", + "version": "7.21.3", "description": "Turns an AST into code.", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", @@ -19,14 +19,14 @@ "lib" ], "dependencies": { - "@babel/types": "^7.21.0", + "@babel/types": "^7.21.3", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" }, "devDependencies": { "@babel/helper-fixtures": "^7.21.0", - "@babel/parser": "^7.21.1", + "@babel/parser": "^7.21.3", "@types/jsesc": "^2.5.0", "charcodes": "^0.2.0" }, diff --git a/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js index ca4efefeb1a52b..3465898f917706 100644 --- a/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js @@ -1,824 +1,100 @@ 'use strict'; -Object.defineProperty(exports, '__esModule', { value: true }); - -function _objectWithoutPropertiesLoose(source, excluded) { - if (source == null) return {}; - var target = {}; - var sourceKeys = Object.keys(source); - var key, i; - for (i = 0; i < sourceKeys.length; i++) { - key = sourceKeys[i]; - if (excluded.indexOf(key) >= 0) continue; - target[key] = source[key]; +Object.defineProperty(exports, '__esModule', { + value: true +}); +const defaultOptions = { + sourceType: "script", + sourceFilename: undefined, + startColumn: 0, + startLine: 1, + allowAwaitOutsideFunction: false, + allowReturnOutsideFunction: false, + allowNewTargetOutsideFunction: false, + allowImportExportEverywhere: false, + allowSuperOutsideMethod: false, + allowUndeclaredExports: false, + plugins: [], + strictMode: null, + ranges: false, + tokens: false, + createParenthesizedExpressions: false, + errorRecovery: false, + attachComment: true, + annexB: true +}; +function getOptions(opts) { + if (opts && opts.annexB != null && opts.annexB !== false) { + throw new Error("The `annexB` option can only be set to `false`."); } - return target; -} - -class Position { - constructor(line, col, index) { - this.line = void 0; - this.column = void 0; - this.index = void 0; - this.line = line; - this.column = col; - this.index = index; + const options = {}; + for (const key of Object.keys(defaultOptions)) { + options[key] = opts && opts[key] != null ? opts[key] : defaultOptions[key]; } + return options; } -class SourceLocation { - constructor(start, end) { - this.start = void 0; - this.end = void 0; - this.filename = void 0; - this.identifierName = void 0; - this.start = start; - this.end = end; +class TokContext { + constructor(token, preserveSpace) { + this.token = void 0; + this.preserveSpace = void 0; + this.token = token; + this.preserveSpace = !!preserveSpace; } } -function createPositionWithColumnOffset(position, columnOffset) { - const { - line, - column, - index - } = position; - return new Position(line, column + columnOffset, index + columnOffset); -} - -var ParseErrorCode = { - SyntaxError: "BABEL_PARSER_SYNTAX_ERROR", - SourceTypeModuleError: "BABEL_PARSER_SOURCETYPE_MODULE_REQUIRED" +const types = { + brace: new TokContext("{"), + j_oTag: new TokContext("...", true) }; -const reflect = (keys, last = keys.length - 1) => ({ - get() { - return keys.reduce((object, key) => object[key], this); - }, - set(value) { - keys.reduce((item, key, i) => i === last ? item[key] = value : item[key], this); - } -}); -const instantiate = (constructor, properties, descriptors) => Object.keys(descriptors).map(key => [key, descriptors[key]]).filter(([, descriptor]) => !!descriptor).map(([key, descriptor]) => [key, typeof descriptor === "function" ? { - value: descriptor, - enumerable: false -} : typeof descriptor.reflect === "string" ? Object.assign({}, descriptor, reflect(descriptor.reflect.split("."))) : descriptor]).reduce((instance, [key, descriptor]) => Object.defineProperty(instance, key, Object.assign({ - configurable: true -}, descriptor)), Object.assign(new constructor(), properties)); - -var ModuleErrors = { - ImportMetaOutsideModule: { - message: `import.meta may appear only with 'sourceType: "module"'`, - code: ParseErrorCode.SourceTypeModuleError - }, - ImportOutsideModule: { - message: `'import' and 'export' may appear only with 'sourceType: "module"'`, - code: ParseErrorCode.SourceTypeModuleError +{ + types.template = new TokContext("`", true); +} +const beforeExpr = true; +const startsExpr = true; +const isLoop = true; +const isAssign = true; +const prefix = true; +const postfix = true; +class ExportedTokenType { + constructor(label, conf = {}) { + this.label = void 0; + this.keyword = void 0; + this.beforeExpr = void 0; + this.startsExpr = void 0; + this.rightAssociative = void 0; + this.isLoop = void 0; + this.isAssign = void 0; + this.prefix = void 0; + this.postfix = void 0; + this.binop = void 0; + this.label = label; + this.keyword = conf.keyword; + this.beforeExpr = !!conf.beforeExpr; + this.startsExpr = !!conf.startsExpr; + this.rightAssociative = !!conf.rightAssociative; + this.isLoop = !!conf.isLoop; + this.isAssign = !!conf.isAssign; + this.prefix = !!conf.prefix; + this.postfix = !!conf.postfix; + this.binop = conf.binop != null ? conf.binop : null; + { + this.updateContext = null; + } } -}; - -const NodeDescriptions = { - ArrayPattern: "array destructuring pattern", - AssignmentExpression: "assignment expression", - AssignmentPattern: "assignment expression", - ArrowFunctionExpression: "arrow function expression", - ConditionalExpression: "conditional expression", - CatchClause: "catch clause", - ForOfStatement: "for-of statement", - ForInStatement: "for-in statement", - ForStatement: "for-loop", - FormalParameters: "function parameter list", - Identifier: "identifier", - ImportSpecifier: "import specifier", - ImportDefaultSpecifier: "import default specifier", - ImportNamespaceSpecifier: "import namespace specifier", - ObjectPattern: "object destructuring pattern", - ParenthesizedExpression: "parenthesized expression", - RestElement: "rest element", - UpdateExpression: { - true: "prefix operation", - false: "postfix operation" - }, - VariableDeclarator: "variable declaration", - YieldExpression: "yield expression" -}; -const toNodeDescription = ({ - type, - prefix -}) => type === "UpdateExpression" ? NodeDescriptions.UpdateExpression[String(prefix)] : NodeDescriptions[type]; - -var StandardErrors = { - AccessorIsGenerator: ({ - kind - }) => `A ${kind}ter cannot be a generator.`, - ArgumentsInClass: "'arguments' is only allowed in functions and class methods.", - AsyncFunctionInSingleStatementContext: "Async functions can only be declared at the top level or inside a block.", - AwaitBindingIdentifier: "Can not use 'await' as identifier inside an async function.", - AwaitBindingIdentifierInStaticBlock: "Can not use 'await' as identifier inside a static block.", - AwaitExpressionFormalParameter: "'await' is not allowed in async function parameters.", - AwaitInUsingBinding: "'await' is not allowed to be used as a name in 'using' declarations.", - AwaitNotInAsyncContext: "'await' is only allowed within async functions and at the top levels of modules.", - AwaitNotInAsyncFunction: "'await' is only allowed within async functions.", - BadGetterArity: "A 'get' accessor must not have any formal parameters.", - BadSetterArity: "A 'set' accessor must have exactly one formal parameter.", - BadSetterRestParameter: "A 'set' accessor function argument must not be a rest parameter.", - ConstructorClassField: "Classes may not have a field named 'constructor'.", - ConstructorClassPrivateField: "Classes may not have a private field named '#constructor'.", - ConstructorIsAccessor: "Class constructor may not be an accessor.", - ConstructorIsAsync: "Constructor can't be an async function.", - ConstructorIsGenerator: "Constructor can't be a generator.", - DeclarationMissingInitializer: ({ - kind - }) => `Missing initializer in ${kind} declaration.`, - DecoratorArgumentsOutsideParentheses: "Decorator arguments must be moved inside parentheses: use '@(decorator(args))' instead of '@(decorator)(args)'.", - DecoratorBeforeExport: "Decorators must be placed *before* the 'export' keyword. Remove the 'decoratorsBeforeExport: true' option to use the 'export @decorator class {}' syntax.", - DecoratorsBeforeAfterExport: "Decorators can be placed *either* before or after the 'export' keyword, but not in both locations at the same time.", - DecoratorConstructor: "Decorators can't be used with a constructor. Did you mean '@dec class { ... }'?", - DecoratorExportClass: "Decorators must be placed *after* the 'export' keyword. Remove the 'decoratorsBeforeExport: false' option to use the '@decorator export class {}' syntax.", - DecoratorSemicolon: "Decorators must not be followed by a semicolon.", - DecoratorStaticBlock: "Decorators can't be used with a static block.", - DeletePrivateField: "Deleting a private field is not allowed.", - DestructureNamedImport: "ES2015 named imports do not destructure. Use another statement for destructuring after the import.", - DuplicateConstructor: "Duplicate constructor in the same class.", - DuplicateDefaultExport: "Only one default export allowed per module.", - DuplicateExport: ({ - exportName - }) => `\`${exportName}\` has already been exported. Exported identifiers must be unique.`, - DuplicateProto: "Redefinition of __proto__ property.", - DuplicateRegExpFlags: "Duplicate regular expression flag.", - ElementAfterRest: "Rest element must be last element.", - EscapedCharNotAnIdentifier: "Invalid Unicode escape.", - ExportBindingIsString: ({ - localName, - exportName - }) => `A string literal cannot be used as an exported binding without \`from\`.\n- Did you mean \`export { '${localName}' as '${exportName}' } from 'some-module'\`?`, - ExportDefaultFromAsIdentifier: "'from' is not allowed as an identifier after 'export default'.", - ForInOfLoopInitializer: ({ - type - }) => `'${type === "ForInStatement" ? "for-in" : "for-of"}' loop variable declaration may not have an initializer.`, - ForInUsing: "For-in loop may not start with 'using' declaration.", - ForOfAsync: "The left-hand side of a for-of loop may not be 'async'.", - ForOfLet: "The left-hand side of a for-of loop may not start with 'let'.", - GeneratorInSingleStatementContext: "Generators can only be declared at the top level or inside a block.", - IllegalBreakContinue: ({ - type - }) => `Unsyntactic ${type === "BreakStatement" ? "break" : "continue"}.`, - IllegalLanguageModeDirective: "Illegal 'use strict' directive in function with non-simple parameter list.", - IllegalReturn: "'return' outside of function.", - ImportBindingIsString: ({ - importName - }) => `A string literal cannot be used as an imported binding.\n- Did you mean \`import { "${importName}" as foo }\`?`, - ImportCallArgumentTrailingComma: "Trailing comma is disallowed inside import(...) arguments.", - ImportCallArity: ({ - maxArgumentCount - }) => `\`import()\` requires exactly ${maxArgumentCount === 1 ? "one argument" : "one or two arguments"}.`, - ImportCallNotNewExpression: "Cannot use new with import(...).", - ImportCallSpreadArgument: "`...` is not allowed in `import()`.", - ImportJSONBindingNotDefault: "A JSON module can only be imported with `default`.", - ImportReflectionHasAssertion: "`import module x` cannot have assertions.", - ImportReflectionNotBinding: 'Only `import module x from "./module"` is valid.', - IncompatibleRegExpUVFlags: "The 'u' and 'v' regular expression flags cannot be enabled at the same time.", - InvalidBigIntLiteral: "Invalid BigIntLiteral.", - InvalidCodePoint: "Code point out of bounds.", - InvalidCoverInitializedName: "Invalid shorthand property initializer.", - InvalidDecimal: "Invalid decimal.", - InvalidDigit: ({ - radix - }) => `Expected number in radix ${radix}.`, - InvalidEscapeSequence: "Bad character escape sequence.", - InvalidEscapeSequenceTemplate: "Invalid escape sequence in template.", - InvalidEscapedReservedWord: ({ - reservedWord - }) => `Escape sequence in keyword ${reservedWord}.`, - InvalidIdentifier: ({ - identifierName - }) => `Invalid identifier ${identifierName}.`, - InvalidLhs: ({ - ancestor - }) => `Invalid left-hand side in ${toNodeDescription(ancestor)}.`, - InvalidLhsBinding: ({ - ancestor - }) => `Binding invalid left-hand side in ${toNodeDescription(ancestor)}.`, - InvalidNumber: "Invalid number.", - InvalidOrMissingExponent: "Floating-point numbers require a valid exponent after the 'e'.", - InvalidOrUnexpectedToken: ({ - unexpected - }) => `Unexpected character '${unexpected}'.`, - InvalidParenthesizedAssignment: "Invalid parenthesized assignment pattern.", - InvalidPrivateFieldResolution: ({ - identifierName - }) => `Private name #${identifierName} is not defined.`, - InvalidPropertyBindingPattern: "Binding member expression.", - InvalidRecordProperty: "Only properties and spread elements are allowed in record definitions.", - InvalidRestAssignmentPattern: "Invalid rest operator's argument.", - LabelRedeclaration: ({ - labelName - }) => `Label '${labelName}' is already declared.`, - LetInLexicalBinding: "'let' is not allowed to be used as a name in 'let' or 'const' declarations.", - LineTerminatorBeforeArrow: "No line break is allowed before '=>'.", - MalformedRegExpFlags: "Invalid regular expression flag.", - MissingClassName: "A class name is required.", - MissingEqInAssignment: "Only '=' operator can be used for specifying default value.", - MissingSemicolon: "Missing semicolon.", - MissingPlugin: ({ - missingPlugin - }) => `This experimental syntax requires enabling the parser plugin: ${missingPlugin.map(name => JSON.stringify(name)).join(", ")}.`, - MissingOneOfPlugins: ({ - missingPlugin - }) => `This experimental syntax requires enabling one of the following parser plugin(s): ${missingPlugin.map(name => JSON.stringify(name)).join(", ")}.`, - MissingUnicodeEscape: "Expecting Unicode escape sequence \\uXXXX.", - MixingCoalesceWithLogical: "Nullish coalescing operator(??) requires parens when mixing with logical operators.", - ModuleAttributeDifferentFromType: "The only accepted module attribute is `type`.", - ModuleAttributeInvalidValue: "Only string literals are allowed as module attribute values.", - ModuleAttributesWithDuplicateKeys: ({ - key - }) => `Duplicate key "${key}" is not allowed in module attributes.`, - ModuleExportNameHasLoneSurrogate: ({ - surrogateCharCode - }) => `An export name cannot include a lone surrogate, found '\\u${surrogateCharCode.toString(16)}'.`, - ModuleExportUndefined: ({ - localName - }) => `Export '${localName}' is not defined.`, - MultipleDefaultsInSwitch: "Multiple default clauses.", - NewlineAfterThrow: "Illegal newline after throw.", - NoCatchOrFinally: "Missing catch or finally clause.", - NumberIdentifier: "Identifier directly after number.", - NumericSeparatorInEscapeSequence: "Numeric separators are not allowed inside unicode escape sequences or hex escape sequences.", - ObsoleteAwaitStar: "'await*' has been removed from the async functions proposal. Use Promise.all() instead.", - OptionalChainingNoNew: "Constructors in/after an Optional Chain are not allowed.", - OptionalChainingNoTemplate: "Tagged Template Literals are not allowed in optionalChain.", - OverrideOnConstructor: "'override' modifier cannot appear on a constructor declaration.", - ParamDupe: "Argument name clash.", - PatternHasAccessor: "Object pattern can't contain getter or setter.", - PatternHasMethod: "Object pattern can't contain methods.", - PrivateInExpectedIn: ({ - identifierName - }) => `Private names are only allowed in property accesses (\`obj.#${identifierName}\`) or in \`in\` expressions (\`#${identifierName} in obj\`).`, - PrivateNameRedeclaration: ({ - identifierName - }) => `Duplicate private name #${identifierName}.`, - RecordExpressionBarIncorrectEndSyntaxType: "Record expressions ending with '|}' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.", - RecordExpressionBarIncorrectStartSyntaxType: "Record expressions starting with '{|' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.", - RecordExpressionHashIncorrectStartSyntaxType: "Record expressions starting with '#{' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'hash'.", - RecordNoProto: "'__proto__' is not allowed in Record expressions.", - RestTrailingComma: "Unexpected trailing comma after rest element.", - SloppyFunction: "In non-strict mode code, functions can only be declared at top level or inside a block.", - SloppyFunctionAnnexB: "In non-strict mode code, functions can only be declared at top level, inside a block, or as the body of an if statement.", - StaticPrototype: "Classes may not have static property named prototype.", - SuperNotAllowed: "`super()` is only valid inside a class constructor of a subclass. Maybe a typo in the method name ('constructor') or not extending another class?", - SuperPrivateField: "Private fields can't be accessed on super.", - TrailingDecorator: "Decorators must be attached to a class element.", - TupleExpressionBarIncorrectEndSyntaxType: "Tuple expressions ending with '|]' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.", - TupleExpressionBarIncorrectStartSyntaxType: "Tuple expressions starting with '[|' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.", - TupleExpressionHashIncorrectStartSyntaxType: "Tuple expressions starting with '#[' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'hash'.", - UnexpectedArgumentPlaceholder: "Unexpected argument placeholder.", - UnexpectedAwaitAfterPipelineBody: 'Unexpected "await" after pipeline body; await must have parentheses in minimal proposal.', - UnexpectedDigitAfterHash: "Unexpected digit after hash token.", - UnexpectedImportExport: "'import' and 'export' may only appear at the top level.", - UnexpectedKeyword: ({ - keyword - }) => `Unexpected keyword '${keyword}'.`, - UnexpectedLeadingDecorator: "Leading decorators must be attached to a class declaration.", - UnexpectedLexicalDeclaration: "Lexical declaration cannot appear in a single-statement context.", - UnexpectedNewTarget: "`new.target` can only be used in functions or class properties.", - UnexpectedNumericSeparator: "A numeric separator is only allowed between two digits.", - UnexpectedPrivateField: "Unexpected private name.", - UnexpectedReservedWord: ({ - reservedWord - }) => `Unexpected reserved word '${reservedWord}'.`, - UnexpectedSuper: "'super' is only allowed in object methods and classes.", - UnexpectedToken: ({ - expected, - unexpected - }) => `Unexpected token${unexpected ? ` '${unexpected}'.` : ""}${expected ? `, expected "${expected}"` : ""}`, - UnexpectedTokenUnaryExponentiation: "Illegal expression. Wrap left hand side or entire exponentiation in parentheses.", - UnexpectedUsingDeclaration: "Using declaration cannot appear in the top level when source type is `script`.", - UnsupportedBind: "Binding should be performed on object property.", - UnsupportedDecoratorExport: "A decorated export must export a class declaration.", - UnsupportedDefaultExport: "Only expressions, functions or classes are allowed as the `default` export.", - UnsupportedImport: "`import` can only be used in `import()` or `import.meta`.", - UnsupportedMetaProperty: ({ - target, - onlyValidPropertyName - }) => `The only valid meta property for ${target} is ${target}.${onlyValidPropertyName}.`, - UnsupportedParameterDecorator: "Decorators cannot be used to decorate parameters.", - UnsupportedPropertyDecorator: "Decorators cannot be used to decorate object literal properties.", - UnsupportedSuper: "'super' can only be used with function calls (i.e. super()) or in property accesses (i.e. super.prop or super[prop]).", - UnterminatedComment: "Unterminated comment.", - UnterminatedRegExp: "Unterminated regular expression.", - UnterminatedString: "Unterminated string constant.", - UnterminatedTemplate: "Unterminated template.", - UsingDeclarationHasBindingPattern: "Using declaration cannot have destructuring patterns.", - VarRedeclaration: ({ - identifierName - }) => `Identifier '${identifierName}' has already been declared.`, - YieldBindingIdentifier: "Can not use 'yield' as identifier inside a generator.", - YieldInParameter: "Yield expression is not allowed in formal parameters.", - ZeroDigitNumericSeparator: "Numeric separator can not be used after leading 0." -}; - -var StrictModeErrors = { - StrictDelete: "Deleting local variable in strict mode.", - StrictEvalArguments: ({ - referenceName - }) => `Assigning to '${referenceName}' in strict mode.`, - StrictEvalArgumentsBinding: ({ - bindingName - }) => `Binding '${bindingName}' in strict mode.`, - StrictFunction: "In strict mode code, functions can only be declared at top level or inside a block.", - StrictNumericEscape: "The only valid numeric escape in strict mode is '\\0'.", - StrictOctalLiteral: "Legacy octal literals are not allowed in strict mode.", - StrictWith: "'with' in strict mode." -}; - -const UnparenthesizedPipeBodyDescriptions = new Set(["ArrowFunctionExpression", "AssignmentExpression", "ConditionalExpression", "YieldExpression"]); -var PipelineOperatorErrors = { - PipeBodyIsTighter: "Unexpected yield after pipeline body; any yield expression acting as Hack-style pipe body must be parenthesized due to its loose operator precedence.", - PipeTopicRequiresHackPipes: 'Topic reference is used, but the pipelineOperator plugin was not passed a "proposal": "hack" or "smart" option.', - PipeTopicUnbound: "Topic reference is unbound; it must be inside a pipe body.", - PipeTopicUnconfiguredToken: ({ - token - }) => `Invalid topic token ${token}. In order to use ${token} as a topic reference, the pipelineOperator plugin must be configured with { "proposal": "hack", "topicToken": "${token}" }.`, - PipeTopicUnused: "Hack-style pipe body does not contain a topic reference; Hack-style pipes must use topic at least once.", - PipeUnparenthesizedBody: ({ - type - }) => `Hack-style pipe body cannot be an unparenthesized ${toNodeDescription({ - type - })}; please wrap it in parentheses.`, - PipelineBodyNoArrow: 'Unexpected arrow "=>" after pipeline body; arrow function in pipeline body must be parenthesized.', - PipelineBodySequenceExpression: "Pipeline body may not be a comma-separated sequence expression.", - PipelineHeadSequenceExpression: "Pipeline head should not be a comma-separated sequence expression.", - PipelineTopicUnused: "Pipeline is in topic style but does not use topic reference.", - PrimaryTopicNotAllowed: "Topic reference was used in a lexical context without topic binding.", - PrimaryTopicRequiresSmartPipeline: 'Topic reference is used, but the pipelineOperator plugin was not passed a "proposal": "hack" or "smart" option.' -}; - -const _excluded$1 = ["toMessage"], - _excluded2$1 = ["message"]; -function toParseErrorConstructor(_ref) { - let { - toMessage - } = _ref, - properties = _objectWithoutPropertiesLoose(_ref, _excluded$1); - return function constructor({ - loc, - details - }) { - return instantiate(SyntaxError, Object.assign({}, properties, { - loc - }), { - clone(overrides = {}) { - const loc = overrides.loc || {}; - return constructor({ - loc: new Position("line" in loc ? loc.line : this.loc.line, "column" in loc ? loc.column : this.loc.column, "index" in loc ? loc.index : this.loc.index), - details: Object.assign({}, this.details, overrides.details) - }); - }, - details: { - value: details, - enumerable: false - }, - message: { - get() { - return `${toMessage(this.details)} (${this.loc.line}:${this.loc.column})`; - }, - set(value) { - Object.defineProperty(this, "message", { - value - }); - } - }, - pos: { - reflect: "loc.index", - enumerable: true - }, - missingPlugin: "missingPlugin" in details && { - reflect: "details.missingPlugin", - enumerable: true - } - }); - }; } -function ParseErrorEnum(argument, syntaxPlugin) { - if (Array.isArray(argument)) { - return parseErrorTemplates => ParseErrorEnum(parseErrorTemplates, argument[0]); - } - const ParseErrorConstructors = {}; - for (const reasonCode of Object.keys(argument)) { - const template = argument[reasonCode]; - const _ref2 = typeof template === "string" ? { - message: () => template - } : typeof template === "function" ? { - message: template - } : template, - { - message - } = _ref2, - rest = _objectWithoutPropertiesLoose(_ref2, _excluded2$1); - const toMessage = typeof message === "string" ? () => message : message; - ParseErrorConstructors[reasonCode] = toParseErrorConstructor(Object.assign({ - code: ParseErrorCode.SyntaxError, - reasonCode, - toMessage - }, syntaxPlugin ? { - syntaxPlugin - } : {}, rest)); - } - return ParseErrorConstructors; +const keywords$1 = new Map(); +function createKeyword(name, options = {}) { + options.keyword = name; + const token = createToken(name, options); + keywords$1.set(name, token); + return token; } -const Errors = Object.assign({}, ParseErrorEnum(ModuleErrors), ParseErrorEnum(StandardErrors), ParseErrorEnum(StrictModeErrors), ParseErrorEnum`pipelineOperator`(PipelineOperatorErrors)); - -const { - defineProperty -} = Object; -const toUnenumerable = (object, key) => defineProperty(object, key, { - enumerable: false, - value: object[key] -}); -function toESTreeLocation(node) { - node.loc.start && toUnenumerable(node.loc.start, "index"); - node.loc.end && toUnenumerable(node.loc.end, "index"); - return node; -} -var estree = (superClass => class ESTreeParserMixin extends superClass { - parse() { - const file = toESTreeLocation(super.parse()); - if (this.options.tokens) { - file.tokens = file.tokens.map(toESTreeLocation); - } - return file; - } - parseRegExpLiteral({ - pattern, - flags - }) { - let regex = null; - try { - regex = new RegExp(pattern, flags); - } catch (e) {} - const node = this.estreeParseLiteral(regex); - node.regex = { - pattern, - flags - }; - return node; - } - parseBigIntLiteral(value) { - let bigInt; - try { - bigInt = BigInt(value); - } catch (_unused) { - bigInt = null; - } - const node = this.estreeParseLiteral(bigInt); - node.bigint = String(node.value || value); - return node; - } - parseDecimalLiteral(value) { - const decimal = null; - const node = this.estreeParseLiteral(decimal); - node.decimal = String(node.value || value); - return node; - } - estreeParseLiteral(value) { - return this.parseLiteral(value, "Literal"); - } - parseStringLiteral(value) { - return this.estreeParseLiteral(value); - } - parseNumericLiteral(value) { - return this.estreeParseLiteral(value); - } - parseNullLiteral() { - return this.estreeParseLiteral(null); - } - parseBooleanLiteral(value) { - return this.estreeParseLiteral(value); - } - directiveToStmt(directive) { - const expression = directive.value; - delete directive.value; - expression.type = "Literal"; - expression.raw = expression.extra.raw; - expression.value = expression.extra.expressionValue; - const stmt = directive; - stmt.type = "ExpressionStatement"; - stmt.expression = expression; - stmt.directive = expression.extra.rawValue; - delete expression.extra; - return stmt; - } - initFunction(node, isAsync) { - super.initFunction(node, isAsync); - node.expression = false; - } - checkDeclaration(node) { - if (node != null && this.isObjectProperty(node)) { - this.checkDeclaration(node.value); - } else { - super.checkDeclaration(node); - } - } - getObjectOrClassMethodParams(method) { - return method.value.params; - } - isValidDirective(stmt) { - var _stmt$expression$extr; - return stmt.type === "ExpressionStatement" && stmt.expression.type === "Literal" && typeof stmt.expression.value === "string" && !((_stmt$expression$extr = stmt.expression.extra) != null && _stmt$expression$extr.parenthesized); - } - parseBlockBody(node, allowDirectives, topLevel, end, afterBlockParse) { - super.parseBlockBody(node, allowDirectives, topLevel, end, afterBlockParse); - const directiveStatements = node.directives.map(d => this.directiveToStmt(d)); - node.body = directiveStatements.concat(node.body); - delete node.directives; - } - pushClassMethod(classBody, method, isGenerator, isAsync, isConstructor, allowsDirectSuper) { - this.parseMethod(method, isGenerator, isAsync, isConstructor, allowsDirectSuper, "ClassMethod", true); - if (method.typeParameters) { - method.value.typeParameters = method.typeParameters; - delete method.typeParameters; - } - classBody.body.push(method); - } - parsePrivateName() { - const node = super.parsePrivateName(); - { - if (!this.getPluginOption("estree", "classFeatures")) { - return node; - } - } - return this.convertPrivateNameToPrivateIdentifier(node); - } - convertPrivateNameToPrivateIdentifier(node) { - const name = super.getPrivateNameSV(node); - node = node; - delete node.id; - node.name = name; - node.type = "PrivateIdentifier"; - return node; - } - isPrivateName(node) { - { - if (!this.getPluginOption("estree", "classFeatures")) { - return super.isPrivateName(node); - } - } - return node.type === "PrivateIdentifier"; - } - getPrivateNameSV(node) { - { - if (!this.getPluginOption("estree", "classFeatures")) { - return super.getPrivateNameSV(node); - } - } - return node.name; - } - parseLiteral(value, type) { - const node = super.parseLiteral(value, type); - node.raw = node.extra.raw; - delete node.extra; - return node; - } - parseFunctionBody(node, allowExpression, isMethod = false) { - super.parseFunctionBody(node, allowExpression, isMethod); - node.expression = node.body.type !== "BlockStatement"; - } - parseMethod(node, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope = false) { - let funcNode = this.startNode(); - funcNode.kind = node.kind; - funcNode = super.parseMethod(funcNode, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope); - funcNode.type = "FunctionExpression"; - delete funcNode.kind; - node.value = funcNode; - if (type === "ClassPrivateMethod") { - node.computed = false; - } - return this.finishNode(node, "MethodDefinition"); - } - parseClassProperty(...args) { - const propertyNode = super.parseClassProperty(...args); - { - if (!this.getPluginOption("estree", "classFeatures")) { - return propertyNode; - } - } - propertyNode.type = "PropertyDefinition"; - return propertyNode; - } - parseClassPrivateProperty(...args) { - const propertyNode = super.parseClassPrivateProperty(...args); - { - if (!this.getPluginOption("estree", "classFeatures")) { - return propertyNode; - } - } - propertyNode.type = "PropertyDefinition"; - propertyNode.computed = false; - return propertyNode; - } - parseObjectMethod(prop, isGenerator, isAsync, isPattern, isAccessor) { - const node = super.parseObjectMethod(prop, isGenerator, isAsync, isPattern, isAccessor); - if (node) { - node.type = "Property"; - if (node.kind === "method") { - node.kind = "init"; - } - node.shorthand = false; - } - return node; - } - parseObjectProperty(prop, startLoc, isPattern, refExpressionErrors) { - const node = super.parseObjectProperty(prop, startLoc, isPattern, refExpressionErrors); - if (node) { - node.kind = "init"; - node.type = "Property"; - } - return node; - } - isValidLVal(type, isUnparenthesizedInAssign, binding) { - return type === "Property" ? "value" : super.isValidLVal(type, isUnparenthesizedInAssign, binding); - } - isAssignable(node, isBinding) { - if (node != null && this.isObjectProperty(node)) { - return this.isAssignable(node.value, isBinding); - } - return super.isAssignable(node, isBinding); - } - toAssignable(node, isLHS = false) { - if (node != null && this.isObjectProperty(node)) { - const { - key, - value - } = node; - if (this.isPrivateName(key)) { - this.classScope.usePrivateName(this.getPrivateNameSV(key), key.loc.start); - } - this.toAssignable(value, isLHS); - } else { - super.toAssignable(node, isLHS); - } - } - toAssignableObjectExpressionProp(prop, isLast, isLHS) { - if (prop.kind === "get" || prop.kind === "set") { - this.raise(Errors.PatternHasAccessor, { - at: prop.key - }); - } else if (prop.method) { - this.raise(Errors.PatternHasMethod, { - at: prop.key - }); - } else { - super.toAssignableObjectExpressionProp(prop, isLast, isLHS); - } - } - finishCallExpression(unfinished, optional) { - const node = super.finishCallExpression(unfinished, optional); - if (node.callee.type === "Import") { - node.type = "ImportExpression"; - node.source = node.arguments[0]; - if (this.hasPlugin("importAssertions")) { - var _node$arguments$; - node.attributes = (_node$arguments$ = node.arguments[1]) != null ? _node$arguments$ : null; - } - delete node.arguments; - delete node.callee; - } - return node; - } - toReferencedArguments(node) { - if (node.type === "ImportExpression") { - return; - } - super.toReferencedArguments(node); - } - parseExport(unfinished, decorators) { - const exportStartLoc = this.state.lastTokStartLoc; - const node = super.parseExport(unfinished, decorators); - switch (node.type) { - case "ExportAllDeclaration": - node.exported = null; - break; - case "ExportNamedDeclaration": - if (node.specifiers.length === 1 && node.specifiers[0].type === "ExportNamespaceSpecifier") { - node.type = "ExportAllDeclaration"; - node.exported = node.specifiers[0].exported; - delete node.specifiers; - } - case "ExportDefaultDeclaration": - { - var _declaration$decorato; - const { - declaration - } = node; - if ((declaration == null ? void 0 : declaration.type) === "ClassDeclaration" && ((_declaration$decorato = declaration.decorators) == null ? void 0 : _declaration$decorato.length) > 0 && declaration.start === node.start) { - this.resetStartLocation(node, exportStartLoc); - } - } - break; - } - return node; - } - parseSubscript(base, startLoc, noCalls, state) { - const node = super.parseSubscript(base, startLoc, noCalls, state); - if (state.optionalChainMember) { - if (node.type === "OptionalMemberExpression" || node.type === "OptionalCallExpression") { - node.type = node.type.substring(8); - } - if (state.stop) { - const chain = this.startNodeAtNode(node); - chain.expression = node; - return this.finishNode(chain, "ChainExpression"); - } - } else if (node.type === "MemberExpression" || node.type === "CallExpression") { - node.optional = false; - } - return node; - } - hasPropertyAsPrivateName(node) { - if (node.type === "ChainExpression") { - node = node.expression; - } - return super.hasPropertyAsPrivateName(node); - } - isObjectProperty(node) { - return node.type === "Property" && node.kind === "init" && !node.method; - } - isObjectMethod(node) { - return node.method || node.kind === "get" || node.kind === "set"; - } - finishNodeAt(node, type, endLoc) { - return toESTreeLocation(super.finishNodeAt(node, type, endLoc)); - } - resetStartLocation(node, startLoc) { - super.resetStartLocation(node, startLoc); - toESTreeLocation(node); - } - resetEndLocation(node, endLoc = this.state.lastTokEndLoc) { - super.resetEndLocation(node, endLoc); - toESTreeLocation(node); - } -}); - -class TokContext { - constructor(token, preserveSpace) { - this.token = void 0; - this.preserveSpace = void 0; - this.token = token; - this.preserveSpace = !!preserveSpace; - } -} -const types = { - brace: new TokContext("{"), - j_oTag: new TokContext("...", true) -}; -{ - types.template = new TokContext("`", true); -} - -const beforeExpr = true; -const startsExpr = true; -const isLoop = true; -const isAssign = true; -const prefix = true; -const postfix = true; -class ExportedTokenType { - constructor(label, conf = {}) { - this.label = void 0; - this.keyword = void 0; - this.beforeExpr = void 0; - this.startsExpr = void 0; - this.rightAssociative = void 0; - this.isLoop = void 0; - this.isAssign = void 0; - this.prefix = void 0; - this.postfix = void 0; - this.binop = void 0; - this.label = label; - this.keyword = conf.keyword; - this.beforeExpr = !!conf.beforeExpr; - this.startsExpr = !!conf.startsExpr; - this.rightAssociative = !!conf.rightAssociative; - this.isLoop = !!conf.isLoop; - this.isAssign = !!conf.isAssign; - this.prefix = !!conf.prefix; - this.postfix = !!conf.postfix; - this.binop = conf.binop != null ? conf.binop : null; - { - this.updateContext = null; - } - } -} -const keywords$1 = new Map(); -function createKeyword(name, options = {}) { - options.keyword = name; - const token = createToken(name, options); - keywords$1.set(name, token); - return token; -} -function createBinop(name, binop) { - return createToken(name, { - beforeExpr, - binop - }); +function createBinop(name, binop) { + return createToken(name, { + beforeExpr, + binop + }); } let tokenTypeCounter = -1; const tokenTypes = []; @@ -1239,85 +515,828 @@ const tt = { startsExpr: true }) }; -function tokenIsIdentifier(token) { - return token >= 93 && token <= 130; -} -function tokenKeywordOrIdentifierIsKeyword(token) { - return token <= 92; -} -function tokenIsKeywordOrIdentifier(token) { - return token >= 58 && token <= 130; -} -function tokenIsLiteralPropertyName(token) { - return token >= 58 && token <= 134; -} -function tokenComesBeforeExpression(token) { - return tokenBeforeExprs[token]; -} -function tokenCanStartExpression(token) { - return tokenStartsExprs[token]; -} -function tokenIsAssignment(token) { - return token >= 29 && token <= 33; -} -function tokenIsFlowInterfaceOrTypeOrOpaque(token) { - return token >= 127 && token <= 129; -} -function tokenIsLoop(token) { - return token >= 90 && token <= 92; -} -function tokenIsKeyword(token) { - return token >= 58 && token <= 92; -} -function tokenIsOperator(token) { - return token >= 39 && token <= 59; -} -function tokenIsPostfix(token) { - return token === 34; -} -function tokenIsPrefix(token) { - return tokenPrefixes[token]; -} -function tokenIsTSTypeOperator(token) { - return token >= 119 && token <= 121; -} -function tokenIsTSDeclarationStart(token) { - return token >= 122 && token <= 128; -} -function tokenLabelName(token) { - return tokenLabels[token]; -} -function tokenOperatorPrecedence(token) { - return tokenBinops[token]; -} -function tokenIsRightAssociative(token) { - return token === 57; +function tokenIsIdentifier(token) { + return token >= 93 && token <= 130; +} +function tokenKeywordOrIdentifierIsKeyword(token) { + return token <= 92; +} +function tokenIsKeywordOrIdentifier(token) { + return token >= 58 && token <= 130; +} +function tokenIsLiteralPropertyName(token) { + return token >= 58 && token <= 134; +} +function tokenComesBeforeExpression(token) { + return tokenBeforeExprs[token]; +} +function tokenCanStartExpression(token) { + return tokenStartsExprs[token]; +} +function tokenIsAssignment(token) { + return token >= 29 && token <= 33; +} +function tokenIsFlowInterfaceOrTypeOrOpaque(token) { + return token >= 127 && token <= 129; +} +function tokenIsLoop(token) { + return token >= 90 && token <= 92; +} +function tokenIsKeyword(token) { + return token >= 58 && token <= 92; +} +function tokenIsOperator(token) { + return token >= 39 && token <= 59; +} +function tokenIsPostfix(token) { + return token === 34; +} +function tokenIsPrefix(token) { + return tokenPrefixes[token]; +} +function tokenIsTSTypeOperator(token) { + return token >= 119 && token <= 121; +} +function tokenIsTSDeclarationStart(token) { + return token >= 122 && token <= 128; +} +function tokenLabelName(token) { + return tokenLabels[token]; +} +function tokenOperatorPrecedence(token) { + return tokenBinops[token]; +} +function tokenIsRightAssociative(token) { + return token === 57; +} +function tokenIsTemplate(token) { + return token >= 24 && token <= 25; +} +function getExportedToken(token) { + return tokenTypes[token]; +} +{ + tokenTypes[8].updateContext = context => { + context.pop(); + }; + tokenTypes[5].updateContext = tokenTypes[7].updateContext = tokenTypes[23].updateContext = context => { + context.push(types.brace); + }; + tokenTypes[22].updateContext = context => { + if (context[context.length - 1] === types.template) { + context.pop(); + } else { + context.push(types.template); + } + }; + tokenTypes[140].updateContext = context => { + context.push(types.j_expr, types.j_oTag); + }; +} +function _objectWithoutPropertiesLoose(source, excluded) { + if (source == null) return {}; + var target = {}; + var sourceKeys = Object.keys(source); + var key, i; + for (i = 0; i < sourceKeys.length; i++) { + key = sourceKeys[i]; + if (excluded.indexOf(key) >= 0) continue; + target[key] = source[key]; + } + return target; +} +class Position { + constructor(line, col, index) { + this.line = void 0; + this.column = void 0; + this.index = void 0; + this.line = line; + this.column = col; + this.index = index; + } +} +class SourceLocation { + constructor(start, end) { + this.start = void 0; + this.end = void 0; + this.filename = void 0; + this.identifierName = void 0; + this.start = start; + this.end = end; + } +} +function createPositionWithColumnOffset(position, columnOffset) { + const { + line, + column, + index + } = position; + return new Position(line, column + columnOffset, index + columnOffset); +} +var ParseErrorCode = { + SyntaxError: "BABEL_PARSER_SYNTAX_ERROR", + SourceTypeModuleError: "BABEL_PARSER_SOURCETYPE_MODULE_REQUIRED" +}; +const reflect = (keys, last = keys.length - 1) => ({ + get() { + return keys.reduce((object, key) => object[key], this); + }, + set(value) { + keys.reduce((item, key, i) => i === last ? item[key] = value : item[key], this); + } +}); +const instantiate = (constructor, properties, descriptors) => Object.keys(descriptors).map(key => [key, descriptors[key]]).filter(([, descriptor]) => !!descriptor).map(([key, descriptor]) => [key, typeof descriptor === "function" ? { + value: descriptor, + enumerable: false +} : typeof descriptor.reflect === "string" ? Object.assign({}, descriptor, reflect(descriptor.reflect.split("."))) : descriptor]).reduce((instance, [key, descriptor]) => Object.defineProperty(instance, key, Object.assign({ + configurable: true +}, descriptor)), Object.assign(new constructor(), properties)); +var ModuleErrors = { + ImportMetaOutsideModule: { + message: `import.meta may appear only with 'sourceType: "module"'`, + code: ParseErrorCode.SourceTypeModuleError + }, + ImportOutsideModule: { + message: `'import' and 'export' may appear only with 'sourceType: "module"'`, + code: ParseErrorCode.SourceTypeModuleError + } +}; +const NodeDescriptions = { + ArrayPattern: "array destructuring pattern", + AssignmentExpression: "assignment expression", + AssignmentPattern: "assignment expression", + ArrowFunctionExpression: "arrow function expression", + ConditionalExpression: "conditional expression", + CatchClause: "catch clause", + ForOfStatement: "for-of statement", + ForInStatement: "for-in statement", + ForStatement: "for-loop", + FormalParameters: "function parameter list", + Identifier: "identifier", + ImportSpecifier: "import specifier", + ImportDefaultSpecifier: "import default specifier", + ImportNamespaceSpecifier: "import namespace specifier", + ObjectPattern: "object destructuring pattern", + ParenthesizedExpression: "parenthesized expression", + RestElement: "rest element", + UpdateExpression: { + true: "prefix operation", + false: "postfix operation" + }, + VariableDeclarator: "variable declaration", + YieldExpression: "yield expression" +}; +const toNodeDescription = ({ + type, + prefix +}) => type === "UpdateExpression" ? NodeDescriptions.UpdateExpression[String(prefix)] : NodeDescriptions[type]; +var StandardErrors = { + AccessorIsGenerator: ({ + kind + }) => `A ${kind}ter cannot be a generator.`, + ArgumentsInClass: "'arguments' is only allowed in functions and class methods.", + AsyncFunctionInSingleStatementContext: "Async functions can only be declared at the top level or inside a block.", + AwaitBindingIdentifier: "Can not use 'await' as identifier inside an async function.", + AwaitBindingIdentifierInStaticBlock: "Can not use 'await' as identifier inside a static block.", + AwaitExpressionFormalParameter: "'await' is not allowed in async function parameters.", + AwaitInUsingBinding: "'await' is not allowed to be used as a name in 'using' declarations.", + AwaitNotInAsyncContext: "'await' is only allowed within async functions and at the top levels of modules.", + AwaitNotInAsyncFunction: "'await' is only allowed within async functions.", + BadGetterArity: "A 'get' accessor must not have any formal parameters.", + BadSetterArity: "A 'set' accessor must have exactly one formal parameter.", + BadSetterRestParameter: "A 'set' accessor function argument must not be a rest parameter.", + ConstructorClassField: "Classes may not have a field named 'constructor'.", + ConstructorClassPrivateField: "Classes may not have a private field named '#constructor'.", + ConstructorIsAccessor: "Class constructor may not be an accessor.", + ConstructorIsAsync: "Constructor can't be an async function.", + ConstructorIsGenerator: "Constructor can't be a generator.", + DeclarationMissingInitializer: ({ + kind + }) => `Missing initializer in ${kind} declaration.`, + DecoratorArgumentsOutsideParentheses: "Decorator arguments must be moved inside parentheses: use '@(decorator(args))' instead of '@(decorator)(args)'.", + DecoratorBeforeExport: "Decorators must be placed *before* the 'export' keyword. Remove the 'decoratorsBeforeExport: true' option to use the 'export @decorator class {}' syntax.", + DecoratorsBeforeAfterExport: "Decorators can be placed *either* before or after the 'export' keyword, but not in both locations at the same time.", + DecoratorConstructor: "Decorators can't be used with a constructor. Did you mean '@dec class { ... }'?", + DecoratorExportClass: "Decorators must be placed *after* the 'export' keyword. Remove the 'decoratorsBeforeExport: false' option to use the '@decorator export class {}' syntax.", + DecoratorSemicolon: "Decorators must not be followed by a semicolon.", + DecoratorStaticBlock: "Decorators can't be used with a static block.", + DeletePrivateField: "Deleting a private field is not allowed.", + DestructureNamedImport: "ES2015 named imports do not destructure. Use another statement for destructuring after the import.", + DuplicateConstructor: "Duplicate constructor in the same class.", + DuplicateDefaultExport: "Only one default export allowed per module.", + DuplicateExport: ({ + exportName + }) => `\`${exportName}\` has already been exported. Exported identifiers must be unique.`, + DuplicateProto: "Redefinition of __proto__ property.", + DuplicateRegExpFlags: "Duplicate regular expression flag.", + ElementAfterRest: "Rest element must be last element.", + EscapedCharNotAnIdentifier: "Invalid Unicode escape.", + ExportBindingIsString: ({ + localName, + exportName + }) => `A string literal cannot be used as an exported binding without \`from\`.\n- Did you mean \`export { '${localName}' as '${exportName}' } from 'some-module'\`?`, + ExportDefaultFromAsIdentifier: "'from' is not allowed as an identifier after 'export default'.", + ForInOfLoopInitializer: ({ + type + }) => `'${type === "ForInStatement" ? "for-in" : "for-of"}' loop variable declaration may not have an initializer.`, + ForInUsing: "For-in loop may not start with 'using' declaration.", + ForOfAsync: "The left-hand side of a for-of loop may not be 'async'.", + ForOfLet: "The left-hand side of a for-of loop may not start with 'let'.", + GeneratorInSingleStatementContext: "Generators can only be declared at the top level or inside a block.", + IllegalBreakContinue: ({ + type + }) => `Unsyntactic ${type === "BreakStatement" ? "break" : "continue"}.`, + IllegalLanguageModeDirective: "Illegal 'use strict' directive in function with non-simple parameter list.", + IllegalReturn: "'return' outside of function.", + ImportBindingIsString: ({ + importName + }) => `A string literal cannot be used as an imported binding.\n- Did you mean \`import { "${importName}" as foo }\`?`, + ImportCallArgumentTrailingComma: "Trailing comma is disallowed inside import(...) arguments.", + ImportCallArity: ({ + maxArgumentCount + }) => `\`import()\` requires exactly ${maxArgumentCount === 1 ? "one argument" : "one or two arguments"}.`, + ImportCallNotNewExpression: "Cannot use new with import(...).", + ImportCallSpreadArgument: "`...` is not allowed in `import()`.", + ImportJSONBindingNotDefault: "A JSON module can only be imported with `default`.", + ImportReflectionHasAssertion: "`import module x` cannot have assertions.", + ImportReflectionNotBinding: 'Only `import module x from "./module"` is valid.', + IncompatibleRegExpUVFlags: "The 'u' and 'v' regular expression flags cannot be enabled at the same time.", + InvalidBigIntLiteral: "Invalid BigIntLiteral.", + InvalidCodePoint: "Code point out of bounds.", + InvalidCoverInitializedName: "Invalid shorthand property initializer.", + InvalidDecimal: "Invalid decimal.", + InvalidDigit: ({ + radix + }) => `Expected number in radix ${radix}.`, + InvalidEscapeSequence: "Bad character escape sequence.", + InvalidEscapeSequenceTemplate: "Invalid escape sequence in template.", + InvalidEscapedReservedWord: ({ + reservedWord + }) => `Escape sequence in keyword ${reservedWord}.`, + InvalidIdentifier: ({ + identifierName + }) => `Invalid identifier ${identifierName}.`, + InvalidLhs: ({ + ancestor + }) => `Invalid left-hand side in ${toNodeDescription(ancestor)}.`, + InvalidLhsBinding: ({ + ancestor + }) => `Binding invalid left-hand side in ${toNodeDescription(ancestor)}.`, + InvalidNumber: "Invalid number.", + InvalidOrMissingExponent: "Floating-point numbers require a valid exponent after the 'e'.", + InvalidOrUnexpectedToken: ({ + unexpected + }) => `Unexpected character '${unexpected}'.`, + InvalidParenthesizedAssignment: "Invalid parenthesized assignment pattern.", + InvalidPrivateFieldResolution: ({ + identifierName + }) => `Private name #${identifierName} is not defined.`, + InvalidPropertyBindingPattern: "Binding member expression.", + InvalidRecordProperty: "Only properties and spread elements are allowed in record definitions.", + InvalidRestAssignmentPattern: "Invalid rest operator's argument.", + LabelRedeclaration: ({ + labelName + }) => `Label '${labelName}' is already declared.`, + LetInLexicalBinding: "'let' is not allowed to be used as a name in 'let' or 'const' declarations.", + LineTerminatorBeforeArrow: "No line break is allowed before '=>'.", + MalformedRegExpFlags: "Invalid regular expression flag.", + MissingClassName: "A class name is required.", + MissingEqInAssignment: "Only '=' operator can be used for specifying default value.", + MissingSemicolon: "Missing semicolon.", + MissingPlugin: ({ + missingPlugin + }) => `This experimental syntax requires enabling the parser plugin: ${missingPlugin.map(name => JSON.stringify(name)).join(", ")}.`, + MissingOneOfPlugins: ({ + missingPlugin + }) => `This experimental syntax requires enabling one of the following parser plugin(s): ${missingPlugin.map(name => JSON.stringify(name)).join(", ")}.`, + MissingUnicodeEscape: "Expecting Unicode escape sequence \\uXXXX.", + MixingCoalesceWithLogical: "Nullish coalescing operator(??) requires parens when mixing with logical operators.", + ModuleAttributeDifferentFromType: "The only accepted module attribute is `type`.", + ModuleAttributeInvalidValue: "Only string literals are allowed as module attribute values.", + ModuleAttributesWithDuplicateKeys: ({ + key + }) => `Duplicate key "${key}" is not allowed in module attributes.`, + ModuleExportNameHasLoneSurrogate: ({ + surrogateCharCode + }) => `An export name cannot include a lone surrogate, found '\\u${surrogateCharCode.toString(16)}'.`, + ModuleExportUndefined: ({ + localName + }) => `Export '${localName}' is not defined.`, + MultipleDefaultsInSwitch: "Multiple default clauses.", + NewlineAfterThrow: "Illegal newline after throw.", + NoCatchOrFinally: "Missing catch or finally clause.", + NumberIdentifier: "Identifier directly after number.", + NumericSeparatorInEscapeSequence: "Numeric separators are not allowed inside unicode escape sequences or hex escape sequences.", + ObsoleteAwaitStar: "'await*' has been removed from the async functions proposal. Use Promise.all() instead.", + OptionalChainingNoNew: "Constructors in/after an Optional Chain are not allowed.", + OptionalChainingNoTemplate: "Tagged Template Literals are not allowed in optionalChain.", + OverrideOnConstructor: "'override' modifier cannot appear on a constructor declaration.", + ParamDupe: "Argument name clash.", + PatternHasAccessor: "Object pattern can't contain getter or setter.", + PatternHasMethod: "Object pattern can't contain methods.", + PrivateInExpectedIn: ({ + identifierName + }) => `Private names are only allowed in property accesses (\`obj.#${identifierName}\`) or in \`in\` expressions (\`#${identifierName} in obj\`).`, + PrivateNameRedeclaration: ({ + identifierName + }) => `Duplicate private name #${identifierName}.`, + RecordExpressionBarIncorrectEndSyntaxType: "Record expressions ending with '|}' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.", + RecordExpressionBarIncorrectStartSyntaxType: "Record expressions starting with '{|' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.", + RecordExpressionHashIncorrectStartSyntaxType: "Record expressions starting with '#{' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'hash'.", + RecordNoProto: "'__proto__' is not allowed in Record expressions.", + RestTrailingComma: "Unexpected trailing comma after rest element.", + SloppyFunction: "In non-strict mode code, functions can only be declared at top level or inside a block.", + SloppyFunctionAnnexB: "In non-strict mode code, functions can only be declared at top level, inside a block, or as the body of an if statement.", + StaticPrototype: "Classes may not have static property named prototype.", + SuperNotAllowed: "`super()` is only valid inside a class constructor of a subclass. Maybe a typo in the method name ('constructor') or not extending another class?", + SuperPrivateField: "Private fields can't be accessed on super.", + TrailingDecorator: "Decorators must be attached to a class element.", + TupleExpressionBarIncorrectEndSyntaxType: "Tuple expressions ending with '|]' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.", + TupleExpressionBarIncorrectStartSyntaxType: "Tuple expressions starting with '[|' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'bar'.", + TupleExpressionHashIncorrectStartSyntaxType: "Tuple expressions starting with '#[' are only allowed when the 'syntaxType' option of the 'recordAndTuple' plugin is set to 'hash'.", + UnexpectedArgumentPlaceholder: "Unexpected argument placeholder.", + UnexpectedAwaitAfterPipelineBody: 'Unexpected "await" after pipeline body; await must have parentheses in minimal proposal.', + UnexpectedDigitAfterHash: "Unexpected digit after hash token.", + UnexpectedImportExport: "'import' and 'export' may only appear at the top level.", + UnexpectedKeyword: ({ + keyword + }) => `Unexpected keyword '${keyword}'.`, + UnexpectedLeadingDecorator: "Leading decorators must be attached to a class declaration.", + UnexpectedLexicalDeclaration: "Lexical declaration cannot appear in a single-statement context.", + UnexpectedNewTarget: "`new.target` can only be used in functions or class properties.", + UnexpectedNumericSeparator: "A numeric separator is only allowed between two digits.", + UnexpectedPrivateField: "Unexpected private name.", + UnexpectedReservedWord: ({ + reservedWord + }) => `Unexpected reserved word '${reservedWord}'.`, + UnexpectedSuper: "'super' is only allowed in object methods and classes.", + UnexpectedToken: ({ + expected, + unexpected + }) => `Unexpected token${unexpected ? ` '${unexpected}'.` : ""}${expected ? `, expected "${expected}"` : ""}`, + UnexpectedTokenUnaryExponentiation: "Illegal expression. Wrap left hand side or entire exponentiation in parentheses.", + UnexpectedUsingDeclaration: "Using declaration cannot appear in the top level when source type is `script`.", + UnsupportedBind: "Binding should be performed on object property.", + UnsupportedDecoratorExport: "A decorated export must export a class declaration.", + UnsupportedDefaultExport: "Only expressions, functions or classes are allowed as the `default` export.", + UnsupportedImport: "`import` can only be used in `import()` or `import.meta`.", + UnsupportedMetaProperty: ({ + target, + onlyValidPropertyName + }) => `The only valid meta property for ${target} is ${target}.${onlyValidPropertyName}.`, + UnsupportedParameterDecorator: "Decorators cannot be used to decorate parameters.", + UnsupportedPropertyDecorator: "Decorators cannot be used to decorate object literal properties.", + UnsupportedSuper: "'super' can only be used with function calls (i.e. super()) or in property accesses (i.e. super.prop or super[prop]).", + UnterminatedComment: "Unterminated comment.", + UnterminatedRegExp: "Unterminated regular expression.", + UnterminatedString: "Unterminated string constant.", + UnterminatedTemplate: "Unterminated template.", + UsingDeclarationHasBindingPattern: "Using declaration cannot have destructuring patterns.", + VarRedeclaration: ({ + identifierName + }) => `Identifier '${identifierName}' has already been declared.`, + YieldBindingIdentifier: "Can not use 'yield' as identifier inside a generator.", + YieldInParameter: "Yield expression is not allowed in formal parameters.", + ZeroDigitNumericSeparator: "Numeric separator can not be used after leading 0." +}; +var StrictModeErrors = { + StrictDelete: "Deleting local variable in strict mode.", + StrictEvalArguments: ({ + referenceName + }) => `Assigning to '${referenceName}' in strict mode.`, + StrictEvalArgumentsBinding: ({ + bindingName + }) => `Binding '${bindingName}' in strict mode.`, + StrictFunction: "In strict mode code, functions can only be declared at top level or inside a block.", + StrictNumericEscape: "The only valid numeric escape in strict mode is '\\0'.", + StrictOctalLiteral: "Legacy octal literals are not allowed in strict mode.", + StrictWith: "'with' in strict mode." +}; +const UnparenthesizedPipeBodyDescriptions = new Set(["ArrowFunctionExpression", "AssignmentExpression", "ConditionalExpression", "YieldExpression"]); +var PipelineOperatorErrors = { + PipeBodyIsTighter: "Unexpected yield after pipeline body; any yield expression acting as Hack-style pipe body must be parenthesized due to its loose operator precedence.", + PipeTopicRequiresHackPipes: 'Topic reference is used, but the pipelineOperator plugin was not passed a "proposal": "hack" or "smart" option.', + PipeTopicUnbound: "Topic reference is unbound; it must be inside a pipe body.", + PipeTopicUnconfiguredToken: ({ + token + }) => `Invalid topic token ${token}. In order to use ${token} as a topic reference, the pipelineOperator plugin must be configured with { "proposal": "hack", "topicToken": "${token}" }.`, + PipeTopicUnused: "Hack-style pipe body does not contain a topic reference; Hack-style pipes must use topic at least once.", + PipeUnparenthesizedBody: ({ + type + }) => `Hack-style pipe body cannot be an unparenthesized ${toNodeDescription({ + type + })}; please wrap it in parentheses.`, + PipelineBodyNoArrow: 'Unexpected arrow "=>" after pipeline body; arrow function in pipeline body must be parenthesized.', + PipelineBodySequenceExpression: "Pipeline body may not be a comma-separated sequence expression.", + PipelineHeadSequenceExpression: "Pipeline head should not be a comma-separated sequence expression.", + PipelineTopicUnused: "Pipeline is in topic style but does not use topic reference.", + PrimaryTopicNotAllowed: "Topic reference was used in a lexical context without topic binding.", + PrimaryTopicRequiresSmartPipeline: 'Topic reference is used, but the pipelineOperator plugin was not passed a "proposal": "hack" or "smart" option.' +}; +const _excluded$1 = ["toMessage"], + _excluded2$1 = ["message"]; +function toParseErrorConstructor(_ref) { + let { + toMessage + } = _ref, + properties = _objectWithoutPropertiesLoose(_ref, _excluded$1); + return function constructor({ + loc, + details + }) { + return instantiate(SyntaxError, Object.assign({}, properties, { + loc + }), { + clone(overrides = {}) { + const loc = overrides.loc || {}; + return constructor({ + loc: new Position("line" in loc ? loc.line : this.loc.line, "column" in loc ? loc.column : this.loc.column, "index" in loc ? loc.index : this.loc.index), + details: Object.assign({}, this.details, overrides.details) + }); + }, + details: { + value: details, + enumerable: false + }, + message: { + get() { + return `${toMessage(this.details)} (${this.loc.line}:${this.loc.column})`; + }, + set(value) { + Object.defineProperty(this, "message", { + value + }); + } + }, + pos: { + reflect: "loc.index", + enumerable: true + }, + missingPlugin: "missingPlugin" in details && { + reflect: "details.missingPlugin", + enumerable: true + } + }); + }; } -function tokenIsTemplate(token) { - return token >= 24 && token <= 25; +function ParseErrorEnum(argument, syntaxPlugin) { + if (Array.isArray(argument)) { + return parseErrorTemplates => ParseErrorEnum(parseErrorTemplates, argument[0]); + } + const ParseErrorConstructors = {}; + for (const reasonCode of Object.keys(argument)) { + const template = argument[reasonCode]; + const _ref2 = typeof template === "string" ? { + message: () => template + } : typeof template === "function" ? { + message: template + } : template, + { + message + } = _ref2, + rest = _objectWithoutPropertiesLoose(_ref2, _excluded2$1); + const toMessage = typeof message === "string" ? () => message : message; + ParseErrorConstructors[reasonCode] = toParseErrorConstructor(Object.assign({ + code: ParseErrorCode.SyntaxError, + reasonCode, + toMessage + }, syntaxPlugin ? { + syntaxPlugin + } : {}, rest)); + } + return ParseErrorConstructors; } -function getExportedToken(token) { - return tokenTypes[token]; +const Errors = Object.assign({}, ParseErrorEnum(ModuleErrors), ParseErrorEnum(StandardErrors), ParseErrorEnum(StrictModeErrors), ParseErrorEnum`pipelineOperator`(PipelineOperatorErrors)); +const { + defineProperty +} = Object; +const toUnenumerable = (object, key) => defineProperty(object, key, { + enumerable: false, + value: object[key] +}); +function toESTreeLocation(node) { + node.loc.start && toUnenumerable(node.loc.start, "index"); + node.loc.end && toUnenumerable(node.loc.end, "index"); + return node; } -{ - tokenTypes[8].updateContext = context => { - context.pop(); - }; - tokenTypes[5].updateContext = tokenTypes[7].updateContext = tokenTypes[23].updateContext = context => { - context.push(types.brace); - }; - tokenTypes[22].updateContext = context => { - if (context[context.length - 1] === types.template) { - context.pop(); +var estree = superClass => class ESTreeParserMixin extends superClass { + parse() { + const file = toESTreeLocation(super.parse()); + if (this.options.tokens) { + file.tokens = file.tokens.map(toESTreeLocation); + } + return file; + } + parseRegExpLiteral({ + pattern, + flags + }) { + let regex = null; + try { + regex = new RegExp(pattern, flags); + } catch (e) {} + const node = this.estreeParseLiteral(regex); + node.regex = { + pattern, + flags + }; + return node; + } + parseBigIntLiteral(value) { + let bigInt; + try { + bigInt = BigInt(value); + } catch (_unused) { + bigInt = null; + } + const node = this.estreeParseLiteral(bigInt); + node.bigint = String(node.value || value); + return node; + } + parseDecimalLiteral(value) { + const decimal = null; + const node = this.estreeParseLiteral(decimal); + node.decimal = String(node.value || value); + return node; + } + estreeParseLiteral(value) { + return this.parseLiteral(value, "Literal"); + } + parseStringLiteral(value) { + return this.estreeParseLiteral(value); + } + parseNumericLiteral(value) { + return this.estreeParseLiteral(value); + } + parseNullLiteral() { + return this.estreeParseLiteral(null); + } + parseBooleanLiteral(value) { + return this.estreeParseLiteral(value); + } + directiveToStmt(directive) { + const expression = directive.value; + delete directive.value; + expression.type = "Literal"; + expression.raw = expression.extra.raw; + expression.value = expression.extra.expressionValue; + const stmt = directive; + stmt.type = "ExpressionStatement"; + stmt.expression = expression; + stmt.directive = expression.extra.rawValue; + delete expression.extra; + return stmt; + } + initFunction(node, isAsync) { + super.initFunction(node, isAsync); + node.expression = false; + } + checkDeclaration(node) { + if (node != null && this.isObjectProperty(node)) { + this.checkDeclaration(node.value); + } else { + super.checkDeclaration(node); + } + } + getObjectOrClassMethodParams(method) { + return method.value.params; + } + isValidDirective(stmt) { + var _stmt$expression$extr; + return stmt.type === "ExpressionStatement" && stmt.expression.type === "Literal" && typeof stmt.expression.value === "string" && !((_stmt$expression$extr = stmt.expression.extra) != null && _stmt$expression$extr.parenthesized); + } + parseBlockBody(node, allowDirectives, topLevel, end, afterBlockParse) { + super.parseBlockBody(node, allowDirectives, topLevel, end, afterBlockParse); + const directiveStatements = node.directives.map(d => this.directiveToStmt(d)); + node.body = directiveStatements.concat(node.body); + delete node.directives; + } + pushClassMethod(classBody, method, isGenerator, isAsync, isConstructor, allowsDirectSuper) { + this.parseMethod(method, isGenerator, isAsync, isConstructor, allowsDirectSuper, "ClassMethod", true); + if (method.typeParameters) { + method.value.typeParameters = method.typeParameters; + delete method.typeParameters; + } + classBody.body.push(method); + } + parsePrivateName() { + const node = super.parsePrivateName(); + { + if (!this.getPluginOption("estree", "classFeatures")) { + return node; + } + } + return this.convertPrivateNameToPrivateIdentifier(node); + } + convertPrivateNameToPrivateIdentifier(node) { + const name = super.getPrivateNameSV(node); + node = node; + delete node.id; + node.name = name; + node.type = "PrivateIdentifier"; + return node; + } + isPrivateName(node) { + { + if (!this.getPluginOption("estree", "classFeatures")) { + return super.isPrivateName(node); + } + } + return node.type === "PrivateIdentifier"; + } + getPrivateNameSV(node) { + { + if (!this.getPluginOption("estree", "classFeatures")) { + return super.getPrivateNameSV(node); + } + } + return node.name; + } + parseLiteral(value, type) { + const node = super.parseLiteral(value, type); + node.raw = node.extra.raw; + delete node.extra; + return node; + } + parseFunctionBody(node, allowExpression, isMethod = false) { + super.parseFunctionBody(node, allowExpression, isMethod); + node.expression = node.body.type !== "BlockStatement"; + } + parseMethod(node, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope = false) { + let funcNode = this.startNode(); + funcNode.kind = node.kind; + funcNode = super.parseMethod(funcNode, isGenerator, isAsync, isConstructor, allowDirectSuper, type, inClassScope); + funcNode.type = "FunctionExpression"; + delete funcNode.kind; + node.value = funcNode; + if (type === "ClassPrivateMethod") { + node.computed = false; + } + return this.finishNode(node, "MethodDefinition"); + } + parseClassProperty(...args) { + const propertyNode = super.parseClassProperty(...args); + { + if (!this.getPluginOption("estree", "classFeatures")) { + return propertyNode; + } + } + propertyNode.type = "PropertyDefinition"; + return propertyNode; + } + parseClassPrivateProperty(...args) { + const propertyNode = super.parseClassPrivateProperty(...args); + { + if (!this.getPluginOption("estree", "classFeatures")) { + return propertyNode; + } + } + propertyNode.type = "PropertyDefinition"; + propertyNode.computed = false; + return propertyNode; + } + parseObjectMethod(prop, isGenerator, isAsync, isPattern, isAccessor) { + const node = super.parseObjectMethod(prop, isGenerator, isAsync, isPattern, isAccessor); + if (node) { + node.type = "Property"; + if (node.kind === "method") { + node.kind = "init"; + } + node.shorthand = false; + } + return node; + } + parseObjectProperty(prop, startLoc, isPattern, refExpressionErrors) { + const node = super.parseObjectProperty(prop, startLoc, isPattern, refExpressionErrors); + if (node) { + node.kind = "init"; + node.type = "Property"; + } + return node; + } + isValidLVal(type, isUnparenthesizedInAssign, binding) { + return type === "Property" ? "value" : super.isValidLVal(type, isUnparenthesizedInAssign, binding); + } + isAssignable(node, isBinding) { + if (node != null && this.isObjectProperty(node)) { + return this.isAssignable(node.value, isBinding); + } + return super.isAssignable(node, isBinding); + } + toAssignable(node, isLHS = false) { + if (node != null && this.isObjectProperty(node)) { + const { + key, + value + } = node; + if (this.isPrivateName(key)) { + this.classScope.usePrivateName(this.getPrivateNameSV(key), key.loc.start); + } + this.toAssignable(value, isLHS); } else { - context.push(types.template); + super.toAssignable(node, isLHS); } - }; - tokenTypes[140].updateContext = context => { - context.push(types.j_expr, types.j_oTag); - }; -} - + } + toAssignableObjectExpressionProp(prop, isLast, isLHS) { + if (prop.kind === "get" || prop.kind === "set") { + this.raise(Errors.PatternHasAccessor, { + at: prop.key + }); + } else if (prop.method) { + this.raise(Errors.PatternHasMethod, { + at: prop.key + }); + } else { + super.toAssignableObjectExpressionProp(prop, isLast, isLHS); + } + } + finishCallExpression(unfinished, optional) { + const node = super.finishCallExpression(unfinished, optional); + if (node.callee.type === "Import") { + node.type = "ImportExpression"; + node.source = node.arguments[0]; + if (this.hasPlugin("importAssertions")) { + var _node$arguments$; + node.attributes = (_node$arguments$ = node.arguments[1]) != null ? _node$arguments$ : null; + } + delete node.arguments; + delete node.callee; + } + return node; + } + toReferencedArguments(node) { + if (node.type === "ImportExpression") { + return; + } + super.toReferencedArguments(node); + } + parseExport(unfinished, decorators) { + const exportStartLoc = this.state.lastTokStartLoc; + const node = super.parseExport(unfinished, decorators); + switch (node.type) { + case "ExportAllDeclaration": + node.exported = null; + break; + case "ExportNamedDeclaration": + if (node.specifiers.length === 1 && node.specifiers[0].type === "ExportNamespaceSpecifier") { + node.type = "ExportAllDeclaration"; + node.exported = node.specifiers[0].exported; + delete node.specifiers; + } + case "ExportDefaultDeclaration": + { + var _declaration$decorato; + const { + declaration + } = node; + if ((declaration == null ? void 0 : declaration.type) === "ClassDeclaration" && ((_declaration$decorato = declaration.decorators) == null ? void 0 : _declaration$decorato.length) > 0 && declaration.start === node.start) { + this.resetStartLocation(node, exportStartLoc); + } + } + break; + } + return node; + } + parseSubscript(base, startLoc, noCalls, state) { + const node = super.parseSubscript(base, startLoc, noCalls, state); + if (state.optionalChainMember) { + if (node.type === "OptionalMemberExpression" || node.type === "OptionalCallExpression") { + node.type = node.type.substring(8); + } + if (state.stop) { + const chain = this.startNodeAtNode(node); + chain.expression = node; + return this.finishNode(chain, "ChainExpression"); + } + } else if (node.type === "MemberExpression" || node.type === "CallExpression") { + node.optional = false; + } + return node; + } + hasPropertyAsPrivateName(node) { + if (node.type === "ChainExpression") { + node = node.expression; + } + return super.hasPropertyAsPrivateName(node); + } + isObjectProperty(node) { + return node.type === "Property" && node.kind === "init" && !node.method; + } + isObjectMethod(node) { + return node.method || node.kind === "get" || node.kind === "set"; + } + finishNodeAt(node, type, endLoc) { + return toESTreeLocation(super.finishNodeAt(node, type, endLoc)); + } + resetStartLocation(node, startLoc) { + super.resetStartLocation(node, startLoc); + toESTreeLocation(node); + } + resetEndLocation(node, endLoc = this.state.lastTokEndLoc) { + super.resetEndLocation(node, endLoc); + toESTreeLocation(node); + } +}; let 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"; let 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"; const nonASCIIidentifierStart = new RegExp("[" + nonASCIIidentifierStartChars + "]"); @@ -1357,7 +1376,6 @@ function isIdentifierChar(code) { } return isInAstralSet(code, astralIdentifierStartCodes) || isInAstralSet(code, astralIdentifierCodes); } - const reservedWords = { keyword: ["break", "case", "catch", "continue", "debugger", "default", "do", "else", "finally", "for", "function", "if", "return", "switch", "throw", "try", "var", "const", "while", "with", "new", "this", "super", "class", "extends", "export", "import", "null", "true", "false", "in", "instanceof", "typeof", "void", "delete"], strict: ["implements", "interface", "let", "package", "private", "protected", "public", "static", "yield"], @@ -1381,7 +1399,6 @@ function isStrictBindReservedWord(word, inModule) { function isKeyword(word) { return keywords.has(word); } - function isIteratorStart(current, next, next2) { return current === 64 && next === 64 && isIdentifierStart(next2); } @@ -1389,7 +1406,6 @@ const reservedWordLikeSet = new Set(["break", "case", "catch", "continue", "debu function canBeReservedWord(word) { return reservedWordLikeSet.has(word); } - const SCOPE_OTHER = 0b000000000, SCOPE_PROGRAM = 0b000000001, SCOPE_FUNCTION = 0b000000010, @@ -1438,7 +1454,6 @@ const CLASS_ELEMENT_STATIC_GETTER = CLASS_ELEMENT_KIND_GETTER | CLASS_ELEMENT_FL CLASS_ELEMENT_INSTANCE_GETTER = CLASS_ELEMENT_KIND_GETTER, CLASS_ELEMENT_INSTANCE_SETTER = CLASS_ELEMENT_KIND_SETTER, CLASS_ELEMENT_OTHER = 0; - class Scope { constructor(flags) { this.var = new Set(); @@ -1588,7 +1603,6 @@ class ScopeHandler { } } } - class FlowScope extends Scope { constructor(...args) { super(...args); @@ -1622,7 +1636,6 @@ class FlowScopeHandler extends ScopeHandler { } } } - class BaseParser { constructor() { this.sawUnambiguousESM = false; @@ -1650,7 +1663,6 @@ class BaseParser { return (_this$plugins$get = this.plugins.get(plugin)) == null ? void 0 : _this$plugins$get[name]; } } - function setTrailingComments(node, comments) { if (node.trailingComments === undefined) { node.trailingComments = comments; @@ -1816,7 +1828,6 @@ class CommentsParser extends BaseParser { } } } - const lineBreak = /\r\n?|[\n\u2028\u2029]/; const lineBreakG = new RegExp(lineBreak.source, "g"); function isNewLine(code) { @@ -1861,7 +1872,6 @@ function isWhitespace(code) { return false; } } - class State { constructor() { this.strict = void 0; @@ -1932,7 +1942,6 @@ class State { return state; } } - var _isDigit = function isDigit(code) { return code >= 48 && code <= 57; }; @@ -2218,7 +2227,6 @@ function readCodePoint(input, pos, lineStart, curLine, throwOnInvalid, errors) { pos }; } - const _excluded = ["at"], _excluded2 = ["at"]; function buildPosition(pos, lineStart, curLine) { @@ -2665,7 +2673,7 @@ class Tokenizer extends CommentsParser { this.finishOp(37, 2); const lookaheadCh = this.input.codePointAt(this.state.pos); if (lookaheadCh === 94) { - throw this.unexpected(); + this.unexpected(); } } else { this.finishOp(44, 1); @@ -3310,7 +3318,6 @@ class Tokenizer extends CommentsParser { }; } } - class ClassScope { constructor() { this.privateNames = new Set(); @@ -3391,7 +3398,6 @@ class ClassScopeHandler { } } } - const kExpression = 0, kMaybeArrowParameterDeclaration = 1, kMaybeAsyncArrowParameterDeclaration = 2, @@ -3525,7 +3531,6 @@ function newAsyncArrowScope() { function newExpressionScope() { return new ExpressionScope(); } - const PARAM = 0b0000, PARAM_YIELD = 0b0001, PARAM_AWAIT = 0b0010, @@ -3560,7 +3565,6 @@ class ProductionParameterHandler { function functionFlags(isAsync, isGenerator) { return (isAsync ? PARAM_AWAIT : 0) | (isGenerator ? PARAM_YIELD : 0); } - class UtilParser extends Tokenizer { addExtra(node, key, value, enumerable = true) { if (!node) return; @@ -3603,7 +3607,7 @@ class UtilParser extends Tokenizer { at: this.state.startLoc }); } - throw this.unexpected(null, token); + this.unexpected(null, token); } } canInsertSemicolon() { @@ -3780,7 +3784,6 @@ class ExpressionErrors { this.optionalParametersLoc = null; } } - class Node { constructor(parser, pos, loc) { this.type = ""; @@ -3892,7 +3895,6 @@ class NodeUtils extends UtilParser { this.resetStartLocation(node, locationNode.loc.start); } } - const reservedTypes = new Set(["_", "any", "bool", "boolean", "empty", "extends", "false", "interface", "mixed", "null", "number", "static", "string", "true", "typeof", "void"]); const FlowErrors = ParseErrorEnum`flow`({ AmbiguousConditionalArrow: "Ambiguous expression: wrap the arrow functions in parentheses to disambiguate.", @@ -4011,7 +4013,7 @@ function partition(list, test) { return [list1, list2]; } const FLOW_PRAGMA_REGEX = /\*?\s*@((?:no)?flow)\b/; -var flow = (superClass => class FlowParserMixin extends superClass { +var flow = superClass => class FlowParserMixin extends superClass { constructor(...args) { super(...args); this.flowPragma = undefined; @@ -4031,12 +4033,12 @@ var flow = (superClass => class FlowParserMixin extends superClass { this.flowPragma = null; } } - return super.finishToken(type, val); + super.finishToken(type, val); } addComment(comment) { if (this.flowPragma === undefined) { const matches = FLOW_PRAGMA_REGEX.exec(comment.value); - if (!matches) ; else if (matches[1] === "flow") { + if (!matches) ;else if (matches[1] === "flow") { this.flowPragma = "flow"; } else if (matches[1] === "noflow") { this.flowPragma = "noflow"; @@ -4044,7 +4046,7 @@ var flow = (superClass => class FlowParserMixin extends superClass { throw new Error("Unexpected flow pragma"); } } - return super.addComment(comment); + super.addComment(comment); } flowParseTypeInitialiser(tok) { const oldInType = this.state.inType; @@ -4146,7 +4148,7 @@ var flow = (superClass => class FlowParserMixin extends superClass { } else if (this.match(82)) { return this.flowParseDeclareExportDeclaration(node, insideModule); } else { - throw this.unexpected(); + this.unexpected(); } } flowParseDeclareVariable(node) { @@ -4248,7 +4250,7 @@ var flow = (superClass => class FlowParserMixin extends superClass { return node; } } - throw this.unexpected(); + this.unexpected(); } flowParseDeclareModuleExports(node) { this.next(); @@ -4271,10 +4273,10 @@ var flow = (superClass => class FlowParserMixin extends superClass { } flowParseDeclareInterface(node) { this.next(); - this.flowParseInterfaceish(node); + this.flowParseInterfaceish(node, false); return this.finishNode(node, "DeclareInterface"); } - flowParseInterfaceish(node, isClass = false) { + flowParseInterfaceish(node, isClass) { node.id = this.flowParseRestrictedIdentifier(!isClass, true); this.scope.declareName(node.id.name, isClass ? BIND_FUNCTION : BIND_LEXICAL, node.id.loc.start); if (this.match(47)) { @@ -4290,17 +4292,17 @@ var flow = (superClass => class FlowParserMixin extends superClass { node.extends.push(this.flowParseInterfaceExtends()); } while (!isClass && this.eat(12)); } - if (this.isContextual(115)) { - this.next(); - do { - node.mixins.push(this.flowParseInterfaceExtends()); - } while (this.eat(12)); - } - if (this.isContextual(111)) { - this.next(); - do { - node.implements.push(this.flowParseInterfaceExtends()); - } while (this.eat(12)); + if (isClass) { + if (this.eatContextual(115)) { + do { + node.mixins.push(this.flowParseInterfaceExtends()); + } while (this.eat(12)); + } + if (this.eatContextual(111)) { + do { + node.implements.push(this.flowParseInterfaceExtends()); + } while (this.eat(12)); + } } node.body = this.flowParseObjectType({ allowStatic: isClass, @@ -4321,7 +4323,7 @@ var flow = (superClass => class FlowParserMixin extends superClass { return this.finishNode(node, "InterfaceExtends"); } flowParseInterface(node) { - this.flowParseInterfaceish(node); + this.flowParseInterfaceish(node, false); return this.finishNode(node, "InterfaceDeclaration"); } checkNotUnderscore(word) { @@ -4955,7 +4957,8 @@ var flow = (superClass => class FlowParserMixin extends superClass { at: this.state.startLoc }); } - throw this.unexpected(); + this.unexpected(); + return; case 132: return this.parseLiteral(this.state.value, "NumberLiteralTypeAnnotation"); case 133: @@ -4986,7 +4989,7 @@ var flow = (superClass => class FlowParserMixin extends superClass { return this.flowIdentToTypeAnnotation(startLoc, node, this.parseIdentifier()); } } - throw this.unexpected(); + this.unexpected(); } flowParsePostfixType() { const startLoc = this.state.startLoc; @@ -5107,9 +5110,10 @@ var flow = (superClass => class FlowParserMixin extends superClass { } parseFunctionBody(node, allowExpressionBody, isMethod = false) { if (allowExpressionBody) { - return this.forwardNoArrowParamsConversionAt(node, () => super.parseFunctionBody(node, true, isMethod)); + this.forwardNoArrowParamsConversionAt(node, () => super.parseFunctionBody(node, true, isMethod)); + return; } - return super.parseFunctionBody(node, false, isMethod); + super.parseFunctionBody(node, false, isMethod); } parseFunctionBodyAndFinish(node, type, isMethod = false) { if (this.match(14)) { @@ -5412,19 +5416,20 @@ var flow = (superClass => class FlowParserMixin extends superClass { getTokenFromCode(code) { const next = this.input.charCodeAt(this.state.pos + 1); if (code === 123 && next === 124) { - return this.finishOp(6, 2); + this.finishOp(6, 2); } else if (this.state.inType && (code === 62 || code === 60)) { - return this.finishOp(code === 62 ? 48 : 47, 1); + this.finishOp(code === 62 ? 48 : 47, 1); } else if (this.state.inType && code === 63) { if (next === 46) { - return this.finishOp(18, 2); + this.finishOp(18, 2); + } else { + this.finishOp(17, 1); } - return this.finishOp(17, 1); } else if (isIteratorStart(code, next, this.input.charCodeAt(this.state.pos + 2))) { this.state.pos += 2; - return this.readIterator(); + this.readIterator(); } else { - return super.getTokenFromCode(code); + super.getTokenFromCode(code); } } isAssignable(node, isBinding) { @@ -5854,7 +5859,7 @@ var flow = (superClass => class FlowParserMixin extends superClass { }); } } - return super.checkParams(node, allowDuplicates, isArrowFunction, strictModeChanged); + super.checkParams(node, allowDuplicates, isArrowFunction, strictModeChanged); } parseParenAndDistinguishExpression(canBeArrow) { return super.parseParenAndDistinguishExpression(canBeArrow && this.state.noArrowAt.indexOf(this.state.start) === -1); @@ -6365,8 +6370,7 @@ var flow = (superClass => class FlowParserMixin extends superClass { maybeUnwrapTypeCastExpression(node) { return node.type === "TypeCastExpression" ? node.expression : node; } -}); - +}; const entities = { __proto__: null, quot: "\u0022", @@ -6623,7 +6627,6 @@ const entities = { hearts: "\u2665", diams: "\u2666" }; - const JsxErrors = ParseErrorEnum`jsx`({ AttributeIsEmpty: "JSX attributes must only be assigned a non-empty expression.", MissingClosingTagElement: ({ @@ -6654,7 +6657,7 @@ function getQualifiedJSXName(object) { } throw new Error("Node had unexpected type: " + object.type); } -var jsx = (superClass => class JSXParserMixin extends superClass { +var jsx = superClass => class JSXParserMixin extends superClass { jsxReadToken() { let out = ""; let chunkStart = this.state.pos; @@ -6671,12 +6674,15 @@ var jsx = (superClass => class JSXParserMixin extends superClass { if (this.state.pos === this.state.start) { if (ch === 60 && this.state.canStartJSXElement) { ++this.state.pos; - return this.finishToken(140); + this.finishToken(140); + } else { + super.getTokenFromCode(ch); } - return super.getTokenFromCode(ch); + return; } out += this.input.slice(chunkStart, this.state.pos); - return this.finishToken(139, out); + this.finishToken(139, out); + return; case 38: out += this.input.slice(chunkStart, this.state.pos); out += this.jsxReadEntity(); @@ -6733,7 +6739,7 @@ var jsx = (superClass => class JSXParserMixin extends superClass { } } out += this.input.slice(chunkStart, this.state.pos++); - return this.finishToken(131, out); + this.finishToken(131, out); } jsxReadEntity() { const startPos = ++this.state.pos; @@ -6773,7 +6779,7 @@ var jsx = (superClass => class JSXParserMixin extends superClass { do { ch = this.input.charCodeAt(++this.state.pos); } while (isIdentifierChar(ch) || ch === 45); - return this.finishToken(138, this.input.slice(start, this.state.pos)); + this.finishToken(138, this.input.slice(start, this.state.pos)); } jsxParseIdentifier() { const node = this.startNode(); @@ -6933,7 +6939,7 @@ var jsx = (superClass => class JSXParserMixin extends superClass { break; } default: - throw this.unexpected(); + this.unexpected(); } } if (isFragment(openingElement) && !isFragment(closingElement) && closingElement !== null) { @@ -6999,25 +7005,30 @@ var jsx = (superClass => class JSXParserMixin extends superClass { getTokenFromCode(code) { const context = this.curContext(); if (context === types.j_expr) { - return this.jsxReadToken(); + this.jsxReadToken(); + return; } if (context === types.j_oTag || context === types.j_cTag) { if (isIdentifierStart(code)) { - return this.jsxReadWord(); + this.jsxReadWord(); + return; } if (code === 62) { ++this.state.pos; - return this.finishToken(141); + this.finishToken(141); + return; } if ((code === 34 || code === 39) && context === types.j_oTag) { - return this.jsxReadString(code); + this.jsxReadString(code); + return; } } if (code === 60 && this.state.canStartJSXElement && this.input.charCodeAt(this.state.pos + 1) !== 33) { ++this.state.pos; - return this.finishToken(140); + this.finishToken(140); + return; } - return super.getTokenFromCode(code); + super.getTokenFromCode(code); } updateContext(prevType) { const { @@ -7042,8 +7053,7 @@ var jsx = (superClass => class JSXParserMixin extends superClass { this.state.canStartJSXElement = tokenComesBeforeExpression(type); } } -}); - +}; class TypeScriptScope extends Scope { constructor(...args) { super(...args); @@ -7151,16 +7161,10 @@ class TypeScriptScopeHandler extends ScopeHandler { super.checkLocalExport(id); } } - const getOwn$1 = (object, key) => Object.hasOwnProperty.call(object, key) && object[key]; const unwrapParenthesizedExpression = node => { return node.type === "ParenthesizedExpression" ? unwrapParenthesizedExpression(node.expression) : node; }; -var ParseBindingListFlags = { - ALLOW_EMPTY: 1, - IS_FUNCTION_PARAMS: 2, - IS_CONSTRUCTOR_PARAMS: 4 -}; class LValParser extends NodeUtils { toAssignable(node, isLHS = false) { var _node$extra, _node$extra3; @@ -7345,7 +7349,7 @@ class LValParser extends NodeUtils { { const node = this.startNode(); this.next(); - node.elements = this.parseBindingList(3, 93, ParseBindingListFlags.ALLOW_EMPTY); + node.elements = this.parseBindingList(3, 93, 1); return this.finishNode(node, "ArrayPattern"); } case 5: @@ -7354,7 +7358,7 @@ class LValParser extends NodeUtils { return this.parseIdentifier(); } parseBindingList(close, closeCharCode, flags) { - const allowEmpty = flags & ParseBindingListFlags.ALLOW_EMPTY; + const allowEmpty = flags & 1; const elts = []; let first = true; while (!this.eat(close)) { @@ -7557,7 +7561,6 @@ class LValParser extends NodeUtils { return true; } } - const getOwn = (object, key) => Object.hasOwnProperty.call(object, key) && object[key]; function nonNull(x) { if (x == null) { @@ -7649,6 +7652,7 @@ const TSErrors = ParseErrorEnum`typescript`({ typeParameterName }) => `Single type parameter ${typeParameterName} should have a trailing comma. Example usage: <${typeParameterName},>.`, StaticBlockCannotHaveModifier: "Static class blocks cannot have any modifier.", + TupleOptionalAfterType: "A labeled tuple optional element must be declared using a question mark after the name and before the colon (`name?: type`), rather than after the type (`name: type?`).", TypeAnnotationAfterAssign: "Type annotations must come before default assignments, e.g. instead of `age = 25: number` use `age: number = 25`.", TypeImportCannotSpecifyDefaultAndNamed: "A type-only import can specify a default import or named bindings, but not both.", TypeModifierIsUsedInTypeExports: "The 'type' modifier cannot be used on a named export when 'export type' is used on its export statement.", @@ -7695,7 +7699,7 @@ function tsIsAccessModifier(modifier) { function tsIsVarianceAnnotations(modifier) { return modifier === "in" || modifier === "out"; } -var typescript = (superClass => class TypeScriptParserMixin extends superClass { +var typescript = superClass => class TypeScriptParserMixin extends superClass { constructor(...args) { super(...args); this.tsParseInOutModifiers = this.tsParseModifiers.bind(this, { @@ -7827,7 +7831,6 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { case "TypeParametersOrArguments": return this.match(48); } - throw new Error("Unreachable"); } tsParseList(kind, parseElement) { const result = []; @@ -7996,7 +7999,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { } } tsParseBindingListForSignature() { - return super.parseBindingList(11, 41, ParseBindingListFlags.IS_FUNCTION_PARAMS).map(pattern => { + return super.parseBindingList(11, 41, 2).map(pattern => { if (pattern.type !== "Identifier" && pattern.type !== "RestElement" && pattern.type !== "ObjectPattern" && pattern.type !== "ArrayPattern") { this.raise(TSErrors.UnsupportedSignatureParameterKind, { at: pattern, @@ -8237,21 +8240,61 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { startLoc } = this.state; const rest = this.eat(21); - let type = this.tsParseType(); - const optional = this.eat(17); - const labeled = this.eat(14); + let labeled; + let label; + let optional; + let type; + const isWord = tokenIsKeywordOrIdentifier(this.state.type); + const chAfterWord = isWord ? this.lookaheadCharCode() : null; + if (chAfterWord === 58) { + labeled = true; + optional = false; + label = this.parseIdentifier(true); + this.expect(14); + type = this.tsParseType(); + } else if (chAfterWord === 63) { + optional = true; + const startLoc = this.state.startLoc; + const wordName = this.state.value; + const typeOrLabel = this.tsParseNonArrayType(); + if (this.lookaheadCharCode() === 58) { + labeled = true; + label = this.createIdentifier(this.startNodeAt(startLoc), wordName); + this.expect(17); + this.expect(14); + type = this.tsParseType(); + } else { + labeled = false; + type = typeOrLabel; + this.expect(17); + } + } else { + type = this.tsParseType(); + optional = this.eat(17); + labeled = this.eat(14); + } if (labeled) { - const labeledNode = this.startNodeAtNode(type); - labeledNode.optional = optional; - if (type.type === "TSTypeReference" && !type.typeParameters && type.typeName.type === "Identifier") { - labeledNode.label = type.typeName; + let labeledNode; + if (label) { + labeledNode = this.startNodeAtNode(label); + labeledNode.optional = optional; + labeledNode.label = label; + labeledNode.elementType = type; + if (this.eat(17)) { + labeledNode.optional = true; + this.raise(TSErrors.TupleOptionalAfterType, { + at: this.state.lastTokStartLoc + }); + } } else { + labeledNode = this.startNodeAtNode(type); + labeledNode.optional = optional; this.raise(TSErrors.InvalidTupleMemberLabel, { at: type }); labeledNode.label = type; + labeledNode.elementType = this.tsParseType(); } - labeledNode.elementType = this.tsParseType(); type = this.finishNode(labeledNode, "TSNamedTupleMember"); } else if (optional) { const optionalTypeNode = this.startNodeAtNode(type); @@ -8293,7 +8336,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { case 86: return super.parseExprAtom(); default: - throw this.unexpected(); + this.unexpected(); } })(); return this.finishNode(node, "TSLiteralType"); @@ -8328,7 +8371,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { const node = this.startNode(); const nextToken = this.lookahead(); if (nextToken.type !== 132 && nextToken.type !== 133) { - throw this.unexpected(); + this.unexpected(); } node.literal = this.parseMaybeUnary(); return this.finishNode(node, "TSLiteralType"); @@ -8365,7 +8408,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { } } } - throw this.unexpected(); + this.unexpected(); } tsParseArrayTypeOrHigher() { let type = this.tsParseNonArrayType(); @@ -8477,7 +8520,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { } = this.state; const previousErrorCount = errors.length; try { - super.parseBindingList(3, 93, ParseBindingListFlags.ALLOW_EMPTY); + super.parseBindingList(3, 93, 1); return errors.length === previousErrorCount; } catch (_unused2) { return false; @@ -8824,7 +8867,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { this.expectContextual(117); this.expect(10); if (!this.match(131)) { - throw this.unexpected(); + this.unexpected(); } node.expression = super.parseExprAtom(); this.expect(11); @@ -9024,7 +9067,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { const accessibility = modified.accessibility; const override = modified.override; const readonly = modified.readonly; - if (!(flags & ParseBindingListFlags.IS_CONSTRUCTOR_PARAMS) && (accessibility || readonly || override)) { + if (!(flags & 4) && (accessibility || readonly || override)) { this.raise(TSErrors.UnexpectedParameterModifier, { at: startLoc }); @@ -9721,7 +9764,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { return super.parseArrow(node); } parseAssignableListItemTypes(param, flags) { - if (!(flags & ParseBindingListFlags.IS_FUNCTION_PARAMS)) return param; + if (!(flags & 2)) return param; if (this.eat(17)) { param.optional = true; } @@ -9849,13 +9892,15 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { getTokenFromCode(code) { if (this.state.inType) { if (code === 62) { - return this.finishOp(48, 1); + this.finishOp(48, 1); + return; } if (code === 60) { - return this.finishOp(47, 1); + this.finishOp(47, 1); + return; } } - return super.getTokenFromCode(code); + super.getTokenFromCode(code); } reScan_lt_gt() { const { @@ -10072,7 +10117,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { this.checkIdentifier(node[rightOfAsKey], hasTypeSpecifier ? BIND_TS_TYPE_IMPORT : BIND_FLAGS_TS_IMPORT); } } -}); +}; function isPossiblyLiteralEnum(expression) { if (expression.type !== "MemberExpression") return false; const { @@ -10142,12 +10187,11 @@ function isUncomputedMemberExpressionChain(expression) { if (expression.computed) return false; return isUncomputedMemberExpressionChain(expression.object); } - const PlaceholderErrors = ParseErrorEnum`placeholders`({ ClassNameIsRequired: "A class name is required.", UnexpectedSpace: "Unexpected space in placeholder." }); -var placeholders = (superClass => class PlaceholdersParserMixin extends superClass { +var placeholders = superClass => class PlaceholdersParserMixin extends superClass { parsePlaceholder(expectedNode) { if (this.match(142)) { const node = this.startNode(); @@ -10166,9 +10210,10 @@ var placeholders = (superClass => class PlaceholdersParserMixin extends superCla } getTokenFromCode(code) { if (code === 37 && this.input.charCodeAt(this.state.pos + 1) === 37) { - return this.finishOp(142, 2); + this.finishOp(142, 2); + } else { + super.getTokenFromCode(code); } - return super.getTokenFromCode(code); } parseExprAtom(refExpressionErrors) { return this.parsePlaceholder("Expression") || super.parseExprAtom(refExpressionErrors); @@ -10326,9 +10371,8 @@ var placeholders = (superClass => class PlaceholdersParserMixin extends superCla }); } } -}); - -var v8intrinsic = (superClass => class V8IntrinsicMixin extends superClass { +}; +var v8intrinsic = superClass => class V8IntrinsicMixin extends superClass { parseV8Intrinsic() { if (this.match(54)) { const v8IntrinsicStartLoc = this.state.startLoc; @@ -10348,8 +10392,7 @@ var v8intrinsic = (superClass => class V8IntrinsicMixin extends superClass { parseExprAtom(refExpressionErrors) { return this.parseV8Intrinsic() || super.parseExprAtom(refExpressionErrors); } -}); - +}; function hasPlugin(plugins, expectedConfig) { const [expectedName, expectedOptions] = typeof expectedConfig === "string" ? [expectedConfig, {}] : expectedConfig; const expectedKeys = Object.keys(expectedOptions); @@ -10464,38 +10507,6 @@ const mixinPlugins = { placeholders }; const mixinPluginNames = Object.keys(mixinPlugins); - -const defaultOptions = { - sourceType: "script", - sourceFilename: undefined, - startColumn: 0, - startLine: 1, - allowAwaitOutsideFunction: false, - allowReturnOutsideFunction: false, - allowNewTargetOutsideFunction: false, - allowImportExportEverywhere: false, - allowSuperOutsideMethod: false, - allowUndeclaredExports: false, - plugins: [], - strictMode: null, - ranges: false, - tokens: false, - createParenthesizedExpressions: false, - errorRecovery: false, - attachComment: true, - annexB: true -}; -function getOptions(opts) { - if (opts && opts.annexB != null && opts.annexB !== false) { - throw new Error("The `annexB` option can only be set to `false`."); - } - const options = {}; - for (const key of Object.keys(defaultOptions)) { - options[key] = opts && opts[key] != null ? opts[key] : defaultOptions[key]; - } - return options; -} - class ExpressionParser extends LValParser { checkProto(prop, isRecord, protoRef, refExpressionErrors) { if (prop.type === "SpreadElement" || this.isObjectMethod(prop) || prop.computed || prop.shorthand) { @@ -11198,19 +11209,19 @@ class ExpressionParser extends LValParser { const pipeProposal = this.getPluginOption("pipelineOperator", "proposal"); if (pipeProposal) { return this.parseTopicReference(pipeProposal); - } else { - throw this.unexpected(); } + this.unexpected(); + break; } case 47: { const lookaheadCh = this.input.codePointAt(this.nextTokenStart()); if (isIdentifierStart(lookaheadCh) || lookaheadCh === 62) { this.expectOnePlugin(["jsx", "flow", "typescript"]); - break; } else { - throw this.unexpected(); + this.unexpected(); } + break; } default: if (tokenIsIdentifier(type)) { @@ -11245,7 +11256,7 @@ class ExpressionParser extends LValParser { } return id; } else { - throw this.unexpected(); + this.unexpected(); } } } @@ -11259,7 +11270,7 @@ class ExpressionParser extends LValParser { this.state.endLoc = createPositionWithColumnOffset(this.state.endLoc, -1); return this.parseTopicReference(pipeProposal); } else { - throw this.unexpected(); + this.unexpected(); } } parseTopicReference(pipeProposal) { @@ -11831,7 +11842,7 @@ class ExpressionParser extends LValParser { break; } default: - throw this.unexpected(); + this.unexpected(); } } prop.key = key; @@ -12016,7 +12027,7 @@ class ExpressionParser extends LValParser { if (tokenIsKeywordOrIdentifier(type)) { name = this.state.value; } else { - throw this.unexpected(); + this.unexpected(); } const tokenIsKeyword = tokenKeywordOrIdentifierIsKeyword(type); if (liberal) { @@ -12294,27 +12305,12 @@ class ExpressionParser extends LValParser { } parsePropertyNamePrefixOperator(prop) {} } - const loopLabel = { kind: "loop" }, switchLabel = { kind: "switch" }; -var ParseFunctionFlag = { - Expression: 0, - Declaration: 1, - HangingDeclaration: 2, - NullableId: 4, - Async: 8 -}; -var ParseStatementFlag = { - StatementOnly: 0, - AllowImportExport: 1, - AllowDeclaration: 2, - AllowFunctionDeclaration: 4, - AllowLabeledFunction: 8 -}; const loneSurrogate = /[\uD800-\uDFFF]/u; const keywordRelationalOperator = /in(?:stanceof)?/y; function babel7CompatTokens(tokens, input) { @@ -12522,23 +12518,23 @@ class StatementParser extends ExpressionParser { } } parseModuleItem() { - return this.parseStatementLike(ParseStatementFlag.AllowImportExport | ParseStatementFlag.AllowDeclaration | ParseStatementFlag.AllowFunctionDeclaration | ParseStatementFlag.AllowLabeledFunction); + return this.parseStatementLike(1 | 2 | 4 | 8); } parseStatementListItem() { - return this.parseStatementLike(ParseStatementFlag.AllowDeclaration | ParseStatementFlag.AllowFunctionDeclaration | (!this.options.annexB || this.state.strict ? 0 : ParseStatementFlag.AllowLabeledFunction)); + return this.parseStatementLike(2 | 4 | (!this.options.annexB || this.state.strict ? 0 : 8)); } parseStatementOrSloppyAnnexBFunctionDeclaration(allowLabeledFunction = false) { - let flags = ParseStatementFlag.StatementOnly; + let flags = 0; if (this.options.annexB && !this.state.strict) { - flags |= ParseStatementFlag.AllowFunctionDeclaration; + flags |= 4; if (allowLabeledFunction) { - flags |= ParseStatementFlag.AllowLabeledFunction; + flags |= 8; } } return this.parseStatementLike(flags); } parseStatement() { - return this.parseStatementLike(ParseStatementFlag.StatementOnly); + return this.parseStatementLike(0); } parseStatementLike(flags) { let decorators = null; @@ -12550,9 +12546,9 @@ class StatementParser extends ExpressionParser { parseStatementContent(flags, decorators) { const starttype = this.state.type; const node = this.startNode(); - const allowDeclaration = !!(flags & ParseStatementFlag.AllowDeclaration); - const allowFunctionDeclaration = !!(flags & ParseStatementFlag.AllowFunctionDeclaration); - const topLevel = flags & ParseStatementFlag.AllowImportExport; + const allowDeclaration = !!(flags & 2); + const allowFunctionDeclaration = !!(flags & 4); + const topLevel = flags & 1; switch (starttype) { case 60: return this.parseBreakContinueStatement(node, true); @@ -12912,7 +12908,7 @@ class StatementParser extends ExpressionParser { } parseFunctionStatement(node, isAsync, isHangingDeclaration) { this.next(); - return this.parseFunction(node, ParseFunctionFlag.Declaration | (isHangingDeclaration ? ParseFunctionFlag.HangingDeclaration : 0) | (isAsync ? ParseFunctionFlag.Async : 0)); + return this.parseFunction(node, 1 | (isHangingDeclaration ? 2 : 0) | (isAsync ? 8 : 0)); } parseIfStatement(node) { this.next(); @@ -13079,7 +13075,7 @@ class StatementParser extends ExpressionParser { kind: kind, statementStart: this.state.start }); - node.body = flags & ParseStatementFlag.AllowLabeledFunction ? this.parseStatementOrSloppyAnnexBFunctionDeclaration(true) : this.parseStatement(); + node.body = flags & 8 ? this.parseStatementOrSloppyAnnexBFunctionDeclaration(true) : this.parseStatement(); this.state.labels.pop(); node.label = expr; return this.finishNode(node, "LabeledStatement"); @@ -13224,13 +13220,13 @@ class StatementParser extends ExpressionParser { decl.id = id; } parseAsyncFunctionExpression(node) { - return this.parseFunction(node, ParseFunctionFlag.Async); + return this.parseFunction(node, 8); } - parseFunction(node, flags = ParseFunctionFlag.Expression) { - const hangingDeclaration = flags & ParseFunctionFlag.HangingDeclaration; - const isDeclaration = !!(flags & ParseFunctionFlag.Declaration); - const requireId = isDeclaration && !(flags & ParseFunctionFlag.NullableId); - const isAsync = !!(flags & ParseFunctionFlag.Async); + parseFunction(node, flags = 0) { + const hangingDeclaration = flags & 2; + const isDeclaration = !!(flags & 1); + const requireId = isDeclaration && !(flags & 4); + const isAsync = !!(flags & 8); this.initFunction(node, isAsync); if (this.match(55)) { if (hangingDeclaration) { @@ -13269,7 +13265,7 @@ class StatementParser extends ExpressionParser { parseFunctionParams(node, isConstructor) { this.expect(10); this.expressionScope.enter(newParameterDeclarationScope()); - node.params = this.parseBindingList(11, 41, ParseBindingListFlags.IS_FUNCTION_PARAMS | (isConstructor ? ParseBindingListFlags.IS_CONSTRUCTOR_PARAMS : 0)); + node.params = this.parseBindingList(11, 41, 2 | (isConstructor ? 4 : 0)); this.expressionScope.exit(); } registerFunctionStatementId(node) { @@ -13632,10 +13628,10 @@ class StatementParser extends ExpressionParser { } const hasSpecifiers = this.maybeParseExportNamedSpecifiers(node); if (hasDefault && parseAfterDefault && !hasStar && !hasSpecifiers) { - throw this.unexpected(null, 5); + this.unexpected(null, 5); } if (hasNamespace && parseAfterNamespace) { - throw this.unexpected(null, 97); + this.unexpected(null, 97); } let hasDeclaration; if (isFromRequired || hasSpecifiers) { @@ -13676,7 +13672,7 @@ class StatementParser extends ExpressionParser { this.checkExport(node2, true, true); return this.finishNode(node2, "ExportDefaultDeclaration"); } - throw this.unexpected(null, 5); + this.unexpected(null, 5); } eatExportStar(node) { return this.eat(55); @@ -13737,11 +13733,11 @@ class StatementParser extends ExpressionParser { const expr = this.startNode(); if (this.match(68)) { this.next(); - return this.parseFunction(expr, ParseFunctionFlag.Declaration | ParseFunctionFlag.NullableId); + return this.parseFunction(expr, 1 | 4); } else if (this.isAsyncFunction()) { this.next(); this.next(); - return this.parseFunction(expr, ParseFunctionFlag.Declaration | ParseFunctionFlag.NullableId | ParseFunctionFlag.Async); + return this.parseFunction(expr, 1 | 4 | 8); } if (this.match(80)) { return this.parseClass(expr, true, true); @@ -14228,7 +14224,6 @@ class StatementParser extends ExpressionParser { return param.type === "Identifier" && param.name === "this"; } } - class Parser extends StatementParser { constructor(options, input) { options = getOptions(options); @@ -14260,7 +14255,6 @@ function pluginsMap(plugins) { } return pluginMap; } - function parse(input, options) { var _options; if (((_options = options) == null ? void 0 : _options.sourceType) === "unambiguous") { @@ -14329,7 +14323,6 @@ function getParserClass(pluginsFromOptions) { } return cls; } - exports.parse = parse; exports.parseExpression = parseExpression; exports.tokTypes = tokTypes; diff --git a/tools/node_modules/eslint/node_modules/@babel/parser/package.json b/tools/node_modules/eslint/node_modules/@babel/parser/package.json index f8a3a8e3d6ba43..10b4d042e5e6be 100644 --- a/tools/node_modules/eslint/node_modules/@babel/parser/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/parser/package.json @@ -1,6 +1,6 @@ { "name": "@babel/parser", - "version": "7.21.2", + "version": "7.21.3", "description": "A JavaScript parser", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-parser", diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/index.js index 0f45abc63d4ae6..522d541e02a2e6 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/index.js @@ -54,7 +54,8 @@ traverse.visitors = visitors; traverse.verify = visitors.verify; traverse.explode = visitors.explode; traverse.cheap = function (node, enter) { - return traverseFast(node, enter); + traverseFast(node, enter); + return; }; traverse.node = function (node, opts, scope, state, path, skipKeys) { (0, _traverseNode.traverseNode)(node, opts, scope, state, path, skipKeys); diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/context.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/context.js index e62e9523b61c23..a184ae62d44d51 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/context.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/context.js @@ -147,13 +147,15 @@ function _resyncKey() { if (Array.isArray(this.container)) { for (let i = 0; i < this.container.length; i++) { if (this.container[i] === this.node) { - return this.setKey(i); + this.setKey(i); + return; } } } else { for (const key of Object.keys(this.container)) { if (this.container[key] === this.node) { - return this.setKey(key); + this.setKey(key); + return; } } } diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js index 33799d561d8871..2f96dc12ecf67b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js @@ -22,6 +22,7 @@ function deopt(path, state) { state.deoptPath = path; state.confident = false; } +const Globals = new Map([["undefined", undefined], ["Infinity", Infinity], ["NaN", NaN]]); function evaluateCached(path, state) { const { node @@ -111,28 +112,29 @@ function _evaluate(path, state) { } if (path.isReferencedIdentifier()) { const binding = path.scope.getBinding(path.node.name); - if (binding && binding.constantViolations.length > 0) { - return deopt(binding.path, state); + if (binding) { + if (binding.constantViolations.length > 0 || path.node.start < binding.path.node.end) { + deopt(binding.path, state); + return; + } + if (binding.hasValue) { + return binding.value; + } } - if (binding && path.node.start < binding.path.node.end) { - return deopt(binding.path, state); + const name = path.node.name; + if (Globals.has(name)) { + if (!binding) { + return Globals.get(name); + } + deopt(binding.path, state); + return; } - if (binding != null && binding.hasValue) { - return binding.value; + const resolved = path.resolve(); + if (resolved === path) { + deopt(path, state); + return; } else { - if (path.node.name === "undefined") { - return binding ? deopt(binding.path, state) : undefined; - } else if (path.node.name === "Infinity") { - return binding ? deopt(binding.path, state) : Infinity; - } else if (path.node.name === "NaN") { - return binding ? deopt(binding.path, state) : NaN; - } - const resolved = path.resolve(); - if (resolved === path) { - return deopt(path, state); - } else { - return evaluateCached(resolved, state); - } + return evaluateCached(resolved, state); } } if (path.isUnaryExpression({ @@ -168,7 +170,8 @@ function _evaluate(path, state) { if (elemValue.confident) { arr.push(elemValue.value); } else { - return deopt(elemValue.deopt, state); + deopt(elemValue.deopt, state); + return; } } return arr; @@ -178,14 +181,16 @@ function _evaluate(path, state) { const props = path.get("properties"); for (const prop of props) { if (prop.isObjectMethod() || prop.isSpreadElement()) { - return deopt(prop, state); + deopt(prop, state); + return; } const keyPath = prop.get("key"); let key; if (prop.node.computed) { key = keyPath.evaluate(); if (!key.confident) { - return deopt(key.deopt, state); + deopt(key.deopt, state); + return; } key = key.value; } else if (keyPath.isIdentifier()) { @@ -196,7 +201,8 @@ function _evaluate(path, state) { const valuePath = prop.get("value"); let value = valuePath.evaluate(); if (!value.confident) { - return deopt(value.deopt, state); + deopt(value.deopt, state); + return; } value = value.value; obj[key] = value; diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js index 815d7b6a813bb5..95f9a0b2abefb5 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js @@ -401,7 +401,9 @@ class Scope { if (binding) { newName || (newName = this.generateUidIdentifier(oldName).name); const renamer = new _renamer.default(binding, oldName, newName); - return renamer.rename(arguments[2]); + { + renamer.rename(arguments[2]); + } } } _renameFromMap(map, oldName, newName, value) { diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/package.json b/tools/node_modules/eslint/node_modules/@babel/traverse/package.json index bbf81a68c25976..b3217a1926d6b4 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/package.json @@ -1,6 +1,6 @@ { "name": "@babel/traverse", - "version": "7.21.2", + "version": "7.21.3", "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-traverse", @@ -17,13 +17,13 @@ "main": "./lib/index.js", "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.21.1", + "@babel/generator": "^7.21.3", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.21.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.2", - "@babel/types": "^7.21.2", + "@babel/parser": "^7.21.3", + "@babel/types": "^7.21.3", "debug": "^4.1.0", "globals": "^11.1.0" }, diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/utils.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/utils.js index d986781d8f1b75..1da6be832fea27 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/utils.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/utils.js @@ -208,7 +208,7 @@ function defineAliasedType(...aliases) { } const additional = aliases.filter(a => !defined.includes(a)); defined.unshift(...additional); - return defineType(type, opts); + defineType(type, opts); }; } function defineType(type, opts = {}) { diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js index b9b3187b9c3ad5..8ccd49b551ec01 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js @@ -559,18 +559,6 @@ Object.keys(_generated4).forEach(function (key) { } }); }); -var _generated5 = require("./ast-types/generated"); -Object.keys(_generated5).forEach(function (key) { - if (key === "default" || key === "__esModule") return; - if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; - if (key in exports && exports[key] === _generated5[key]) return; - Object.defineProperty(exports, key, { - enumerable: true, - get: function () { - return _generated5[key]; - } - }); -}); var _deprecationWarning = require("./utils/deprecationWarning"); const react = { isReactComponent: _isReactComponent.default, diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/utils/deprecationWarning.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/utils/deprecationWarning.js index 1d151ddb5bbc58..358b558f8c9fef 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/utils/deprecationWarning.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/utils/deprecationWarning.js @@ -8,8 +8,14 @@ const warnings = new Set(); function deprecationWarning(oldName, newName, prefix = "") { if (warnings.has(oldName)) return; warnings.add(oldName); - const stack = captureShortStackTrace(1, 2); - console.warn(`${prefix}\`${oldName}\` has been deprecated, please migrate to \`${newName}\`\n${stack}`); + const { + internal, + trace + } = captureShortStackTrace(1, 2); + if (internal) { + return; + } + console.warn(`${prefix}\`${oldName}\` has been deprecated, please migrate to \`${newName}\`\n${trace}`); } function captureShortStackTrace(skip, length) { const { @@ -24,7 +30,15 @@ function captureShortStackTrace(skip, length) { new Error().stack; Error.stackTraceLimit = stackTraceLimit; Error.prepareStackTrace = prepareStackTrace; - return stackTrace.slice(1 + skip, 1 + skip + length).map(frame => ` at ${frame}`).join("\n"); + if (!stackTrace) return { + internal: false, + trace: "" + }; + const shortStackTrace = stackTrace.slice(1 + skip, 1 + skip + length); + return { + internal: /[\\/]@babel[\\/]/.test(shortStackTrace[1].getFileName()), + trace: shortStackTrace.map(frame => ` at ${frame}`).join("\n") + }; } //# sourceMappingURL=deprecationWarning.js.map diff --git a/tools/node_modules/eslint/node_modules/@babel/types/package.json b/tools/node_modules/eslint/node_modules/@babel/types/package.json index 5fbcc16fc076ee..11e6c1c180352e 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/types/package.json @@ -1,6 +1,6 @@ { "name": "@babel/types", - "version": "7.21.2", + "version": "7.21.3", "description": "Babel Types is a Lodash-esque utility library for AST nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-types", @@ -29,8 +29,8 @@ "to-fast-properties": "^2.0.0" }, "devDependencies": { - "@babel/generator": "^7.21.1", - "@babel/parser": "^7.21.2", + "@babel/generator": "^7.21.3", + "@babel/parser": "^7.21.3", "chalk": "^4.1.0", "glob": "^7.2.0" }, diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json index c43829b5ea6858..c0034db32f20d8 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json @@ -1,6 +1,6 @@ { "name": "@es-joy/jsdoccomment", - "version": "0.36.1", + "version": "0.37.0", "author": "Brett Zamir ", "contributors": [], "description": "Maintained replacement for ESLint's deprecated SourceCode#getJSDocComment along with other jsdoc utilities", @@ -43,7 +43,7 @@ "dependencies": { "comment-parser": "1.3.1", "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "~3.1.0" + "jsdoc-type-pratt-parser": "~4.0.0" }, "devDependencies": { "@babel/core": "^7.19.6", diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/LICENSE b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/LICENSE similarity index 100% rename from tools/node_modules/eslint/node_modules/eslint-utils/LICENSE rename to tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/LICENSE diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/index.js b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/index.js similarity index 93% rename from tools/node_modules/eslint/node_modules/eslint-utils/index.js rename to tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/index.js index 034a19b631c3f8..156015e0e463b5 100644 --- a/tools/node_modules/eslint/node_modules/eslint-utils/index.js +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/index.js @@ -1,11 +1,8 @@ -/*! @author Toru Nagashima */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); -function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } - -var evk = _interopDefault(require('eslint-visitor-keys')); +var eslintVisitorKeys = require('eslint-visitor-keys'); /** * Get the innermost scope which contains a given location. @@ -313,6 +310,24 @@ const builtinNames = Object.freeze( const callAllowed = new Set( [ Array.isArray, + Array.of, + Array.prototype.at, + Array.prototype.concat, + Array.prototype.entries, + Array.prototype.every, + Array.prototype.filter, + Array.prototype.find, + Array.prototype.findIndex, + Array.prototype.flat, + Array.prototype.includes, + Array.prototype.indexOf, + Array.prototype.join, + Array.prototype.keys, + Array.prototype.lastIndexOf, + Array.prototype.slice, + Array.prototype.some, + Array.prototype.toString, + Array.prototype.values, typeof BigInt === "function" ? BigInt : undefined, Boolean, Date, @@ -325,7 +340,14 @@ const callAllowed = new Set( isFinite, isNaN, isPrototypeOf, + Map, + Map.prototype.entries, + Map.prototype.get, + Map.prototype.has, + Map.prototype.keys, + Map.prototype.values, ...Object.getOwnPropertyNames(Math) + .filter((k) => k !== "random") .map((k) => Math[k]) .filter((f) => typeof f === "function"), Number, @@ -333,6 +355,10 @@ const callAllowed = new Set( Number.isNaN, Number.parseFloat, Number.parseInt, + Number.prototype.toExponential, + Number.prototype.toFixed, + Number.prototype.toPrecision, + Number.prototype.toString, Object, Object.entries, Object.is, @@ -344,10 +370,39 @@ const callAllowed = new Set( parseFloat, parseInt, RegExp, + Set, + Set.prototype.entries, + Set.prototype.has, + Set.prototype.keys, + Set.prototype.values, String, String.fromCharCode, String.fromCodePoint, String.raw, + String.prototype.at, + String.prototype.charAt, + String.prototype.charCodeAt, + String.prototype.codePointAt, + String.prototype.concat, + String.prototype.endsWith, + String.prototype.includes, + String.prototype.indexOf, + String.prototype.lastIndexOf, + String.prototype.normalize, + String.prototype.padEnd, + String.prototype.padStart, + String.prototype.slice, + String.prototype.startsWith, + String.prototype.substr, + String.prototype.substring, + String.prototype.toLowerCase, + String.prototype.toString, + String.prototype.toUpperCase, + String.prototype.trim, + String.prototype.trimEnd, + String.prototype.trimLeft, + String.prototype.trimRight, + String.prototype.trimStart, Symbol.for, Symbol.keyFor, unescape, @@ -359,6 +414,26 @@ const callPassThrough = new Set([ Object.seal, ]); +/** @type {ReadonlyArray]>} */ +const getterAllowed = [ + [Map, new Set(["size"])], + [ + RegExp, + new Set([ + "dotAll", + "flags", + "global", + "hasIndices", + "ignoreCase", + "multiline", + "source", + "sticky", + "unicode", + ]), + ], + [Set, new Set(["size"])], +]; + /** * Get the property descriptor. * @param {object} object The object to get. @@ -418,6 +493,23 @@ function getElementValues(nodeList, initialScope) { return valueList } +/** + * Returns whether the given variable is never written to after initialization. + * @param {import("eslint").Scope.Variable} variable + * @returns {boolean} + */ +function isEffectivelyConst(variable) { + const refs = variable.references; + + const inits = refs.filter((r) => r.init).length; + const reads = refs.filter((r) => r.isReadOnly()).length; + if (inits === 1 && reads + inits === refs.length) { + // there is only one init and all other references only read + return true + } + return false +} + const operations = Object.freeze({ ArrayExpression(node, initialScope) { const elements = getElementValues(node.elements, initialScope); @@ -475,7 +567,7 @@ const operations = Object.freeze({ case "%": return { value: left.value % right.value } case "**": - return { value: Math.pow(left.value, right.value) } + return { value: left.value ** right.value } case "|": return { value: left.value | right.value } case "^": @@ -576,7 +668,9 @@ const operations = Object.freeze({ const def = variable.defs[0]; if ( def.parent && - def.parent.kind === "const" && + def.type === "Variable" && + (def.parent.kind === "const" || + isEffectivelyConst(variable)) && // TODO(mysticatea): don't support destructuring here. def.node.id.type === "Identifier" ) { @@ -627,8 +721,19 @@ const operations = Object.freeze({ } const property = getStaticPropertyNameValue(node, initialScope); - if (property != null && !isGetter(object.value, property.value)) { - return { value: object.value[property.value] } + if (property != null) { + if (!isGetter(object.value, property.value)) { + return { value: object.value[property.value] } + } + + for (const [classFn, allowed] of getterAllowed) { + if ( + object.value instanceof classFn && + allowed.has(property.value) + ) { + return { value: object.value[property.value] } + } + } } } return null @@ -957,6 +1062,11 @@ function getFunctionNameWithKind(node, sourceCode) { parent.left.type === "Identifier" ) { tokens.push(`'${parent.left.name}'`); + } else if ( + parent.type === "ExportDefaultDeclaration" && + parent.declaration === node + ) { + tokens.push("'default'"); } return tokens.join(" ") @@ -1010,7 +1120,7 @@ const visitor = Object.freeze( $visitChildren(node, options, visitorKeys) { const { type } = node; - for (const key of visitorKeys[type] || evk.getKeys(node)) { + for (const key of visitorKeys[type] || eslintVisitorKeys.getKeys(node)) { const value = node[key]; if (Array.isArray(value)) { @@ -1136,7 +1246,7 @@ const visitor = Object.freeze( * @param {object} [options] The option object. * @param {boolean} [options.considerGetters=false] If `true` then it considers member accesses as the node which has side effects. * @param {boolean} [options.considerImplicitTypeConversion=false] If `true` then it considers implicit type conversion as the node which has side effects. - * @param {object} [options.visitorKeys=evk.KEYS] The keys to traverse nodes. Use `context.getSourceCode().visitorKeys`. + * @param {object} [options.visitorKeys=KEYS] The keys to traverse nodes. Use `context.getSourceCode().visitorKeys`. * @returns {boolean} `true` if the node has a certain side effect. */ function hasSideEffect( @@ -1147,7 +1257,7 @@ function hasSideEffect( return visitor.$visit( node, { considerGetters, considerImplicitTypeConversion }, - sourceCode.visitorKeys || evk.KEYS, + sourceCode.visitorKeys || eslintVisitorKeys.KEYS, ) } @@ -1245,6 +1355,8 @@ function isParenthesized( if ( node == null || + // `Program` can't be parenthesized + node.parent == null || // `CatchClause.param` can't be parenthesized, example `try {} catch (error) {}` (node.parent.type === "CatchClause" && node.parent.param === node) ) { @@ -1921,7 +2033,7 @@ exports.ESM = ESM; exports.PatternMatcher = PatternMatcher; exports.READ = READ; exports.ReferenceTracker = ReferenceTracker; -exports.default = index; +exports["default"] = index; exports.findVariable = findVariable; exports.getFunctionHeadLocation = getFunctionHeadLocation; exports.getFunctionNameWithKind = getFunctionNameWithKind; diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/index.mjs b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/index.mjs similarity index 92% rename from tools/node_modules/eslint/node_modules/eslint-utils/index.mjs rename to tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/index.mjs index 50edb341d04879..54b25816bf936f 100644 --- a/tools/node_modules/eslint/node_modules/eslint-utils/index.mjs +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/index.mjs @@ -1,5 +1,4 @@ -/*! @author Toru Nagashima */ -import evk from 'eslint-visitor-keys'; +import { getKeys, KEYS } from 'eslint-visitor-keys'; /** * Get the innermost scope which contains a given location. @@ -307,6 +306,24 @@ const builtinNames = Object.freeze( const callAllowed = new Set( [ Array.isArray, + Array.of, + Array.prototype.at, + Array.prototype.concat, + Array.prototype.entries, + Array.prototype.every, + Array.prototype.filter, + Array.prototype.find, + Array.prototype.findIndex, + Array.prototype.flat, + Array.prototype.includes, + Array.prototype.indexOf, + Array.prototype.join, + Array.prototype.keys, + Array.prototype.lastIndexOf, + Array.prototype.slice, + Array.prototype.some, + Array.prototype.toString, + Array.prototype.values, typeof BigInt === "function" ? BigInt : undefined, Boolean, Date, @@ -319,7 +336,14 @@ const callAllowed = new Set( isFinite, isNaN, isPrototypeOf, + Map, + Map.prototype.entries, + Map.prototype.get, + Map.prototype.has, + Map.prototype.keys, + Map.prototype.values, ...Object.getOwnPropertyNames(Math) + .filter((k) => k !== "random") .map((k) => Math[k]) .filter((f) => typeof f === "function"), Number, @@ -327,6 +351,10 @@ const callAllowed = new Set( Number.isNaN, Number.parseFloat, Number.parseInt, + Number.prototype.toExponential, + Number.prototype.toFixed, + Number.prototype.toPrecision, + Number.prototype.toString, Object, Object.entries, Object.is, @@ -338,10 +366,39 @@ const callAllowed = new Set( parseFloat, parseInt, RegExp, + Set, + Set.prototype.entries, + Set.prototype.has, + Set.prototype.keys, + Set.prototype.values, String, String.fromCharCode, String.fromCodePoint, String.raw, + String.prototype.at, + String.prototype.charAt, + String.prototype.charCodeAt, + String.prototype.codePointAt, + String.prototype.concat, + String.prototype.endsWith, + String.prototype.includes, + String.prototype.indexOf, + String.prototype.lastIndexOf, + String.prototype.normalize, + String.prototype.padEnd, + String.prototype.padStart, + String.prototype.slice, + String.prototype.startsWith, + String.prototype.substr, + String.prototype.substring, + String.prototype.toLowerCase, + String.prototype.toString, + String.prototype.toUpperCase, + String.prototype.trim, + String.prototype.trimEnd, + String.prototype.trimLeft, + String.prototype.trimRight, + String.prototype.trimStart, Symbol.for, Symbol.keyFor, unescape, @@ -353,6 +410,26 @@ const callPassThrough = new Set([ Object.seal, ]); +/** @type {ReadonlyArray]>} */ +const getterAllowed = [ + [Map, new Set(["size"])], + [ + RegExp, + new Set([ + "dotAll", + "flags", + "global", + "hasIndices", + "ignoreCase", + "multiline", + "source", + "sticky", + "unicode", + ]), + ], + [Set, new Set(["size"])], +]; + /** * Get the property descriptor. * @param {object} object The object to get. @@ -412,6 +489,23 @@ function getElementValues(nodeList, initialScope) { return valueList } +/** + * Returns whether the given variable is never written to after initialization. + * @param {import("eslint").Scope.Variable} variable + * @returns {boolean} + */ +function isEffectivelyConst(variable) { + const refs = variable.references; + + const inits = refs.filter((r) => r.init).length; + const reads = refs.filter((r) => r.isReadOnly()).length; + if (inits === 1 && reads + inits === refs.length) { + // there is only one init and all other references only read + return true + } + return false +} + const operations = Object.freeze({ ArrayExpression(node, initialScope) { const elements = getElementValues(node.elements, initialScope); @@ -469,7 +563,7 @@ const operations = Object.freeze({ case "%": return { value: left.value % right.value } case "**": - return { value: Math.pow(left.value, right.value) } + return { value: left.value ** right.value } case "|": return { value: left.value | right.value } case "^": @@ -570,7 +664,9 @@ const operations = Object.freeze({ const def = variable.defs[0]; if ( def.parent && - def.parent.kind === "const" && + def.type === "Variable" && + (def.parent.kind === "const" || + isEffectivelyConst(variable)) && // TODO(mysticatea): don't support destructuring here. def.node.id.type === "Identifier" ) { @@ -621,8 +717,19 @@ const operations = Object.freeze({ } const property = getStaticPropertyNameValue(node, initialScope); - if (property != null && !isGetter(object.value, property.value)) { - return { value: object.value[property.value] } + if (property != null) { + if (!isGetter(object.value, property.value)) { + return { value: object.value[property.value] } + } + + for (const [classFn, allowed] of getterAllowed) { + if ( + object.value instanceof classFn && + allowed.has(property.value) + ) { + return { value: object.value[property.value] } + } + } } } return null @@ -951,6 +1058,11 @@ function getFunctionNameWithKind(node, sourceCode) { parent.left.type === "Identifier" ) { tokens.push(`'${parent.left.name}'`); + } else if ( + parent.type === "ExportDefaultDeclaration" && + parent.declaration === node + ) { + tokens.push("'default'"); } return tokens.join(" ") @@ -1004,7 +1116,7 @@ const visitor = Object.freeze( $visitChildren(node, options, visitorKeys) { const { type } = node; - for (const key of visitorKeys[type] || evk.getKeys(node)) { + for (const key of visitorKeys[type] || getKeys(node)) { const value = node[key]; if (Array.isArray(value)) { @@ -1130,7 +1242,7 @@ const visitor = Object.freeze( * @param {object} [options] The option object. * @param {boolean} [options.considerGetters=false] If `true` then it considers member accesses as the node which has side effects. * @param {boolean} [options.considerImplicitTypeConversion=false] If `true` then it considers implicit type conversion as the node which has side effects. - * @param {object} [options.visitorKeys=evk.KEYS] The keys to traverse nodes. Use `context.getSourceCode().visitorKeys`. + * @param {object} [options.visitorKeys=KEYS] The keys to traverse nodes. Use `context.getSourceCode().visitorKeys`. * @returns {boolean} `true` if the node has a certain side effect. */ function hasSideEffect( @@ -1141,7 +1253,7 @@ function hasSideEffect( return visitor.$visit( node, { considerGetters, considerImplicitTypeConversion }, - sourceCode.visitorKeys || evk.KEYS, + sourceCode.visitorKeys || KEYS, ) } @@ -1239,6 +1351,8 @@ function isParenthesized( if ( node == null || + // `Program` can't be parenthesized + node.parent == null || // `CatchClause.param` can't be parenthesized, example `try {} catch (error) {}` (node.parent.type === "CatchClause" && node.parent.param === node) ) { @@ -1909,6 +2023,5 @@ var index = { ReferenceTracker, }; -export default index; -export { CALL, CONSTRUCT, ESM, PatternMatcher, READ, ReferenceTracker, findVariable, getFunctionHeadLocation, getFunctionNameWithKind, getInnermostScope, getPropertyName, getStaticValue, getStringIfConstant, hasSideEffect, isArrowToken, isClosingBraceToken, isClosingBracketToken, isClosingParenToken, isColonToken, isCommaToken, isCommentToken, isNotArrowToken, isNotClosingBraceToken, isNotClosingBracketToken, isNotClosingParenToken, isNotColonToken, isNotCommaToken, isNotCommentToken, isNotOpeningBraceToken, isNotOpeningBracketToken, isNotOpeningParenToken, isNotSemicolonToken, isOpeningBraceToken, isOpeningBracketToken, isOpeningParenToken, isParenthesized, isSemicolonToken }; +export { CALL, CONSTRUCT, ESM, PatternMatcher, READ, ReferenceTracker, index as default, findVariable, getFunctionHeadLocation, getFunctionNameWithKind, getInnermostScope, getPropertyName, getStaticValue, getStringIfConstant, hasSideEffect, isArrowToken, isClosingBraceToken, isClosingBracketToken, isClosingParenToken, isColonToken, isCommaToken, isCommentToken, isNotArrowToken, isNotClosingBraceToken, isNotClosingBracketToken, isNotClosingParenToken, isNotColonToken, isNotCommaToken, isNotCommentToken, isNotOpeningBraceToken, isNotOpeningBracketToken, isNotOpeningParenToken, isNotSemicolonToken, isOpeningBraceToken, isOpeningBracketToken, isOpeningParenToken, isParenthesized, isSemicolonToken }; //# sourceMappingURL=index.mjs.map diff --git a/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/package.json b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/package.json new file mode 100644 index 00000000000000..c4ee587b75f952 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/package.json @@ -0,0 +1,73 @@ +{ + "name": "@eslint-community/eslint-utils", + "version": "4.4.0", + "description": "Utilities for ESLint plugins.", + "keywords": [ + "eslint" + ], + "homepage": "https://github.com/eslint-community/eslint-utils#readme", + "bugs": { + "url": "https://github.com/eslint-community/eslint-utils/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/eslint-community/eslint-utils" + }, + "license": "MIT", + "author": "Toru Nagashima", + "sideEffects": false, + "exports": { + ".": { + "import": "./index.mjs", + "require": "./index.js" + }, + "./package.json": "./package.json" + }, + "main": "index", + "module": "index.mjs", + "files": [ + "index.*" + ], + "scripts": { + "prebuild": "npm run -s clean", + "build": "rollup -c", + "clean": "rimraf .nyc_output coverage index.*", + "coverage": "opener ./coverage/lcov-report/index.html", + "docs:build": "vitepress build docs", + "docs:watch": "vitepress dev docs", + "format": "npm run -s format:prettier -- --write", + "format:prettier": "prettier .", + "format:check": "npm run -s format:prettier -- --check", + "lint": "eslint .", + "test": "c8 mocha --reporter dot \"test/*.mjs\"", + "preversion": "npm test && npm run -s build", + "postversion": "git push && git push --tags", + "prewatch": "npm run -s clean", + "watch": "warun \"{src,test}/**/*.mjs\" -- npm run -s test:mocha" + }, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "devDependencies": { + "@eslint-community/eslint-plugin-mysticatea": "^15.2.0", + "c8": "^7.12.0", + "dot-prop": "^6.0.1", + "eslint": "^8.28.0", + "mocha": "^9.2.2", + "npm-run-all": "^4.1.5", + "opener": "^1.5.2", + "prettier": "2.8.4", + "rimraf": "^3.0.2", + "rollup": "^2.79.1", + "rollup-plugin-sourcemaps": "^0.6.3", + "semver": "^7.3.8", + "vitepress": "^1.0.0-alpha.40", + "warun": "^1.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } +} diff --git a/tools/node_modules/eslint/node_modules/regexpp/LICENSE b/tools/node_modules/eslint/node_modules/@eslint-community/regexpp/LICENSE similarity index 100% rename from tools/node_modules/eslint/node_modules/regexpp/LICENSE rename to tools/node_modules/eslint/node_modules/@eslint-community/regexpp/LICENSE diff --git a/tools/node_modules/eslint/node_modules/regexpp/index.js b/tools/node_modules/eslint/node_modules/@eslint-community/regexpp/index.js similarity index 77% rename from tools/node_modules/eslint/node_modules/regexpp/index.js rename to tools/node_modules/eslint/node_modules/@eslint-community/regexpp/index.js index cd0e165a08549a..518c34cbb55202 100644 --- a/tools/node_modules/eslint/node_modules/regexpp/index.js +++ b/tools/node_modules/eslint/node_modules/@eslint-community/regexpp/index.js @@ -1,12 +1,9 @@ -/*! @author Toru Nagashima */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); - - var ast = /*#__PURE__*/Object.freeze({ - + __proto__: null }); let largeIdStartRanges = undefined; @@ -40,17 +37,16 @@ function isIdContinue(cp) { return isLargeIdStart(cp) || isLargeIdContinue(cp); } function isLargeIdStart(cp) { - return isInRange(cp, largeIdStartRanges || (largeIdStartRanges = initLargeIdStartRanges())); + return isInRange(cp, largeIdStartRanges !== null && largeIdStartRanges !== void 0 ? largeIdStartRanges : (largeIdStartRanges = initLargeIdStartRanges())); } function isLargeIdContinue(cp) { - return isInRange(cp, largeIdContinueRanges || - (largeIdContinueRanges = initLargeIdContinueRanges())); + return isInRange(cp, largeIdContinueRanges !== null && largeIdContinueRanges !== void 0 ? largeIdContinueRanges : (largeIdContinueRanges = initLargeIdContinueRanges())); } function initLargeIdStartRanges() { - return restoreRanges("4q 0 b 0 5 0 6 m 2 u 2 cp 5 b f 4 8 0 2 0 3m 4 2 1 3 3 2 0 7 0 2 2 2 0 2 j 2 2a 2 3u 9 4l 2 11 3 0 7 14 20 q 5 3 1a 16 10 1 2 2q 2 0 g 1 8 1 b 2 3 0 h 0 2 t u 2g c 0 p w a 1 5 0 6 l 5 0 a 0 4 0 o o 8 a 1i k 2 h 1p 1h 4 0 j 0 8 9 g f 5 7 3 1 3 l 2 6 2 0 4 3 4 0 h 0 e 1 2 2 f 1 b 0 9 5 5 1 3 l 2 6 2 1 2 1 2 1 w 3 2 0 k 2 h 8 2 2 2 l 2 6 2 1 2 4 4 0 j 0 g 1 o 0 c 7 3 1 3 l 2 6 2 1 2 4 4 0 v 1 2 2 g 0 i 0 2 5 4 2 2 3 4 1 2 0 2 1 4 1 4 2 4 b n 0 1h 7 2 2 2 m 2 f 4 0 r 2 6 1 v 0 5 7 2 2 2 m 2 9 2 4 4 0 x 0 2 1 g 1 i 8 2 2 2 14 3 0 h 0 6 2 9 2 p 5 6 h 4 n 2 8 2 0 3 6 1n 1b 2 1 d 6 1n 1 2 0 2 4 2 n 2 0 2 9 2 1 a 0 3 4 2 0 m 3 x 0 1s 7 2 z s 4 38 16 l 0 h 5 5 3 4 0 4 1 8 2 5 c d 0 i 11 2 0 6 0 3 16 2 98 2 3 3 6 2 0 2 3 3 14 2 3 3 w 2 3 3 6 2 0 2 3 3 e 2 1k 2 3 3 1u 12 f h 2d 3 5 4 h7 3 g 2 p 6 22 4 a 8 c 2 3 f h f h f c 2 2 g 1f 10 0 5 0 1w 2g 8 14 2 0 6 1x b u 1e t 3 4 c 17 5 p 1j m a 1g 2b 0 2m 1a i 6 1k t e 1 b 17 r z 16 2 b z 3 8 8 16 3 2 16 3 2 5 2 1 4 0 6 5b 1t 7p 3 5 3 11 3 5 3 7 2 0 2 0 2 0 2 u 3 1g 2 6 2 0 4 2 2 6 4 3 3 5 5 c 6 2 2 6 39 0 e 0 h c 2u 0 5 0 3 9 2 0 3 5 7 0 2 0 2 0 2 f 3 3 6 4 5 0 i 14 22g 1a 2 1a 2 3o 7 3 4 1 d 11 2 0 6 0 3 1j 8 0 h m a 6 2 6 2 6 2 6 2 6 2 6 2 6 2 6 fb 2 q 8 8 4 3 4 5 2d 5 4 2 2h 2 3 6 16 2 2l i v 1d f e9 533 1t g70 4 wc 1w 19 3 7g 4 f b 1 l 1a h u 3 27 14 8 3 2u 3 1g 3 8 17 c 2 2 2 3 2 m u 1f f 1d 1r 5 4 0 2 1 c r b m q s 8 1a t 0 h 4 2 9 b 4 2 14 o 2 2 7 l m 4 0 4 1d 2 0 4 1 3 4 3 0 2 0 p 2 3 a 8 2 d 5 3 5 3 5 a 6 2 6 2 16 2 d 7 36 u 8mb d m 5 1c 6it a5 3 2x 13 6 d 4 6 0 2 9 2 c 2 4 2 0 2 1 2 1 2 2z y a2 j 1r 3 1h 15 b 39 4 2 3q 11 p 7 p c 2g 4 5 3 5 3 5 3 2 10 b 2 p 2 i 2 1 2 e 3 d z 3e 1y 1g 7g s 4 1c 1c v e t 6 11 b t 3 z 5 7 2 4 17 4d j z 5 z 5 13 9 1f 4d 8m a l b 7 49 5 3 0 2 17 2 1 4 0 3 m b m a u 1u i 2 1 b l b p 1z 1j 7 1 1t 0 g 3 2 2 2 s 17 s 4 s 10 7 2 r s 1h b l b i e h 33 20 1k 1e e 1e e z 9p 15 7 1 27 s b 0 9 l 2z k s m d 1g 24 18 x o r z u 0 3 0 9 y 4 0 d 1b f 3 m 0 2 0 10 h 2 o 2d 6 2 0 2 3 2 e 2 9 8 1a 13 7 3 1 3 l 2 6 2 1 2 4 4 0 j 0 d 4 4f 1g j 3 l 2 v 1b l 1 2 0 55 1a 16 3 11 1b l 0 1o 16 e 0 20 q 6e 17 39 1r w 7 3 0 3 7 2 1 2 n g 0 2 0 2n 7 3 12 h 0 2 0 t 0 b 13 8 0 m 0 c 19 k 0 z 1k 7c 8 2 10 i 0 1e t 35 6 2 1 2 11 m 0 q 5 2 1 2 v f 0 94 i 5a 0 28 pl 2v 32 i 5f 24d tq 34i g6 6nu fs 8 u 36 t j 1b h 3 w k 6 i j5 1r 3l 22 6 0 1v c 1t 1 2 0 t 4qf 9 yd 17 8 6wo 7y 1e 2 i 3 9 az 1s5 2y 6 c 4 8 8 9 4mf 2c 2 1y 2 1 3 0 3 1 3 3 2 b 2 0 2 6 2 1s 2 3 3 7 2 6 2 r 2 3 2 4 2 0 4 6 2 9f 3 o 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 7 1th 18 b 6 h 0 aa 17 105 5g 1o 1v 8 0 xh 3 2 q 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 g 6 2 2 4 2 g 3et wyl z 378 c 65 3 4g1 f 5rk 2e8 f1 15v 3t6"); + return restoreRanges("4q 0 b 0 5 0 6 m 2 u 2 cp 5 b f 4 8 0 2 0 3m 4 2 1 3 3 2 0 7 0 2 2 2 0 2 j 2 2a 2 3u 9 4l 2 11 3 0 7 14 20 q 5 3 1a 16 10 1 2 2q 2 0 g 1 8 1 b 2 3 0 h 0 2 t u 2g c 0 p w a 1 5 0 6 l 5 0 a 0 4 0 o o 8 a 6 n 2 5 i 15 1n 1h 4 0 j 0 8 9 g f 5 7 3 1 3 l 2 6 2 0 4 3 4 0 h 0 e 1 2 2 f 1 b 0 9 5 5 1 3 l 2 6 2 1 2 1 2 1 w 3 2 0 k 2 h 8 2 2 2 l 2 6 2 1 2 4 4 0 j 0 g 1 o 0 c 7 3 1 3 l 2 6 2 1 2 4 4 0 v 1 2 2 g 0 i 0 2 5 4 2 2 3 4 1 2 0 2 1 4 1 4 2 4 b n 0 1h 7 2 2 2 m 2 f 4 0 r 2 3 0 3 1 v 0 5 7 2 2 2 m 2 9 2 4 4 0 w 1 2 1 g 1 i 8 2 2 2 14 3 0 h 0 6 2 9 2 p 5 6 h 4 n 2 8 2 0 3 6 1n 1b 2 1 d 6 1n 1 2 0 2 4 2 n 2 0 2 9 2 1 a 0 3 4 2 0 m 3 x 0 1s 7 2 z s 4 38 16 l 0 h 5 5 3 4 0 4 1 8 2 5 c d 0 i 11 2 0 6 0 3 16 2 98 2 3 3 6 2 0 2 3 3 14 2 3 3 w 2 3 3 6 2 0 2 3 3 e 2 1k 2 3 3 1u 12 f h 2d 3 5 4 h7 3 g 2 p 6 22 4 a 8 h e i f h f c 2 2 g 1f 10 0 5 0 1w 2g 8 14 2 0 6 1x b u 1e t 3 4 c 17 5 p 1j m a 1g 2b 0 2m 1a i 7 1j t e 1 b 17 r z 16 2 b z 3 8 8 16 3 2 16 3 2 5 2 1 4 0 6 5b 1t 7p 3 5 3 11 3 5 3 7 2 0 2 0 2 0 2 u 3 1g 2 6 2 0 4 2 2 6 4 3 3 5 5 c 6 2 2 6 39 0 e 0 h c 2u 0 5 0 3 9 2 0 3 5 7 0 2 0 2 0 2 f 3 3 6 4 5 0 i 14 22g 6c 7 3 4 1 d 11 2 0 6 0 3 1j 8 0 h m a 6 2 6 2 6 2 6 2 6 2 6 2 6 2 6 fb 2 q 8 8 4 3 4 5 2d 5 4 2 2h 2 3 6 16 2 2l i v 1d f e9 533 1t h3g 1w 19 3 7g 4 f b 1 l 1a h u 3 27 14 8 3 2u 3 1r 6 1 2 0 2 4 p f 2 2 2 3 2 m u 1f f 1d 1r 5 4 0 2 1 c r b m q s 8 1a t 0 h 4 2 9 b 4 2 14 o 2 2 7 l m 4 0 4 1d 2 0 4 1 3 4 3 0 2 0 p 2 3 a 8 2 d 5 3 5 3 5 a 6 2 6 2 16 2 d 7 36 u 8mb d m 5 1c 6it a5 3 2x 13 6 d 4 6 0 2 9 2 c 2 4 2 0 2 1 2 1 2 2z y a2 j 1r 3 1h 15 b 39 4 2 3q 11 p 7 p c 2g 4 5 3 5 3 5 3 2 10 b 2 p 2 i 2 1 2 e 3 d z 3e 1y 1g 7g s 4 1c 1c v e t 6 11 b t 3 z 5 7 2 4 17 4d j z 5 z 5 13 9 1f d a 2 e 2 6 2 1 2 a 2 e 2 6 2 1 1w 8m a l b 7 p 5 2 15 2 8 1y 5 3 0 2 17 2 1 4 0 3 m b m a u 1u i 2 1 b l b p 1z 1j 7 1 1t 0 g 3 2 2 2 s 17 s 4 s 10 7 2 r s 1h b l b i e h 33 20 1k 1e e 1e e z 9p 15 7 1 27 s b 0 9 l 17 h 1b k s m d 1g 1m 1 3 0 e 18 x o r z u 0 3 0 9 y 4 0 d 1b f 3 m 0 2 0 10 h 2 o k 1 1s 6 2 0 2 3 2 e 2 9 8 1a 13 7 3 1 3 l 2 6 2 1 2 4 4 0 j 0 d 4 4f 1g j 3 l 2 v 1b l 1 2 0 55 1a 16 3 11 1b l 0 1o 16 e 0 20 q 12 6 56 17 39 1r w 7 3 0 3 7 2 1 2 n g 0 2 0 2n 7 3 12 h 0 2 0 t 0 b 13 8 0 m 0 c 19 k 0 j 20 7c 8 2 10 i 0 1e t 35 6 2 1 2 11 m 0 q 5 2 1 2 v f 0 94 i g 0 2 c 2 x 3h 0 28 pl 2v 32 i 5f 219 2o g tr i 5 33u g6 6nu fs 8 u i 26 i t j 1b h 3 w k 6 i j5 1r 3l 22 6 0 1v c 1t 1 2 0 t 4qf 9 yd 17 8 6w8 3 2 6 2 1 2 82 g 0 u 2 3 0 f 3 9 az 1s5 2y 6 c 4 8 8 9 4mf 2c 2 1y 2 1 3 0 3 1 3 3 2 b 2 0 2 6 2 1s 2 3 3 7 2 6 2 r 2 3 2 4 2 0 4 6 2 9f 3 o 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 7 1f9 u 7 5 7a 1p 43 18 b 6 h 0 8y t j 17 dh r l1 6 2 3 2 1 2 e 2 5g 1o 1v 8 0 xh 3 2 q 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 g 6 2 2 4 2 g 3et wyn x 37d 7 65 3 4g1 f 5rk 2e8 f1 15v 3t6 6 38f"); } function initLargeIdContinueRanges() { - return restoreRanges("53 0 g9 33 o 0 70 4 7e 18 2 0 2 1 2 1 2 0 21 a 1d u 7 0 2u 6 3 5 3 1 2 3 3 9 o 0 v q 2k a g 9 y 8 a 0 p 3 2 8 2 2 2 4 18 2 3c e 2 w 1j 2 2 h 2 6 b 1 3 9 i 2 1l 0 2 6 3 1 3 2 a 0 b 1 3 9 f 0 3 2 1l 0 2 4 5 1 3 2 4 0 l b 4 0 c 2 1l 0 2 7 2 2 2 2 l 1 3 9 b 5 2 2 1l 0 2 6 3 1 3 2 8 2 b 1 3 9 j 0 1o 4 4 2 2 3 a 0 f 9 h 4 1m 6 2 2 2 3 8 1 c 1 3 9 i 2 1l 0 2 6 2 2 2 3 8 1 c 1 3 9 h 3 1k 1 2 6 2 2 2 3 a 0 b 1 3 9 i 2 1z 0 5 5 2 0 2 7 7 9 3 1 1q 0 3 6 d 7 2 9 2g 0 3 8 c 5 3 9 1r 1 7 9 c 0 2 0 2 0 5 1 1e j 2 1 6 a 2 z a 0 2t j 2 9 d 3 5 2 2 2 3 6 4 3 e b 2 e jk 2 a 8 pt 2 u 2 u 1 v 1 1t v a 0 3 9 y 2 3 9 40 0 3b b 5 b b 9 3l a 1p 4 1m 9 2 s 3 a 7 9 n d 2 1 1s 4 1c g c 9 i 8 d 2 v c 3 9 19 d 1d j 9 9 7 9 3b 2 2 k 5 0 7 0 3 2 5j 1l 2 4 g0 1 k 0 3g c 5 0 4 b 2db 2 3y 0 2p v ff 5 2y 1 n7q 9 1y 0 5 9 x 1 29 1 7l 0 4 0 5 0 o 4 5 0 2c 1 1f h b 9 7 h e a t 7 q c 19 3 1c d g 9 c 0 b 9 1c d d 0 9 1 3 9 y 2 1f 0 2 2 3 1 6 1 2 0 16 4 6 1 6l 7 2 1 3 9 fmt 0 ki f h f 4 1 p 2 5d 9 12 0 ji 0 6b 0 46 4 86 9 120 2 2 1 6 3 15 2 5 0 4m 1 fy 3 9 9 aa 1 4a a 4w 2 1i e w 9 g 3 1a a 1i 9 7 2 11 d 2 9 6 1 19 0 d 2 1d d 9 3 2 b 2b b 7 0 4h b 6 9 7 3 1k 1 2 6 3 1 3 2 a 0 b 1 3 6 4 4 5d h a 9 5 0 2a j d 9 5y 6 3 8 s 1 2b g g 9 2a c 9 9 2c e 5 9 6r e 4m 9 1z 5 2 1 3 3 2 0 2 1 d 9 3c 6 3 6 4 0 t 9 15 6 2 3 9 0 a a 1b f ba 7 2 7 h 9 1l l 2 d 3f 5 4 0 2 1 2 6 2 0 9 9 1d 4 2 1 2 4 9 9 96 3 ewa 9 3r 4 1o 6 q 9 s6 0 2 1i 8 3 2a 0 c 1 f58 1 43r 4 4 5 9 7 3 6 v 3 45 2 13e 1d e9 1i 5 1d 9 0 f 0 n 4 2 e 11t 6 2 g 3 6 2 1 2 4 7a 6 a 9 bn d 15j 6 32 6 6 9 3o7 9 gvt3 6n"); + return restoreRanges("53 0 g9 33 o 0 70 4 7e 18 2 0 2 1 2 1 2 0 21 a 1d u 7 0 2u 6 3 5 3 1 2 3 3 9 o 0 v q 2k a g 9 y 8 a 0 p 3 2 8 2 2 2 4 18 2 1p 7 17 n 2 w 1j 2 2 h 2 6 b 1 3 9 i 2 1l 0 2 6 3 1 3 2 a 0 b 1 3 9 f 0 3 2 1l 0 2 4 5 1 3 2 4 0 l b 4 0 c 2 1l 0 2 7 2 2 2 2 l 1 3 9 b 5 2 2 1l 0 2 6 3 1 3 2 8 2 b 1 3 9 j 0 1o 4 4 2 2 3 a 0 f 9 h 4 1k 0 2 6 2 2 2 3 8 1 c 1 3 9 i 2 1l 0 2 6 2 2 2 3 8 1 c 1 3 9 4 0 d 3 1k 1 2 6 2 2 2 3 a 0 b 1 3 9 i 2 1z 0 5 5 2 0 2 7 7 9 3 1 1q 0 3 6 d 7 2 9 2g 0 3 8 c 6 2 9 1r 1 7 9 c 0 2 0 2 0 5 1 1e j 2 1 6 a 2 z a 0 2t j 2 9 d 3 5 2 2 2 3 6 4 3 e b 2 e jk 2 a 8 pt 3 t 2 u 1 v 1 1t v a 0 3 9 y 2 2 a 40 0 3b b 5 b b 9 3l a 1p 4 1m 9 2 s 3 a 7 9 n d 2 f 1e 4 1c g c 9 i 8 d 2 v c 3 9 19 d 1d j 9 9 7 9 3b 2 2 k 5 0 7 0 3 2 5j 1r g0 1 k 0 3g c 5 0 4 b 2db 2 3y 0 2p v ff 5 2y 1 n7q 9 1y 0 5 9 x 1 29 1 7l 0 4 0 5 0 o 4 5 0 2c 1 1f h b 9 7 h e a t 7 q c 19 3 1c d g 9 c 0 b 9 1c d d 0 9 1 3 9 y 2 1f 0 2 2 3 1 6 1 2 0 16 4 6 1 6l 7 2 1 3 9 fmt 0 ki f h f 4 1 p 2 5d 9 12 0 ji 0 6b 0 46 4 86 9 120 2 2 1 6 3 15 2 5 0 4m 1 fy 3 9 9 aa 1 29 2 1z a 1e 3 3f 2 1i e w a 3 1 b 3 1a a 8 0 1a 9 7 2 11 d 2 9 6 1 19 0 d 2 1d d 9 3 2 b 2b b 7 0 3 0 4e b 6 9 7 3 1k 1 2 6 3 1 3 2 a 0 b 1 3 6 4 4 5d h a 9 5 0 2a j d 9 5y 6 3 8 s 1 2b g g 9 2a c 9 9 2c e 5 9 6r e 4m 9 1z 5 2 1 3 3 2 0 2 1 d 9 3c 6 3 6 4 0 t 9 15 6 2 3 9 0 a a 1b f ba 7 2 7 h 9 1l l 2 d 3f 5 4 0 2 1 2 6 2 0 9 9 1d 4 2 1 2 4 9 9 96 3 a 1 2 0 1d 6 4 4 e 9 44n 0 7 e aob 9 2f 9 13 4 1o 6 q 9 s6 0 2 1i 8 3 2a 0 c 1 f58 1 3mq 19 3 m f3 4 4 5 9 7 3 6 v 3 45 2 13e 1d e9 1i 5 1d 9 0 f 0 n 4 2 e 11t 6 2 g 3 6 2 1 2 4 2t 0 4h 6 a 9 9x 0 1q d dv d rb 6 32 6 6 9 3o7 9 gvt3 6n"); } function isInRange(cp, ranges) { let l = 0, r = (ranges.length / 2) | 0, i = 0, min = 0, max = 0; @@ -72,34 +68,48 @@ function isInRange(cp, ranges) { } function restoreRanges(data) { let last = 0; - return data.split(" ").map(s => (last += parseInt(s, 36) | 0)); + return data.split(" ").map((s) => (last += parseInt(s, 36) | 0)); } class DataSet { - constructor(raw2018, raw2019, raw2020, raw2021) { + constructor(raw2018, raw2019, raw2020, raw2021, raw2022, raw2023) { this._raw2018 = raw2018; this._raw2019 = raw2019; this._raw2020 = raw2020; this._raw2021 = raw2021; + this._raw2022 = raw2022; + this._raw2023 = raw2023; } get es2018() { - return (this._set2018 || (this._set2018 = new Set(this._raw2018.split(" ")))); + var _a; + return ((_a = this._set2018) !== null && _a !== void 0 ? _a : (this._set2018 = new Set(this._raw2018.split(" ")))); } get es2019() { - return (this._set2019 || (this._set2019 = new Set(this._raw2019.split(" ")))); + var _a; + return ((_a = this._set2019) !== null && _a !== void 0 ? _a : (this._set2019 = new Set(this._raw2019.split(" ")))); } get es2020() { - return (this._set2020 || (this._set2020 = new Set(this._raw2020.split(" ")))); + var _a; + return ((_a = this._set2020) !== null && _a !== void 0 ? _a : (this._set2020 = new Set(this._raw2020.split(" ")))); } get es2021() { - return (this._set2021 || (this._set2021 = new Set(this._raw2021.split(" ")))); + var _a; + return ((_a = this._set2021) !== null && _a !== void 0 ? _a : (this._set2021 = new Set(this._raw2021.split(" ")))); + } + get es2022() { + var _a; + return ((_a = this._set2022) !== null && _a !== void 0 ? _a : (this._set2022 = new Set(this._raw2022.split(" ")))); + } + get es2023() { + var _a; + return ((_a = this._set2023) !== null && _a !== void 0 ? _a : (this._set2023 = new Set(this._raw2023.split(" ")))); } } const gcNameSet = new Set(["General_Category", "gc"]); const scNameSet = new Set(["Script", "Script_Extensions", "sc", "scx"]); -const gcValueSets = new DataSet("C Cased_Letter Cc Cf Close_Punctuation Cn Co Combining_Mark Connector_Punctuation Control Cs Currency_Symbol Dash_Punctuation Decimal_Number Enclosing_Mark Final_Punctuation Format Initial_Punctuation L LC Letter Letter_Number Line_Separator Ll Lm Lo Lowercase_Letter Lt Lu M Mark Math_Symbol Mc Me Mn Modifier_Letter Modifier_Symbol N Nd Nl No Nonspacing_Mark Number Open_Punctuation Other Other_Letter Other_Number Other_Punctuation Other_Symbol P Paragraph_Separator Pc Pd Pe Pf Pi Po Private_Use Ps Punctuation S Sc Separator Sk Sm So Space_Separator Spacing_Mark Surrogate Symbol Titlecase_Letter Unassigned Uppercase_Letter Z Zl Zp Zs cntrl digit punct", "", "", ""); -const scValueSets = new DataSet("Adlam Adlm Aghb Ahom Anatolian_Hieroglyphs Arab Arabic Armenian Armi Armn Avestan Avst Bali Balinese Bamu Bamum Bass Bassa_Vah Batak Batk Beng Bengali Bhaiksuki Bhks Bopo Bopomofo Brah Brahmi Brai Braille Bugi Buginese Buhd Buhid Cakm Canadian_Aboriginal Cans Cari Carian Caucasian_Albanian Chakma Cham Cher Cherokee Common Copt Coptic Cprt Cuneiform Cypriot Cyrillic Cyrl Deseret Deva Devanagari Dsrt Dupl Duployan Egyp Egyptian_Hieroglyphs Elba Elbasan Ethi Ethiopic Geor Georgian Glag Glagolitic Gonm Goth Gothic Gran Grantha Greek Grek Gujarati Gujr Gurmukhi Guru Han Hang Hangul Hani Hano Hanunoo Hatr Hatran Hebr Hebrew Hira Hiragana Hluw Hmng Hung Imperial_Aramaic Inherited Inscriptional_Pahlavi Inscriptional_Parthian Ital Java Javanese Kaithi Kali Kana Kannada Katakana Kayah_Li Khar Kharoshthi Khmer Khmr Khoj Khojki Khudawadi Knda Kthi Lana Lao Laoo Latin Latn Lepc Lepcha Limb Limbu Lina Linb Linear_A Linear_B Lisu Lyci Lycian Lydi Lydian Mahajani Mahj Malayalam Mand Mandaic Mani Manichaean Marc Marchen Masaram_Gondi Meetei_Mayek Mend Mende_Kikakui Merc Mero Meroitic_Cursive Meroitic_Hieroglyphs Miao Mlym Modi Mong Mongolian Mro Mroo Mtei Mult Multani Myanmar Mymr Nabataean Narb Nbat New_Tai_Lue Newa Nko Nkoo Nshu Nushu Ogam Ogham Ol_Chiki Olck Old_Hungarian Old_Italic Old_North_Arabian Old_Permic Old_Persian Old_South_Arabian Old_Turkic Oriya Orkh Orya Osage Osge Osma Osmanya Pahawh_Hmong Palm Palmyrene Pau_Cin_Hau Pauc Perm Phag Phags_Pa Phli Phlp Phnx Phoenician Plrd Prti Psalter_Pahlavi Qaac Qaai Rejang Rjng Runic Runr Samaritan Samr Sarb Saur Saurashtra Sgnw Sharada Shavian Shaw Shrd Sidd Siddham SignWriting Sind Sinh Sinhala Sora Sora_Sompeng Soyo Soyombo Sund Sundanese Sylo Syloti_Nagri Syrc Syriac Tagalog Tagb Tagbanwa Tai_Le Tai_Tham Tai_Viet Takr Takri Tale Talu Tamil Taml Tang Tangut Tavt Telu Telugu Tfng Tglg Thaa Thaana Thai Tibetan Tibt Tifinagh Tirh Tirhuta Ugar Ugaritic Vai Vaii Wara Warang_Citi Xpeo Xsux Yi Yiii Zanabazar_Square Zanb Zinh Zyyy", "Dogr Dogra Gong Gunjala_Gondi Hanifi_Rohingya Maka Makasar Medefaidrin Medf Old_Sogdian Rohg Sogd Sogdian Sogo", "Elym Elymaic Hmnp Nand Nandinagari Nyiakeng_Puachue_Hmong Wancho Wcho", "Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi"); -const binPropertySets = new DataSet("AHex ASCII ASCII_Hex_Digit Alpha Alphabetic Any Assigned Bidi_C Bidi_Control Bidi_M Bidi_Mirrored CI CWCF CWCM CWKCF CWL CWT CWU Case_Ignorable Cased Changes_When_Casefolded Changes_When_Casemapped Changes_When_Lowercased Changes_When_NFKC_Casefolded Changes_When_Titlecased Changes_When_Uppercased DI Dash Default_Ignorable_Code_Point Dep Deprecated Dia Diacritic Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Ext Extender Gr_Base Gr_Ext Grapheme_Base Grapheme_Extend Hex Hex_Digit IDC IDS IDSB IDST IDS_Binary_Operator IDS_Trinary_Operator ID_Continue ID_Start Ideo Ideographic Join_C Join_Control LOE Logical_Order_Exception Lower Lowercase Math NChar Noncharacter_Code_Point Pat_Syn Pat_WS Pattern_Syntax Pattern_White_Space QMark Quotation_Mark RI Radical Regional_Indicator SD STerm Sentence_Terminal Soft_Dotted Term Terminal_Punctuation UIdeo Unified_Ideograph Upper Uppercase VS Variation_Selector White_Space XIDC XIDS XID_Continue XID_Start space", "Extended_Pictographic", "", "EBase EComp EMod EPres ExtPict"); +const gcValueSets = new DataSet("C Cased_Letter Cc Cf Close_Punctuation Cn Co Combining_Mark Connector_Punctuation Control Cs Currency_Symbol Dash_Punctuation Decimal_Number Enclosing_Mark Final_Punctuation Format Initial_Punctuation L LC Letter Letter_Number Line_Separator Ll Lm Lo Lowercase_Letter Lt Lu M Mark Math_Symbol Mc Me Mn Modifier_Letter Modifier_Symbol N Nd Nl No Nonspacing_Mark Number Open_Punctuation Other Other_Letter Other_Number Other_Punctuation Other_Symbol P Paragraph_Separator Pc Pd Pe Pf Pi Po Private_Use Ps Punctuation S Sc Separator Sk Sm So Space_Separator Spacing_Mark Surrogate Symbol Titlecase_Letter Unassigned Uppercase_Letter Z Zl Zp Zs cntrl digit punct", "", "", "", "", ""); +const scValueSets = new DataSet("Adlam Adlm Aghb Ahom Anatolian_Hieroglyphs Arab Arabic Armenian Armi Armn Avestan Avst Bali Balinese Bamu Bamum Bass Bassa_Vah Batak Batk Beng Bengali Bhaiksuki Bhks Bopo Bopomofo Brah Brahmi Brai Braille Bugi Buginese Buhd Buhid Cakm Canadian_Aboriginal Cans Cari Carian Caucasian_Albanian Chakma Cham Cher Cherokee Common Copt Coptic Cprt Cuneiform Cypriot Cyrillic Cyrl Deseret Deva Devanagari Dsrt Dupl Duployan Egyp Egyptian_Hieroglyphs Elba Elbasan Ethi Ethiopic Geor Georgian Glag Glagolitic Gonm Goth Gothic Gran Grantha Greek Grek Gujarati Gujr Gurmukhi Guru Han Hang Hangul Hani Hano Hanunoo Hatr Hatran Hebr Hebrew Hira Hiragana Hluw Hmng Hung Imperial_Aramaic Inherited Inscriptional_Pahlavi Inscriptional_Parthian Ital Java Javanese Kaithi Kali Kana Kannada Katakana Kayah_Li Khar Kharoshthi Khmer Khmr Khoj Khojki Khudawadi Knda Kthi Lana Lao Laoo Latin Latn Lepc Lepcha Limb Limbu Lina Linb Linear_A Linear_B Lisu Lyci Lycian Lydi Lydian Mahajani Mahj Malayalam Mand Mandaic Mani Manichaean Marc Marchen Masaram_Gondi Meetei_Mayek Mend Mende_Kikakui Merc Mero Meroitic_Cursive Meroitic_Hieroglyphs Miao Mlym Modi Mong Mongolian Mro Mroo Mtei Mult Multani Myanmar Mymr Nabataean Narb Nbat New_Tai_Lue Newa Nko Nkoo Nshu Nushu Ogam Ogham Ol_Chiki Olck Old_Hungarian Old_Italic Old_North_Arabian Old_Permic Old_Persian Old_South_Arabian Old_Turkic Oriya Orkh Orya Osage Osge Osma Osmanya Pahawh_Hmong Palm Palmyrene Pau_Cin_Hau Pauc Perm Phag Phags_Pa Phli Phlp Phnx Phoenician Plrd Prti Psalter_Pahlavi Qaac Qaai Rejang Rjng Runic Runr Samaritan Samr Sarb Saur Saurashtra Sgnw Sharada Shavian Shaw Shrd Sidd Siddham SignWriting Sind Sinh Sinhala Sora Sora_Sompeng Soyo Soyombo Sund Sundanese Sylo Syloti_Nagri Syrc Syriac Tagalog Tagb Tagbanwa Tai_Le Tai_Tham Tai_Viet Takr Takri Tale Talu Tamil Taml Tang Tangut Tavt Telu Telugu Tfng Tglg Thaa Thaana Thai Tibetan Tibt Tifinagh Tirh Tirhuta Ugar Ugaritic Vai Vaii Wara Warang_Citi Xpeo Xsux Yi Yiii Zanabazar_Square Zanb Zinh Zyyy", "Dogr Dogra Gong Gunjala_Gondi Hanifi_Rohingya Maka Makasar Medefaidrin Medf Old_Sogdian Rohg Sogd Sogdian Sogo", "Elym Elymaic Hmnp Nand Nandinagari Nyiakeng_Puachue_Hmong Wancho Wcho", "Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi", "Cpmn Cypro_Minoan Old_Uyghur Ougr Tangsa Tnsa Toto Vith Vithkuqi", "Hrkt Katakana_Or_Hiragana Kawi Nag_Mundari Nagm Unknown Zzzz"); +const binPropertySets = new DataSet("AHex ASCII ASCII_Hex_Digit Alpha Alphabetic Any Assigned Bidi_C Bidi_Control Bidi_M Bidi_Mirrored CI CWCF CWCM CWKCF CWL CWT CWU Case_Ignorable Cased Changes_When_Casefolded Changes_When_Casemapped Changes_When_Lowercased Changes_When_NFKC_Casefolded Changes_When_Titlecased Changes_When_Uppercased DI Dash Default_Ignorable_Code_Point Dep Deprecated Dia Diacritic Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Ext Extender Gr_Base Gr_Ext Grapheme_Base Grapheme_Extend Hex Hex_Digit IDC IDS IDSB IDST IDS_Binary_Operator IDS_Trinary_Operator ID_Continue ID_Start Ideo Ideographic Join_C Join_Control LOE Logical_Order_Exception Lower Lowercase Math NChar Noncharacter_Code_Point Pat_Syn Pat_WS Pattern_Syntax Pattern_White_Space QMark Quotation_Mark RI Radical Regional_Indicator SD STerm Sentence_Terminal Soft_Dotted Term Terminal_Punctuation UIdeo Unified_Ideograph Upper Uppercase VS Variation_Selector White_Space XIDC XIDS XID_Continue XID_Start space", "Extended_Pictographic", "", "EBase EComp EMod EPres ExtPict", "", ""); function isValidUnicodeProperty(version, name, value) { if (gcNameSet.has(name)) { return version >= 2018 && gcValueSets.es2018.has(value); @@ -108,7 +118,9 @@ function isValidUnicodeProperty(version, name, value) { return ((version >= 2018 && scValueSets.es2018.has(value)) || (version >= 2019 && scValueSets.es2019.has(value)) || (version >= 2020 && scValueSets.es2020.has(value)) || - (version >= 2021 && scValueSets.es2021.has(value))); + (version >= 2021 && scValueSets.es2021.has(value)) || + (version >= 2022 && scValueSets.es2022.has(value)) || + (version >= 2023 && scValueSets.es2023.has(value))); } return false; } @@ -118,105 +130,105 @@ function isValidLoneUnicodeProperty(version, value) { (version >= 2021 && binPropertySets.es2021.has(value))); } -const Backspace = 0x08; -const CharacterTabulation = 0x09; -const LineFeed = 0x0a; -const LineTabulation = 0x0b; -const FormFeed = 0x0c; -const CarriageReturn = 0x0d; -const ExclamationMark = 0x21; -const DollarSign = 0x24; -const LeftParenthesis = 0x28; -const RightParenthesis = 0x29; -const Asterisk = 0x2a; -const PlusSign = 0x2b; -const Comma = 0x2c; -const HyphenMinus = 0x2d; -const FullStop = 0x2e; -const Solidus = 0x2f; -const DigitZero = 0x30; -const DigitOne = 0x31; -const DigitSeven = 0x37; -const DigitNine = 0x39; -const Colon = 0x3a; -const LessThanSign = 0x3c; -const EqualsSign = 0x3d; -const GreaterThanSign = 0x3e; -const QuestionMark = 0x3f; -const LatinCapitalLetterA = 0x41; -const LatinCapitalLetterB = 0x42; -const LatinCapitalLetterD = 0x44; -const LatinCapitalLetterF = 0x46; -const LatinCapitalLetterP = 0x50; -const LatinCapitalLetterS = 0x53; -const LatinCapitalLetterW = 0x57; -const LatinCapitalLetterZ = 0x5a; -const LowLine = 0x5f; -const LatinSmallLetterA = 0x61; -const LatinSmallLetterB = 0x62; -const LatinSmallLetterC = 0x63; -const LatinSmallLetterD = 0x64; -const LatinSmallLetterF = 0x66; -const LatinSmallLetterG = 0x67; -const LatinSmallLetterI = 0x69; -const LatinSmallLetterK = 0x6b; -const LatinSmallLetterM = 0x6d; -const LatinSmallLetterN = 0x6e; -const LatinSmallLetterP = 0x70; -const LatinSmallLetterR = 0x72; -const LatinSmallLetterS = 0x73; -const LatinSmallLetterT = 0x74; -const LatinSmallLetterU = 0x75; -const LatinSmallLetterV = 0x76; -const LatinSmallLetterW = 0x77; -const LatinSmallLetterX = 0x78; -const LatinSmallLetterY = 0x79; -const LatinSmallLetterZ = 0x7a; -const LeftSquareBracket = 0x5b; -const ReverseSolidus = 0x5c; -const RightSquareBracket = 0x5d; -const CircumflexAccent = 0x5e; -const LeftCurlyBracket = 0x7b; -const VerticalLine = 0x7c; -const RightCurlyBracket = 0x7d; -const ZeroWidthNonJoiner = 0x200c; -const ZeroWidthJoiner = 0x200d; -const LineSeparator = 0x2028; -const ParagraphSeparator = 0x2029; -const MinCodePoint = 0x00; -const MaxCodePoint = 0x10ffff; +const BACKSPACE = 0x08; +const CHARACTER_TABULATION = 0x09; +const LINE_FEED = 0x0a; +const LINE_TABULATION = 0x0b; +const FORM_FEED = 0x0c; +const CARRIAGE_RETURN = 0x0d; +const EXCLAMATION_MARK = 0x21; +const DOLLAR_SIGN = 0x24; +const LEFT_PARENTHESIS = 0x28; +const RIGHT_PARENTHESIS = 0x29; +const ASTERISK = 0x2a; +const PLUS_SIGN = 0x2b; +const COMMA = 0x2c; +const HYPHEN_MINUS = 0x2d; +const FULL_STOP = 0x2e; +const SOLIDUS = 0x2f; +const DIGIT_ZERO = 0x30; +const DIGIT_ONE = 0x31; +const DIGIT_SEVEN = 0x37; +const DIGIT_NINE = 0x39; +const COLON = 0x3a; +const LESS_THAN_SIGN = 0x3c; +const EQUALS_SIGN = 0x3d; +const GREATER_THAN_SIGN = 0x3e; +const QUESTION_MARK = 0x3f; +const LATIN_CAPITAL_LETTER_A = 0x41; +const LATIN_CAPITAL_LETTER_B = 0x42; +const LATIN_CAPITAL_LETTER_D = 0x44; +const LATIN_CAPITAL_LETTER_F = 0x46; +const LATIN_CAPITAL_LETTER_P = 0x50; +const LATIN_CAPITAL_LETTER_S = 0x53; +const LATIN_CAPITAL_LETTER_W = 0x57; +const LATIN_CAPITAL_LETTER_Z = 0x5a; +const LOW_LINE = 0x5f; +const LATIN_SMALL_LETTER_A = 0x61; +const LATIN_SMALL_LETTER_B = 0x62; +const LATIN_SMALL_LETTER_C = 0x63; +const LATIN_SMALL_LETTER_D = 0x64; +const LATIN_SMALL_LETTER_F = 0x66; +const LATIN_SMALL_LETTER_G = 0x67; +const LATIN_SMALL_LETTER_I = 0x69; +const LATIN_SMALL_LETTER_K = 0x6b; +const LATIN_SMALL_LETTER_M = 0x6d; +const LATIN_SMALL_LETTER_N = 0x6e; +const LATIN_SMALL_LETTER_P = 0x70; +const LATIN_SMALL_LETTER_R = 0x72; +const LATIN_SMALL_LETTER_S = 0x73; +const LATIN_SMALL_LETTER_T = 0x74; +const LATIN_SMALL_LETTER_U = 0x75; +const LATIN_SMALL_LETTER_V = 0x76; +const LATIN_SMALL_LETTER_W = 0x77; +const LATIN_SMALL_LETTER_X = 0x78; +const LATIN_SMALL_LETTER_Y = 0x79; +const LATIN_SMALL_LETTER_Z = 0x7a; +const LEFT_SQUARE_BRACKET = 0x5b; +const REVERSE_SOLIDUS = 0x5c; +const RIGHT_SQUARE_BRACKET = 0x5d; +const CIRCUMFLEX_ACCENT = 0x5e; +const LEFT_CURLY_BRACKET = 0x7b; +const VERTICAL_LINE = 0x7c; +const RIGHT_CURLY_BRACKET = 0x7d; +const ZERO_WIDTH_NON_JOINER = 0x200c; +const ZERO_WIDTH_JOINER = 0x200d; +const LINE_SEPARATOR = 0x2028; +const PARAGRAPH_SEPARATOR = 0x2029; +const MIN_CODE_POINT = 0x00; +const MAX_CODE_POINT = 0x10ffff; function isLatinLetter(code) { - return ((code >= LatinCapitalLetterA && code <= LatinCapitalLetterZ) || - (code >= LatinSmallLetterA && code <= LatinSmallLetterZ)); + return ((code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_Z) || + (code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_Z)); } function isDecimalDigit(code) { - return code >= DigitZero && code <= DigitNine; + return code >= DIGIT_ZERO && code <= DIGIT_NINE; } function isOctalDigit(code) { - return code >= DigitZero && code <= DigitSeven; + return code >= DIGIT_ZERO && code <= DIGIT_SEVEN; } function isHexDigit(code) { - return ((code >= DigitZero && code <= DigitNine) || - (code >= LatinCapitalLetterA && code <= LatinCapitalLetterF) || - (code >= LatinSmallLetterA && code <= LatinSmallLetterF)); + return ((code >= DIGIT_ZERO && code <= DIGIT_NINE) || + (code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_F) || + (code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_F)); } function isLineTerminator(code) { - return (code === LineFeed || - code === CarriageReturn || - code === LineSeparator || - code === ParagraphSeparator); + return (code === LINE_FEED || + code === CARRIAGE_RETURN || + code === LINE_SEPARATOR || + code === PARAGRAPH_SEPARATOR); } function isValidUnicode(code) { - return code >= MinCodePoint && code <= MaxCodePoint; + return code >= MIN_CODE_POINT && code <= MAX_CODE_POINT; } function digitToInt(code) { - if (code >= LatinSmallLetterA && code <= LatinSmallLetterF) { - return code - LatinSmallLetterA + 10; + if (code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_F) { + return code - LATIN_SMALL_LETTER_A + 10; } - if (code >= LatinCapitalLetterA && code <= LatinCapitalLetterF) { - return code - LatinCapitalLetterA + 10; + if (code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_F) { + return code - LATIN_CAPITAL_LETTER_A + 10; } - return code - DigitZero; + return code - DIGIT_ZERO; } function isLeadSurrogate(code) { return code >= 0xd800 && code <= 0xdbff; @@ -346,33 +358,33 @@ class RegExpSyntaxError extends SyntaxError { } function isSyntaxCharacter(cp) { - return (cp === CircumflexAccent || - cp === DollarSign || - cp === ReverseSolidus || - cp === FullStop || - cp === Asterisk || - cp === PlusSign || - cp === QuestionMark || - cp === LeftParenthesis || - cp === RightParenthesis || - cp === LeftSquareBracket || - cp === RightSquareBracket || - cp === LeftCurlyBracket || - cp === RightCurlyBracket || - cp === VerticalLine); + return (cp === CIRCUMFLEX_ACCENT || + cp === DOLLAR_SIGN || + cp === REVERSE_SOLIDUS || + cp === FULL_STOP || + cp === ASTERISK || + cp === PLUS_SIGN || + cp === QUESTION_MARK || + cp === LEFT_PARENTHESIS || + cp === RIGHT_PARENTHESIS || + cp === LEFT_SQUARE_BRACKET || + cp === RIGHT_SQUARE_BRACKET || + cp === LEFT_CURLY_BRACKET || + cp === RIGHT_CURLY_BRACKET || + cp === VERTICAL_LINE); } function isRegExpIdentifierStart(cp) { - return isIdStart(cp) || cp === DollarSign || cp === LowLine; + return isIdStart(cp) || cp === DOLLAR_SIGN || cp === LOW_LINE; } function isRegExpIdentifierPart(cp) { return (isIdContinue(cp) || - cp === DollarSign || - cp === LowLine || - cp === ZeroWidthNonJoiner || - cp === ZeroWidthJoiner); + cp === DOLLAR_SIGN || + cp === LOW_LINE || + cp === ZERO_WIDTH_NON_JOINER || + cp === ZERO_WIDTH_JOINER); } function isUnicodePropertyNameCharacter(cp) { - return isLatinLetter(cp) || cp === LowLine; + return isLatinLetter(cp) || cp === LOW_LINE; } function isUnicodePropertyValueCharacter(cp) { return isUnicodePropertyNameCharacter(cp) || isDecimalDigit(cp); @@ -392,13 +404,13 @@ class RegExpValidator { this._numCapturingParens = 0; this._groupNames = new Set(); this._backreferenceNames = new Set(); - this._options = options || {}; + this._options = options !== null && options !== void 0 ? options : {}; } validateLiteral(source, start = 0, end = source.length) { this._uFlag = this._nFlag = false; this.reset(source, start, end); this.onLiteralEnter(start); - if (this.eat(Solidus) && this.eatRegExpBody() && this.eat(Solidus)) { + if (this.eat(SOLIDUS) && this.eatRegExpBody() && this.eat(SOLIDUS)) { const flagStart = this.index; const uFlag = source.includes("u", flagStart); this.validateFlags(source, flagStart, end); @@ -428,36 +440,50 @@ class RegExpValidator { this.raise(`Duplicated flag '${source[i]}'`); } existingFlags.add(flag); - if (flag === LatinSmallLetterG) { + if (flag === LATIN_SMALL_LETTER_G) { global = true; } - else if (flag === LatinSmallLetterI) { + else if (flag === LATIN_SMALL_LETTER_I) { ignoreCase = true; } - else if (flag === LatinSmallLetterM) { + else if (flag === LATIN_SMALL_LETTER_M) { multiline = true; } - else if (flag === LatinSmallLetterU && this.ecmaVersion >= 2015) { + else if (flag === LATIN_SMALL_LETTER_U && + this.ecmaVersion >= 2015) { unicode = true; } - else if (flag === LatinSmallLetterY && this.ecmaVersion >= 2015) { + else if (flag === LATIN_SMALL_LETTER_Y && + this.ecmaVersion >= 2015) { sticky = true; } - else if (flag === LatinSmallLetterS && this.ecmaVersion >= 2018) { + else if (flag === LATIN_SMALL_LETTER_S && + this.ecmaVersion >= 2018) { dotAll = true; } - else if (flag === LatinSmallLetterD && this.ecmaVersion >= 2022) { + else if (flag === LATIN_SMALL_LETTER_D && + this.ecmaVersion >= 2022) { hasIndices = true; } else { this.raise(`Invalid flag '${source[i]}'`); } } - this.onFlags(start, end, global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices); + this.onRegExpFlags(start, end, { + global, + ignoreCase, + multiline, + unicode, + sticky, + dotAll, + hasIndices, + }); } validatePattern(source, start = 0, end = source.length, uFlag = false) { this._uFlag = uFlag && this.ecmaVersion >= 2015; - this._nFlag = uFlag && this.ecmaVersion >= 2018; + this._nFlag = + (uFlag && this.ecmaVersion >= 2018) || + Boolean(this._options.strict && this.ecmaVersion >= 2023); this.reset(source, start, end); this.consumePattern(); if (!this._nFlag && @@ -469,10 +495,11 @@ class RegExpValidator { } } get strict() { - return Boolean(this._options.strict || this._uFlag); + return Boolean(this._options.strict) || this._uFlag; } get ecmaVersion() { - return this._options.ecmaVersion || 2022; + var _a; + return (_a = this._options.ecmaVersion) !== null && _a !== void 0 ? _a : 2023; } onLiteralEnter(start) { if (this._options.onLiteralEnter) { @@ -484,9 +511,12 @@ class RegExpValidator { this._options.onLiteralLeave(start, end); } } - onFlags(start, end, global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices) { + onRegExpFlags(start, end, flags) { + if (this._options.onRegExpFlags) { + this._options.onRegExpFlags(start, end, flags); + } if (this._options.onFlags) { - this._options.onFlags(start, end, global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices); + this._options.onFlags(start, end, flags.global, flags.ignoreCase, flags.multiline, flags.unicode, flags.sticky, flags.dotAll, flags.hasIndices); } } onPatternEnter(start) { @@ -656,17 +686,17 @@ class RegExpValidator { if (escaped) { escaped = false; } - else if (cp === ReverseSolidus) { + else if (cp === REVERSE_SOLIDUS) { escaped = true; } - else if (cp === LeftSquareBracket) { + else if (cp === LEFT_SQUARE_BRACKET) { inClass = true; } - else if (cp === RightSquareBracket) { + else if (cp === RIGHT_SQUARE_BRACKET) { inClass = false; } - else if ((cp === Solidus && !inClass) || - (cp === Asterisk && this.index === start)) { + else if ((cp === SOLIDUS && !inClass) || + (cp === ASTERISK && this.index === start)) { break; } this.advance(); @@ -682,13 +712,13 @@ class RegExpValidator { this.consumeDisjunction(); const cp = this.currentCodePoint; if (this.currentCodePoint !== -1) { - if (cp === RightParenthesis) { + if (cp === RIGHT_PARENTHESIS) { this.raise("Unmatched ')'"); } - if (cp === ReverseSolidus) { + if (cp === REVERSE_SOLIDUS) { this.raise("\\ at end of pattern"); } - if (cp === RightSquareBracket || cp === RightCurlyBracket) { + if (cp === RIGHT_SQUARE_BRACKET || cp === RIGHT_CURLY_BRACKET) { this.raise("Lone quantifier brackets"); } const c = String.fromCodePoint(cp); @@ -711,21 +741,21 @@ class RegExpValidator { if (escaped) { escaped = false; } - else if (cp === ReverseSolidus) { + else if (cp === REVERSE_SOLIDUS) { escaped = true; } - else if (cp === LeftSquareBracket) { + else if (cp === LEFT_SQUARE_BRACKET) { inClass = true; } - else if (cp === RightSquareBracket) { + else if (cp === RIGHT_SQUARE_BRACKET) { inClass = false; } - else if (cp === LeftParenthesis && + else if (cp === LEFT_PARENTHESIS && !inClass && - (this.nextCodePoint !== QuestionMark || - (this.nextCodePoint2 === LessThanSign && - this.nextCodePoint3 !== EqualsSign && - this.nextCodePoint3 !== ExclamationMark))) { + (this.nextCodePoint !== QUESTION_MARK || + (this.nextCodePoint2 === LESS_THAN_SIGN && + this.nextCodePoint3 !== EQUALS_SIGN && + this.nextCodePoint3 !== EXCLAMATION_MARK))) { count += 1; } this.advance(); @@ -739,11 +769,11 @@ class RegExpValidator { this.onDisjunctionEnter(start); do { this.consumeAlternative(i++); - } while (this.eat(VerticalLine)); + } while (this.eat(VERTICAL_LINE)); if (this.consumeQuantifier(true)) { this.raise("Nothing to repeat"); } - if (this.eat(LeftCurlyBracket)) { + if (this.eat(LEFT_CURLY_BRACKET)) { this.raise("Lone quantifier brackets"); } this.onDisjunctionLeave(start, this.index); @@ -772,30 +802,31 @@ class RegExpValidator { consumeAssertion() { const start = this.index; this._lastAssertionIsQuantifiable = false; - if (this.eat(CircumflexAccent)) { + if (this.eat(CIRCUMFLEX_ACCENT)) { this.onEdgeAssertion(start, this.index, "start"); return true; } - if (this.eat(DollarSign)) { + if (this.eat(DOLLAR_SIGN)) { this.onEdgeAssertion(start, this.index, "end"); return true; } - if (this.eat2(ReverseSolidus, LatinCapitalLetterB)) { + if (this.eat2(REVERSE_SOLIDUS, LATIN_CAPITAL_LETTER_B)) { this.onWordBoundaryAssertion(start, this.index, "word", true); return true; } - if (this.eat2(ReverseSolidus, LatinSmallLetterB)) { + if (this.eat2(REVERSE_SOLIDUS, LATIN_SMALL_LETTER_B)) { this.onWordBoundaryAssertion(start, this.index, "word", false); return true; } - if (this.eat2(LeftParenthesis, QuestionMark)) { - const lookbehind = this.ecmaVersion >= 2018 && this.eat(LessThanSign); + if (this.eat2(LEFT_PARENTHESIS, QUESTION_MARK)) { + const lookbehind = this.ecmaVersion >= 2018 && this.eat(LESS_THAN_SIGN); let negate = false; - if (this.eat(EqualsSign) || (negate = this.eat(ExclamationMark))) { + if (this.eat(EQUALS_SIGN) || + (negate = this.eat(EXCLAMATION_MARK))) { const kind = lookbehind ? "lookbehind" : "lookahead"; this.onLookaroundAssertionEnter(start, kind, negate); this.consumeDisjunction(); - if (!this.eat(RightParenthesis)) { + if (!this.eat(RIGHT_PARENTHESIS)) { this.raise("Unterminated group"); } this._lastAssertionIsQuantifiable = !lookbehind && !this.strict; @@ -811,15 +842,15 @@ class RegExpValidator { let min = 0; let max = 0; let greedy = false; - if (this.eat(Asterisk)) { + if (this.eat(ASTERISK)) { min = 0; max = Number.POSITIVE_INFINITY; } - else if (this.eat(PlusSign)) { + else if (this.eat(PLUS_SIGN)) { min = 1; max = Number.POSITIVE_INFINITY; } - else if (this.eat(QuestionMark)) { + else if (this.eat(QUESTION_MARK)) { min = 0; max = 1; } @@ -830,7 +861,7 @@ class RegExpValidator { else { return false; } - greedy = !this.eat(QuestionMark); + greedy = !this.eat(QUESTION_MARK); if (!noConsume) { this.onQuantifier(start, this.index, min, max, greedy); } @@ -838,17 +869,17 @@ class RegExpValidator { } eatBracedQuantifier(noError) { const start = this.index; - if (this.eat(LeftCurlyBracket)) { + if (this.eat(LEFT_CURLY_BRACKET)) { this._lastMinValue = 0; this._lastMaxValue = Number.POSITIVE_INFINITY; if (this.eatDecimalDigits()) { this._lastMinValue = this._lastMaxValue = this._lastIntValue; - if (this.eat(Comma)) { + if (this.eat(COMMA)) { this._lastMaxValue = this.eatDecimalDigits() ? this._lastIntValue : Number.POSITIVE_INFINITY; } - if (this.eat(RightCurlyBracket)) { + if (this.eat(RIGHT_CURLY_BRACKET)) { if (!noError && this._lastMaxValue < this._lastMinValue) { this.raise("numbers out of order in {} quantifier"); } @@ -871,7 +902,7 @@ class RegExpValidator { this.consumeCapturingGroup()); } consumeDot() { - if (this.eat(FullStop)) { + if (this.eat(FULL_STOP)) { this.onAnyCharacterSet(this.index - 1, this.index, "any"); return true; } @@ -879,7 +910,7 @@ class RegExpValidator { } consumeReverseSolidusAtomEscape() { const start = this.index; - if (this.eat(ReverseSolidus)) { + if (this.eat(REVERSE_SOLIDUS)) { if (this.consumeAtomEscape()) { return true; } @@ -889,10 +920,10 @@ class RegExpValidator { } consumeUncapturingGroup() { const start = this.index; - if (this.eat3(LeftParenthesis, QuestionMark, Colon)) { + if (this.eat3(LEFT_PARENTHESIS, QUESTION_MARK, COLON)) { this.onGroupEnter(start); this.consumeDisjunction(); - if (!this.eat(RightParenthesis)) { + if (!this.eat(RIGHT_PARENTHESIS)) { this.raise("Unterminated group"); } this.onGroupLeave(start, this.index); @@ -902,19 +933,19 @@ class RegExpValidator { } consumeCapturingGroup() { const start = this.index; - if (this.eat(LeftParenthesis)) { + if (this.eat(LEFT_PARENTHESIS)) { let name = null; if (this.ecmaVersion >= 2018) { if (this.consumeGroupSpecifier()) { name = this._lastStrValue; } } - else if (this.currentCodePoint === QuestionMark) { + else if (this.currentCodePoint === QUESTION_MARK) { this.raise("Invalid group"); } this.onCapturingGroupEnter(start, name); this.consumeDisjunction(); - if (!this.eat(RightParenthesis)) { + if (!this.eat(RIGHT_PARENTHESIS)) { this.raise("Unterminated group"); } this.onCapturingGroupLeave(start, this.index, name); @@ -934,11 +965,11 @@ class RegExpValidator { } consumeReverseSolidusFollowedByC() { const start = this.index; - if (this.currentCodePoint === ReverseSolidus && - this.nextCodePoint === LatinSmallLetterC) { + if (this.currentCodePoint === REVERSE_SOLIDUS && + this.nextCodePoint === LATIN_SMALL_LETTER_C) { this._lastIntValue = this.currentCodePoint; this.advance(); - this.onCharacter(start, this.index, ReverseSolidus); + this.onCharacter(start, this.index, REVERSE_SOLIDUS); return true; } return false; @@ -963,17 +994,17 @@ class RegExpValidator { const start = this.index; const cp = this.currentCodePoint; if (cp !== -1 && - cp !== CircumflexAccent && - cp !== DollarSign && - cp !== ReverseSolidus && - cp !== FullStop && - cp !== Asterisk && - cp !== PlusSign && - cp !== QuestionMark && - cp !== LeftParenthesis && - cp !== RightParenthesis && - cp !== LeftSquareBracket && - cp !== VerticalLine) { + cp !== CIRCUMFLEX_ACCENT && + cp !== DOLLAR_SIGN && + cp !== REVERSE_SOLIDUS && + cp !== FULL_STOP && + cp !== ASTERISK && + cp !== PLUS_SIGN && + cp !== QUESTION_MARK && + cp !== LEFT_PARENTHESIS && + cp !== RIGHT_PARENTHESIS && + cp !== LEFT_SQUARE_BRACKET && + cp !== VERTICAL_LINE) { this.advance(); this.onCharacter(start, this.index, cp); return true; @@ -981,7 +1012,7 @@ class RegExpValidator { return false; } consumeGroupSpecifier() { - if (this.eat(QuestionMark)) { + if (this.eat(QUESTION_MARK)) { if (this.eatGroupName()) { if (!this._groupNames.has(this._lastStrValue)) { this._groupNames.add(this._lastStrValue); @@ -1022,32 +1053,32 @@ class RegExpValidator { } consumeCharacterClassEscape() { const start = this.index; - if (this.eat(LatinSmallLetterD)) { + if (this.eat(LATIN_SMALL_LETTER_D)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "digit", false); return true; } - if (this.eat(LatinCapitalLetterD)) { + if (this.eat(LATIN_CAPITAL_LETTER_D)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "digit", true); return true; } - if (this.eat(LatinSmallLetterS)) { + if (this.eat(LATIN_SMALL_LETTER_S)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "space", false); return true; } - if (this.eat(LatinCapitalLetterS)) { + if (this.eat(LATIN_CAPITAL_LETTER_S)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "space", true); return true; } - if (this.eat(LatinSmallLetterW)) { + if (this.eat(LATIN_SMALL_LETTER_W)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "word", false); return true; } - if (this.eat(LatinCapitalLetterW)) { + if (this.eat(LATIN_CAPITAL_LETTER_W)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "word", true); return true; @@ -1055,12 +1086,12 @@ class RegExpValidator { let negate = false; if (this._uFlag && this.ecmaVersion >= 2018 && - (this.eat(LatinSmallLetterP) || - (negate = this.eat(LatinCapitalLetterP)))) { + (this.eat(LATIN_SMALL_LETTER_P) || + (negate = this.eat(LATIN_CAPITAL_LETTER_P)))) { this._lastIntValue = -1; - if (this.eat(LeftCurlyBracket) && + if (this.eat(LEFT_CURLY_BRACKET) && this.eatUnicodePropertyValueExpression() && - this.eat(RightCurlyBracket)) { + this.eat(RIGHT_CURLY_BRACKET)) { this.onUnicodePropertyCharacterSet(start - 1, this.index, "property", this._lastKeyValue, this._lastValValue || null, negate); return true; } @@ -1086,7 +1117,7 @@ class RegExpValidator { } consumeKGroupName() { const start = this.index; - if (this.eat(LatinSmallLetterK)) { + if (this.eat(LATIN_SMALL_LETTER_K)) { if (this.eatGroupName()) { const groupName = this._lastStrValue; this._backreferenceNames.add(groupName); @@ -1099,11 +1130,11 @@ class RegExpValidator { } consumeCharacterClass() { const start = this.index; - if (this.eat(LeftSquareBracket)) { - const negate = this.eat(CircumflexAccent); + if (this.eat(LEFT_SQUARE_BRACKET)) { + const negate = this.eat(CIRCUMFLEX_ACCENT); this.onCharacterClassEnter(start, negate); this.consumeClassRanges(); - if (!this.eat(RightSquareBracket)) { + if (!this.eat(RIGHT_SQUARE_BRACKET)) { this.raise("Unterminated character class"); } this.onCharacterClassLeave(start, this.index, negate); @@ -1119,10 +1150,10 @@ class RegExpValidator { break; } const min = this._lastIntValue; - if (!this.eat(HyphenMinus)) { + if (!this.eat(HYPHEN_MINUS)) { continue; } - this.onCharacter(this.index - 1, this.index, HyphenMinus); + this.onCharacter(this.index - 1, this.index, HYPHEN_MINUS); if (!this.consumeClassAtom()) { break; } @@ -1142,18 +1173,21 @@ class RegExpValidator { consumeClassAtom() { const start = this.index; const cp = this.currentCodePoint; - if (cp !== -1 && cp !== ReverseSolidus && cp !== RightSquareBracket) { + if (cp !== -1 && + cp !== REVERSE_SOLIDUS && + cp !== RIGHT_SQUARE_BRACKET) { this.advance(); this._lastIntValue = cp; this.onCharacter(start, this.index, this._lastIntValue); return true; } - if (this.eat(ReverseSolidus)) { + if (this.eat(REVERSE_SOLIDUS)) { if (this.consumeClassEscape()) { return true; } - if (!this.strict && this.currentCodePoint === LatinSmallLetterC) { - this._lastIntValue = ReverseSolidus; + if (!this.strict && + this.currentCodePoint === LATIN_SMALL_LETTER_C) { + this._lastIntValue = REVERSE_SOLIDUS; this.onCharacter(start, this.index, this._lastIntValue); return true; } @@ -1166,21 +1200,21 @@ class RegExpValidator { } consumeClassEscape() { const start = this.index; - if (this.eat(LatinSmallLetterB)) { - this._lastIntValue = Backspace; + if (this.eat(LATIN_SMALL_LETTER_B)) { + this._lastIntValue = BACKSPACE; this.onCharacter(start - 1, this.index, this._lastIntValue); return true; } - if (this._uFlag && this.eat(HyphenMinus)) { - this._lastIntValue = HyphenMinus; + if (this._uFlag && this.eat(HYPHEN_MINUS)) { + this._lastIntValue = HYPHEN_MINUS; this.onCharacter(start - 1, this.index, this._lastIntValue); return true; } let cp = 0; if (!this.strict && !this._uFlag && - this.currentCodePoint === LatinSmallLetterC && - (isDecimalDigit((cp = this.nextCodePoint)) || cp === LowLine)) { + this.currentCodePoint === LATIN_SMALL_LETTER_C && + (isDecimalDigit((cp = this.nextCodePoint)) || cp === LOW_LINE)) { this.advance(); this.advance(); this._lastIntValue = cp % 0x20; @@ -1190,8 +1224,8 @@ class RegExpValidator { return (this.consumeCharacterClassEscape() || this.consumeCharacterEscape()); } eatGroupName() { - if (this.eat(LessThanSign)) { - if (this.eatRegExpIdentifierName() && this.eat(GreaterThanSign)) { + if (this.eat(LESS_THAN_SIGN)) { + if (this.eatRegExpIdentifierName() && this.eat(GREATER_THAN_SIGN)) { return true; } this.raise("Invalid capture group name"); @@ -1213,7 +1247,7 @@ class RegExpValidator { const forceUFlag = !this._uFlag && this.ecmaVersion >= 2020; let cp = this.currentCodePoint; this.advance(); - if (cp === ReverseSolidus && + if (cp === REVERSE_SOLIDUS && this.eatRegExpUnicodeEscapeSequence(forceUFlag)) { cp = this._lastIntValue; } @@ -1237,7 +1271,7 @@ class RegExpValidator { const forceUFlag = !this._uFlag && this.ecmaVersion >= 2020; let cp = this.currentCodePoint; this.advance(); - if (cp === ReverseSolidus && + if (cp === REVERSE_SOLIDUS && this.eatRegExpUnicodeEscapeSequence(forceUFlag)) { cp = this._lastIntValue; } @@ -1258,7 +1292,7 @@ class RegExpValidator { } eatCControlLetter() { const start = this.index; - if (this.eat(LatinSmallLetterC)) { + if (this.eat(LATIN_SMALL_LETTER_C)) { if (this.eatControlLetter()) { return true; } @@ -1267,7 +1301,7 @@ class RegExpValidator { return false; } eatZero() { - if (this.currentCodePoint === DigitZero && + if (this.currentCodePoint === DIGIT_ZERO && !isDecimalDigit(this.nextCodePoint)) { this._lastIntValue = 0; this.advance(); @@ -1276,24 +1310,24 @@ class RegExpValidator { return false; } eatControlEscape() { - if (this.eat(LatinSmallLetterF)) { - this._lastIntValue = FormFeed; + if (this.eat(LATIN_SMALL_LETTER_F)) { + this._lastIntValue = FORM_FEED; return true; } - if (this.eat(LatinSmallLetterN)) { - this._lastIntValue = LineFeed; + if (this.eat(LATIN_SMALL_LETTER_N)) { + this._lastIntValue = LINE_FEED; return true; } - if (this.eat(LatinSmallLetterR)) { - this._lastIntValue = CarriageReturn; + if (this.eat(LATIN_SMALL_LETTER_R)) { + this._lastIntValue = CARRIAGE_RETURN; return true; } - if (this.eat(LatinSmallLetterT)) { - this._lastIntValue = CharacterTabulation; + if (this.eat(LATIN_SMALL_LETTER_T)) { + this._lastIntValue = CHARACTER_TABULATION; return true; } - if (this.eat(LatinSmallLetterV)) { - this._lastIntValue = LineTabulation; + if (this.eat(LATIN_SMALL_LETTER_V)) { + this._lastIntValue = LINE_TABULATION; return true; } return false; @@ -1310,7 +1344,7 @@ class RegExpValidator { eatRegExpUnicodeEscapeSequence(forceUFlag = false) { const start = this.index; const uFlag = forceUFlag || this._uFlag; - if (this.eat(LatinSmallLetterU)) { + if (this.eat(LATIN_SMALL_LETTER_U)) { if ((uFlag && this.eatRegExpUnicodeSurrogatePairEscape()) || this.eatFixedHexDigits(4) || (uFlag && this.eatRegExpUnicodeCodePointEscape())) { @@ -1328,8 +1362,8 @@ class RegExpValidator { if (this.eatFixedHexDigits(4)) { const lead = this._lastIntValue; if (isLeadSurrogate(lead) && - this.eat(ReverseSolidus) && - this.eat(LatinSmallLetterU) && + this.eat(REVERSE_SOLIDUS) && + this.eat(LATIN_SMALL_LETTER_U) && this.eatFixedHexDigits(4)) { const trail = this._lastIntValue; if (isTrailSurrogate(trail)) { @@ -1343,9 +1377,9 @@ class RegExpValidator { } eatRegExpUnicodeCodePointEscape() { const start = this.index; - if (this.eat(LeftCurlyBracket) && + if (this.eat(LEFT_CURLY_BRACKET) && this.eatHexDigits() && - this.eat(RightCurlyBracket) && + this.eat(RIGHT_CURLY_BRACKET) && isValidUnicode(this._lastIntValue)) { return true; } @@ -1366,32 +1400,32 @@ class RegExpValidator { return false; } if (this._uFlag) { - return isSyntaxCharacter(cp) || cp === Solidus; + return isSyntaxCharacter(cp) || cp === SOLIDUS; } if (this.strict) { return !isIdContinue(cp); } if (this._nFlag) { - return !(cp === LatinSmallLetterC || cp === LatinSmallLetterK); + return !(cp === LATIN_SMALL_LETTER_C || cp === LATIN_SMALL_LETTER_K); } - return cp !== LatinSmallLetterC; + return cp !== LATIN_SMALL_LETTER_C; } eatDecimalEscape() { this._lastIntValue = 0; let cp = this.currentCodePoint; - if (cp >= DigitOne && cp <= DigitNine) { + if (cp >= DIGIT_ONE && cp <= DIGIT_NINE) { do { - this._lastIntValue = 10 * this._lastIntValue + (cp - DigitZero); + this._lastIntValue = 10 * this._lastIntValue + (cp - DIGIT_ZERO); this.advance(); - } while ((cp = this.currentCodePoint) >= DigitZero && - cp <= DigitNine); + } while ((cp = this.currentCodePoint) >= DIGIT_ZERO && + cp <= DIGIT_NINE); return true; } return false; } eatUnicodePropertyValueExpression() { const start = this.index; - if (this.eatUnicodePropertyName() && this.eat(EqualsSign)) { + if (this.eatUnicodePropertyName() && this.eat(EQUALS_SIGN)) { this._lastKeyValue = this._lastStrValue; if (this.eatUnicodePropertyValue()) { this._lastValValue = this._lastStrValue; @@ -1439,7 +1473,7 @@ class RegExpValidator { } eatHexEscapeSequence() { const start = this.index; - if (this.eat(LatinSmallLetterX)) { + if (this.eat(LATIN_SMALL_LETTER_X)) { if (this.eatFixedHexDigits(2)) { return true; } @@ -1493,7 +1527,7 @@ class RegExpValidator { const cp = this.currentCodePoint; if (isOctalDigit(cp)) { this.advance(); - this._lastIntValue = cp - DigitZero; + this._lastIntValue = cp - DIGIT_ZERO; return true; } this._lastIntValue = 0; @@ -1515,18 +1549,19 @@ class RegExpValidator { } } -const DummyPattern = {}; -const DummyFlags = {}; -const DummyCapturingGroup = {}; +const DUMMY_PATTERN = {}; +const DUMMY_FLAGS = {}; +const DUMMY_CAPTURING_GROUP = {}; class RegExpParserState { constructor(options) { - this._node = DummyPattern; - this._flags = DummyFlags; + var _a; + this._node = DUMMY_PATTERN; + this._flags = DUMMY_FLAGS; this._backreferences = []; this._capturingGroups = []; this.source = ""; - this.strict = Boolean(options && options.strict); - this.ecmaVersion = (options && options.ecmaVersion) || 2022; + this.strict = Boolean(options === null || options === void 0 ? void 0 : options.strict); + this.ecmaVersion = (_a = options === null || options === void 0 ? void 0 : options.ecmaVersion) !== null && _a !== void 0 ? _a : 2023; } get pattern() { if (this._node.type !== "Pattern") { @@ -1540,7 +1575,7 @@ class RegExpParserState { } return this._flags; } - onFlags(start, end, global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices) { + onRegExpFlags(start, end, { global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices, }) { this._flags = { type: "Flags", parent: null, @@ -1575,7 +1610,7 @@ class RegExpParserState { const ref = reference.ref; const group = typeof ref === "number" ? this._capturingGroups[ref - 1] - : this._capturingGroups.find(g => g.name === ref); + : this._capturingGroups.find((g) => g.name === ref); reference.resolved = group; group.references.push(reference); } @@ -1811,7 +1846,7 @@ class RegExpParserState { end, raw: this.source.slice(start, end), ref, - resolved: DummyCapturingGroup, + resolved: DUMMY_CAPTURING_GROUP, }; parent.elements.push(node); this._backreferences.push(node); @@ -1857,7 +1892,7 @@ class RegExpParserState { min.type !== "Character" || max.type !== "Character" || hyphen.type !== "Character" || - hyphen.value !== HyphenMinus) { + hyphen.value !== HYPHEN_MINUS) { throw new Error("UnknownError"); } const node = { @@ -2081,7 +2116,7 @@ function parseRegExpLiteral(source, options) { return new RegExpParser(options).parseLiteral(String(source)); } function validateRegExpLiteral(source, options) { - return new RegExpValidator(options).validateLiteral(source); + new RegExpValidator(options).validateLiteral(source); } function visitRegExpAST(node, handlers) { new RegExpVisitor(handlers).visit(node); diff --git a/tools/node_modules/eslint/node_modules/regexpp/index.mjs b/tools/node_modules/eslint/node_modules/@eslint-community/regexpp/index.mjs similarity index 77% rename from tools/node_modules/eslint/node_modules/regexpp/index.mjs rename to tools/node_modules/eslint/node_modules/@eslint-community/regexpp/index.mjs index bc1f59c4efc76a..a808c812203668 100644 --- a/tools/node_modules/eslint/node_modules/regexpp/index.mjs +++ b/tools/node_modules/eslint/node_modules/@eslint-community/regexpp/index.mjs @@ -1,8 +1,5 @@ -/*! @author Toru Nagashima */ - - var ast = /*#__PURE__*/Object.freeze({ - + __proto__: null }); let largeIdStartRanges = undefined; @@ -36,17 +33,16 @@ function isIdContinue(cp) { return isLargeIdStart(cp) || isLargeIdContinue(cp); } function isLargeIdStart(cp) { - return isInRange(cp, largeIdStartRanges || (largeIdStartRanges = initLargeIdStartRanges())); + return isInRange(cp, largeIdStartRanges !== null && largeIdStartRanges !== void 0 ? largeIdStartRanges : (largeIdStartRanges = initLargeIdStartRanges())); } function isLargeIdContinue(cp) { - return isInRange(cp, largeIdContinueRanges || - (largeIdContinueRanges = initLargeIdContinueRanges())); + return isInRange(cp, largeIdContinueRanges !== null && largeIdContinueRanges !== void 0 ? largeIdContinueRanges : (largeIdContinueRanges = initLargeIdContinueRanges())); } function initLargeIdStartRanges() { - return restoreRanges("4q 0 b 0 5 0 6 m 2 u 2 cp 5 b f 4 8 0 2 0 3m 4 2 1 3 3 2 0 7 0 2 2 2 0 2 j 2 2a 2 3u 9 4l 2 11 3 0 7 14 20 q 5 3 1a 16 10 1 2 2q 2 0 g 1 8 1 b 2 3 0 h 0 2 t u 2g c 0 p w a 1 5 0 6 l 5 0 a 0 4 0 o o 8 a 1i k 2 h 1p 1h 4 0 j 0 8 9 g f 5 7 3 1 3 l 2 6 2 0 4 3 4 0 h 0 e 1 2 2 f 1 b 0 9 5 5 1 3 l 2 6 2 1 2 1 2 1 w 3 2 0 k 2 h 8 2 2 2 l 2 6 2 1 2 4 4 0 j 0 g 1 o 0 c 7 3 1 3 l 2 6 2 1 2 4 4 0 v 1 2 2 g 0 i 0 2 5 4 2 2 3 4 1 2 0 2 1 4 1 4 2 4 b n 0 1h 7 2 2 2 m 2 f 4 0 r 2 6 1 v 0 5 7 2 2 2 m 2 9 2 4 4 0 x 0 2 1 g 1 i 8 2 2 2 14 3 0 h 0 6 2 9 2 p 5 6 h 4 n 2 8 2 0 3 6 1n 1b 2 1 d 6 1n 1 2 0 2 4 2 n 2 0 2 9 2 1 a 0 3 4 2 0 m 3 x 0 1s 7 2 z s 4 38 16 l 0 h 5 5 3 4 0 4 1 8 2 5 c d 0 i 11 2 0 6 0 3 16 2 98 2 3 3 6 2 0 2 3 3 14 2 3 3 w 2 3 3 6 2 0 2 3 3 e 2 1k 2 3 3 1u 12 f h 2d 3 5 4 h7 3 g 2 p 6 22 4 a 8 c 2 3 f h f h f c 2 2 g 1f 10 0 5 0 1w 2g 8 14 2 0 6 1x b u 1e t 3 4 c 17 5 p 1j m a 1g 2b 0 2m 1a i 6 1k t e 1 b 17 r z 16 2 b z 3 8 8 16 3 2 16 3 2 5 2 1 4 0 6 5b 1t 7p 3 5 3 11 3 5 3 7 2 0 2 0 2 0 2 u 3 1g 2 6 2 0 4 2 2 6 4 3 3 5 5 c 6 2 2 6 39 0 e 0 h c 2u 0 5 0 3 9 2 0 3 5 7 0 2 0 2 0 2 f 3 3 6 4 5 0 i 14 22g 1a 2 1a 2 3o 7 3 4 1 d 11 2 0 6 0 3 1j 8 0 h m a 6 2 6 2 6 2 6 2 6 2 6 2 6 2 6 fb 2 q 8 8 4 3 4 5 2d 5 4 2 2h 2 3 6 16 2 2l i v 1d f e9 533 1t g70 4 wc 1w 19 3 7g 4 f b 1 l 1a h u 3 27 14 8 3 2u 3 1g 3 8 17 c 2 2 2 3 2 m u 1f f 1d 1r 5 4 0 2 1 c r b m q s 8 1a t 0 h 4 2 9 b 4 2 14 o 2 2 7 l m 4 0 4 1d 2 0 4 1 3 4 3 0 2 0 p 2 3 a 8 2 d 5 3 5 3 5 a 6 2 6 2 16 2 d 7 36 u 8mb d m 5 1c 6it a5 3 2x 13 6 d 4 6 0 2 9 2 c 2 4 2 0 2 1 2 1 2 2z y a2 j 1r 3 1h 15 b 39 4 2 3q 11 p 7 p c 2g 4 5 3 5 3 5 3 2 10 b 2 p 2 i 2 1 2 e 3 d z 3e 1y 1g 7g s 4 1c 1c v e t 6 11 b t 3 z 5 7 2 4 17 4d j z 5 z 5 13 9 1f 4d 8m a l b 7 49 5 3 0 2 17 2 1 4 0 3 m b m a u 1u i 2 1 b l b p 1z 1j 7 1 1t 0 g 3 2 2 2 s 17 s 4 s 10 7 2 r s 1h b l b i e h 33 20 1k 1e e 1e e z 9p 15 7 1 27 s b 0 9 l 2z k s m d 1g 24 18 x o r z u 0 3 0 9 y 4 0 d 1b f 3 m 0 2 0 10 h 2 o 2d 6 2 0 2 3 2 e 2 9 8 1a 13 7 3 1 3 l 2 6 2 1 2 4 4 0 j 0 d 4 4f 1g j 3 l 2 v 1b l 1 2 0 55 1a 16 3 11 1b l 0 1o 16 e 0 20 q 6e 17 39 1r w 7 3 0 3 7 2 1 2 n g 0 2 0 2n 7 3 12 h 0 2 0 t 0 b 13 8 0 m 0 c 19 k 0 z 1k 7c 8 2 10 i 0 1e t 35 6 2 1 2 11 m 0 q 5 2 1 2 v f 0 94 i 5a 0 28 pl 2v 32 i 5f 24d tq 34i g6 6nu fs 8 u 36 t j 1b h 3 w k 6 i j5 1r 3l 22 6 0 1v c 1t 1 2 0 t 4qf 9 yd 17 8 6wo 7y 1e 2 i 3 9 az 1s5 2y 6 c 4 8 8 9 4mf 2c 2 1y 2 1 3 0 3 1 3 3 2 b 2 0 2 6 2 1s 2 3 3 7 2 6 2 r 2 3 2 4 2 0 4 6 2 9f 3 o 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 7 1th 18 b 6 h 0 aa 17 105 5g 1o 1v 8 0 xh 3 2 q 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 g 6 2 2 4 2 g 3et wyl z 378 c 65 3 4g1 f 5rk 2e8 f1 15v 3t6"); + return restoreRanges("4q 0 b 0 5 0 6 m 2 u 2 cp 5 b f 4 8 0 2 0 3m 4 2 1 3 3 2 0 7 0 2 2 2 0 2 j 2 2a 2 3u 9 4l 2 11 3 0 7 14 20 q 5 3 1a 16 10 1 2 2q 2 0 g 1 8 1 b 2 3 0 h 0 2 t u 2g c 0 p w a 1 5 0 6 l 5 0 a 0 4 0 o o 8 a 6 n 2 5 i 15 1n 1h 4 0 j 0 8 9 g f 5 7 3 1 3 l 2 6 2 0 4 3 4 0 h 0 e 1 2 2 f 1 b 0 9 5 5 1 3 l 2 6 2 1 2 1 2 1 w 3 2 0 k 2 h 8 2 2 2 l 2 6 2 1 2 4 4 0 j 0 g 1 o 0 c 7 3 1 3 l 2 6 2 1 2 4 4 0 v 1 2 2 g 0 i 0 2 5 4 2 2 3 4 1 2 0 2 1 4 1 4 2 4 b n 0 1h 7 2 2 2 m 2 f 4 0 r 2 3 0 3 1 v 0 5 7 2 2 2 m 2 9 2 4 4 0 w 1 2 1 g 1 i 8 2 2 2 14 3 0 h 0 6 2 9 2 p 5 6 h 4 n 2 8 2 0 3 6 1n 1b 2 1 d 6 1n 1 2 0 2 4 2 n 2 0 2 9 2 1 a 0 3 4 2 0 m 3 x 0 1s 7 2 z s 4 38 16 l 0 h 5 5 3 4 0 4 1 8 2 5 c d 0 i 11 2 0 6 0 3 16 2 98 2 3 3 6 2 0 2 3 3 14 2 3 3 w 2 3 3 6 2 0 2 3 3 e 2 1k 2 3 3 1u 12 f h 2d 3 5 4 h7 3 g 2 p 6 22 4 a 8 h e i f h f c 2 2 g 1f 10 0 5 0 1w 2g 8 14 2 0 6 1x b u 1e t 3 4 c 17 5 p 1j m a 1g 2b 0 2m 1a i 7 1j t e 1 b 17 r z 16 2 b z 3 8 8 16 3 2 16 3 2 5 2 1 4 0 6 5b 1t 7p 3 5 3 11 3 5 3 7 2 0 2 0 2 0 2 u 3 1g 2 6 2 0 4 2 2 6 4 3 3 5 5 c 6 2 2 6 39 0 e 0 h c 2u 0 5 0 3 9 2 0 3 5 7 0 2 0 2 0 2 f 3 3 6 4 5 0 i 14 22g 6c 7 3 4 1 d 11 2 0 6 0 3 1j 8 0 h m a 6 2 6 2 6 2 6 2 6 2 6 2 6 2 6 fb 2 q 8 8 4 3 4 5 2d 5 4 2 2h 2 3 6 16 2 2l i v 1d f e9 533 1t h3g 1w 19 3 7g 4 f b 1 l 1a h u 3 27 14 8 3 2u 3 1r 6 1 2 0 2 4 p f 2 2 2 3 2 m u 1f f 1d 1r 5 4 0 2 1 c r b m q s 8 1a t 0 h 4 2 9 b 4 2 14 o 2 2 7 l m 4 0 4 1d 2 0 4 1 3 4 3 0 2 0 p 2 3 a 8 2 d 5 3 5 3 5 a 6 2 6 2 16 2 d 7 36 u 8mb d m 5 1c 6it a5 3 2x 13 6 d 4 6 0 2 9 2 c 2 4 2 0 2 1 2 1 2 2z y a2 j 1r 3 1h 15 b 39 4 2 3q 11 p 7 p c 2g 4 5 3 5 3 5 3 2 10 b 2 p 2 i 2 1 2 e 3 d z 3e 1y 1g 7g s 4 1c 1c v e t 6 11 b t 3 z 5 7 2 4 17 4d j z 5 z 5 13 9 1f d a 2 e 2 6 2 1 2 a 2 e 2 6 2 1 1w 8m a l b 7 p 5 2 15 2 8 1y 5 3 0 2 17 2 1 4 0 3 m b m a u 1u i 2 1 b l b p 1z 1j 7 1 1t 0 g 3 2 2 2 s 17 s 4 s 10 7 2 r s 1h b l b i e h 33 20 1k 1e e 1e e z 9p 15 7 1 27 s b 0 9 l 17 h 1b k s m d 1g 1m 1 3 0 e 18 x o r z u 0 3 0 9 y 4 0 d 1b f 3 m 0 2 0 10 h 2 o k 1 1s 6 2 0 2 3 2 e 2 9 8 1a 13 7 3 1 3 l 2 6 2 1 2 4 4 0 j 0 d 4 4f 1g j 3 l 2 v 1b l 1 2 0 55 1a 16 3 11 1b l 0 1o 16 e 0 20 q 12 6 56 17 39 1r w 7 3 0 3 7 2 1 2 n g 0 2 0 2n 7 3 12 h 0 2 0 t 0 b 13 8 0 m 0 c 19 k 0 j 20 7c 8 2 10 i 0 1e t 35 6 2 1 2 11 m 0 q 5 2 1 2 v f 0 94 i g 0 2 c 2 x 3h 0 28 pl 2v 32 i 5f 219 2o g tr i 5 33u g6 6nu fs 8 u i 26 i t j 1b h 3 w k 6 i j5 1r 3l 22 6 0 1v c 1t 1 2 0 t 4qf 9 yd 17 8 6w8 3 2 6 2 1 2 82 g 0 u 2 3 0 f 3 9 az 1s5 2y 6 c 4 8 8 9 4mf 2c 2 1y 2 1 3 0 3 1 3 3 2 b 2 0 2 6 2 1s 2 3 3 7 2 6 2 r 2 3 2 4 2 0 4 6 2 9f 3 o 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 7 1f9 u 7 5 7a 1p 43 18 b 6 h 0 8y t j 17 dh r l1 6 2 3 2 1 2 e 2 5g 1o 1v 8 0 xh 3 2 q 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 g 6 2 2 4 2 g 3et wyn x 37d 7 65 3 4g1 f 5rk 2e8 f1 15v 3t6 6 38f"); } function initLargeIdContinueRanges() { - return restoreRanges("53 0 g9 33 o 0 70 4 7e 18 2 0 2 1 2 1 2 0 21 a 1d u 7 0 2u 6 3 5 3 1 2 3 3 9 o 0 v q 2k a g 9 y 8 a 0 p 3 2 8 2 2 2 4 18 2 3c e 2 w 1j 2 2 h 2 6 b 1 3 9 i 2 1l 0 2 6 3 1 3 2 a 0 b 1 3 9 f 0 3 2 1l 0 2 4 5 1 3 2 4 0 l b 4 0 c 2 1l 0 2 7 2 2 2 2 l 1 3 9 b 5 2 2 1l 0 2 6 3 1 3 2 8 2 b 1 3 9 j 0 1o 4 4 2 2 3 a 0 f 9 h 4 1m 6 2 2 2 3 8 1 c 1 3 9 i 2 1l 0 2 6 2 2 2 3 8 1 c 1 3 9 h 3 1k 1 2 6 2 2 2 3 a 0 b 1 3 9 i 2 1z 0 5 5 2 0 2 7 7 9 3 1 1q 0 3 6 d 7 2 9 2g 0 3 8 c 5 3 9 1r 1 7 9 c 0 2 0 2 0 5 1 1e j 2 1 6 a 2 z a 0 2t j 2 9 d 3 5 2 2 2 3 6 4 3 e b 2 e jk 2 a 8 pt 2 u 2 u 1 v 1 1t v a 0 3 9 y 2 3 9 40 0 3b b 5 b b 9 3l a 1p 4 1m 9 2 s 3 a 7 9 n d 2 1 1s 4 1c g c 9 i 8 d 2 v c 3 9 19 d 1d j 9 9 7 9 3b 2 2 k 5 0 7 0 3 2 5j 1l 2 4 g0 1 k 0 3g c 5 0 4 b 2db 2 3y 0 2p v ff 5 2y 1 n7q 9 1y 0 5 9 x 1 29 1 7l 0 4 0 5 0 o 4 5 0 2c 1 1f h b 9 7 h e a t 7 q c 19 3 1c d g 9 c 0 b 9 1c d d 0 9 1 3 9 y 2 1f 0 2 2 3 1 6 1 2 0 16 4 6 1 6l 7 2 1 3 9 fmt 0 ki f h f 4 1 p 2 5d 9 12 0 ji 0 6b 0 46 4 86 9 120 2 2 1 6 3 15 2 5 0 4m 1 fy 3 9 9 aa 1 4a a 4w 2 1i e w 9 g 3 1a a 1i 9 7 2 11 d 2 9 6 1 19 0 d 2 1d d 9 3 2 b 2b b 7 0 4h b 6 9 7 3 1k 1 2 6 3 1 3 2 a 0 b 1 3 6 4 4 5d h a 9 5 0 2a j d 9 5y 6 3 8 s 1 2b g g 9 2a c 9 9 2c e 5 9 6r e 4m 9 1z 5 2 1 3 3 2 0 2 1 d 9 3c 6 3 6 4 0 t 9 15 6 2 3 9 0 a a 1b f ba 7 2 7 h 9 1l l 2 d 3f 5 4 0 2 1 2 6 2 0 9 9 1d 4 2 1 2 4 9 9 96 3 ewa 9 3r 4 1o 6 q 9 s6 0 2 1i 8 3 2a 0 c 1 f58 1 43r 4 4 5 9 7 3 6 v 3 45 2 13e 1d e9 1i 5 1d 9 0 f 0 n 4 2 e 11t 6 2 g 3 6 2 1 2 4 7a 6 a 9 bn d 15j 6 32 6 6 9 3o7 9 gvt3 6n"); + return restoreRanges("53 0 g9 33 o 0 70 4 7e 18 2 0 2 1 2 1 2 0 21 a 1d u 7 0 2u 6 3 5 3 1 2 3 3 9 o 0 v q 2k a g 9 y 8 a 0 p 3 2 8 2 2 2 4 18 2 1p 7 17 n 2 w 1j 2 2 h 2 6 b 1 3 9 i 2 1l 0 2 6 3 1 3 2 a 0 b 1 3 9 f 0 3 2 1l 0 2 4 5 1 3 2 4 0 l b 4 0 c 2 1l 0 2 7 2 2 2 2 l 1 3 9 b 5 2 2 1l 0 2 6 3 1 3 2 8 2 b 1 3 9 j 0 1o 4 4 2 2 3 a 0 f 9 h 4 1k 0 2 6 2 2 2 3 8 1 c 1 3 9 i 2 1l 0 2 6 2 2 2 3 8 1 c 1 3 9 4 0 d 3 1k 1 2 6 2 2 2 3 a 0 b 1 3 9 i 2 1z 0 5 5 2 0 2 7 7 9 3 1 1q 0 3 6 d 7 2 9 2g 0 3 8 c 6 2 9 1r 1 7 9 c 0 2 0 2 0 5 1 1e j 2 1 6 a 2 z a 0 2t j 2 9 d 3 5 2 2 2 3 6 4 3 e b 2 e jk 2 a 8 pt 3 t 2 u 1 v 1 1t v a 0 3 9 y 2 2 a 40 0 3b b 5 b b 9 3l a 1p 4 1m 9 2 s 3 a 7 9 n d 2 f 1e 4 1c g c 9 i 8 d 2 v c 3 9 19 d 1d j 9 9 7 9 3b 2 2 k 5 0 7 0 3 2 5j 1r g0 1 k 0 3g c 5 0 4 b 2db 2 3y 0 2p v ff 5 2y 1 n7q 9 1y 0 5 9 x 1 29 1 7l 0 4 0 5 0 o 4 5 0 2c 1 1f h b 9 7 h e a t 7 q c 19 3 1c d g 9 c 0 b 9 1c d d 0 9 1 3 9 y 2 1f 0 2 2 3 1 6 1 2 0 16 4 6 1 6l 7 2 1 3 9 fmt 0 ki f h f 4 1 p 2 5d 9 12 0 ji 0 6b 0 46 4 86 9 120 2 2 1 6 3 15 2 5 0 4m 1 fy 3 9 9 aa 1 29 2 1z a 1e 3 3f 2 1i e w a 3 1 b 3 1a a 8 0 1a 9 7 2 11 d 2 9 6 1 19 0 d 2 1d d 9 3 2 b 2b b 7 0 3 0 4e b 6 9 7 3 1k 1 2 6 3 1 3 2 a 0 b 1 3 6 4 4 5d h a 9 5 0 2a j d 9 5y 6 3 8 s 1 2b g g 9 2a c 9 9 2c e 5 9 6r e 4m 9 1z 5 2 1 3 3 2 0 2 1 d 9 3c 6 3 6 4 0 t 9 15 6 2 3 9 0 a a 1b f ba 7 2 7 h 9 1l l 2 d 3f 5 4 0 2 1 2 6 2 0 9 9 1d 4 2 1 2 4 9 9 96 3 a 1 2 0 1d 6 4 4 e 9 44n 0 7 e aob 9 2f 9 13 4 1o 6 q 9 s6 0 2 1i 8 3 2a 0 c 1 f58 1 3mq 19 3 m f3 4 4 5 9 7 3 6 v 3 45 2 13e 1d e9 1i 5 1d 9 0 f 0 n 4 2 e 11t 6 2 g 3 6 2 1 2 4 2t 0 4h 6 a 9 9x 0 1q d dv d rb 6 32 6 6 9 3o7 9 gvt3 6n"); } function isInRange(cp, ranges) { let l = 0, r = (ranges.length / 2) | 0, i = 0, min = 0, max = 0; @@ -68,34 +64,48 @@ function isInRange(cp, ranges) { } function restoreRanges(data) { let last = 0; - return data.split(" ").map(s => (last += parseInt(s, 36) | 0)); + return data.split(" ").map((s) => (last += parseInt(s, 36) | 0)); } class DataSet { - constructor(raw2018, raw2019, raw2020, raw2021) { + constructor(raw2018, raw2019, raw2020, raw2021, raw2022, raw2023) { this._raw2018 = raw2018; this._raw2019 = raw2019; this._raw2020 = raw2020; this._raw2021 = raw2021; + this._raw2022 = raw2022; + this._raw2023 = raw2023; } get es2018() { - return (this._set2018 || (this._set2018 = new Set(this._raw2018.split(" ")))); + var _a; + return ((_a = this._set2018) !== null && _a !== void 0 ? _a : (this._set2018 = new Set(this._raw2018.split(" ")))); } get es2019() { - return (this._set2019 || (this._set2019 = new Set(this._raw2019.split(" ")))); + var _a; + return ((_a = this._set2019) !== null && _a !== void 0 ? _a : (this._set2019 = new Set(this._raw2019.split(" ")))); } get es2020() { - return (this._set2020 || (this._set2020 = new Set(this._raw2020.split(" ")))); + var _a; + return ((_a = this._set2020) !== null && _a !== void 0 ? _a : (this._set2020 = new Set(this._raw2020.split(" ")))); } get es2021() { - return (this._set2021 || (this._set2021 = new Set(this._raw2021.split(" ")))); + var _a; + return ((_a = this._set2021) !== null && _a !== void 0 ? _a : (this._set2021 = new Set(this._raw2021.split(" ")))); + } + get es2022() { + var _a; + return ((_a = this._set2022) !== null && _a !== void 0 ? _a : (this._set2022 = new Set(this._raw2022.split(" ")))); + } + get es2023() { + var _a; + return ((_a = this._set2023) !== null && _a !== void 0 ? _a : (this._set2023 = new Set(this._raw2023.split(" ")))); } } const gcNameSet = new Set(["General_Category", "gc"]); const scNameSet = new Set(["Script", "Script_Extensions", "sc", "scx"]); -const gcValueSets = new DataSet("C Cased_Letter Cc Cf Close_Punctuation Cn Co Combining_Mark Connector_Punctuation Control Cs Currency_Symbol Dash_Punctuation Decimal_Number Enclosing_Mark Final_Punctuation Format Initial_Punctuation L LC Letter Letter_Number Line_Separator Ll Lm Lo Lowercase_Letter Lt Lu M Mark Math_Symbol Mc Me Mn Modifier_Letter Modifier_Symbol N Nd Nl No Nonspacing_Mark Number Open_Punctuation Other Other_Letter Other_Number Other_Punctuation Other_Symbol P Paragraph_Separator Pc Pd Pe Pf Pi Po Private_Use Ps Punctuation S Sc Separator Sk Sm So Space_Separator Spacing_Mark Surrogate Symbol Titlecase_Letter Unassigned Uppercase_Letter Z Zl Zp Zs cntrl digit punct", "", "", ""); -const scValueSets = new DataSet("Adlam Adlm Aghb Ahom Anatolian_Hieroglyphs Arab Arabic Armenian Armi Armn Avestan Avst Bali Balinese Bamu Bamum Bass Bassa_Vah Batak Batk Beng Bengali Bhaiksuki Bhks Bopo Bopomofo Brah Brahmi Brai Braille Bugi Buginese Buhd Buhid Cakm Canadian_Aboriginal Cans Cari Carian Caucasian_Albanian Chakma Cham Cher Cherokee Common Copt Coptic Cprt Cuneiform Cypriot Cyrillic Cyrl Deseret Deva Devanagari Dsrt Dupl Duployan Egyp Egyptian_Hieroglyphs Elba Elbasan Ethi Ethiopic Geor Georgian Glag Glagolitic Gonm Goth Gothic Gran Grantha Greek Grek Gujarati Gujr Gurmukhi Guru Han Hang Hangul Hani Hano Hanunoo Hatr Hatran Hebr Hebrew Hira Hiragana Hluw Hmng Hung Imperial_Aramaic Inherited Inscriptional_Pahlavi Inscriptional_Parthian Ital Java Javanese Kaithi Kali Kana Kannada Katakana Kayah_Li Khar Kharoshthi Khmer Khmr Khoj Khojki Khudawadi Knda Kthi Lana Lao Laoo Latin Latn Lepc Lepcha Limb Limbu Lina Linb Linear_A Linear_B Lisu Lyci Lycian Lydi Lydian Mahajani Mahj Malayalam Mand Mandaic Mani Manichaean Marc Marchen Masaram_Gondi Meetei_Mayek Mend Mende_Kikakui Merc Mero Meroitic_Cursive Meroitic_Hieroglyphs Miao Mlym Modi Mong Mongolian Mro Mroo Mtei Mult Multani Myanmar Mymr Nabataean Narb Nbat New_Tai_Lue Newa Nko Nkoo Nshu Nushu Ogam Ogham Ol_Chiki Olck Old_Hungarian Old_Italic Old_North_Arabian Old_Permic Old_Persian Old_South_Arabian Old_Turkic Oriya Orkh Orya Osage Osge Osma Osmanya Pahawh_Hmong Palm Palmyrene Pau_Cin_Hau Pauc Perm Phag Phags_Pa Phli Phlp Phnx Phoenician Plrd Prti Psalter_Pahlavi Qaac Qaai Rejang Rjng Runic Runr Samaritan Samr Sarb Saur Saurashtra Sgnw Sharada Shavian Shaw Shrd Sidd Siddham SignWriting Sind Sinh Sinhala Sora Sora_Sompeng Soyo Soyombo Sund Sundanese Sylo Syloti_Nagri Syrc Syriac Tagalog Tagb Tagbanwa Tai_Le Tai_Tham Tai_Viet Takr Takri Tale Talu Tamil Taml Tang Tangut Tavt Telu Telugu Tfng Tglg Thaa Thaana Thai Tibetan Tibt Tifinagh Tirh Tirhuta Ugar Ugaritic Vai Vaii Wara Warang_Citi Xpeo Xsux Yi Yiii Zanabazar_Square Zanb Zinh Zyyy", "Dogr Dogra Gong Gunjala_Gondi Hanifi_Rohingya Maka Makasar Medefaidrin Medf Old_Sogdian Rohg Sogd Sogdian Sogo", "Elym Elymaic Hmnp Nand Nandinagari Nyiakeng_Puachue_Hmong Wancho Wcho", "Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi"); -const binPropertySets = new DataSet("AHex ASCII ASCII_Hex_Digit Alpha Alphabetic Any Assigned Bidi_C Bidi_Control Bidi_M Bidi_Mirrored CI CWCF CWCM CWKCF CWL CWT CWU Case_Ignorable Cased Changes_When_Casefolded Changes_When_Casemapped Changes_When_Lowercased Changes_When_NFKC_Casefolded Changes_When_Titlecased Changes_When_Uppercased DI Dash Default_Ignorable_Code_Point Dep Deprecated Dia Diacritic Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Ext Extender Gr_Base Gr_Ext Grapheme_Base Grapheme_Extend Hex Hex_Digit IDC IDS IDSB IDST IDS_Binary_Operator IDS_Trinary_Operator ID_Continue ID_Start Ideo Ideographic Join_C Join_Control LOE Logical_Order_Exception Lower Lowercase Math NChar Noncharacter_Code_Point Pat_Syn Pat_WS Pattern_Syntax Pattern_White_Space QMark Quotation_Mark RI Radical Regional_Indicator SD STerm Sentence_Terminal Soft_Dotted Term Terminal_Punctuation UIdeo Unified_Ideograph Upper Uppercase VS Variation_Selector White_Space XIDC XIDS XID_Continue XID_Start space", "Extended_Pictographic", "", "EBase EComp EMod EPres ExtPict"); +const gcValueSets = new DataSet("C Cased_Letter Cc Cf Close_Punctuation Cn Co Combining_Mark Connector_Punctuation Control Cs Currency_Symbol Dash_Punctuation Decimal_Number Enclosing_Mark Final_Punctuation Format Initial_Punctuation L LC Letter Letter_Number Line_Separator Ll Lm Lo Lowercase_Letter Lt Lu M Mark Math_Symbol Mc Me Mn Modifier_Letter Modifier_Symbol N Nd Nl No Nonspacing_Mark Number Open_Punctuation Other Other_Letter Other_Number Other_Punctuation Other_Symbol P Paragraph_Separator Pc Pd Pe Pf Pi Po Private_Use Ps Punctuation S Sc Separator Sk Sm So Space_Separator Spacing_Mark Surrogate Symbol Titlecase_Letter Unassigned Uppercase_Letter Z Zl Zp Zs cntrl digit punct", "", "", "", "", ""); +const scValueSets = new DataSet("Adlam Adlm Aghb Ahom Anatolian_Hieroglyphs Arab Arabic Armenian Armi Armn Avestan Avst Bali Balinese Bamu Bamum Bass Bassa_Vah Batak Batk Beng Bengali Bhaiksuki Bhks Bopo Bopomofo Brah Brahmi Brai Braille Bugi Buginese Buhd Buhid Cakm Canadian_Aboriginal Cans Cari Carian Caucasian_Albanian Chakma Cham Cher Cherokee Common Copt Coptic Cprt Cuneiform Cypriot Cyrillic Cyrl Deseret Deva Devanagari Dsrt Dupl Duployan Egyp Egyptian_Hieroglyphs Elba Elbasan Ethi Ethiopic Geor Georgian Glag Glagolitic Gonm Goth Gothic Gran Grantha Greek Grek Gujarati Gujr Gurmukhi Guru Han Hang Hangul Hani Hano Hanunoo Hatr Hatran Hebr Hebrew Hira Hiragana Hluw Hmng Hung Imperial_Aramaic Inherited Inscriptional_Pahlavi Inscriptional_Parthian Ital Java Javanese Kaithi Kali Kana Kannada Katakana Kayah_Li Khar Kharoshthi Khmer Khmr Khoj Khojki Khudawadi Knda Kthi Lana Lao Laoo Latin Latn Lepc Lepcha Limb Limbu Lina Linb Linear_A Linear_B Lisu Lyci Lycian Lydi Lydian Mahajani Mahj Malayalam Mand Mandaic Mani Manichaean Marc Marchen Masaram_Gondi Meetei_Mayek Mend Mende_Kikakui Merc Mero Meroitic_Cursive Meroitic_Hieroglyphs Miao Mlym Modi Mong Mongolian Mro Mroo Mtei Mult Multani Myanmar Mymr Nabataean Narb Nbat New_Tai_Lue Newa Nko Nkoo Nshu Nushu Ogam Ogham Ol_Chiki Olck Old_Hungarian Old_Italic Old_North_Arabian Old_Permic Old_Persian Old_South_Arabian Old_Turkic Oriya Orkh Orya Osage Osge Osma Osmanya Pahawh_Hmong Palm Palmyrene Pau_Cin_Hau Pauc Perm Phag Phags_Pa Phli Phlp Phnx Phoenician Plrd Prti Psalter_Pahlavi Qaac Qaai Rejang Rjng Runic Runr Samaritan Samr Sarb Saur Saurashtra Sgnw Sharada Shavian Shaw Shrd Sidd Siddham SignWriting Sind Sinh Sinhala Sora Sora_Sompeng Soyo Soyombo Sund Sundanese Sylo Syloti_Nagri Syrc Syriac Tagalog Tagb Tagbanwa Tai_Le Tai_Tham Tai_Viet Takr Takri Tale Talu Tamil Taml Tang Tangut Tavt Telu Telugu Tfng Tglg Thaa Thaana Thai Tibetan Tibt Tifinagh Tirh Tirhuta Ugar Ugaritic Vai Vaii Wara Warang_Citi Xpeo Xsux Yi Yiii Zanabazar_Square Zanb Zinh Zyyy", "Dogr Dogra Gong Gunjala_Gondi Hanifi_Rohingya Maka Makasar Medefaidrin Medf Old_Sogdian Rohg Sogd Sogdian Sogo", "Elym Elymaic Hmnp Nand Nandinagari Nyiakeng_Puachue_Hmong Wancho Wcho", "Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi", "Cpmn Cypro_Minoan Old_Uyghur Ougr Tangsa Tnsa Toto Vith Vithkuqi", "Hrkt Katakana_Or_Hiragana Kawi Nag_Mundari Nagm Unknown Zzzz"); +const binPropertySets = new DataSet("AHex ASCII ASCII_Hex_Digit Alpha Alphabetic Any Assigned Bidi_C Bidi_Control Bidi_M Bidi_Mirrored CI CWCF CWCM CWKCF CWL CWT CWU Case_Ignorable Cased Changes_When_Casefolded Changes_When_Casemapped Changes_When_Lowercased Changes_When_NFKC_Casefolded Changes_When_Titlecased Changes_When_Uppercased DI Dash Default_Ignorable_Code_Point Dep Deprecated Dia Diacritic Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Ext Extender Gr_Base Gr_Ext Grapheme_Base Grapheme_Extend Hex Hex_Digit IDC IDS IDSB IDST IDS_Binary_Operator IDS_Trinary_Operator ID_Continue ID_Start Ideo Ideographic Join_C Join_Control LOE Logical_Order_Exception Lower Lowercase Math NChar Noncharacter_Code_Point Pat_Syn Pat_WS Pattern_Syntax Pattern_White_Space QMark Quotation_Mark RI Radical Regional_Indicator SD STerm Sentence_Terminal Soft_Dotted Term Terminal_Punctuation UIdeo Unified_Ideograph Upper Uppercase VS Variation_Selector White_Space XIDC XIDS XID_Continue XID_Start space", "Extended_Pictographic", "", "EBase EComp EMod EPres ExtPict", "", ""); function isValidUnicodeProperty(version, name, value) { if (gcNameSet.has(name)) { return version >= 2018 && gcValueSets.es2018.has(value); @@ -104,7 +114,9 @@ function isValidUnicodeProperty(version, name, value) { return ((version >= 2018 && scValueSets.es2018.has(value)) || (version >= 2019 && scValueSets.es2019.has(value)) || (version >= 2020 && scValueSets.es2020.has(value)) || - (version >= 2021 && scValueSets.es2021.has(value))); + (version >= 2021 && scValueSets.es2021.has(value)) || + (version >= 2022 && scValueSets.es2022.has(value)) || + (version >= 2023 && scValueSets.es2023.has(value))); } return false; } @@ -114,105 +126,105 @@ function isValidLoneUnicodeProperty(version, value) { (version >= 2021 && binPropertySets.es2021.has(value))); } -const Backspace = 0x08; -const CharacterTabulation = 0x09; -const LineFeed = 0x0a; -const LineTabulation = 0x0b; -const FormFeed = 0x0c; -const CarriageReturn = 0x0d; -const ExclamationMark = 0x21; -const DollarSign = 0x24; -const LeftParenthesis = 0x28; -const RightParenthesis = 0x29; -const Asterisk = 0x2a; -const PlusSign = 0x2b; -const Comma = 0x2c; -const HyphenMinus = 0x2d; -const FullStop = 0x2e; -const Solidus = 0x2f; -const DigitZero = 0x30; -const DigitOne = 0x31; -const DigitSeven = 0x37; -const DigitNine = 0x39; -const Colon = 0x3a; -const LessThanSign = 0x3c; -const EqualsSign = 0x3d; -const GreaterThanSign = 0x3e; -const QuestionMark = 0x3f; -const LatinCapitalLetterA = 0x41; -const LatinCapitalLetterB = 0x42; -const LatinCapitalLetterD = 0x44; -const LatinCapitalLetterF = 0x46; -const LatinCapitalLetterP = 0x50; -const LatinCapitalLetterS = 0x53; -const LatinCapitalLetterW = 0x57; -const LatinCapitalLetterZ = 0x5a; -const LowLine = 0x5f; -const LatinSmallLetterA = 0x61; -const LatinSmallLetterB = 0x62; -const LatinSmallLetterC = 0x63; -const LatinSmallLetterD = 0x64; -const LatinSmallLetterF = 0x66; -const LatinSmallLetterG = 0x67; -const LatinSmallLetterI = 0x69; -const LatinSmallLetterK = 0x6b; -const LatinSmallLetterM = 0x6d; -const LatinSmallLetterN = 0x6e; -const LatinSmallLetterP = 0x70; -const LatinSmallLetterR = 0x72; -const LatinSmallLetterS = 0x73; -const LatinSmallLetterT = 0x74; -const LatinSmallLetterU = 0x75; -const LatinSmallLetterV = 0x76; -const LatinSmallLetterW = 0x77; -const LatinSmallLetterX = 0x78; -const LatinSmallLetterY = 0x79; -const LatinSmallLetterZ = 0x7a; -const LeftSquareBracket = 0x5b; -const ReverseSolidus = 0x5c; -const RightSquareBracket = 0x5d; -const CircumflexAccent = 0x5e; -const LeftCurlyBracket = 0x7b; -const VerticalLine = 0x7c; -const RightCurlyBracket = 0x7d; -const ZeroWidthNonJoiner = 0x200c; -const ZeroWidthJoiner = 0x200d; -const LineSeparator = 0x2028; -const ParagraphSeparator = 0x2029; -const MinCodePoint = 0x00; -const MaxCodePoint = 0x10ffff; +const BACKSPACE = 0x08; +const CHARACTER_TABULATION = 0x09; +const LINE_FEED = 0x0a; +const LINE_TABULATION = 0x0b; +const FORM_FEED = 0x0c; +const CARRIAGE_RETURN = 0x0d; +const EXCLAMATION_MARK = 0x21; +const DOLLAR_SIGN = 0x24; +const LEFT_PARENTHESIS = 0x28; +const RIGHT_PARENTHESIS = 0x29; +const ASTERISK = 0x2a; +const PLUS_SIGN = 0x2b; +const COMMA = 0x2c; +const HYPHEN_MINUS = 0x2d; +const FULL_STOP = 0x2e; +const SOLIDUS = 0x2f; +const DIGIT_ZERO = 0x30; +const DIGIT_ONE = 0x31; +const DIGIT_SEVEN = 0x37; +const DIGIT_NINE = 0x39; +const COLON = 0x3a; +const LESS_THAN_SIGN = 0x3c; +const EQUALS_SIGN = 0x3d; +const GREATER_THAN_SIGN = 0x3e; +const QUESTION_MARK = 0x3f; +const LATIN_CAPITAL_LETTER_A = 0x41; +const LATIN_CAPITAL_LETTER_B = 0x42; +const LATIN_CAPITAL_LETTER_D = 0x44; +const LATIN_CAPITAL_LETTER_F = 0x46; +const LATIN_CAPITAL_LETTER_P = 0x50; +const LATIN_CAPITAL_LETTER_S = 0x53; +const LATIN_CAPITAL_LETTER_W = 0x57; +const LATIN_CAPITAL_LETTER_Z = 0x5a; +const LOW_LINE = 0x5f; +const LATIN_SMALL_LETTER_A = 0x61; +const LATIN_SMALL_LETTER_B = 0x62; +const LATIN_SMALL_LETTER_C = 0x63; +const LATIN_SMALL_LETTER_D = 0x64; +const LATIN_SMALL_LETTER_F = 0x66; +const LATIN_SMALL_LETTER_G = 0x67; +const LATIN_SMALL_LETTER_I = 0x69; +const LATIN_SMALL_LETTER_K = 0x6b; +const LATIN_SMALL_LETTER_M = 0x6d; +const LATIN_SMALL_LETTER_N = 0x6e; +const LATIN_SMALL_LETTER_P = 0x70; +const LATIN_SMALL_LETTER_R = 0x72; +const LATIN_SMALL_LETTER_S = 0x73; +const LATIN_SMALL_LETTER_T = 0x74; +const LATIN_SMALL_LETTER_U = 0x75; +const LATIN_SMALL_LETTER_V = 0x76; +const LATIN_SMALL_LETTER_W = 0x77; +const LATIN_SMALL_LETTER_X = 0x78; +const LATIN_SMALL_LETTER_Y = 0x79; +const LATIN_SMALL_LETTER_Z = 0x7a; +const LEFT_SQUARE_BRACKET = 0x5b; +const REVERSE_SOLIDUS = 0x5c; +const RIGHT_SQUARE_BRACKET = 0x5d; +const CIRCUMFLEX_ACCENT = 0x5e; +const LEFT_CURLY_BRACKET = 0x7b; +const VERTICAL_LINE = 0x7c; +const RIGHT_CURLY_BRACKET = 0x7d; +const ZERO_WIDTH_NON_JOINER = 0x200c; +const ZERO_WIDTH_JOINER = 0x200d; +const LINE_SEPARATOR = 0x2028; +const PARAGRAPH_SEPARATOR = 0x2029; +const MIN_CODE_POINT = 0x00; +const MAX_CODE_POINT = 0x10ffff; function isLatinLetter(code) { - return ((code >= LatinCapitalLetterA && code <= LatinCapitalLetterZ) || - (code >= LatinSmallLetterA && code <= LatinSmallLetterZ)); + return ((code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_Z) || + (code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_Z)); } function isDecimalDigit(code) { - return code >= DigitZero && code <= DigitNine; + return code >= DIGIT_ZERO && code <= DIGIT_NINE; } function isOctalDigit(code) { - return code >= DigitZero && code <= DigitSeven; + return code >= DIGIT_ZERO && code <= DIGIT_SEVEN; } function isHexDigit(code) { - return ((code >= DigitZero && code <= DigitNine) || - (code >= LatinCapitalLetterA && code <= LatinCapitalLetterF) || - (code >= LatinSmallLetterA && code <= LatinSmallLetterF)); + return ((code >= DIGIT_ZERO && code <= DIGIT_NINE) || + (code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_F) || + (code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_F)); } function isLineTerminator(code) { - return (code === LineFeed || - code === CarriageReturn || - code === LineSeparator || - code === ParagraphSeparator); + return (code === LINE_FEED || + code === CARRIAGE_RETURN || + code === LINE_SEPARATOR || + code === PARAGRAPH_SEPARATOR); } function isValidUnicode(code) { - return code >= MinCodePoint && code <= MaxCodePoint; + return code >= MIN_CODE_POINT && code <= MAX_CODE_POINT; } function digitToInt(code) { - if (code >= LatinSmallLetterA && code <= LatinSmallLetterF) { - return code - LatinSmallLetterA + 10; + if (code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_F) { + return code - LATIN_SMALL_LETTER_A + 10; } - if (code >= LatinCapitalLetterA && code <= LatinCapitalLetterF) { - return code - LatinCapitalLetterA + 10; + if (code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_F) { + return code - LATIN_CAPITAL_LETTER_A + 10; } - return code - DigitZero; + return code - DIGIT_ZERO; } function isLeadSurrogate(code) { return code >= 0xd800 && code <= 0xdbff; @@ -342,33 +354,33 @@ class RegExpSyntaxError extends SyntaxError { } function isSyntaxCharacter(cp) { - return (cp === CircumflexAccent || - cp === DollarSign || - cp === ReverseSolidus || - cp === FullStop || - cp === Asterisk || - cp === PlusSign || - cp === QuestionMark || - cp === LeftParenthesis || - cp === RightParenthesis || - cp === LeftSquareBracket || - cp === RightSquareBracket || - cp === LeftCurlyBracket || - cp === RightCurlyBracket || - cp === VerticalLine); + return (cp === CIRCUMFLEX_ACCENT || + cp === DOLLAR_SIGN || + cp === REVERSE_SOLIDUS || + cp === FULL_STOP || + cp === ASTERISK || + cp === PLUS_SIGN || + cp === QUESTION_MARK || + cp === LEFT_PARENTHESIS || + cp === RIGHT_PARENTHESIS || + cp === LEFT_SQUARE_BRACKET || + cp === RIGHT_SQUARE_BRACKET || + cp === LEFT_CURLY_BRACKET || + cp === RIGHT_CURLY_BRACKET || + cp === VERTICAL_LINE); } function isRegExpIdentifierStart(cp) { - return isIdStart(cp) || cp === DollarSign || cp === LowLine; + return isIdStart(cp) || cp === DOLLAR_SIGN || cp === LOW_LINE; } function isRegExpIdentifierPart(cp) { return (isIdContinue(cp) || - cp === DollarSign || - cp === LowLine || - cp === ZeroWidthNonJoiner || - cp === ZeroWidthJoiner); + cp === DOLLAR_SIGN || + cp === LOW_LINE || + cp === ZERO_WIDTH_NON_JOINER || + cp === ZERO_WIDTH_JOINER); } function isUnicodePropertyNameCharacter(cp) { - return isLatinLetter(cp) || cp === LowLine; + return isLatinLetter(cp) || cp === LOW_LINE; } function isUnicodePropertyValueCharacter(cp) { return isUnicodePropertyNameCharacter(cp) || isDecimalDigit(cp); @@ -388,13 +400,13 @@ class RegExpValidator { this._numCapturingParens = 0; this._groupNames = new Set(); this._backreferenceNames = new Set(); - this._options = options || {}; + this._options = options !== null && options !== void 0 ? options : {}; } validateLiteral(source, start = 0, end = source.length) { this._uFlag = this._nFlag = false; this.reset(source, start, end); this.onLiteralEnter(start); - if (this.eat(Solidus) && this.eatRegExpBody() && this.eat(Solidus)) { + if (this.eat(SOLIDUS) && this.eatRegExpBody() && this.eat(SOLIDUS)) { const flagStart = this.index; const uFlag = source.includes("u", flagStart); this.validateFlags(source, flagStart, end); @@ -424,36 +436,50 @@ class RegExpValidator { this.raise(`Duplicated flag '${source[i]}'`); } existingFlags.add(flag); - if (flag === LatinSmallLetterG) { + if (flag === LATIN_SMALL_LETTER_G) { global = true; } - else if (flag === LatinSmallLetterI) { + else if (flag === LATIN_SMALL_LETTER_I) { ignoreCase = true; } - else if (flag === LatinSmallLetterM) { + else if (flag === LATIN_SMALL_LETTER_M) { multiline = true; } - else if (flag === LatinSmallLetterU && this.ecmaVersion >= 2015) { + else if (flag === LATIN_SMALL_LETTER_U && + this.ecmaVersion >= 2015) { unicode = true; } - else if (flag === LatinSmallLetterY && this.ecmaVersion >= 2015) { + else if (flag === LATIN_SMALL_LETTER_Y && + this.ecmaVersion >= 2015) { sticky = true; } - else if (flag === LatinSmallLetterS && this.ecmaVersion >= 2018) { + else if (flag === LATIN_SMALL_LETTER_S && + this.ecmaVersion >= 2018) { dotAll = true; } - else if (flag === LatinSmallLetterD && this.ecmaVersion >= 2022) { + else if (flag === LATIN_SMALL_LETTER_D && + this.ecmaVersion >= 2022) { hasIndices = true; } else { this.raise(`Invalid flag '${source[i]}'`); } } - this.onFlags(start, end, global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices); + this.onRegExpFlags(start, end, { + global, + ignoreCase, + multiline, + unicode, + sticky, + dotAll, + hasIndices, + }); } validatePattern(source, start = 0, end = source.length, uFlag = false) { this._uFlag = uFlag && this.ecmaVersion >= 2015; - this._nFlag = uFlag && this.ecmaVersion >= 2018; + this._nFlag = + (uFlag && this.ecmaVersion >= 2018) || + Boolean(this._options.strict && this.ecmaVersion >= 2023); this.reset(source, start, end); this.consumePattern(); if (!this._nFlag && @@ -465,10 +491,11 @@ class RegExpValidator { } } get strict() { - return Boolean(this._options.strict || this._uFlag); + return Boolean(this._options.strict) || this._uFlag; } get ecmaVersion() { - return this._options.ecmaVersion || 2022; + var _a; + return (_a = this._options.ecmaVersion) !== null && _a !== void 0 ? _a : 2023; } onLiteralEnter(start) { if (this._options.onLiteralEnter) { @@ -480,9 +507,12 @@ class RegExpValidator { this._options.onLiteralLeave(start, end); } } - onFlags(start, end, global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices) { + onRegExpFlags(start, end, flags) { + if (this._options.onRegExpFlags) { + this._options.onRegExpFlags(start, end, flags); + } if (this._options.onFlags) { - this._options.onFlags(start, end, global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices); + this._options.onFlags(start, end, flags.global, flags.ignoreCase, flags.multiline, flags.unicode, flags.sticky, flags.dotAll, flags.hasIndices); } } onPatternEnter(start) { @@ -652,17 +682,17 @@ class RegExpValidator { if (escaped) { escaped = false; } - else if (cp === ReverseSolidus) { + else if (cp === REVERSE_SOLIDUS) { escaped = true; } - else if (cp === LeftSquareBracket) { + else if (cp === LEFT_SQUARE_BRACKET) { inClass = true; } - else if (cp === RightSquareBracket) { + else if (cp === RIGHT_SQUARE_BRACKET) { inClass = false; } - else if ((cp === Solidus && !inClass) || - (cp === Asterisk && this.index === start)) { + else if ((cp === SOLIDUS && !inClass) || + (cp === ASTERISK && this.index === start)) { break; } this.advance(); @@ -678,13 +708,13 @@ class RegExpValidator { this.consumeDisjunction(); const cp = this.currentCodePoint; if (this.currentCodePoint !== -1) { - if (cp === RightParenthesis) { + if (cp === RIGHT_PARENTHESIS) { this.raise("Unmatched ')'"); } - if (cp === ReverseSolidus) { + if (cp === REVERSE_SOLIDUS) { this.raise("\\ at end of pattern"); } - if (cp === RightSquareBracket || cp === RightCurlyBracket) { + if (cp === RIGHT_SQUARE_BRACKET || cp === RIGHT_CURLY_BRACKET) { this.raise("Lone quantifier brackets"); } const c = String.fromCodePoint(cp); @@ -707,21 +737,21 @@ class RegExpValidator { if (escaped) { escaped = false; } - else if (cp === ReverseSolidus) { + else if (cp === REVERSE_SOLIDUS) { escaped = true; } - else if (cp === LeftSquareBracket) { + else if (cp === LEFT_SQUARE_BRACKET) { inClass = true; } - else if (cp === RightSquareBracket) { + else if (cp === RIGHT_SQUARE_BRACKET) { inClass = false; } - else if (cp === LeftParenthesis && + else if (cp === LEFT_PARENTHESIS && !inClass && - (this.nextCodePoint !== QuestionMark || - (this.nextCodePoint2 === LessThanSign && - this.nextCodePoint3 !== EqualsSign && - this.nextCodePoint3 !== ExclamationMark))) { + (this.nextCodePoint !== QUESTION_MARK || + (this.nextCodePoint2 === LESS_THAN_SIGN && + this.nextCodePoint3 !== EQUALS_SIGN && + this.nextCodePoint3 !== EXCLAMATION_MARK))) { count += 1; } this.advance(); @@ -735,11 +765,11 @@ class RegExpValidator { this.onDisjunctionEnter(start); do { this.consumeAlternative(i++); - } while (this.eat(VerticalLine)); + } while (this.eat(VERTICAL_LINE)); if (this.consumeQuantifier(true)) { this.raise("Nothing to repeat"); } - if (this.eat(LeftCurlyBracket)) { + if (this.eat(LEFT_CURLY_BRACKET)) { this.raise("Lone quantifier brackets"); } this.onDisjunctionLeave(start, this.index); @@ -768,30 +798,31 @@ class RegExpValidator { consumeAssertion() { const start = this.index; this._lastAssertionIsQuantifiable = false; - if (this.eat(CircumflexAccent)) { + if (this.eat(CIRCUMFLEX_ACCENT)) { this.onEdgeAssertion(start, this.index, "start"); return true; } - if (this.eat(DollarSign)) { + if (this.eat(DOLLAR_SIGN)) { this.onEdgeAssertion(start, this.index, "end"); return true; } - if (this.eat2(ReverseSolidus, LatinCapitalLetterB)) { + if (this.eat2(REVERSE_SOLIDUS, LATIN_CAPITAL_LETTER_B)) { this.onWordBoundaryAssertion(start, this.index, "word", true); return true; } - if (this.eat2(ReverseSolidus, LatinSmallLetterB)) { + if (this.eat2(REVERSE_SOLIDUS, LATIN_SMALL_LETTER_B)) { this.onWordBoundaryAssertion(start, this.index, "word", false); return true; } - if (this.eat2(LeftParenthesis, QuestionMark)) { - const lookbehind = this.ecmaVersion >= 2018 && this.eat(LessThanSign); + if (this.eat2(LEFT_PARENTHESIS, QUESTION_MARK)) { + const lookbehind = this.ecmaVersion >= 2018 && this.eat(LESS_THAN_SIGN); let negate = false; - if (this.eat(EqualsSign) || (negate = this.eat(ExclamationMark))) { + if (this.eat(EQUALS_SIGN) || + (negate = this.eat(EXCLAMATION_MARK))) { const kind = lookbehind ? "lookbehind" : "lookahead"; this.onLookaroundAssertionEnter(start, kind, negate); this.consumeDisjunction(); - if (!this.eat(RightParenthesis)) { + if (!this.eat(RIGHT_PARENTHESIS)) { this.raise("Unterminated group"); } this._lastAssertionIsQuantifiable = !lookbehind && !this.strict; @@ -807,15 +838,15 @@ class RegExpValidator { let min = 0; let max = 0; let greedy = false; - if (this.eat(Asterisk)) { + if (this.eat(ASTERISK)) { min = 0; max = Number.POSITIVE_INFINITY; } - else if (this.eat(PlusSign)) { + else if (this.eat(PLUS_SIGN)) { min = 1; max = Number.POSITIVE_INFINITY; } - else if (this.eat(QuestionMark)) { + else if (this.eat(QUESTION_MARK)) { min = 0; max = 1; } @@ -826,7 +857,7 @@ class RegExpValidator { else { return false; } - greedy = !this.eat(QuestionMark); + greedy = !this.eat(QUESTION_MARK); if (!noConsume) { this.onQuantifier(start, this.index, min, max, greedy); } @@ -834,17 +865,17 @@ class RegExpValidator { } eatBracedQuantifier(noError) { const start = this.index; - if (this.eat(LeftCurlyBracket)) { + if (this.eat(LEFT_CURLY_BRACKET)) { this._lastMinValue = 0; this._lastMaxValue = Number.POSITIVE_INFINITY; if (this.eatDecimalDigits()) { this._lastMinValue = this._lastMaxValue = this._lastIntValue; - if (this.eat(Comma)) { + if (this.eat(COMMA)) { this._lastMaxValue = this.eatDecimalDigits() ? this._lastIntValue : Number.POSITIVE_INFINITY; } - if (this.eat(RightCurlyBracket)) { + if (this.eat(RIGHT_CURLY_BRACKET)) { if (!noError && this._lastMaxValue < this._lastMinValue) { this.raise("numbers out of order in {} quantifier"); } @@ -867,7 +898,7 @@ class RegExpValidator { this.consumeCapturingGroup()); } consumeDot() { - if (this.eat(FullStop)) { + if (this.eat(FULL_STOP)) { this.onAnyCharacterSet(this.index - 1, this.index, "any"); return true; } @@ -875,7 +906,7 @@ class RegExpValidator { } consumeReverseSolidusAtomEscape() { const start = this.index; - if (this.eat(ReverseSolidus)) { + if (this.eat(REVERSE_SOLIDUS)) { if (this.consumeAtomEscape()) { return true; } @@ -885,10 +916,10 @@ class RegExpValidator { } consumeUncapturingGroup() { const start = this.index; - if (this.eat3(LeftParenthesis, QuestionMark, Colon)) { + if (this.eat3(LEFT_PARENTHESIS, QUESTION_MARK, COLON)) { this.onGroupEnter(start); this.consumeDisjunction(); - if (!this.eat(RightParenthesis)) { + if (!this.eat(RIGHT_PARENTHESIS)) { this.raise("Unterminated group"); } this.onGroupLeave(start, this.index); @@ -898,19 +929,19 @@ class RegExpValidator { } consumeCapturingGroup() { const start = this.index; - if (this.eat(LeftParenthesis)) { + if (this.eat(LEFT_PARENTHESIS)) { let name = null; if (this.ecmaVersion >= 2018) { if (this.consumeGroupSpecifier()) { name = this._lastStrValue; } } - else if (this.currentCodePoint === QuestionMark) { + else if (this.currentCodePoint === QUESTION_MARK) { this.raise("Invalid group"); } this.onCapturingGroupEnter(start, name); this.consumeDisjunction(); - if (!this.eat(RightParenthesis)) { + if (!this.eat(RIGHT_PARENTHESIS)) { this.raise("Unterminated group"); } this.onCapturingGroupLeave(start, this.index, name); @@ -930,11 +961,11 @@ class RegExpValidator { } consumeReverseSolidusFollowedByC() { const start = this.index; - if (this.currentCodePoint === ReverseSolidus && - this.nextCodePoint === LatinSmallLetterC) { + if (this.currentCodePoint === REVERSE_SOLIDUS && + this.nextCodePoint === LATIN_SMALL_LETTER_C) { this._lastIntValue = this.currentCodePoint; this.advance(); - this.onCharacter(start, this.index, ReverseSolidus); + this.onCharacter(start, this.index, REVERSE_SOLIDUS); return true; } return false; @@ -959,17 +990,17 @@ class RegExpValidator { const start = this.index; const cp = this.currentCodePoint; if (cp !== -1 && - cp !== CircumflexAccent && - cp !== DollarSign && - cp !== ReverseSolidus && - cp !== FullStop && - cp !== Asterisk && - cp !== PlusSign && - cp !== QuestionMark && - cp !== LeftParenthesis && - cp !== RightParenthesis && - cp !== LeftSquareBracket && - cp !== VerticalLine) { + cp !== CIRCUMFLEX_ACCENT && + cp !== DOLLAR_SIGN && + cp !== REVERSE_SOLIDUS && + cp !== FULL_STOP && + cp !== ASTERISK && + cp !== PLUS_SIGN && + cp !== QUESTION_MARK && + cp !== LEFT_PARENTHESIS && + cp !== RIGHT_PARENTHESIS && + cp !== LEFT_SQUARE_BRACKET && + cp !== VERTICAL_LINE) { this.advance(); this.onCharacter(start, this.index, cp); return true; @@ -977,7 +1008,7 @@ class RegExpValidator { return false; } consumeGroupSpecifier() { - if (this.eat(QuestionMark)) { + if (this.eat(QUESTION_MARK)) { if (this.eatGroupName()) { if (!this._groupNames.has(this._lastStrValue)) { this._groupNames.add(this._lastStrValue); @@ -1018,32 +1049,32 @@ class RegExpValidator { } consumeCharacterClassEscape() { const start = this.index; - if (this.eat(LatinSmallLetterD)) { + if (this.eat(LATIN_SMALL_LETTER_D)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "digit", false); return true; } - if (this.eat(LatinCapitalLetterD)) { + if (this.eat(LATIN_CAPITAL_LETTER_D)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "digit", true); return true; } - if (this.eat(LatinSmallLetterS)) { + if (this.eat(LATIN_SMALL_LETTER_S)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "space", false); return true; } - if (this.eat(LatinCapitalLetterS)) { + if (this.eat(LATIN_CAPITAL_LETTER_S)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "space", true); return true; } - if (this.eat(LatinSmallLetterW)) { + if (this.eat(LATIN_SMALL_LETTER_W)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "word", false); return true; } - if (this.eat(LatinCapitalLetterW)) { + if (this.eat(LATIN_CAPITAL_LETTER_W)) { this._lastIntValue = -1; this.onEscapeCharacterSet(start - 1, this.index, "word", true); return true; @@ -1051,12 +1082,12 @@ class RegExpValidator { let negate = false; if (this._uFlag && this.ecmaVersion >= 2018 && - (this.eat(LatinSmallLetterP) || - (negate = this.eat(LatinCapitalLetterP)))) { + (this.eat(LATIN_SMALL_LETTER_P) || + (negate = this.eat(LATIN_CAPITAL_LETTER_P)))) { this._lastIntValue = -1; - if (this.eat(LeftCurlyBracket) && + if (this.eat(LEFT_CURLY_BRACKET) && this.eatUnicodePropertyValueExpression() && - this.eat(RightCurlyBracket)) { + this.eat(RIGHT_CURLY_BRACKET)) { this.onUnicodePropertyCharacterSet(start - 1, this.index, "property", this._lastKeyValue, this._lastValValue || null, negate); return true; } @@ -1082,7 +1113,7 @@ class RegExpValidator { } consumeKGroupName() { const start = this.index; - if (this.eat(LatinSmallLetterK)) { + if (this.eat(LATIN_SMALL_LETTER_K)) { if (this.eatGroupName()) { const groupName = this._lastStrValue; this._backreferenceNames.add(groupName); @@ -1095,11 +1126,11 @@ class RegExpValidator { } consumeCharacterClass() { const start = this.index; - if (this.eat(LeftSquareBracket)) { - const negate = this.eat(CircumflexAccent); + if (this.eat(LEFT_SQUARE_BRACKET)) { + const negate = this.eat(CIRCUMFLEX_ACCENT); this.onCharacterClassEnter(start, negate); this.consumeClassRanges(); - if (!this.eat(RightSquareBracket)) { + if (!this.eat(RIGHT_SQUARE_BRACKET)) { this.raise("Unterminated character class"); } this.onCharacterClassLeave(start, this.index, negate); @@ -1115,10 +1146,10 @@ class RegExpValidator { break; } const min = this._lastIntValue; - if (!this.eat(HyphenMinus)) { + if (!this.eat(HYPHEN_MINUS)) { continue; } - this.onCharacter(this.index - 1, this.index, HyphenMinus); + this.onCharacter(this.index - 1, this.index, HYPHEN_MINUS); if (!this.consumeClassAtom()) { break; } @@ -1138,18 +1169,21 @@ class RegExpValidator { consumeClassAtom() { const start = this.index; const cp = this.currentCodePoint; - if (cp !== -1 && cp !== ReverseSolidus && cp !== RightSquareBracket) { + if (cp !== -1 && + cp !== REVERSE_SOLIDUS && + cp !== RIGHT_SQUARE_BRACKET) { this.advance(); this._lastIntValue = cp; this.onCharacter(start, this.index, this._lastIntValue); return true; } - if (this.eat(ReverseSolidus)) { + if (this.eat(REVERSE_SOLIDUS)) { if (this.consumeClassEscape()) { return true; } - if (!this.strict && this.currentCodePoint === LatinSmallLetterC) { - this._lastIntValue = ReverseSolidus; + if (!this.strict && + this.currentCodePoint === LATIN_SMALL_LETTER_C) { + this._lastIntValue = REVERSE_SOLIDUS; this.onCharacter(start, this.index, this._lastIntValue); return true; } @@ -1162,21 +1196,21 @@ class RegExpValidator { } consumeClassEscape() { const start = this.index; - if (this.eat(LatinSmallLetterB)) { - this._lastIntValue = Backspace; + if (this.eat(LATIN_SMALL_LETTER_B)) { + this._lastIntValue = BACKSPACE; this.onCharacter(start - 1, this.index, this._lastIntValue); return true; } - if (this._uFlag && this.eat(HyphenMinus)) { - this._lastIntValue = HyphenMinus; + if (this._uFlag && this.eat(HYPHEN_MINUS)) { + this._lastIntValue = HYPHEN_MINUS; this.onCharacter(start - 1, this.index, this._lastIntValue); return true; } let cp = 0; if (!this.strict && !this._uFlag && - this.currentCodePoint === LatinSmallLetterC && - (isDecimalDigit((cp = this.nextCodePoint)) || cp === LowLine)) { + this.currentCodePoint === LATIN_SMALL_LETTER_C && + (isDecimalDigit((cp = this.nextCodePoint)) || cp === LOW_LINE)) { this.advance(); this.advance(); this._lastIntValue = cp % 0x20; @@ -1186,8 +1220,8 @@ class RegExpValidator { return (this.consumeCharacterClassEscape() || this.consumeCharacterEscape()); } eatGroupName() { - if (this.eat(LessThanSign)) { - if (this.eatRegExpIdentifierName() && this.eat(GreaterThanSign)) { + if (this.eat(LESS_THAN_SIGN)) { + if (this.eatRegExpIdentifierName() && this.eat(GREATER_THAN_SIGN)) { return true; } this.raise("Invalid capture group name"); @@ -1209,7 +1243,7 @@ class RegExpValidator { const forceUFlag = !this._uFlag && this.ecmaVersion >= 2020; let cp = this.currentCodePoint; this.advance(); - if (cp === ReverseSolidus && + if (cp === REVERSE_SOLIDUS && this.eatRegExpUnicodeEscapeSequence(forceUFlag)) { cp = this._lastIntValue; } @@ -1233,7 +1267,7 @@ class RegExpValidator { const forceUFlag = !this._uFlag && this.ecmaVersion >= 2020; let cp = this.currentCodePoint; this.advance(); - if (cp === ReverseSolidus && + if (cp === REVERSE_SOLIDUS && this.eatRegExpUnicodeEscapeSequence(forceUFlag)) { cp = this._lastIntValue; } @@ -1254,7 +1288,7 @@ class RegExpValidator { } eatCControlLetter() { const start = this.index; - if (this.eat(LatinSmallLetterC)) { + if (this.eat(LATIN_SMALL_LETTER_C)) { if (this.eatControlLetter()) { return true; } @@ -1263,7 +1297,7 @@ class RegExpValidator { return false; } eatZero() { - if (this.currentCodePoint === DigitZero && + if (this.currentCodePoint === DIGIT_ZERO && !isDecimalDigit(this.nextCodePoint)) { this._lastIntValue = 0; this.advance(); @@ -1272,24 +1306,24 @@ class RegExpValidator { return false; } eatControlEscape() { - if (this.eat(LatinSmallLetterF)) { - this._lastIntValue = FormFeed; + if (this.eat(LATIN_SMALL_LETTER_F)) { + this._lastIntValue = FORM_FEED; return true; } - if (this.eat(LatinSmallLetterN)) { - this._lastIntValue = LineFeed; + if (this.eat(LATIN_SMALL_LETTER_N)) { + this._lastIntValue = LINE_FEED; return true; } - if (this.eat(LatinSmallLetterR)) { - this._lastIntValue = CarriageReturn; + if (this.eat(LATIN_SMALL_LETTER_R)) { + this._lastIntValue = CARRIAGE_RETURN; return true; } - if (this.eat(LatinSmallLetterT)) { - this._lastIntValue = CharacterTabulation; + if (this.eat(LATIN_SMALL_LETTER_T)) { + this._lastIntValue = CHARACTER_TABULATION; return true; } - if (this.eat(LatinSmallLetterV)) { - this._lastIntValue = LineTabulation; + if (this.eat(LATIN_SMALL_LETTER_V)) { + this._lastIntValue = LINE_TABULATION; return true; } return false; @@ -1306,7 +1340,7 @@ class RegExpValidator { eatRegExpUnicodeEscapeSequence(forceUFlag = false) { const start = this.index; const uFlag = forceUFlag || this._uFlag; - if (this.eat(LatinSmallLetterU)) { + if (this.eat(LATIN_SMALL_LETTER_U)) { if ((uFlag && this.eatRegExpUnicodeSurrogatePairEscape()) || this.eatFixedHexDigits(4) || (uFlag && this.eatRegExpUnicodeCodePointEscape())) { @@ -1324,8 +1358,8 @@ class RegExpValidator { if (this.eatFixedHexDigits(4)) { const lead = this._lastIntValue; if (isLeadSurrogate(lead) && - this.eat(ReverseSolidus) && - this.eat(LatinSmallLetterU) && + this.eat(REVERSE_SOLIDUS) && + this.eat(LATIN_SMALL_LETTER_U) && this.eatFixedHexDigits(4)) { const trail = this._lastIntValue; if (isTrailSurrogate(trail)) { @@ -1339,9 +1373,9 @@ class RegExpValidator { } eatRegExpUnicodeCodePointEscape() { const start = this.index; - if (this.eat(LeftCurlyBracket) && + if (this.eat(LEFT_CURLY_BRACKET) && this.eatHexDigits() && - this.eat(RightCurlyBracket) && + this.eat(RIGHT_CURLY_BRACKET) && isValidUnicode(this._lastIntValue)) { return true; } @@ -1362,32 +1396,32 @@ class RegExpValidator { return false; } if (this._uFlag) { - return isSyntaxCharacter(cp) || cp === Solidus; + return isSyntaxCharacter(cp) || cp === SOLIDUS; } if (this.strict) { return !isIdContinue(cp); } if (this._nFlag) { - return !(cp === LatinSmallLetterC || cp === LatinSmallLetterK); + return !(cp === LATIN_SMALL_LETTER_C || cp === LATIN_SMALL_LETTER_K); } - return cp !== LatinSmallLetterC; + return cp !== LATIN_SMALL_LETTER_C; } eatDecimalEscape() { this._lastIntValue = 0; let cp = this.currentCodePoint; - if (cp >= DigitOne && cp <= DigitNine) { + if (cp >= DIGIT_ONE && cp <= DIGIT_NINE) { do { - this._lastIntValue = 10 * this._lastIntValue + (cp - DigitZero); + this._lastIntValue = 10 * this._lastIntValue + (cp - DIGIT_ZERO); this.advance(); - } while ((cp = this.currentCodePoint) >= DigitZero && - cp <= DigitNine); + } while ((cp = this.currentCodePoint) >= DIGIT_ZERO && + cp <= DIGIT_NINE); return true; } return false; } eatUnicodePropertyValueExpression() { const start = this.index; - if (this.eatUnicodePropertyName() && this.eat(EqualsSign)) { + if (this.eatUnicodePropertyName() && this.eat(EQUALS_SIGN)) { this._lastKeyValue = this._lastStrValue; if (this.eatUnicodePropertyValue()) { this._lastValValue = this._lastStrValue; @@ -1435,7 +1469,7 @@ class RegExpValidator { } eatHexEscapeSequence() { const start = this.index; - if (this.eat(LatinSmallLetterX)) { + if (this.eat(LATIN_SMALL_LETTER_X)) { if (this.eatFixedHexDigits(2)) { return true; } @@ -1489,7 +1523,7 @@ class RegExpValidator { const cp = this.currentCodePoint; if (isOctalDigit(cp)) { this.advance(); - this._lastIntValue = cp - DigitZero; + this._lastIntValue = cp - DIGIT_ZERO; return true; } this._lastIntValue = 0; @@ -1511,18 +1545,19 @@ class RegExpValidator { } } -const DummyPattern = {}; -const DummyFlags = {}; -const DummyCapturingGroup = {}; +const DUMMY_PATTERN = {}; +const DUMMY_FLAGS = {}; +const DUMMY_CAPTURING_GROUP = {}; class RegExpParserState { constructor(options) { - this._node = DummyPattern; - this._flags = DummyFlags; + var _a; + this._node = DUMMY_PATTERN; + this._flags = DUMMY_FLAGS; this._backreferences = []; this._capturingGroups = []; this.source = ""; - this.strict = Boolean(options && options.strict); - this.ecmaVersion = (options && options.ecmaVersion) || 2022; + this.strict = Boolean(options === null || options === void 0 ? void 0 : options.strict); + this.ecmaVersion = (_a = options === null || options === void 0 ? void 0 : options.ecmaVersion) !== null && _a !== void 0 ? _a : 2023; } get pattern() { if (this._node.type !== "Pattern") { @@ -1536,7 +1571,7 @@ class RegExpParserState { } return this._flags; } - onFlags(start, end, global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices) { + onRegExpFlags(start, end, { global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices, }) { this._flags = { type: "Flags", parent: null, @@ -1571,7 +1606,7 @@ class RegExpParserState { const ref = reference.ref; const group = typeof ref === "number" ? this._capturingGroups[ref - 1] - : this._capturingGroups.find(g => g.name === ref); + : this._capturingGroups.find((g) => g.name === ref); reference.resolved = group; group.references.push(reference); } @@ -1807,7 +1842,7 @@ class RegExpParserState { end, raw: this.source.slice(start, end), ref, - resolved: DummyCapturingGroup, + resolved: DUMMY_CAPTURING_GROUP, }; parent.elements.push(node); this._backreferences.push(node); @@ -1853,7 +1888,7 @@ class RegExpParserState { min.type !== "Character" || max.type !== "Character" || hyphen.type !== "Character" || - hyphen.value !== HyphenMinus) { + hyphen.value !== HYPHEN_MINUS) { throw new Error("UnknownError"); } const node = { @@ -2077,7 +2112,7 @@ function parseRegExpLiteral(source, options) { return new RegExpParser(options).parseLiteral(String(source)); } function validateRegExpLiteral(source, options) { - return new RegExpValidator(options).validateLiteral(source); + new RegExpValidator(options).validateLiteral(source); } function visitRegExpAST(node, handlers) { new RegExpVisitor(handlers).visit(node); diff --git a/tools/node_modules/eslint/node_modules/regexpp/package.json b/tools/node_modules/eslint/node_modules/@eslint-community/regexpp/package.json similarity index 56% rename from tools/node_modules/eslint/node_modules/regexpp/package.json rename to tools/node_modules/eslint/node_modules/@eslint-community/regexpp/package.json index 92dadd8934cdd6..8bd4083fbb73c2 100644 --- a/tools/node_modules/eslint/node_modules/regexpp/package.json +++ b/tools/node_modules/eslint/node_modules/@eslint-community/regexpp/package.json @@ -1,14 +1,37 @@ { - "name": "regexpp", - "version": "3.2.0", + "name": "@eslint-community/regexpp", + "version": "4.5.0", "description": "Regular expression parser for ECMAScript.", - "engines": { - "node": ">=8" - }, - "main": "index", - "files": [ - "index.*" + "keywords": [ + "regexp", + "regular", + "expression", + "parser", + "validator", + "ast", + "abstract", + "syntax", + "tree", + "ecmascript", + "es2015", + "es2016", + "es2017", + "es2018", + "es2019", + "es2020", + "es2021", + "annexB" ], + "homepage": "https://github.com/eslint-community/regexpp#readme", + "bugs": { + "url": "https://github.com/eslint-community/regexpp/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/eslint-community/regexpp" + }, + "license": "MIT", + "author": "Toru Nagashima", "exports": { ".": { "import": "./index.mjs", @@ -16,76 +39,49 @@ }, "./package.json": "./package.json" }, - "dependencies": {}, - "devDependencies": { - "@mysticatea/eslint-plugin": "^11.0.0", - "@types/eslint": "^4.16.2", - "@types/jsdom": "^12.2.4", - "@types/mocha": "^5.2.2", - "@types/node": "^12.6.8", - "codecov": "^3.5.0", - "dts-bundle": "^0.7.3", - "eslint": "^6.1.0", - "jsdom": "^15.1.1", - "mocha": "^6.2.0", - "npm-run-all": "^4.1.5", - "nyc": "^14.1.1", - "rimraf": "^2.6.2", - "rollup": "^1.17.0", - "rollup-plugin-node-resolve": "^5.2.0", - "rollup-plugin-sourcemaps": "^0.4.2", - "ts-node": "^8.3.0", - "typescript": "^3.5.3" - }, + "main": "index", + "files": [ + "index.*" + ], "scripts": { "prebuild": "npm run -s clean", "build": "run-s build:*", "build:tsc": "tsc --module es2015", "build:rollup": "rollup -c", - "build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts", + "build:dts": "npm run -s build:tsc -- --removeComments false && dts-bundle --name @eslint-community/regexpp --main .temp/index.d.ts --out ../index.d.ts && prettier --write index.d.ts", "clean": "rimraf .temp index.*", - "codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov", - "lint": "eslint scripts src test --ext .ts", - "pretest": "run-s build lint", + "lint": "eslint . --ext .ts", "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000", "update:test": "ts-node scripts/update-fixtures.ts", "update:unicode": "run-s update:unicode:*", "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts", "update:unicode:props": "ts-node scripts/update-unicode-properties.ts", - "preversion": "npm test", - "version": "npm run -s build", + "preversion": "npm test && npm run -s build", "postversion": "git push && git push --tags", "prewatch": "npm run -s clean", "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl" }, - "repository": { - "type": "git", - "url": "git+https://github.com/mysticatea/regexpp.git" - }, - "keywords": [ - "regexp", - "regular", - "expression", - "parser", - "validator", - "ast", - "abstract", - "syntax", - "tree", - "ecmascript", - "es2015", - "es2016", - "es2017", - "es2018", - "es2019", - "es2020", - "annexB" - ], - "author": "Toru Nagashima (https://github.com/mysticatea)", - "license": "MIT", - "bugs": { - "url": "https://github.com/mysticatea/regexpp/issues" + "dependencies": {}, + "devDependencies": { + "@eslint-community/eslint-plugin-mysticatea": "^15.3.0", + "@rollup/plugin-node-resolve": "^14.1.0", + "@types/eslint": "^8.4.10", + "@types/jsdom": "^16.2.15", + "@types/mocha": "^9.1.1", + "@types/node": "^12.20.55", + "dts-bundle": "^0.7.3", + "eslint": "^8.31.0", + "jsdom": "^19.0.0", + "mocha": "^9.2.2", + "npm-run-all": "^4.1.5", + "nyc": "^14.1.1", + "rimraf": "^3.0.2", + "rollup": "^2.79.1", + "rollup-plugin-sourcemaps": "^0.6.3", + "ts-node": "^10.9.1", + "typescript": "~5.0.2" }, - "homepage": "https://github.com/mysticatea/regexpp#readme", - "funding": "https://github.com/sponsors/mysticatea" + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } } diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json index f02ca8d1da3ec0..dc8f30b9cf95d0 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/eslintrc", - "version": "2.0.0", + "version": "2.0.2", "description": "The legacy ESLintRC config file format for ESLint", "type": "module", "main": "./dist/eslintrc.cjs", @@ -68,7 +68,7 @@ "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.4.0", + "espree": "^9.5.1", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", diff --git a/tools/node_modules/eslint/node_modules/@eslint/js/package.json b/tools/node_modules/eslint/node_modules/@eslint/js/package.json index e539362899ce67..27e4f0056a179d 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/js/package.json +++ b/tools/node_modules/eslint/node_modules/@eslint/js/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/js", - "version": "8.35.0", + "version": "8.37.0", "description": "ESLint JavaScript language implementation", "main": "./src/index.js", "scripts": {}, 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 a61222d2afe4fb..294aa76db12c1c 100755 --- a/tools/node_modules/eslint/node_modules/@types/mdast/package.json +++ b/tools/node_modules/eslint/node_modules/@types/mdast/package.json @@ -1,6 +1,6 @@ { "name": "@types/mdast", - "version": "3.0.10", + "version": "3.0.11", "description": "TypeScript definitions for Mdast", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast", "license": "MIT", @@ -37,6 +37,6 @@ "dependencies": { "@types/unist": "*" }, - "typesPublisherContentHash": "87d2054120bead1983528802563a50cbb2f2efd6677d446e5ec34071f50bddcc", - "typeScriptVersion": "3.7" + "typesPublisherContentHash": "3cbb57b89f230aa1b6dd7967bcdac99de4dcfb625ffbb6cbb03dd8185965d216", + "typeScriptVersion": "4.3" } \ No newline at end of file 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 9246358d78b9a6..08e53ad059af50 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/agents.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/agents.js @@ -1 +1 @@ -module.exports={A:{A:{J:0.0131217,D:0.00621152,E:0.0530043,F:0.074206,A:0.0106009,B:0.508841,CC:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","CC","J","D","E","F","A","B","","",""],E:"IE",F:{CC:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.007886,K:0.004267,L:0.004268,G:0.003943,M:0.003702,N:0.003943,O:0.015772,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.007886,U:0.007886,V:0.003943,W:0.003943,X:0.003943,Y:0.007886,Z:0.003943,a:0.003943,b:0.011829,c:0.004118,d:0.003939,e:0.003943,h:0.003943,i:0.003943,j:0.003929,k:0.003901,l:0.011829,m:0.007886,n:0.003943,o:0.011829,p:0.011829,q:0.011829,r:0.019715,s:0.102518,t:2.13316,f:1.95967,H:0},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","h","i","j","k","l","m","n","o","p","q","r","s","t","f","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,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,h:1637539200,i:1641427200,j:1643932800,k:1646265600,l:1649635200,m:1651190400,n:1653955200,o:1655942400,p:1659657600,q:1661990400,r:1664755200,s:1666915200,t:1670198400,f:1673481600,H:1675900800},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.008786,"1":0.004118,"2":0.004317,"3":0.004393,"4":0.004418,"5":0.008834,"6":0.008322,"7":0.008928,"8":0.004471,"9":0.009284,DC:0.004118,tB:0.004271,I:0.011703,u:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.007886,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,v:0.004443,w:0.004283,x:0.008322,y:0.013698,z:0.004161,AB:0.004707,BB:0.009076,CB:0.003943,DB:0.004783,EB:0.003929,FB:0.004783,GB:0.00487,HB:0.005029,IB:0.0047,JB:0.027601,KB:0.003943,LB:0.003867,MB:0.004525,NB:0.004293,OB:0.007886,PB:0.004538,QB:0.008282,RB:0.011601,SB:0.047316,TB:0.011601,UB:0.003929,VB:0.003974,WB:0.007886,XB:0.011601,YB:0.003939,uB:0.003943,ZB:0.003929,vB:0.004356,aB:0.004425,bB:0.008322,cB:0.00415,dB:0.004267,eB:0.003801,fB:0.004267,gB:0.003943,hB:0.00415,iB:0.004293,jB:0.004425,kB:0.003943,g:0.00415,lB:0.00415,mB:0.004318,nB:0.004356,oB:0.003974,pB:0.035487,P:0.003943,Q:0.003943,R:0.003943,wB:0.003943,S:0.003943,T:0.003929,U:0.004268,V:0.003801,W:0.011829,X:0.007886,Y:0.003943,Z:0.003943,a:0.011829,b:0.003801,c:0.003855,d:0.015772,e:0.003773,h:0.007886,i:0.003901,j:0.003901,k:0.003943,l:0.003943,m:0.003943,n:0.094632,o:0.043373,p:0.011829,q:0.023658,r:0.023658,s:0.047316,t:1.33668,f:0.760999,H:0.007886,xB:0,yB:0,EC:0.008786,FC:0.00487},B:"moz",C:["DC","tB","EC","FC","I","u","J","D","E","F","A","B","C","K","L","G","M","N","O","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","uB","ZB","vB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","g","lB","mB","nB","oB","pB","P","Q","R","wB","S","T","U","V","W","X","Y","Z","a","b","c","d","e","h","i","j","k","l","m","n","o","p","q","r","s","t","f","H","xB","yB",""],E:"Firefox",F:{"0":1375747200,"1":1379376000,"2":1386633600,"3":1391472000,"4":1395100800,"5":1398729600,"6":1402358400,"7":1405987200,"8":1409616000,"9":1413244800,DC:1161648000,tB:1213660800,EC:1246320000,FC:1264032000,I:1300752000,u:1308614400,J:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,G:1342483200,M:1346112000,N:1349740800,O:1353628800,v:1357603200,w:1361232000,x:1364860800,y:1368489600,z:1372118400,AB:1417392000,BB:1421107200,CB:1424736000,DB:1428278400,EB:1431475200,FB:1435881600,GB:1439251200,HB:1442880000,IB:1446508800,JB:1450137600,KB:1453852800,LB:1457395200,MB:1461628800,NB:1465257600,OB:1470096000,PB:1474329600,QB:1479168000,RB:1485216000,SB:1488844800,TB:1492560000,UB:1497312000,VB:1502150400,WB:1506556800,XB:1510617600,YB:1516665600,uB:1520985600,ZB:1525824000,vB:1529971200,aB:1536105600,bB:1540252800,cB:1544486400,dB:1548720000,eB:1552953600,fB:1558396800,gB:1562630400,hB:1567468800,iB:1571788800,jB:1575331200,kB:1578355200,g:1581379200,lB:1583798400,mB:1586304000,nB:1588636800,oB:1591056000,pB:1593475200,P:1595894400,Q:1598313600,R:1600732800,wB: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,h:1641859200,i:1644364800,j:1646697600,k:1649116800,l:1651536000,m:1653955200,n:1656374400,o:1658793600,p:1661212800,q:1663632000,r:1666051200,s:1668470400,t:1670889600,f:1673913600,H:1676332800,xB:null,yB:null}},D:{A:{"0":0.003939,"1":0.004461,"2":0.004141,"3":0.004326,"4":0.0047,"5":0.004538,"6":0.008322,"7":0.008596,"8":0.004566,"9":0.004118,I:0.004706,u:0.004879,J:0.004879,D:0.005591,E:0.005591,F:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,G:0.015087,M:0.004393,N:0.004393,O:0.008652,v:0.008322,w:0.004393,x:0.004317,y:0.003901,z:0.008786,AB:0.007886,BB:0.007886,CB:0.004335,DB:0.004464,EB:0.015772,FB:0.003867,GB:0.015772,HB:0.003773,IB:0.003974,JB:0.003943,KB:0.007948,LB:0.003974,MB:0.003867,NB:0.007886,OB:0.019715,PB:0.043373,QB:0.003867,RB:0.003929,SB:0.007886,TB:0.007886,UB:0.003867,VB:0.003943,WB:0.086746,XB:0.003943,YB:0.015772,uB:0.003773,ZB:0.011829,vB:0.011319,aB:0.003773,bB:0.007886,cB:0.003943,dB:0.007886,eB:0.031544,fB:0.007886,gB:0.011829,hB:0.059145,iB:0.027601,jB:0.015772,kB:0.031544,g:0.011829,lB:0.043373,mB:0.047316,nB:0.031544,oB:0.015772,pB:0.027601,P:0.126176,Q:0.035487,R:0.03943,S:0.070974,T:0.043373,U:0.086746,V:0.074917,W:0.07886,X:0.027601,Y:0.043373,Z:0.051259,a:0.074917,b:0.063088,c:0.059145,d:0.051259,e:0.03943,h:0.067031,i:0.070974,j:0.126176,k:0.082803,l:0.094632,m:0.07886,n:0.110404,o:0.268124,p:0.11829,q:0.149834,r:0.138005,s:0.417958,t:11.2218,f:9.7471,H:0.019715,xB:0.019715,yB:0,GC:0},B:"webkit",C:["","","","","","I","u","J","D","E","F","A","B","C","K","L","G","M","N","O","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","uB","ZB","vB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","g","lB","mB","nB","oB","pB","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","h","i","j","k","l","m","n","o","p","q","r","s","t","f","H","xB","yB","GC"],E:"Chrome",F:{"0":1352246400,"1":1357862400,"2":1361404800,"3":1364428800,"4":1369094400,"5":1374105600,"6":1376956800,"7":1384214400,"8":1389657600,"9":1392940800,I:1264377600,u:1274745600,J:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,G:1316131200,M:1319500800,N:1323734400,O:1328659200,v:1332892800,w:1337040000,x:1340668800,y:1343692800,z:1348531200,AB:1397001600,BB:1400544000,CB:1405468800,DB:1409011200,EB:1412640000,FB:1416268800,GB:1421798400,HB:1425513600,IB:1429401600,JB:1432080000,KB:1437523200,LB:1441152000,MB:1444780800,NB:1449014400,OB:1453248000,PB:1456963200,QB:1460592000,RB:1464134400,SB:1469059200,TB:1472601600,UB:1476230400,VB:1480550400,WB:1485302400,XB:1489017600,YB:1492560000,uB:1496707200,ZB:1500940800,vB:1504569600,aB:1508198400,bB:1512518400,cB:1516752000,dB:1520294400,eB:1523923200,fB:1527552000,gB:1532390400,hB:1536019200,iB:1539648000,jB:1543968000,kB:1548720000,g:1552348800,lB:1555977600,mB:1559606400,nB:1564444800,oB:1568073600,pB: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,h:1637020800,i:1641340800,j:1643673600,k:1646092800,l:1648512000,m:1650931200,n:1653350400,o:1655769600,p:1659398400,q:1661817600,r:1664236800,s:1666656000,t:1669680000,f:1673308800,H:1675728000,xB:null,yB:null,GC:null}},E:{A:{I:0,u:0.008322,J:0.004656,D:0.004465,E:0.003974,F:0.003929,A:0.004425,B:0.004318,C:0.003801,K:0.023658,L:0.098575,G:0.023658,HC:0,zB:0.008692,IC:0.007886,JC:0.00456,KC:0.004283,LC:0.047316,"0B":0.007802,qB:0.007886,rB:0.031544,"1B":0.177435,MC:0.252352,NC:0.03943,"2B":0.03943,"3B":0.090689,"4B":0.181378,"5B":1.13558,sB:0.126176,"6B":0.410072,"7B":0.808315,"8B":0.055202,"9B":0,OC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HC","zB","I","u","IC","J","JC","D","KC","E","F","LC","A","0B","B","qB","C","rB","K","1B","L","MC","G","NC","2B","3B","4B","5B","sB","6B","7B","8B","9B","OC",""],E:"Safari",F:{HC:1205798400,zB:1226534400,I:1244419200,u:1275868800,IC:1311120000,J:1343174400,JC:1382400000,D:1382400000,KC:1410998400,E:1413417600,F:1443657600,LC:1458518400,A:1474329600,"0B":1490572800,B:1505779200,qB:1522281600,C:1537142400,rB:1553472000,K:1568851200,"1B":1585008000,L:1600214400,MC:1619395200,G:1632096000,NC:1635292800,"2B":1639353600,"3B":1647216000,"4B":1652745600,"5B":1658275200,sB:1662940800,"6B":1666569600,"7B":1670889600,"8B":1674432000,"9B":null,OC:null}},F:{A:{"0":0.006702,"1":0.006015,"2":0.005595,"3":0.004393,"4":0.007886,"5":0.004879,"6":0.004879,"7":0.003943,"8":0.005152,"9":0.005014,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,v:0.006015,w:0.004879,x:0.006597,y:0.006597,z:0.013434,AB:0.009758,BB:0.004879,CB:0.007886,DB:0.004283,EB:0.004367,FB:0.004534,GB:0.007886,HB:0.004227,IB:0.004418,JB:0.004161,KB:0.004227,LB:0.004725,MB:0.011829,NB:0.008942,OB:0.004707,PB:0.004827,QB:0.004707,RB:0.004707,SB:0.004326,TB:0.008922,UB:0.014349,VB:0.004425,WB:0.00472,XB:0.004425,YB:0.004425,ZB:0.00472,aB:0.004532,bB:0.004566,cB:0.02283,dB:0.00867,eB:0.004656,fB:0.004642,gB:0.003929,hB:0.00944,iB:0.004293,jB:0.003929,kB:0.004298,g:0.096692,lB:0.004201,mB:0.004141,nB:0.004257,oB:0.003939,pB:0.008236,P:0.003855,Q:0.003939,R:0.008514,wB:0.003939,S:0.003939,T:0.003702,U:0.007886,V:0.003855,W:0.003855,X:0.003929,Y:0.003943,Z:0.011703,a:0.007546,b:0.011829,c:0.496818,d:0.690025,e:0,PC:0.00685,QC:0,RC:0.008392,SC:0.004706,qB:0.006229,AC:0.004879,TC:0.008786,rB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","F","PC","QC","RC","SC","B","qB","AC","TC","C","rB","G","M","N","O","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","g","lB","mB","nB","oB","pB","P","Q","R","wB","S","T","U","V","W","X","Y","Z","a","b","c","d","e","","",""],E:"Opera",F:{"0":1409616000,"1":1413331200,"2":1417132800,"3":1422316800,"4":1425945600,"5":1430179200,"6":1433808000,"7":1438646400,"8":1442448000,"9":1445904000,F:1150761600,PC:1223424000,QC:1251763200,RC:1267488000,SC:1277942400,B:1292457600,qB:1302566400,AC:1309219200,TC:1323129600,C:1323129600,rB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,v:1390867200,w:1393891200,x:1399334400,y:1401753600,z:1405987200,AB:1449100800,BB:1454371200,CB:1457308800,DB:1462320000,EB:1465344000,FB:1470096000,GB:1474329600,HB:1477267200,IB:1481587200,JB:1486425600,KB:1490054400,LB:1494374400,MB:1498003200,NB:1502236800,OB:1506470400,PB:1510099200,QB:1515024000,RB:1517961600,SB:1521676800,TB:1525910400,UB:1530144000,VB:1534982400,WB:1537833600,XB:1543363200,YB:1548201600,ZB:1554768000,aB:1561593600,bB:1566259200,cB:1570406400,dB:1573689600,eB:1578441600,fB:1583971200,gB:1587513600,hB:1592956800,iB:1595894400,jB:1600128000,kB:1603238400,g:1613520000,lB:1612224000,mB:1616544000,nB:1619568000,oB:1623715200,pB:1627948800,P:1631577600,Q:1633392000,R:1635984000,wB: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},D:{F:"o",B:"o",C:"o",PC:"o",QC:"o",RC:"o",SC:"o",qB:"o",AC:"o",TC:"o",rB:"o"}},G:{A:{E:0,zB:0,UC:0,BC:0.00157571,VC:0.00315142,WC:0.00315142,XC:0.0126057,YC:0.00630284,ZC:0.0157571,aC:0.0583013,bC:0.00630284,cC:0.1103,dC:0.0267871,eC:0.0252114,fC:0.0220599,gC:0.395503,hC:0.0330899,iC:0.0236357,jC:0.0346656,kC:0.105573,lC:0.288355,mC:0.567256,nC:0.157571,"2B":0.207994,"3B":0.250538,"4B":0.472713,"5B":1.89085,sB:1.7837,"6B":4.8784,"7B":3.17191,"8B":0.237932,"9B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","zB","UC","BC","VC","WC","XC","E","YC","ZC","aC","bC","cC","dC","eC","fC","gC","hC","iC","jC","kC","lC","mC","nC","2B","3B","4B","5B","sB","6B","7B","8B","9B","",""],E:"Safari on iOS",F:{zB:1270252800,UC:1283904000,BC:1299628800,VC:1331078400,WC:1359331200,XC:1394409600,E:1410912000,YC:1413763200,ZC:1442361600,aC:1458518400,bC:1473724800,cC:1490572800,dC:1505779200,eC:1522281600,fC:1537142400,gC:1553472000,hC:1568851200,iC:1572220800,jC:1580169600,kC:1585008000,lC:1600214400,mC:1619395200,nC:1632096000,"2B":1639353600,"3B":1647216000,"4B":1652659200,"5B":1658275200,sB:1662940800,"6B":1666569600,"7B":1670889600,"8B":1674432000,"9B":null}},H:{A:{oC:1.01498},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","oC","","",""],E:"Opera Mini",F:{oC:1426464000}},I:{A:{tB:0,I:0.0286543,f:0,pC:0,qC:0,rC:0,sC:0.0764114,BC:0.0764114,tC:0,uC:0.315197},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","pC","qC","rC","tB","I","sC","BC","tC","uC","f","","",""],E:"Android Browser",F:{pC:1256515200,qC:1274313600,rC:1291593600,tB:1298332800,I:1318896000,sC:1341792000,BC:1374624000,tC:1386547200,uC:1401667200,f:1673568000}},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,g:0.0111391,qB:0,AC:0,rB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","qB","AC","C","rB","g","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,qB:1314835200,AC:1318291200,C:1330300800,rB:1349740800,g:1673827200},D:{g:"webkit"}},L:{A:{H:41.3632},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1675728000}},M:{A:{H:0.30285},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Firefox for Android",F:{H:1676332800}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{vC:0.890379},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","vC","","",""],E:"UC Browser for Android",F:{vC:1634688000},D:{vC:"webkit"}},P:{A:{I:0.147734,wC:0.0103543,xC:0.010304,yC:0.0527621,zC:0.0103584,"0C":0.0104443,"0B":0.0105043,"1C":0.0211049,"2C":0.0105524,"3C":0.0316573,"4C":0.0316573,"5C":0.0211049,sB:0.073867,"6C":0.0844194,"7C":0.126629,"8C":2.09993},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","wC","xC","yC","zC","0C","0B","1C","2C","3C","4C","5C","sB","6C","7C","8C","","",""],E:"Samsung Internet",F:{I:1461024000,wC:1481846400,xC:1509408000,yC:1528329600,zC:1546128000,"0C":1554163200,"0B":1567900800,"1C":1582588800,"2C":1593475200,"3C":1605657600,"4C":1618531200,"5C":1629072000,sB:1640736000,"6C":1651708800,"7C":1659657600,"8C":1667260800}},Q:{A:{"1B":0.145368},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1B","","",""],E:"QQ Browser",F:{"1B":1663718400}},R:{A:{"9C":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9C","","",""],E:"Baidu Browser",F:{"9C":1663027200}},S:{A:{AD:0.066627},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","AD","","",""],E:"KaiOS Browser",F:{AD:1527811200}}}; +module.exports={A:{A:{J:0.0131217,D:0.00621152,E:0.0478029,F:0.0573634,A:0.00956057,B:0.487589,EC:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","EC","J","D","E","F","A","B","","",""],E:"IE",F:{EC:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.003861,K:0.004267,L:0.004268,G:0.003861,M:0.003702,N:0.003861,O:0.015444,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.007722,U:0.003861,V:0.003861,W:0.003861,X:0.003943,Y:0.007722,Z:0.003943,a:0.003943,b:0.007722,c:0.004118,d:0.003939,e:0.003943,i:0.003943,j:0.003943,k:0.003929,l:0.003901,m:0.011829,n:0.007886,o:0.003943,p:0.007722,q:0.003861,r:0.007722,s:0.011583,t:0.073359,u:0.111969,v:1.66023,f:2.23552,H:0},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","i","j","k","l","m","n","o","p","q","r","s","t","u","v","f","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,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,i:1637539200,j:1641427200,k:1643932800,l:1646265600,m:1649635200,n:1651190400,o:1653955200,p:1655942400,q:1659657600,r:1661990400,s:1664755200,t:1666915200,u:1670198400,v:1673481600,f:1675900800,H:1678665600},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.004161,"1":0.008786,"2":0.004118,"3":0.004317,"4":0.004393,"5":0.004418,"6":0.008834,"7":0.008322,"8":0.008928,"9":0.004471,FC:0.004118,uB:0.004271,I:0.011703,w:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.007722,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,x:0.004443,g:0.004283,y:0.008322,z:0.013698,AB:0.009284,BB:0.004707,CB:0.009076,DB:0.003861,EB:0.004783,FB:0.003929,GB:0.004783,HB:0.00487,IB:0.005029,JB:0.0047,KB:0.019305,LB:0.003861,MB:0.003867,NB:0.004525,OB:0.004293,PB:0.003861,QB:0.004538,RB:0.008282,SB:0.011601,TB:0.046332,UB:0.011601,VB:0.003929,WB:0.003974,XB:0.003861,YB:0.011601,ZB:0.003939,vB:0.003861,aB:0.003929,wB:0.004356,bB:0.004425,cB:0.008322,dB:0.00415,eB:0.004267,fB:0.003801,gB:0.004267,hB:0.003861,iB:0.00415,jB:0.004293,kB:0.004425,lB:0.003861,h:0.00415,mB:0.00415,nB:0.004318,oB:0.004356,pB:0.003974,qB:0.034749,P:0.003861,Q:0.003861,R:0.003861,xB:0.003861,S:0.003861,T:0.003929,U:0.004268,V:0.003801,W:0.015444,X:0.007722,Y:0.003943,Z:0.003943,a:0.011583,b:0.003801,c:0.007722,d:0.011583,e:0.003773,i:0.007886,j:0.003901,k:0.003901,l:0.003861,m:0.003861,n:0.003861,o:0.096525,p:0.042471,q:0.007722,r:0.011583,s:0.015444,t:0.019305,u:0.069498,v:1.22008,f:0.814671,H:0.007722,yB:0,zB:0,GC:0.008786,HC:0.00487},B:"moz",C:["FC","uB","GC","HC","I","w","J","D","E","F","A","B","C","K","L","G","M","N","O","x","g","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","vB","aB","wB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","h","mB","nB","oB","pB","qB","P","Q","R","xB","S","T","U","V","W","X","Y","Z","a","b","c","d","e","i","j","k","l","m","n","o","p","q","r","s","t","u","v","f","H","yB","zB",""],E:"Firefox",F:{"0":1372118400,"1":1375747200,"2":1379376000,"3":1386633600,"4":1391472000,"5":1395100800,"6":1398729600,"7":1402358400,"8":1405987200,"9":1409616000,FC:1161648000,uB:1213660800,GC:1246320000,HC:1264032000,I:1300752000,w:1308614400,J:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,G:1342483200,M:1346112000,N:1349740800,O:1353628800,x:1357603200,g:1361232000,y:1364860800,z:1368489600,AB:1413244800,BB:1417392000,CB:1421107200,DB:1424736000,EB:1428278400,FB:1431475200,GB:1435881600,HB:1439251200,IB:1442880000,JB:1446508800,KB:1450137600,LB:1453852800,MB:1457395200,NB:1461628800,OB:1465257600,PB:1470096000,QB:1474329600,RB:1479168000,SB:1485216000,TB:1488844800,UB:1492560000,VB:1497312000,WB:1502150400,XB:1506556800,YB:1510617600,ZB:1516665600,vB:1520985600,aB:1525824000,wB:1529971200,bB:1536105600,cB:1540252800,dB:1544486400,eB:1548720000,fB:1552953600,gB:1558396800,hB:1562630400,iB:1567468800,jB:1571788800,kB:1575331200,lB:1578355200,h:1581379200,mB:1583798400,nB:1586304000,oB:1588636800,pB:1591056000,qB:1593475200,P:1595894400,Q:1598313600,R:1600732800,xB: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,i:1641859200,j:1644364800,k:1646697600,l:1649116800,m:1651536000,n:1653955200,o:1656374400,p:1658793600,q:1661212800,r:1663632000,s:1666051200,t:1668470400,u:1670889600,v:1673913600,f:1676332800,H:1678752000,yB:null,zB:null}},D:{A:{"0":0.008786,"1":0.003939,"2":0.004461,"3":0.004141,"4":0.004326,"5":0.0047,"6":0.004538,"7":0.008322,"8":0.008596,"9":0.004566,I:0.004706,w:0.004879,J:0.004879,D:0.005591,E:0.005591,F:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,G:0.015087,M:0.004393,N:0.004393,O:0.008652,x:0.008322,g:0.004393,y:0.004317,z:0.003901,AB:0.004118,BB:0.003861,CB:0.003861,DB:0.004335,EB:0.004464,FB:0.015444,GB:0.003867,HB:0.015444,IB:0.003773,JB:0.003974,KB:0.007722,LB:0.007948,MB:0.003974,NB:0.003867,OB:0.007722,PB:0.019305,QB:0.03861,RB:0.003867,SB:0.003929,TB:0.007722,UB:0.007722,VB:0.003867,WB:0.007722,XB:0.069498,YB:0.003861,ZB:0.015772,vB:0.003773,aB:0.015444,wB:0.007722,bB:0.003773,cB:0.007722,dB:0.003943,eB:0.007722,fB:0.027027,gB:0.007722,hB:0.011583,iB:0.054054,jB:0.019305,kB:0.015444,lB:0.023166,h:0.011583,mB:0.042471,nB:0.046332,oB:0.042471,pB:0.015444,qB:0.030888,P:0.127413,Q:0.03861,R:0.042471,S:0.073359,T:0.042471,U:0.088803,V:0.07722,W:0.081081,X:0.027027,Y:0.03861,Z:0.046332,a:0.084942,b:0.050193,c:0.065637,d:0.046332,e:0.019305,i:0.03861,j:0.050193,k:0.092664,l:0.050193,m:0.057915,n:0.061776,o:0.084942,p:0.235521,q:0.084942,r:0.131274,s:0.100386,t:0.19305,u:0.984555,v:12.4054,f:7.25482,H:0.015444,yB:0.019305,zB:0,IC:0},B:"webkit",C:["","","","","","I","w","J","D","E","F","A","B","C","K","L","G","M","N","O","x","g","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","vB","aB","wB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","h","mB","nB","oB","pB","qB","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","i","j","k","l","m","n","o","p","q","r","s","t","u","v","f","H","yB","zB","IC"],E:"Chrome",F:{"0":1348531200,"1":1352246400,"2":1357862400,"3":1361404800,"4":1364428800,"5":1369094400,"6":1374105600,"7":1376956800,"8":1384214400,"9":1389657600,I:1264377600,w:1274745600,J:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,G:1316131200,M:1319500800,N:1323734400,O:1328659200,x:1332892800,g:1337040000,y:1340668800,z:1343692800,AB:1392940800,BB:1397001600,CB:1400544000,DB:1405468800,EB:1409011200,FB:1412640000,GB:1416268800,HB:1421798400,IB:1425513600,JB:1429401600,KB:1432080000,LB:1437523200,MB:1441152000,NB:1444780800,OB:1449014400,PB:1453248000,QB:1456963200,RB:1460592000,SB:1464134400,TB:1469059200,UB:1472601600,VB:1476230400,WB:1480550400,XB:1485302400,YB:1489017600,ZB:1492560000,vB:1496707200,aB:1500940800,wB:1504569600,bB:1508198400,cB:1512518400,dB:1516752000,eB:1520294400,fB:1523923200,gB:1527552000,hB:1532390400,iB:1536019200,jB:1539648000,kB:1543968000,lB:1548720000,h:1552348800,mB:1555977600,nB:1559606400,oB:1564444800,pB:1568073600,qB: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,i:1637020800,j:1641340800,k:1643673600,l:1646092800,m:1648512000,n:1650931200,o:1653350400,p:1655769600,q:1659398400,r:1661817600,s:1664236800,t:1666656000,u:1669680000,v:1673308800,f:1675728000,H:1678147200,yB:null,zB:null,IC:null}},E:{A:{I:0,w:0.008322,J:0.004656,D:0.004465,E:0.003974,F:0.003929,A:0.004425,B:0.004318,C:0.003801,K:0.019305,L:0.096525,G:0.023166,JC:0,"0B":0.008692,KC:0.007722,LC:0.00456,MC:0.004283,NC:0.057915,"1B":0.007802,rB:0.007722,sB:0.030888,"2B":0.169884,OC:0.258687,PC:0.042471,"3B":0.034749,"4B":0.088803,"5B":0.169884,"6B":0.857142,tB:0.088803,"7B":0.293436,"8B":0.922779,"9B":0.621621,AC:0,BC:0,QC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","JC","0B","I","w","KC","J","LC","D","MC","E","F","NC","A","1B","B","rB","C","sB","K","2B","L","OC","G","PC","3B","4B","5B","6B","tB","7B","8B","9B","AC","BC","QC",""],E:"Safari",F:{JC:1205798400,"0B":1226534400,I:1244419200,w:1275868800,KC:1311120000,J:1343174400,LC:1382400000,D:1382400000,MC:1410998400,E:1413417600,F:1443657600,NC:1458518400,A:1474329600,"1B":1490572800,B:1505779200,rB:1522281600,C:1537142400,sB:1553472000,K:1568851200,"2B":1585008000,L:1600214400,OC:1619395200,G:1632096000,PC:1635292800,"3B":1639353600,"4B":1647216000,"5B":1652745600,"6B":1658275200,tB:1662940800,"7B":1666569600,"8B":1670889600,"9B":1674432000,AC:1679875200,BC:null,QC:null}},F:{A:{"0":0.013434,"1":0.006702,"2":0.006015,"3":0.005595,"4":0.004393,"5":0.003861,"6":0.004879,"7":0.004879,"8":0.003861,"9":0.005152,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,x:0.006015,g:0.004879,y:0.006597,z:0.006597,AB:0.005014,BB:0.009758,CB:0.004879,DB:0.007722,EB:0.004283,FB:0.004367,GB:0.004534,HB:0.003861,IB:0.004227,JB:0.004418,KB:0.004161,LB:0.004227,MB:0.004725,NB:0.011583,OB:0.008942,PB:0.004707,QB:0.004827,RB:0.004707,SB:0.004707,TB:0.004326,UB:0.008922,VB:0.014349,WB:0.004425,XB:0.00472,YB:0.004425,ZB:0.004425,aB:0.00472,bB:0.004532,cB:0.004566,dB:0.02283,eB:0.00867,fB:0.004656,gB:0.004642,hB:0.003929,iB:0.00944,jB:0.004293,kB:0.003929,lB:0.004298,h:0.096692,mB:0.004201,nB:0.004141,oB:0.004257,pB:0.003939,qB:0.008236,P:0.003855,Q:0.003939,R:0.008514,xB:0.003939,S:0.003939,T:0.003702,U:0.007722,V:0.003855,W:0.003855,X:0.003929,Y:0.003861,Z:0.011703,a:0.007546,b:0.011829,c:0.069498,d:0.648648,e:0.370656,RC:0.00685,SC:0,TC:0.008392,UC:0.004706,rB:0.006229,CC:0.004879,VC:0.008786,sB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","F","RC","SC","TC","UC","B","rB","CC","VC","C","sB","G","M","N","O","x","g","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","h","mB","nB","oB","pB","qB","P","Q","R","xB","S","T","U","V","W","X","Y","Z","a","b","c","d","e","","",""],E:"Opera",F:{"0":1405987200,"1":1409616000,"2":1413331200,"3":1417132800,"4":1422316800,"5":1425945600,"6":1430179200,"7":1433808000,"8":1438646400,"9":1442448000,F:1150761600,RC:1223424000,SC:1251763200,TC:1267488000,UC:1277942400,B:1292457600,rB:1302566400,CC:1309219200,VC:1323129600,C:1323129600,sB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,x:1390867200,g:1393891200,y:1399334400,z:1401753600,AB:1445904000,BB:1449100800,CB:1454371200,DB:1457308800,EB:1462320000,FB:1465344000,GB:1470096000,HB:1474329600,IB:1477267200,JB:1481587200,KB:1486425600,LB:1490054400,MB:1494374400,NB:1498003200,OB:1502236800,PB:1506470400,QB:1510099200,RB:1515024000,SB:1517961600,TB:1521676800,UB:1525910400,VB:1530144000,WB:1534982400,XB:1537833600,YB:1543363200,ZB:1548201600,aB:1554768000,bB:1561593600,cB:1566259200,dB:1570406400,eB:1573689600,fB:1578441600,gB:1583971200,hB:1587513600,iB:1592956800,jB:1595894400,kB:1600128000,lB:1603238400,h:1613520000,mB:1612224000,nB:1616544000,oB:1619568000,pB:1623715200,qB:1627948800,P:1631577600,Q:1633392000,R:1635984000,xB: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},D:{F:"o",B:"o",C:"o",RC:"o",SC:"o",TC:"o",UC:"o",rB:"o",CC:"o",VC:"o",sB:"o"}},G:{A:{E:0,"0B":0,WC:0,DC:0.00156679,XC:0.00313358,YC:0.00313358,ZC:0.0125343,aC:0.00626717,bC:0.0172347,cC:0.0564045,dC:0.00470038,eC:0.0987079,fC:0.0250687,gC:0.0235019,hC:0.0219351,iC:0.394832,jC:0.0156679,kC:0.0360362,lC:0.0344694,mC:0.108109,nC:0.282023,oC:0.532709,pC:0.153546,"3B":0.195849,"4B":0.233452,"5B":0.412066,"6B":1.40071,tB:1.43988,"7B":3.51431,"8B":3.62556,"9B":2.04623,AC:0.00940075,BC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0B","WC","DC","XC","YC","ZC","E","aC","bC","cC","dC","eC","fC","gC","hC","iC","jC","kC","lC","mC","nC","oC","pC","3B","4B","5B","6B","tB","7B","8B","9B","AC","BC","",""],E:"Safari on iOS",F:{"0B":1270252800,WC:1283904000,DC:1299628800,XC:1331078400,YC:1359331200,ZC:1394409600,E:1410912000,aC:1413763200,bC:1442361600,cC:1458518400,dC:1473724800,eC:1490572800,fC:1505779200,gC:1522281600,hC:1537142400,iC:1553472000,jC:1568851200,kC:1572220800,lC:1580169600,mC:1585008000,nC:1600214400,oC:1619395200,pC:1632096000,"3B":1639353600,"4B":1647216000,"5B":1652659200,"6B":1658275200,tB:1662940800,"7B":1666569600,"8B":1670889600,"9B":1674432000,AC:1679875200,BC:null}},H:{A:{qC:0.993853},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","qC","","",""],E:"Opera Mini",F:{qC:1426464000}},I:{A:{uB:0,I:0.019696,H:0,rC:0,sC:0,tC:0,uC:0.0787838,DC:0.0689359,vC:0,wC:0.305287},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rC","sC","tC","uB","I","uC","DC","vC","wC","H","","",""],E:"Android Browser",F:{rC:1256515200,sC:1274313600,tC:1291593600,uB:1298332800,I:1318896000,uC:1341792000,DC:1374624000,vC:1386547200,wC:1401667200,H:1678147200}},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,h:0.0111391,rB:0,CC:0,sB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","rB","CC","C","sB","h","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,rB:1314835200,CC:1318291200,C:1330300800,sB:1349740800,h:1673827200},D:{h:"webkit"}},L:{A:{H:42.629},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1678147200}},M:{A:{f:0.294672},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","f","","",""],E:"Firefox for Android",F:{f:1676332800}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{xC:0.896294},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","xC","","",""],E:"UC Browser for Android",F:{xC:1634688000},D:{xC:"webkit"}},P:{A:{I:0.166372,g:0,yC:0.0103543,zC:0.010304,"0C":0.0519911,"1C":0.0103584,"2C":0.0104443,"1B":0.0105043,"3C":0.0311947,"4C":0.0103982,"5C":0.0311947,"6C":0.0311947,"7C":0.0207965,tB:0.0727876,"8C":0.0727876,"9C":0.0935841,AD:1.32057},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","yC","zC","0C","1C","2C","1B","3C","4C","5C","6C","7C","tB","8C","9C","AD","g","","",""],E:"Samsung Internet",F:{I:1461024000,yC:1481846400,zC:1509408000,"0C":1528329600,"1C":1546128000,"2C":1554163200,"1B":1567900800,"3C":1582588800,"4C":1593475200,"5C":1605657600,"6C":1618531200,"7C":1629072000,tB:1640736000,"8C":1651708800,"9C":1659657600,AD:1667260800,g:1677369600}},Q:{A:{"2B":0.12278},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2B","","",""],E:"QQ Browser",F:{"2B":1663718400}},R:{A:{BD:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","BD","","",""],E:"Baidu Browser",F:{BD:1663027200}},S:{A:{CD:0.079807,DD:0},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","CD","DD","","",""],E:"KaiOS Browser",F:{CD:1527811200,DD: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 bbc629ba0769f6..f32cace815c021 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":"24","1":"25","2":"26","3":"27","4":"28","5":"29","6":"30","7":"31","8":"32","9":"33",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"110",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:"109",g:"73",h:"96",i:"97",j:"98",k:"99",l:"100",m:"101",n:"102",o:"103",p:"104",q:"105",r:"106",s:"107",t:"108",u:"5",v:"19",w:"20",x:"21",y:"22",z:"23",AB:"34",BB:"35",CB:"36",DB:"37",EB:"38",FB:"39",GB:"40",HB:"41",IB:"42",JB:"43",KB:"44",LB:"45",MB:"46",NB:"47",OB:"48",PB:"49",QB:"50",RB:"51",SB:"52",TB:"53",UB:"54",VB:"55",WB:"56",XB:"57",YB:"58",ZB:"60",aB:"62",bB:"63",cB:"64",dB:"65",eB:"66",fB:"67",gB:"68",hB:"69",iB:"70",jB:"71",kB:"72",lB:"74",mB:"75",nB:"76",oB:"77",pB:"78",qB:"11.1",rB:"12.1",sB:"16.0",tB:"3",uB:"59",vB:"61",wB:"82",xB:"111",yB:"112",zB:"3.2","0B":"10.1","1B":"13.1","2B":"15.2-15.3","3B":"15.4","4B":"15.5","5B":"15.6","6B":"16.1","7B":"16.2","8B":"16.3","9B":"16.4",AC:"11.5",BC:"4.2-4.3",CC:"5.5",DC:"2",EC:"3.5",FC:"3.6",GC:"113",HC:"3.1",IC:"5.1",JC:"6.1",KC:"7.1",LC:"9.1",MC:"14.1",NC:"15.1",OC:"TP",PC:"9.5-9.6",QC:"10.0-10.1",RC:"10.5",SC:"10.6",TC:"11.6",UC:"4.0-4.1",VC:"5.0-5.1",WC:"6.0-6.1",XC:"7.0-7.1",YC:"8.1-8.4",ZC:"9.0-9.2",aC:"9.3",bC:"10.0-10.2",cC:"10.3",dC:"11.0-11.2",eC:"11.3-11.4",fC:"12.0-12.1",gC:"12.2-12.5",hC:"13.0-13.1",iC:"13.2",jC:"13.3",kC:"13.4-13.7",lC:"14.0-14.4",mC:"14.5-14.8",nC:"15.0-15.1",oC:"all",pC:"2.1",qC:"2.2",rC:"2.3",sC:"4.1",tC:"4.4",uC:"4.4.3-4.4.4",vC:"13.4",wC:"5.0-5.4",xC:"6.2-6.4",yC:"7.2-7.4",zC:"8.2","0C":"9.2","1C":"11.1-11.2","2C":"12.0","3C":"13.0","4C":"14.0","5C":"15.0","6C":"17.0","7C":"18.0","8C":"19.0","9C":"13.18",AD:"2.5"}; +module.exports={"0":"23","1":"24","2":"25","3":"26","4":"27","5":"28","6":"29","7":"30","8":"31","9":"32",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"111",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:"110",g:"20",h:"73",i:"96",j:"97",k:"98",l:"99",m:"100",n:"101",o:"102",p:"103",q:"104",r:"105",s:"106",t:"107",u:"108",v:"109",w:"5",x:"19",y:"21",z:"22",AB:"33",BB:"34",CB:"35",DB:"36",EB:"37",FB:"38",GB:"39",HB:"40",IB:"41",JB:"42",KB:"43",LB:"44",MB:"45",NB:"46",OB:"47",PB:"48",QB:"49",RB:"50",SB:"51",TB:"52",UB:"53",VB:"54",WB:"55",XB:"56",YB:"57",ZB:"58",aB:"60",bB:"62",cB:"63",dB:"64",eB:"65",fB:"66",gB:"67",hB:"68",iB:"69",jB:"70",kB:"71",lB:"72",mB:"74",nB:"75",oB:"76",pB:"77",qB:"78",rB:"11.1",sB:"12.1",tB:"16.0",uB:"3",vB:"59",wB:"61",xB:"82",yB:"112",zB:"113","0B":"3.2","1B":"10.1","2B":"13.1","3B":"15.2-15.3","4B":"15.4","5B":"15.5","6B":"15.6","7B":"16.1","8B":"16.2","9B":"16.3",AC:"16.4",BC:"16.5",CC:"11.5",DC:"4.2-4.3",EC:"5.5",FC:"2",GC:"3.5",HC:"3.6",IC:"114",JC:"3.1",KC:"5.1",LC:"6.1",MC:"7.1",NC:"9.1",OC:"14.1",PC:"15.1",QC:"TP",RC:"9.5-9.6",SC:"10.0-10.1",TC:"10.5",UC:"10.6",VC:"11.6",WC:"4.0-4.1",XC:"5.0-5.1",YC:"6.0-6.1",ZC:"7.0-7.1",aC:"8.1-8.4",bC:"9.0-9.2",cC:"9.3",dC:"10.0-10.2",eC:"10.3",fC:"11.0-11.2",gC:"11.3-11.4",hC:"12.0-12.1",iC:"12.2-12.5",jC:"13.0-13.1",kC:"13.2",lC:"13.3",mC:"13.4-13.7",nC:"14.0-14.4",oC:"14.5-14.8",pC:"15.0-15.1",qC:"all",rC:"2.1",sC:"2.2",tC:"2.3",uC:"4.1",vC:"4.4",wC:"4.4.3-4.4.4",xC:"13.4",yC:"5.0-5.4",zC:"6.2-6.4","0C":"7.2-7.4","1C":"8.2","2C":"9.2","3C":"11.1-11.2","4C":"12.0","5C":"13.0","6C":"14.0","7C":"15.0","8C":"17.0","9C":"18.0",AD:"19.0",BD:"13.18",CD:"2.5",DD:"3.0-3.1"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js index 0611aa6979d2a0..7e555914a002e2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js @@ -1 +1 @@ -module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries-style":require("./features/css-container-queries-style"),"css-container-queries":require("./features/css-container-queries"),"css-container-query-units":require("./features/css-container-query-units"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid-animation":require("./features/css-grid-animation"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-range-syntax":require("./features/css-media-range-syntax"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"mdn-css-unicode-bidi-isolate-override":require("./features/mdn-css-unicode-bidi-isolate-override"),"mdn-css-unicode-bidi-isolate":require("./features/mdn-css-unicode-bidi-isolate"),"mdn-css-unicode-bidi-plaintext":require("./features/mdn-css-unicode-bidi-plaintext"),"mdn-text-decoration-color":require("./features/mdn-text-decoration-color"),"mdn-text-decoration-line":require("./features/mdn-text-decoration-line"),"mdn-text-decoration-shorthand":require("./features/mdn-text-decoration-shorthand"),"mdn-text-decoration-style":require("./features/mdn-text-decoration-style"),"media-fragments":require("./features/media-fragments"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-bundling":require("./features/subresource-bundling"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webcodecs":require("./features/webcodecs"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webtransport":require("./features/webtransport"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")}; +module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries-style":require("./features/css-container-queries-style"),"css-container-queries":require("./features/css-container-queries"),"css-container-query-units":require("./features/css-container-query-units"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid-animation":require("./features/css-grid-animation"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-range-syntax":require("./features/css-media-range-syntax"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-box-trim":require("./features/css-text-box-trim"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"mdn-css-unicode-bidi-isolate-override":require("./features/mdn-css-unicode-bidi-isolate-override"),"mdn-css-unicode-bidi-isolate":require("./features/mdn-css-unicode-bidi-isolate"),"mdn-css-unicode-bidi-plaintext":require("./features/mdn-css-unicode-bidi-plaintext"),"mdn-text-decoration-color":require("./features/mdn-text-decoration-color"),"mdn-text-decoration-line":require("./features/mdn-text-decoration-line"),"mdn-text-decoration-shorthand":require("./features/mdn-text-decoration-shorthand"),"mdn-text-decoration-style":require("./features/mdn-text-decoration-style"),"media-fragments":require("./features/media-fragments"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-bundling":require("./features/subresource-bundling"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webcodecs":require("./features/webcodecs"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webtransport":require("./features/webtransport"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/aac.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/aac.js index 7f3a048711c4f7..0eaa2d2dbbd502 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB I u J D E F A B C K L G M N O v w x EC FC","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F","16":"A B"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"132":"H"},N:{"1":"A","2":"B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"132":"AD"}},B:6,C:"AAC audio file format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC uB I w J D E F A B C K L G M N O x g y GC HC","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F","16":"A B"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"132":"f"},N:{"1":"A","2":"B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"132":"CD DD"}},B:6,C:"AAC audio file format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/abortcontroller.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/abortcontroller.js index 9ff990d8dcac97..357a161b8c2830 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G"},C:{"1":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB EC FC"},D:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B","130":"C qB"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"AbortController & AbortSignal"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G"},C:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB GC HC"},D:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B","130":"C rB"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"AbortController & AbortSignal"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ac3-ec3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ac3-ec3.js index 24269f7d54fa19..e6da608b0ea1ee 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 CC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC","132":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D","132":"A"},K:{"2":"A B C g qB AC","132":"rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC","132":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D","132":"A"},K:{"2":"A B C h rB CC","132":"sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/accelerometer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/accelerometer.js index fd8bd222912447..8b1ee96d207ec9 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB aB bB cB dB eB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"Accelerometer"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB 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 vB aB wB bB cB dB eB fB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:4,C:"Accelerometer"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/addeventlistener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/addeventlistener.js index c1cec5a6c0a8f8..15b5a8bd37bd30 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","257":"DC tB I u J EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"EventTarget.addEventListener()"}; +module.exports={A:{A:{"1":"F A B","130":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","257":"FC uB I w J GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"EventTarget.addEventListener()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/alternate-stylesheet.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/alternate-stylesheet.js index fc591e3f9787cf..7b017478995169 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"F B C PC QC RC SC qB AC TC rB","16":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"16":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"2":"g","16":"A B C qB AC rB"},L:{"16":"H"},M:{"16":"H"},N:{"16":"A B"},O:{"16":"vC"},P:{"16":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"16":"9C"},S:{"1":"AD"}},B:1,C:"Alternate stylesheet"}; +module.exports={A:{A:{"1":"E F A B","2":"J D EC"},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 i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"F B C RC SC TC UC rB CC VC sB","16":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"16":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"2":"h","16":"A B C rB CC sB"},L:{"16":"H"},M:{"16":"f"},N:{"16":"A B"},O:{"16":"xC"},P:{"16":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"16":"BD"},S:{"1":"CD DD"}},B:1,C:"Alternate stylesheet"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ambient-light.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ambient-light.js index af4c0431db3039..c70d4594f1bf64 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 CC"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB I u J D E F A B C K L G M N O v w x EC FC","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB","194":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB PC QC RC SC qB AC TC rB","322":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"132":"AD"}},B:4,C:"Ambient Light Sensor"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC uB I w J D E F A B C K L G M N O x g y GC HC","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB","194":"aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","322":"ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB RC SC TC UC rB CC VC sB","322":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"132":"CD DD"}},B:4,C:"Ambient Light Sensor"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/apng.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/apng.js index 6998f7153b0997..9a68648cb8252e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC"},D:{"1":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB 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":"E F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC KC"},F:{"1":"B C MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Animated PNG (APNG)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC"},D:{"1":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB 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":"E F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC MC"},F:{"1":"B C NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Animated PNG (APNG)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find-index.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find-index.js index 9f7e2eca7d88a4..890bd433c14c58 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","16":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Array.prototype.findIndex"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","16":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Array.prototype.findIndex"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find.js index f7952ebadb47b5..6e6c4128282077 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 CC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","16":"C K L"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","16":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Array.prototype.find"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","16":"C K L"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","16":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Array.prototype.find"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-flat.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-flat.js index c4c0c31cdeefe9..acaab01404ddc3 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB EC FC"},D:{"1":"hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB"},E:{"1":"C K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B qB"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB PC QC RC SC qB AC TC rB"},G:{"1":"fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"flat & flatMap array methods"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB GC HC"},D:{"1":"iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB"},E:{"1":"C K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B rB"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z 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 TC UC rB CC VC sB"},G:{"1":"hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"flat & flatMap array methods"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-includes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-includes.js index 6a31a4e8a4123e..1ca3b059dd5641 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB EC FC"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Array.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB GC HC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Array.prototype.includes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/arrow-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/arrow-functions.js index f0c9e538690929..488bd14ecf8919 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x EC FC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Arrow functions"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y GC HC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Arrow functions"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/asmjs.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/asmjs.js index 558d1706560592..df5d8a7102013c 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 CC"},B:{"1":"K L G M N O","132":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x EC FC"},D:{"2":"0 1 2 3 I u J D E F A B C K L G M N O v w x y z","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","132":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","132":"g"},L:{"132":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"vC"},P:{"2":"I","132":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"132":"1B"},R:{"132":"9C"},S:{"1":"AD"}},B:6,C:"asm.js"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O","132":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y GC HC"},D:{"2":"0 1 2 3 4 I w J D E F A B C K L G M N O x g y z","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","132":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","132":"h"},L:{"132":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"132":"xC"},P:{"2":"I","132":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"132":"2B"},R:{"132":"BD"},S:{"1":"CD DD"}},B:6,C:"asm.js"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-clipboard.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-clipboard.js index fa4af3ee9df99d..db911896ac7673 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB EC FC","132":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB"},E:{"1":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC","260":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","260":"f"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"132":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC","260":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Asynchronous Clipboard API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB GC HC","132":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","66":"ZB vB aB wB"},E:{"1":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC","260":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","260":"H"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"132":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I yC zC 0C 1C","260":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD","132":"DD"}},B:5,C:"Asynchronous Clipboard API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-functions.js index f99d54d1f5b658..a96ad1b6d6b386 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 CC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K","194":"L"},C:{"1":"SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB EC FC"},D:{"1":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC","514":"0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC","514":"cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"Async functions"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K","194":"L"},C:{"1":"TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB GC HC"},D:{"1":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC","514":"1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC","514":"eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"Async functions"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/atob-btoa.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/atob-btoa.js index 57e5548db335d5..575e8a62e1d759 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","2":"F PC QC","16":"RC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","16":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Base64 encoding and decoding"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","2":"F RC SC","16":"TC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","16":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Base64 encoding and decoding"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio-api.js index 679a576f08a147..6d8de42402e730 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O v w x y z"},E:{"1":"G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","33":"J D E F A B C K L JC KC LC 0B qB rB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"G M N O v w x"},G:{"1":"mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Web Audio API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O x g y z AB"},E:{"1":"G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","33":"J D E F A B C K L LC MC NC 1B rB sB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"G M N O x g y"},G:{"1":"oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Web Audio API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio.js index 8bbeb75117b92c..61996d6ae2fdbd 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","132":"I u J D E F A B C K L G M N O v EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F","4":"PC QC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","2":"pC qC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Audio element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","132":"I w J D E F A B C K L G M N O x GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F","4":"RC SC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","2":"rC sC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Audio element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audiotracks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audiotracks.js index 6c18692c33eb19..115d105ff1476b 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 CC"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB","322":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC"},F:{"2":"0 1 2 3 4 5 6 7 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","322":"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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","322":"g"},L:{"322":"H"},M:{"2":"H"},N:{"1":"A B"},O:{"322":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"322":"1B"},R:{"322":"9C"},S:{"194":"AD"}},B:1,C:"Audio Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z GC HC","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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB","322":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O x g y z RC SC TC UC rB CC VC sB","322":"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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","322":"h"},L:{"322":"H"},M:{"2":"f"},N:{"1":"A B"},O:{"322":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"322":"2B"},R:{"322":"BD"},S:{"194":"CD DD"}},B:1,C:"Audio Tracks"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/autofocus.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/autofocus.js index 2c1287aaf5b068..01ab037ba32e47 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Autofocus attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"Autofocus attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/auxclick.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/auxclick.js index 4ada7129ba762b..69f0ef3f5320ca 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB EC FC","129":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Auxclick"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB GC HC","129":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:5,C:"Auxclick"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/av1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/av1.js index 6276add238fc6a..f4ed7efcb68468 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 CC"},B:{"2":"C K L G M N","194":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB EC FC","66":"VB WB XB YB uB ZB vB aB bB cB","260":"dB","516":"eB"},D:{"1":"iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB","66":"fB gB hB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1090":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"AV1 video format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N","194":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB GC HC","66":"WB XB YB ZB vB aB wB bB cB dB","260":"eB","516":"fB"},D:{"1":"jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB","66":"gB hB iB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z 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 TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1090":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:6,C:"AV1 video format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/avif.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/avif.js index 8100ef98b205ee..a21e8bebde73b7 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB EC FC","194":"oB pB P Q R wB S T U V W X Y Z a b","257":"c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB","1281":"9B OC","1796":"6B 7B 8B"},F:{"1":"jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B","1281":"sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"257":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"AVIF image format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB GC HC","194":"pB qB P Q R xB S T U V W X Y Z a b","257":"c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB","1796":"7B 8B 9B"},F:{"1":"kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB RC SC TC UC rB CC VC sB"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B","1281":"tB 7B 8B 9B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"257":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:6,C:"AVIF image format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-attachment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-attachment.js index cb0ba7825af6a3..c0041eda1443c2 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","132":"0 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F A B C IC JC KC LC 0B qB rB 3B 4B 5B sB 6B 7B 8B 9B OC","132":"I K HC zB 1B","2050":"L G MC NC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","132":"F PC QC"},G:{"2":"zB UC BC","772":"E VC WC XC YC ZC aC bC cC dC eC fC gC","2050":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC tC uC","132":"sC BC"},J:{"260":"D A"},K:{"1":"B C g qB AC rB","132":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"2":"I","1028":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS background-attachment"}; +module.exports={A:{A:{"1":"F A B","132":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","132":"0 1 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F A B C KC LC MC NC 1B rB sB 4B 5B 6B tB 7B 8B 9B AC BC QC","132":"I K JC 0B 2B","2050":"L G OC PC 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","132":"F RC SC"},G:{"2":"0B WC DC","772":"E XC YC ZC aC bC cC dC eC fC gC hC iC","2050":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC vC wC","132":"uC DC"},J:{"260":"D A"},K:{"1":"B C h rB CC sB","132":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"2":"I","1028":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS background-attachment"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-clip-text.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-clip-text.js index 6dc7bbc5ef34bf..ac8245b6348edc 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 CC"},B:{"1":"G M N O","33":"C K L P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB EC FC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC zB","33":"I u J D E F A B C K IC JC KC LC 0B qB rB 1B"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC","33":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"oC"},I:{"16":"tB pC qC rC","33":"I f sC BC tC uC"},J:{"33":"D A"},K:{"16":"A B C qB AC rB","33":"g"},L:{"33":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"33":"vC"},P:{"33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"33":"1B"},R:{"33":"9C"},S:{"1":"AD"}},B:7,C:"Background-clip: text"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O","33":"C K L P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB GC HC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC 0B","33":"I w J D E F A B C K KC LC MC NC 1B rB sB 2B"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC","33":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"qC"},I:{"16":"uB rC sC tC","33":"I H uC DC vC wC"},J:{"33":"D A"},K:{"16":"A B C rB CC sB","33":"h"},L:{"33":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"33":"xC"},P:{"33":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"33":"2B"},R:{"33":"BD"},S:{"1":"CD DD"}},B:7,C:"Background-clip: text"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-img-opts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-img-opts.js index c11411e020454f..263d997c61f59d 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC","36":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","516":"I u J D E F A B C K L"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","772":"I u J HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC","36":"QC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","4":"zB UC BC WC","516":"VC"},H:{"132":"oC"},I:{"1":"f tC uC","36":"pC","516":"tB I sC BC","548":"qC rC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 Background-image options"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC","36":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","516":"I w J D E F A B C K L"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","772":"I w J JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC","36":"SC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","4":"0B WC DC YC","516":"XC"},H:{"132":"qC"},I:{"1":"H vC wC","36":"rC","516":"uB I uC DC","548":"sC tC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 Background-image options"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-position-x-y.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-position-x-y.js index d9e551723d9cb9..078b2bb2f8e528 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"background-position-x & background-position-y"}; +module.exports={A:{A:{"1":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:7,C:"background-position-x & background-position-y"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-repeat-round-space.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-repeat-round-space.js index dc19a33caabea5..d3f166159ab187 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 CC","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB EC FC"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F G M N O PC QC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"CSS background-repeat round and space"}; +module.exports={A:{A:{"1":"A B","2":"J D E EC","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB GC HC"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F G M N O RC SC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"CSS background-repeat round and space"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-sync.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-sync.js index c5652b17ba0b8d..25881c6b4b9600 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H EC FC","16":"xB yB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"Background Sync API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H GC HC","16":"yB zB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"Background Sync API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/battery-status.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/battery-status.js index c8c38e087c874f..b81176cb223a61 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB","2":"DC tB I u J D E F SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","132":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB","164":"A B C K L G"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB","66":"DB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Battery Status API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB","2":"FC uB I w J D E F TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","132":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB","164":"A B C K L G"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB","66":"EB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD","2":"DD"}},B:4,C:"Battery Status API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beacon.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beacon.js index e310657e884cd4..bb37fee22819d0 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Beacon API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Beacon API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beforeafterprint.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beforeafterprint.js index 40917cb41e4c24..d20029a9e4721a 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":"CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC"},D:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB rB"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB PC QC RC SC qB AC TC rB"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"16":"A B"},O:{"1":"vC"},P:{"2":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","16":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Printing Events"}; +module.exports={A:{A:{"1":"J D E F A B","16":"EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC"},D:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB sB"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RC SC TC UC rB CC VC sB"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"16":"A B"},O:{"1":"xC"},P:{"2":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","16":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Printing Events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bigint.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bigint.js index 48c73f9029a023..b914464eb2bb75 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB EC FC","194":"dB eB fB"},D:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB"},E:{"1":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB 1B"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB PC QC RC SC qB AC TC rB"},G:{"1":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"BigInt"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB GC HC","194":"eB fB gB"},D:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB"},E:{"1":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB 2B"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC TC UC rB CC VC sB"},G:{"1":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"BigInt"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/blobbuilder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/blobbuilder.js index e5be92d2ffa956..2e92b702c31ad7 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D","36":"E F A B C K L G M N O v"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B C PC QC RC SC qB AC TC"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC"},H:{"2":"oC"},I:{"1":"f","2":"pC qC rC","36":"tB I sC BC tC uC"},J:{"1":"A","2":"D"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Blob constructing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D","36":"E F A B C K L G M N O x"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B C RC SC TC UC rB CC VC"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC"},H:{"2":"qC"},I:{"1":"H","2":"rC sC tC","36":"uB I uC DC vC wC"},J:{"1":"A","2":"D"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Blob constructing"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bloburls.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bloburls.js index 3973664bf6e507..617ac486fdc206 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 CC","129":"A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D","33":"E F A B C K L G M N O v w x y"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB pC qC rC","33":"I sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Blob URLs"}; +module.exports={A:{A:{"2":"J D E F EC","129":"A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D","33":"E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB rC sC tC","33":"I uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Blob URLs"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-image.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-image.js index a8932fe8cb12c4..69affb797f677a 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"C K"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","260":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","804":"I u J D E F A B C K L EC FC"},D:{"1":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","260":"RB SB TB UB VB","388":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","1412":"0 1 2 3 4 5 G M N O v w x y z","1956":"I u J D E F A B C K L"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","129":"A B C K L G LC 0B qB rB 1B MC NC 2B","1412":"J D E F JC KC","1956":"I u HC zB IC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F PC QC","260":"EB FB GB HB IB","388":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB","1796":"RC SC","1828":"B C qB AC TC rB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","129":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B","1412":"E WC XC YC ZC","1956":"zB UC BC VC"},H:{"1828":"oC"},I:{"1":"f","388":"tC uC","1956":"tB I pC qC rC sC BC"},J:{"1412":"A","1924":"D"},K:{"1":"g","2":"A","1828":"B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","260":"wC xC","388":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"260":"AD"}},B:4,C:"CSS3 Border images"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"C K"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","260":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","804":"I w J D E F A B C K L GC HC"},D:{"1":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","260":"SB TB UB VB WB","388":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","1412":"0 1 2 3 4 5 6 G M N O x g y z","1956":"I w J D E F A B C K L"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","129":"A B C K L G NC 1B rB sB 2B OC PC 3B","1412":"J D E F LC MC","1956":"I w JC 0B KC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F RC SC","260":"FB GB HB IB JB","388":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB","1796":"TC UC","1828":"B C rB CC VC sB"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","129":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B","1412":"E YC ZC aC bC","1956":"0B WC DC XC"},H:{"1828":"qC"},I:{"1":"H","388":"vC wC","1956":"uB I rC sC tC uC DC"},J:{"1412":"A","1924":"D"},K:{"1":"h","2":"A","1828":"B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","260":"yC zC","388":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","260":"CD"}},B:4,C:"CSS3 Border images"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-radius.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-radius.js index f4e6fbc661f3b7..b5b1d36dac7a7a 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","257":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","289":"tB EC FC","292":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"I"},E:{"1":"u D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"I HC zB","129":"J IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"zB"},H:{"2":"oC"},I:{"1":"tB I f qC rC sC BC tC uC","33":"pC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"257":"AD"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","257":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","289":"uB GC HC","292":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"I"},E:{"1":"w D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"I JC 0B","129":"J KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"0B"},H:{"2":"qC"},I:{"1":"uB I H sC tC uC DC vC wC","33":"rC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","257":"CD"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/broadcastchannel.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/broadcastchannel.js index dd423819f90db3..bcc74c5ccc41ef 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EC FC"},D:{"1":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB PC QC RC SC qB AC TC rB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"BroadcastChannel"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB GC HC"},D:{"1":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB RC SC TC UC rB CC VC sB"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"BroadcastChannel"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/brotli.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/brotli.js index 811a1ec097b62c..0a41ec2403940a 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 CC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB EC FC"},D:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","194":"PB","257":"QB"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","513":"B C qB rB"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB","194":"CB DB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB GC HC"},D:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","194":"QB","257":"RB"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","513":"B C rB sB"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB","194":"DB EB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/calc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/calc.js index a689565a7d7502..084e57d0940cf1 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 CC","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","33":"I u J D E F A B C K L G"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O","33":"0 1 v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"WC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC","132":"tC uC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"calc() as CSS unit value"}; +module.exports={A:{A:{"2":"J D E EC","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","33":"I w J D E F A B C K L G"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O","33":"0 1 2 x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"YC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC","132":"vC wC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"calc() as CSS unit value"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-blending.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-blending.js index a6e7749dbd371e..9bde14258fe8db 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v EC FC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Canvas blend modes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x GC HC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Canvas blend modes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-text.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-text.js index 4d062d2f11c329..cce201edd8940a 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":"CC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","8":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","8":"F PC QC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","8":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Text API for Canvas"}; +module.exports={A:{A:{"1":"F A B","2":"EC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","8":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","8":"F RC SC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","8":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Text API for Canvas"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas.js index 1a4c992ae0f2e5..1b760510db52c1 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":"CC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","132":"DC tB EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","132":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"260":"oC"},I:{"1":"tB I f sC BC tC uC","132":"pC qC rC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Canvas (basic support)"}; +module.exports={A:{A:{"1":"F A B","2":"EC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","132":"FC uB GC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","132":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"260":"qC"},I:{"1":"uB I H uC DC vC wC","132":"rC sC tC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Canvas (basic support)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ch-unit.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ch-unit.js index 30aacc5df48789..8b191e238066c8 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 CC","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"ch (character) unit"}; +module.exports={A:{A:{"2":"J D E EC","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"ch (character) unit"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/chacha20-poly1305.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/chacha20-poly1305.js index 7165cd2712bd5a..cf64635a8d01d0 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 I u J D E F A B C K L G M N O v w x y z","129":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC","16":"uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z","129":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC","16":"wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/channel-messaging.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/channel-messaging.js index 6fd9826409046c..fe036a372f7953 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","2":"F PC QC","16":"RC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Channel messaging"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","2":"F RC SC","16":"TC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Channel messaging"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/childnode-remove.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/childnode-remove.js index f0bbf767292fb9..a78da21ff18a44 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x y EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"ChildNode.remove()"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"ChildNode.remove()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/classlist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/classlist.js index df71dceddcf973..f54651b72179ff 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 CC","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"DC tB EC","516":"0 1","772":"I u J D E F A B C K L G M N O v w x y z FC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","8":"I u J D","516":"0 1 2 3","772":"z","900":"E F A B C K L G M N O v w x y"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I u HC zB","900":"J IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","8":"F B PC QC RC SC qB","900":"C AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"zB UC BC","900":"VC WC"},H:{"900":"oC"},I:{"1":"f tC uC","8":"pC qC rC","900":"tB I sC BC"},J:{"1":"A","900":"D"},K:{"1":"g","8":"A B","900":"C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"900":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"classList (DOMTokenList)"}; +module.exports={A:{A:{"8":"J D E F EC","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"FC uB GC","516":"1 2","772":"0 I w J D E F A B C K L G M N O x g y z HC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","8":"I w J D","516":"1 2 3 4","772":"0","900":"E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I w JC 0B","900":"J KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","8":"F B RC SC TC UC rB","900":"C CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"0B WC DC","900":"XC YC"},H:{"900":"qC"},I:{"1":"H vC wC","8":"rC sC tC","900":"uB I uC DC"},J:{"1":"A","900":"D"},K:{"1":"h","8":"A B","900":"C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"900":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"classList (DOMTokenList)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js index 6c36895ccfd2e3..cae7314a7c27cd 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/clipboard.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/clipboard.js index 5ae62f80b3f476..621ae303e35ae4 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 CC"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB I u J D E F A B C K L G M N O v w x EC FC","772":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB","4100":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"I u J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB","8196":"YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","10244":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"C K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC zB","2308":"A B 0B qB","2820":"I u J D E F IC JC KC LC"},F:{"2":"F B PC QC RC SC qB AC TC","16":"C","516":"rB","2564":"0 1 2 3 4 5 G M N O v w x y z","8196":"LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","10244":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC","2820":"E VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","260":"f","2308":"tC uC"},J:{"2":"D","2308":"A"},K:{"2":"A B C qB AC","16":"rB","8196":"g"},L:{"8196":"H"},M:{"1028":"H"},N:{"2":"A B"},O:{"8196":"vC"},P:{"2052":"wC xC","2308":"I","8196":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"8196":"1B"},R:{"8196":"9C"},S:{"4100":"AD"}},B:5,C:"Synchronous Clipboard API"}; +module.exports={A:{A:{"2436":"J D E F A B EC"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC uB I w J D E F A B C K L G M N O x g y GC HC","772":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB","4100":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"I w J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB","8196":"ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","10244":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"C K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC 0B","2308":"A B 1B rB","2820":"I w J D E F KC LC MC NC"},F:{"2":"F B RC SC TC UC rB CC VC","16":"C","516":"sB","2564":"0 1 2 3 4 5 6 G M N O x g y z","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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","10244":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC","2820":"E XC YC ZC aC bC cC dC eC fC gC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","260":"H","2308":"vC wC"},J:{"2":"D","2308":"A"},K:{"2":"A B C rB CC","16":"sB","8196":"h"},L:{"8196":"H"},M:{"1028":"f"},N:{"2":"A B"},O:{"8196":"xC"},P:{"2052":"yC zC","2308":"I","8196":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"8196":"2B"},R:{"8196":"BD"},S:{"4100":"CD DD"}},B:5,C:"Synchronous Clipboard API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js index 80d919ed6f7391..f659f7ee037ac6 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 CC"},B:{"1":"j k l m n o p q r s t f 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 h i"},C:{"1":"s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i EC FC","258":"j k l m n o p","578":"q r"},D:{"1":"j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y","194":"Z a b c d e h i"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"16":"A B"},O:{"2":"vC"},P:{"1":"7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"COLR/CPAL(v1) Font Formats"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"k l m n o p q r s t u v f 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 i j"},C:{"1":"t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j GC HC","258":"k l m n o p q","578":"r s"},D:{"1":"k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y","194":"Z a b c d e i j"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"16":"A B"},O:{"2":"xC"},P:{"1":"g 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"COLR/CPAL(v1) Font Formats"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js index ba46c796e3f9e7..3e019aa577e1d0 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 CC","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB","513":"jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","129":"B C K qB rB 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB PC QC RC SC qB AC TC rB","513":"YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"16":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; +module.exports={A:{A:{"2":"J D E EC","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB","513":"kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","129":"B C K rB sB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB 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 TC UC rB CC VC sB","513":"ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"16":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/comparedocumentposition.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/comparedocumentposition.js index 894744e514edbe..89adf53bd86bdd 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC tB EC FC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L","132":"0 1 2 3 4 5 G M N O v w x y z"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u J HC zB","132":"D E F JC KC LC","260":"IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","16":"F B PC QC RC SC qB AC","132":"G M"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB","132":"E UC BC VC WC XC YC ZC aC"},H:{"1":"oC"},I:{"1":"f tC uC","16":"pC qC","132":"tB I rC sC BC"},J:{"132":"D A"},K:{"1":"C g rB","16":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Node.compareDocumentPosition()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC uB GC HC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L","132":"0 1 2 3 4 5 6 G M N O x g y z"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w J JC 0B","132":"D E F LC MC NC","260":"KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","16":"F B RC SC TC UC rB CC","132":"G M"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B","132":"E WC DC XC YC ZC aC bC cC"},H:{"1":"qC"},I:{"1":"H vC wC","16":"rC sC","132":"uB I tC uC DC"},J:{"132":"D A"},K:{"1":"C h sB","16":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Node.compareDocumentPosition()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-basic.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-basic.js index 6aa35ba8b2f864..14ba72a7d98f15 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 CC","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F PC QC RC SC"},G:{"1":"zB UC BC VC","513":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"4097":"oC"},I:{"1025":"tB I f pC qC rC sC BC tC uC"},J:{"258":"D A"},K:{"2":"A","258":"B C qB AC rB","1025":"g"},L:{"1025":"H"},M:{"2049":"H"},N:{"258":"A B"},O:{"258":"vC"},P:{"1025":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1025":"9C"},S:{"1":"AD"}},B:1,C:"Basic console logging functions"}; +module.exports={A:{A:{"1":"A B","2":"J D EC","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F RC SC TC UC"},G:{"1":"0B WC DC XC","513":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"4097":"qC"},I:{"1025":"uB I H rC sC tC uC DC vC wC"},J:{"258":"D A"},K:{"2":"A","258":"B C rB CC sB","1025":"h"},L:{"1025":"H"},M:{"2049":"f"},N:{"258":"A B"},O:{"258":"xC"},P:{"1025":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1025":"BD"},S:{"1":"CD DD"}},B:1,C:"Basic console logging functions"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-time.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-time.js index 37a311061391bf..c31e17f529c694 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F PC QC RC SC","16":"B"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"g","16":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"console.time and console.timeEnd"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F RC SC TC UC","16":"B"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"h","16":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"console.time and console.timeEnd"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/const.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/const.js index 5ac351304aa7b9..c1293cfc0fd10a 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 CC","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","132":"DC tB I u J D E F A B C EC FC","260":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","260":"I u J D E F A B C K L G M N O v w","772":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB","1028":"HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","260":"I u A HC zB 0B","772":"J D E F IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F PC","132":"B QC RC SC qB AC","644":"C TC rB","772":"0 1 2 3 G M N O v w x y z","1028":"4 5 6 7 8 9 AB BB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","260":"zB UC BC bC cC","772":"E VC WC XC YC ZC aC"},H:{"644":"oC"},I:{"1":"f","16":"pC qC","260":"rC","772":"tB I sC BC tC uC"},J:{"772":"D A"},K:{"1":"g","132":"A B qB AC","644":"C rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","1028":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"const"}; +module.exports={A:{A:{"2":"J D E F A EC","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","132":"FC uB I w J D E F A B C GC HC","260":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","260":"I w J D E F A B C K L G M N O x g","772":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB","1028":"IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","260":"I w A JC 0B 1B","772":"J D E F KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F RC","132":"B SC TC UC rB CC","644":"C VC sB","772":"0 1 2 3 4 G M N O x g y z","1028":"5 6 7 8 9 AB BB CB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","260":"0B WC DC dC eC","772":"E XC YC ZC aC bC cC"},H:{"644":"qC"},I:{"1":"H","16":"rC sC","260":"tC","772":"uB I uC DC vC wC"},J:{"772":"D A"},K:{"1":"h","132":"A B rB CC","644":"C sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","1028":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"const"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/constraint-validation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/constraint-validation.js index 05509bd2cd4565..351c3a318ed598 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 CC","900":"A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","388":"L G M","900":"C K"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","260":"PB QB","388":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","900":"0 1 2 3 4 I u J D E F A B C K L G M N O v w x y z"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L","388":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB","900":"0 G M N O v w x y z"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB","388":"E F KC LC","900":"J D IC JC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F B PC QC RC SC qB AC","388":"0 1 2 G M N O v w x y z","900":"C TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC","388":"E XC YC ZC aC","900":"VC WC"},H:{"2":"oC"},I:{"1":"f","16":"tB pC qC rC","388":"tC uC","900":"I sC BC"},J:{"16":"D","388":"A"},K:{"1":"g","16":"A B qB AC","900":"C rB"},L:{"1":"H"},M:{"1":"H"},N:{"900":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"388":"AD"}},B:1,C:"Constraint Validation API"}; +module.exports={A:{A:{"2":"J D E F EC","900":"A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","388":"L G M","900":"C K"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","260":"QB RB","388":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","900":"0 1 2 3 4 5 I w J D E F A B C K L G M N O x g y z"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L","388":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB","900":"0 1 G M N O x g y z"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B","388":"E F MC NC","900":"J D KC LC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F B RC SC TC UC rB CC","388":"0 1 2 3 G M N O x g y z","900":"C VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC","388":"E ZC aC bC cC","900":"XC YC"},H:{"2":"qC"},I:{"1":"H","16":"uB rC sC tC","388":"vC wC","900":"I uC DC"},J:{"16":"D","388":"A"},K:{"1":"h","16":"A B rB CC","900":"C sB"},L:{"1":"H"},M:{"1":"f"},N:{"900":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","388":"CD"}},B:1,C:"Constraint Validation API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contenteditable.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contenteditable.js index 62b70b9f82c105..41ab295ffbe9ee 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC","4":"tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"D A"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"contenteditable attribute (basic support)"}; +module.exports={A:{A:{"1":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC","4":"uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"D A"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"contenteditable attribute (basic support)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js index 27a351fa621ec8..b37cd35f040666 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 CC","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","129":"I u J D E F A B C K L G M N O v w x y"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K","257":"0 L G M N O v w x y z"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB","257":"J JC","260":"IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC","257":"WC","260":"VC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D","257":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Content Security Policy 1.0"}; +module.exports={A:{A:{"2":"J D E F EC","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","129":"I w J D E F A B C K L G M N O x g y z"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K","257":"0 1 L G M N O x g y z"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B","257":"J LC","260":"KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC","257":"YC","260":"XC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D","257":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Content Security Policy 1.0"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js index fb0a0fe3676318..f45f5e9efc2b91 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L","4100":"G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","132":"7 8 9 AB","260":"BB","516":"CB DB EB FB GB HB IB JB KB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB","1028":"CB DB EB","2052":"FB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y PC QC RC SC qB AC TC rB","1028":"0 1 z","2052":"2"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Content Security Policy Level 2"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L","4100":"G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 FC uB I w J D E F A B C K L G M N O x g y z GC HC","132":"8 9 AB BB","260":"CB","516":"DB EB FB GB HB IB JB KB LB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB","1028":"DB EB FB","2052":"GB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y z RC SC TC UC rB CC VC sB","1028":"0 1 2","2052":"3"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Content Security Policy Level 2"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cookie-store-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cookie-store-api.js index 81bb76113f25d6..b792387756b16f 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 CC"},B:{"1":"W X Y Z a b c d e h i j k l m n o p q r s t f 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 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB","194":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB PC QC RC SC qB AC TC rB","194":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"Cookie Store API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"W X Y Z a b c d e i j k l m n o p q r s t u v f 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 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB","194":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB RC SC TC UC rB CC VC sB","194":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"Cookie Store API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cors.js index 5b39fbd8dbe1a3..b150388e766c63 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 CC","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB","1025":"vB aB bB cB dB eB fB gB hB iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"I u J D E F A B C"},E:{"2":"HC zB","513":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","644":"I u IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC"},G:{"513":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","644":"zB UC BC VC"},H:{"2":"oC"},I:{"1":"f tC uC","132":"tB I pC qC rC sC BC"},J:{"1":"A","132":"D"},K:{"1":"C g rB","2":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","132":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Cross-Origin Resource Sharing"}; +module.exports={A:{A:{"1":"B","2":"J D EC","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB","1025":"wB bB cB dB eB fB gB hB iB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"I w J D E F A B C"},E:{"2":"JC 0B","513":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","644":"I w KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC"},G:{"513":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","644":"0B WC DC XC"},H:{"2":"qC"},I:{"1":"H vC wC","132":"uB I rC sC tC uC DC"},J:{"1":"A","132":"D"},K:{"1":"C h sB","2":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","132":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Cross-Origin Resource Sharing"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/createimagebitmap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/createimagebitmap.js index 09c160e370e1c7..537facc93881bc 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB EC FC","1028":"c d e h i","3076":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b","8196":"j k l m n o p q r s t f H xB yB"},D:{"1":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","132":"QB RB","260":"SB TB","516":"UB VB WB XB YB"},E:{"2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B MC","4100":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB PC QC RC SC qB AC TC rB","132":"DB EB","260":"FB GB","516":"HB IB JB KB LB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC","4100":"nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"8196":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","16":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"3076":"AD"}},B:1,C:"createImageBitmap"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB GC HC","1028":"c d e i j","3076":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b","8196":"k l m n o p q r s t u v f H yB zB"},D:{"1":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","132":"RB SB","260":"TB UB","516":"VB WB XB YB ZB"},E:{"2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B OC","4100":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB RC SC TC UC rB CC VC sB","132":"EB FB","260":"GB HB","516":"IB JB KB LB MB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC","4100":"pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"8196":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","16":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"3076":"CD DD"}},B:1,C:"createImageBitmap"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/credential-management.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/credential-management.js index 71cb41815c7c59..5e2b95d6841c6b 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","66":"OB PB QB","129":"RB SB TB UB VB WB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB PC QC RC SC qB AC TC rB"},G:{"1":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Credential Management API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","66":"PB QB RB","129":"SB TB UB VB WB XB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB RC SC TC UC rB CC VC sB"},G:{"1":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:5,C:"Credential Management API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cryptography.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cryptography.js index a93525c4e3b103..d445337c14c49f 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":"CC","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","513":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"0 1 2 3 4 5 6 7 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","66":"8 9"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","8":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I u J D HC zB IC JC","289":"E F A KC LC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","8":"F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"zB UC BC VC WC XC","289":"E YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","8":"tB I pC qC rC sC BC tC uC"},J:{"8":"D A"},K:{"1":"g","8":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A","164":"B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Web Cryptography"}; +module.exports={A:{A:{"2":"EC","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","513":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"0 1 2 3 4 5 6 7 8 FC uB I w J D E F A B C K L G M N O x g y z GC HC","66":"9 AB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","8":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I w J D JC 0B KC LC","289":"E F A MC NC 1B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","8":"0 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"0B WC DC XC YC ZC","289":"E aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","8":"uB I rC sC tC uC DC vC wC"},J:{"8":"D A"},K:{"1":"h","8":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A","164":"B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Web Cryptography"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-all.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-all.js index 9540a03168f989..4a09f28c47987a 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC"},H:{"2":"oC"},I:{"1":"f uC","2":"tB I pC qC rC sC BC tC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS all property"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC"},H:{"2":"qC"},I:{"1":"H wC","2":"uB I rC sC tC uC DC vC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS all property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-animation.js index ecd76772df639b..a2c0da33318ece 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I EC FC","33":"u J D E F A B C K L G"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB","33":"J D E IC JC KC","292":"I u"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC","33":"0 1 2 3 4 5 C G M N O v w x y z"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"E WC XC YC","164":"zB UC BC VC"},H:{"2":"oC"},I:{"1":"f","33":"I sC BC tC uC","164":"tB pC qC rC"},J:{"33":"D A"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"CSS Animation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I GC HC","33":"w J D E F A B C K L G"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B","33":"J D E KC LC MC","292":"I w"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC","33":"0 1 2 3 4 5 6 C G M N O x g y z"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"E YC ZC aC","164":"0B WC DC XC"},H:{"2":"qC"},I:{"1":"H","33":"I uC DC vC wC","164":"uB rC sC tC"},J:{"33":"D A"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"CSS Animation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-any-link.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-any-link.js index 538f899c4291d3..1699a724e59a9f 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC","33":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB EC FC"},D:{"1":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u J HC zB IC","33":"D E JC KC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC","33":"E WC XC YC"},H:{"2":"oC"},I:{"1":"f","16":"tB I pC qC rC sC BC","33":"tC uC"},J:{"16":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","16":"I","33":"wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"33":"AD"}},B:5,C:"CSS :any-link selector"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC","33":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB GC HC"},D:{"1":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w J JC 0B KC","33":"D E LC MC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC","33":"E YC ZC aC"},H:{"2":"qC"},I:{"1":"H","16":"uB I rC sC tC uC DC","33":"vC wC"},J:{"16":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","16":"I","33":"yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","33":"CD"}},B:5,C:"CSS :any-link selector"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-appearance.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-appearance.js index 889785427e0285..75ed7c55b5e520 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 CC"},B:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","164":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P","676":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB EC FC"},D:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","164":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B"},F:{"1":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"iB jB kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","164":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","164":"tB I pC qC rC sC BC tC uC"},J:{"164":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A","388":"B"},O:{"164":"vC"},P:{"164":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"164":"1B"},R:{"1":"9C"},S:{"164":"AD"}},B:5,C:"CSS Appearance"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","164":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P","676":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB GC HC"},D:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","164":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B"},F:{"1":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"jB kB lB","164":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB 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:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","164":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","164":"uB I rC sC tC uC DC vC wC"},J:{"164":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A","388":"B"},O:{"164":"xC"},P:{"164":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"164":"2B"},R:{"1":"BD"},S:{"1":"DD","164":"CD"}},B:5,C:"CSS Appearance"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js index 98591dc4b518ba..1d96272cbae7ac 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 CC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","132":"a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","132":"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z","132":"a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB PC QC RC SC qB AC TC rB","132":"oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","132":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","132":"g"},L:{"132":"H"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C","132":"sB 6C 7C 8C"},Q:{"2":"1B"},R:{"132":"9C"},S:{"132":"AD"}},B:4,C:"CSS Counter Styles"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","132":"a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z GC HC","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z","132":"a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","4":"QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB RC SC TC UC rB CC VC sB","132":"pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","132":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","132":"h"},L:{"132":"H"},M:{"132":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C","132":"g tB 8C 9C AD"},Q:{"2":"2B"},R:{"132":"BD"},S:{"132":"CD DD"}},B:4,C:"CSS Counter Styles"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js index e554a095da7af8..18a161fbc2381d 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 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U EC FC"},M:{"1":"H"},A:{"2":"J D E F A B CC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},K:{"2":"A B C qB AC rB","33":"g"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"OC","33":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B MC"},G:{"1":"nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},P:{"33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},I:{"2":"tB I pC qC rC sC BC","33":"f tC uC"}},B:6,C:":autofill CSS pseudo-class"}; +module.exports={A:{D:{"33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U GC HC"},M:{"1":"f"},A:{"2":"J D E F A B EC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},K:{"2":"A B C rB CC sB","33":"h"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"QC","33":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B OC"},G:{"1":"pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC"},P:{"33":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},I:{"2":"uB I rC sC tC uC DC","33":"H vC wC"}},B:6,C:":autofill CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backdrop-filter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backdrop-filter.js index f016cdadd0559b..e0fb2110f41349 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M","257":"N O"},C:{"1":"o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB EC FC","578":"iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n"},D:{"1":"nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","194":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB"},E:{"2":"I u J D E HC zB IC JC KC","33":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","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 bB"},G:{"2":"E zB UC BC VC WC XC YC","33":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"2C 3C 4C 5C sB 6C 7C 8C","2":"I","194":"wC xC yC zC 0C 0B 1C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"CSS Backdrop Filter"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M","257":"N O"},C:{"1":"p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB GC HC","578":"jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o"},D:{"1":"oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","194":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB"},E:{"2":"I w J D E JC 0B KC LC MC","33":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB RC SC TC UC rB CC VC sB","194":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},G:{"2":"E 0B WC DC XC YC ZC aC","33":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 4C 5C 6C 7C tB 8C 9C AD","2":"I","194":"yC zC 0C 1C 2C 1B 3C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS Backdrop Filter"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-background-offsets.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-background-offsets.js index e682ef3c09fb4d..9c1a6a42005f65 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C EC FC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS background-position edge offsets"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C GC HC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS background-position edge offsets"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js index a081ed8a946236..91527ca4af73b2 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB","260":"MB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC","132":"E F A KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x PC QC RC SC qB AC TC rB","260":"9"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","132":"E YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS background-blend-mode"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB","260":"NB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC","132":"E F A MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y RC SC TC UC rB CC VC sB","260":"AB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","132":"E aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS background-blend-mode"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js index 68db17c12c57a0..2b32e75cc03ec7 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 CC"},B:{"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 h i j k l m n o p q r s t f H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"2":"I u J D E F A B C K L G M N O v w x","164":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J HC zB IC","164":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F PC QC RC SC","129":"B C qB AC TC rB","164":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"zB UC BC VC WC","164":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"132":"oC"},I:{"2":"tB I pC qC rC sC BC","164":"f tC uC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C qB AC rB","164":"g"},L:{"164":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"vC"},P:{"164":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"164":"1B"},R:{"164":"9C"},S:{"1":"AD"}},B:4,C:"CSS box-decoration-break"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"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 i j k l m n o p q r s t u v f H"},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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"2":"I w J D E F A B C K L G M N O x g y","164":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J JC 0B KC","164":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F RC SC TC UC","129":"B C rB CC VC sB","164":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"0B WC DC XC YC","164":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"132":"qC"},I:{"2":"uB I rC sC tC uC DC","164":"H vC wC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C rB CC sB","164":"h"},L:{"164":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"164":"xC"},P:{"164":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"164":"2B"},R:{"164":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS box-decoration-break"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxshadow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxshadow.js index a049bc4cf033bb..79a54e03ebb490 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","33":"EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"I u J D E F"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"u","164":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"UC BC","164":"zB"},H:{"2":"oC"},I:{"1":"I f sC BC tC uC","164":"tB pC qC rC"},J:{"1":"A","33":"D"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 Box-shadow"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","33":"GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"I w J D E F"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"w","164":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"WC DC","164":"0B"},H:{"2":"qC"},I:{"1":"I H uC DC vC wC","164":"uB rC sC tC"},J:{"1":"A","33":"D"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 Box-shadow"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-canvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-canvas.js index 96520e1720c2a3..e987c223316811 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"2":"HC zB","33":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB"},G:{"33":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"f","33":"tB I pC qC rC sC BC tC uC"},J:{"33":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","33":"I"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"CSS Canvas Drawings"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"2":"JC 0B","33":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB"},G:{"33":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"H","33":"uB I rC sC tC uC DC vC wC"},J:{"33":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","33":"I"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS Canvas Drawings"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-caret-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-caret-color.js index d398a69ec6801a..25909f1526d327 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB EC FC"},D:{"1":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"CSS caret-color"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB GC HC"},D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:2,C:"CSS caret-color"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-layers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-layers.js index ee266d4edb63dd..c405df1dc8de71 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 CC"},B:{"1":"k l m n o p q r s t f 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":"h i j"},C:{"1":"i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c EC FC","194":"d e h"},D:{"1":"k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e","322":"h i j"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B"},F:{"1":"V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U PC QC RC SC qB AC TC rB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"CSS Cascade Layers"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"l m n o p q r s t u v f 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":"i j k"},C:{"1":"j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c GC HC","194":"d e i"},D:{"1":"l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e","322":"i j k"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B"},F:{"1":"V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U RC SC TC UC rB CC VC sB"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:4,C:"CSS Cascade Layers"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-case-insensitive.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-case-insensitive.js index 199ae9ec6152e4..fabc1490146b53 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Case-insensitive CSS attribute selectors"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Case-insensitive CSS attribute selectors"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-clip-path.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-clip-path.js index 50c0f288fa6ed7..00627f9ad61b14 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 CC"},B:{"2":"C K L G M N","260":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","3138":"O"},C:{"1":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","132":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB EC FC","644":"NB OB PB QB RB SB TB"},D:{"2":"I u J D E F A B C K L G M N O v w x y z","260":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","292":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"2":"I u J HC zB IC JC","260":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","292":"D E F A B C K KC LC 0B qB rB"},F:{"2":"F B C PC QC RC SC qB AC TC rB","260":"IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","292":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB"},G:{"2":"zB UC BC VC WC","260":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","292":"E XC YC ZC aC bC cC dC eC fC gC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","260":"f","292":"tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","260":"g"},L:{"260":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"260":"vC"},P:{"292":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"260":"1B"},R:{"260":"9C"},S:{"644":"AD"}},B:4,C:"CSS clip-path property (for HTML)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N","260":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","3138":"O"},C:{"1":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","132":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB GC HC","644":"OB PB QB RB SB TB UB"},D:{"2":"0 I w J D E F A B C K L G M N O x g y z","260":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","292":"1 2 3 4 5 6 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"},E:{"2":"I w J JC 0B KC LC","260":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","292":"D E F A B C K MC NC 1B rB sB"},F:{"2":"F B C RC SC TC UC rB CC VC sB","260":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","292":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB"},G:{"2":"0B WC DC XC YC","260":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","292":"E ZC aC bC cC dC eC fC gC hC iC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","260":"H","292":"vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","260":"h"},L:{"260":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"260":"xC"},P:{"292":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"260":"2B"},R:{"260":"BD"},S:{"1":"DD","644":"CD"}},B:4,C:"CSS clip-path property (for HTML)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-adjust.js index ae905d19efe8dd..1a59933e59c2be 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 CC"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB EC FC"},D:{"16":"I u J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","33":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","16":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"16":"tB I pC qC rC sC BC tC uC","33":"f"},J:{"16":"D A"},K:{"2":"A B C qB AC rB","33":"g"},L:{"16":"H"},M:{"1":"H"},N:{"16":"A B"},O:{"16":"vC"},P:{"16":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"33":"1B"},R:{"16":"9C"},S:{"1":"AD"}},B:4,C:"CSS print-color-adjust"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB GC HC"},D:{"16":"I w J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","33":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","16":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"16":"uB I rC sC tC uC DC vC wC","33":"H"},J:{"16":"D A"},K:{"2":"A B C rB CC sB","33":"h"},L:{"16":"H"},M:{"1":"f"},N:{"16":"A B"},O:{"16":"xC"},P:{"16":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"33":"2B"},R:{"16":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS print-color-adjust"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-function.js index fbeea346885161..d8156442a76a2b 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 CC"},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 h i j k l m n o p q r s","322":"t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s","322":"t f H"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC","132":"B C K L 0B qB rB 1B MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d PC QC RC SC qB AC TC rB","322":"e"},G:{"1":"nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC","132":"cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"CSS color() function"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"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 i j k l m n o p q r s t","322":"u v f"},C:{"1":"zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f GC HC","578":"H yB"},D:{"1":"H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t","322":"u v f"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC","132":"B C K L 1B rB sB 2B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d RC SC TC UC rB CC VC sB","322":"e"},G:{"1":"pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC","132":"eC fC gC hC iC jC kC lC mC nC oC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:4,C:"CSS color() function"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-conic-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-conic-gradients.js index 2eb0b3bedf9550..c78a45839b7374 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB EC FC","578":"mB nB oB pB P Q R wB"},D:{"1":"hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB 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":"uB ZB vB aB bB cB dB eB fB gB"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB PC QC RC SC qB AC TC rB","194":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"CSS Conical Gradients"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB GC HC","578":"nB oB pB qB P Q R xB"},D:{"1":"iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB 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":"vB aB wB bB cB dB eB fB gB hB"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB RC SC TC UC rB CC VC sB","194":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"CSS Conical Gradients"}; 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 1f63df0f13fec3..19e971aa074749 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 CC"},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 h i j k l m n o p q r","194":"s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r","194":"s t f H","260":"xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b PC QC RC SC qB AC TC rB","194":"c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","194":"g"},L:{"194":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Container Style Queries"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s","194":"t u v f","260":"H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s","194":"t u v f","260":"H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b RC SC TC UC rB CC VC sB","194":"c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","260":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","194":"h"},L:{"260":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Container Style Queries"}; 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 78656928834174..15a4b9e5d62cd5 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 CC"},B:{"1":"r s t f 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 h i j k l m n o p","516":"q"},C:{"1":"H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f EC FC"},D:{"1":"r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a","194":"c d e h i j k l m n o p","450":"b","516":"q"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},F:{"1":"d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB PC QC RC SC qB AC TC rB","194":"P Q R wB S T U V W X Y Z","516":"a b c"},G:{"1":"sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Container Queries (Size)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"s t u v f 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 i j k l m n o p q","516":"r"},C:{"1":"f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v GC HC"},D:{"1":"s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a","194":"c d e i j k l m n o p q","450":"b","516":"r"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},F:{"1":"d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB RC SC TC UC rB CC VC sB","194":"P Q R xB S T U V W X Y Z","516":"a b c"},G:{"1":"tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Container Queries (Size)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js index f38a9e4b56af45..22496821b863db 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 CC"},B:{"1":"q r s t f 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 h i j k l m n o p"},C:{"1":"H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f EC FC"},D:{"1":"q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b","194":"m n o p","450":"c d e h i j k l"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},F:{"1":"a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB PC QC RC SC qB AC TC rB","194":"P Q R wB S T U V W X Y Z"},G:{"1":"sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Container Query Units"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"r s t u v f 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 i j k l m n o p q"},C:{"1":"f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v GC HC"},D:{"1":"r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b","194":"n o p q","450":"c d e i j k l m"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},F:{"1":"a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB RC SC TC UC rB CC VC sB","194":"P Q R xB S T U V W X Y Z"},G:{"1":"tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Container Query Units"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js index 21a6fb64860c73..40274c717d02bb 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB EC FC","194":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB"},D:{"1":"SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","66":"RB"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB PC QC RC SC qB AC TC rB","66":"EB FB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"194":"AD"}},B:2,C:"CSS Containment"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB GC HC","194":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB"},D:{"1":"TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","66":"SB"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB RC SC TC UC rB CC VC sB","66":"FB GB"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","194":"CD"}},B:2,C:"CSS Containment"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-content-visibility.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-content-visibility.js index e6df8ddee98269..364943cd3c8354 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 CC"},B:{"1":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O P Q R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"CSS content-visibility"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O P Q R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u GC HC","194":"v f H yB zB"},D:{"1":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS content-visibility"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-counters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-counters.js index 950ef2a5550d56..154111623a9e2a 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS Counters"}; +module.exports={A:{A:{"1":"E F A B","2":"J D EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS Counters"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-crisp-edges.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-crisp-edges.js index a6ac2492db38a0..b93e55b2440c29 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 CC","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC","513":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b","545":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB","1025":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","164":"J","4644":"D E F JC KC LC"},F:{"2":"0 1 2 3 F B G M N O v w x y z PC QC RC SC qB AC","545":"C TC rB","1025":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC","4260":"VC WC","4644":"E XC YC ZC aC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","1025":"f"},J:{"2":"D","4260":"A"},K:{"2":"A B qB AC","545":"C rB","1025":"g"},L:{"1025":"H"},M:{"1":"H"},N:{"2340":"A B"},O:{"1025":"vC"},P:{"1025":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1025":"1B"},R:{"1025":"9C"},S:{"4097":"AD"}},B:4,C:"Crisp edges/pixelated images"}; +module.exports={A:{A:{"2":"J EC","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC","513":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b","545":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB","1025":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","164":"J","4644":"D E F LC MC NC"},F:{"2":"0 1 2 3 4 F B G M N O x g y z RC SC TC UC rB CC","545":"C VC sB","1025":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC","4260":"XC YC","4644":"E ZC aC bC cC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B rB CC","545":"C sB","1025":"h"},L:{"1025":"H"},M:{"1":"f"},N:{"2340":"A B"},O:{"1025":"xC"},P:{"1025":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1025":"2B"},R:{"1025":"BD"},S:{"1":"DD","4097":"CD"}},B:4,C:"Crisp edges/pixelated images"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cross-fade.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cross-fade.js index 7427ab7cd9488c..951e9e3a3f87f9 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 CC"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"I u J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB","33":"J D E F IC JC KC LC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC","33":"E VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","33":"f tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","33":"g"},L:{"33":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"33":"vC"},P:{"33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"33":"1B"},R:{"33":"9C"},S:{"2":"AD"}},B:4,C:"CSS Cross-Fade Function"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"I w J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B","33":"J D E F KC LC MC NC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC","33":"E XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","33":"H vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","33":"h"},L:{"33":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"33":"xC"},P:{"33":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"33":"2B"},R:{"33":"BD"},S:{"2":"CD DD"}},B:4,C:"CSS Cross-Fade Function"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-default-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-default-pseudo.js index 4bcdbb2f79acc6..6668213a6a1854 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC tB EC FC"},D:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB","132":"J D E F A IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F B PC QC RC SC qB AC","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB","260":"C TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC WC","132":"E XC YC ZC aC bC"},H:{"260":"oC"},I:{"1":"f","16":"tB pC qC rC","132":"I sC BC tC uC"},J:{"16":"D","132":"A"},K:{"1":"g","16":"A B C qB AC","260":"rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","132":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:":default CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC uB GC HC"},D:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B","132":"J D E F A KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F B RC SC TC UC rB CC","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB","260":"C VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC YC","132":"E ZC aC bC cC dC"},H:{"260":"qC"},I:{"1":"H","16":"uB rC sC tC","132":"I uC DC vC wC"},J:{"16":"D","132":"A"},K:{"1":"h","16":"A B C rB CC","260":"sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","132":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:":default CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js index 633b995f03253e..b7af3e1aec79cd 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 CC"},B:{"2":"C K L G M N O Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"B","2":"I u J D E F A C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Explicit descendant combinator >>"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"B","2":"I w J D E F A C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Explicit descendant combinator >>"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-deviceadaptation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-deviceadaptation.js index 9ee7ee9b679b78..679b0f7a4be798 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 CC","164":"A B"},B:{"66":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 I u J D E F A B C K L G M N O v w x y z","66":"5 6 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB PC QC RC SC qB AC TC rB","66":"GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"292":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A g","292":"B C qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"164":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"66":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Device Adaptation"}; +module.exports={A:{A:{"2":"J D E F EC","164":"A B"},B:{"66":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 I w J D E F A B C K L G M N O x g y z","66":"6 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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB RC SC TC UC rB CC VC sB","66":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"292":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A h","292":"B C rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"164":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"66":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Device Adaptation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-dir-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-dir-pseudo.js index 64b676e6732630..5ff1778f30a2b1 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 CC"},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 h i j k l m n o p","194":"q r s t f H"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M EC FC","33":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z","194":"a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z PC QC RC SC qB AC TC rB","194":"a b c d e"},G:{"1":"9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"33":"AD"}},B:5,C:":dir() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q","194":"r s t u v f H"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M GC HC","33":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z","194":"a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z RC SC TC UC rB CC VC sB","194":"a b c d e"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"DD","33":"CD"}},B:5,C:":dir() CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-display-contents.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-display-contents.js index 754fc06127ffc2..16eacdb40ca58f 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 CC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X","260":"Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB EC FC","132":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB","260":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","132":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X","194":"YB uB ZB vB aB bB cB","260":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B HC zB IC JC KC LC 0B","132":"C K L G qB rB 1B MC NC 2B 3B 4B 5B","516":"6B 7B 8B 9B OC","772":"sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB PC QC RC SC qB AC TC rB","132":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB","260":"nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC","132":"eC fC gC hC iC jC","260":"kC lC mC nC 2B 3B 4B 5B","772":"sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","260":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","260":"g"},L:{"260":"H"},M:{"260":"H"},N:{"2":"A B"},O:{"132":"vC"},P:{"2":"I wC xC yC zC","132":"0C 0B 1C 2C 3C 4C","260":"5C sB 6C 7C 8C"},Q:{"132":"1B"},R:{"260":"9C"},S:{"132":"AD"}},B:4,C:"CSS display: contents"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X","260":"Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB GC HC","132":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB","260":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB 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":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X","194":"ZB vB aB wB bB cB dB","260":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B JC 0B KC LC MC NC 1B","132":"C K L G rB sB 2B OC PC 3B 4B 5B 6B","516":"7B 8B 9B AC BC QC","772":"tB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC TC UC rB CC VC sB","132":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB","260":"oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC","132":"gC hC iC jC kC lC","260":"mC nC oC pC 3B 4B 5B 6B","772":"tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","260":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","260":"h"},L:{"260":"H"},M:{"260":"f"},N:{"2":"A B"},O:{"132":"xC"},P:{"2":"I yC zC 0C 1C","132":"2C 1B 3C 4C 5C 6C","260":"g 7C tB 8C 9C AD"},Q:{"132":"2B"},R:{"260":"BD"},S:{"132":"CD","260":"DD"}},B:4,C:"CSS display: contents"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-element-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-element-function.js index 73f7beb5753041..4a9c8b88f821a6 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","164":"DC tB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"33":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"33":"AD"}},B:5,C:"CSS element() function"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","164":"FC uB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"33":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"33":"CD DD"}},B:5,C:"CSS element() function"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-env-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-env-function.js index 99798b994bb148..775d46efbbaf59 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB EC FC"},D:{"1":"hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","132":"B"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC","132":"dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"CSS Environment Variables env()"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB GC HC"},D:{"1":"iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","132":"B"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z 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 TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC","132":"fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:7,C:"CSS Environment Variables env()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-exclusions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-exclusions.js index 12845dc914aeb2..8776a6c663b428 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 CC","33":"A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"33":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Exclusions Level 1"}; +module.exports={A:{A:{"2":"J D E F EC","33":"A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"33":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Exclusions Level 1"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-featurequeries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-featurequeries.js index 854b078bc2410c..7cbd16384f982a 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x EC FC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B C PC QC RC SC qB AC TC"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS Feature Queries"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y GC HC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 I w J D E F A B C K L G M N O x g y z"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B C RC SC TC UC rB CC VC"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS Feature Queries"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js index 35183a6a314158..cef773a8122d1a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X"},L:{"1":"H"},B:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H","33":"C K L G M N O P Q R S T U V W X"},C:{"1":"wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R EC FC"},M:{"1":"H"},A:{"2":"J D E F CC","33":"A B"},F:{"1":"mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB"},K:{"1":"g","2":"A B C qB AC rB"},E:{"1":"G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"OC","33":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B"},G:{"1":"mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC"},P:{"1":"5C sB 6C 7C 8C","33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C"},I:{"1":"f","2":"tB I pC qC rC sC BC","33":"tC uC"}},B:6,C:"::file-selector-button CSS pseudo-element"}; +module.exports={A:{D:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X"},L:{"1":"H"},B:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H","33":"C K L G M N O P Q R S T U V W X"},C:{"1":"xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R GC HC"},M:{"1":"f"},A:{"2":"J D E F EC","33":"A B"},F:{"1":"nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB"},K:{"1":"h","2":"A B C rB CC sB"},E:{"1":"G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"QC","33":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B"},G:{"1":"oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC"},P:{"1":"g 7C tB 8C 9C AD","33":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C"},I:{"1":"H","2":"uB I rC sC tC uC DC","33":"vC wC"}},B:6,C:"::file-selector-button CSS pseudo-element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filter-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filter-function.js index 667ea1570f703b..8006744792095e 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC","33":"ZC aC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS filter() function"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC","33":"bC cC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS filter() function"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filters.js index 3077c345c949eb..0e49588a3abc6a 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","1028":"K L G M N O","1346":"C"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC","196":"AB","516":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z FC"},D:{"1":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","33":"J D E F JC KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"E WC XC YC ZC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC","33":"tC uC"},J:{"2":"D","33":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","33":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"CSS Filter Effects"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","1028":"K L G M N O","1346":"C"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC","196":"BB","516":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB HC"},D:{"1":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O x g y z 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 G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","33":"J D E F LC MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"E YC ZC aC bC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC","33":"vC wC"},J:{"2":"D","33":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","33":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"CSS Filter Effects"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-letter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-letter.js index 07bc9685fd8d4f..de17ceafad76a7 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":"CC","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","132":"tB","260":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"u J D E","132":"I"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"u HC","132":"I zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","16":"F PC","260":"B QC RC SC qB AC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC"},H:{"1":"oC"},I:{"1":"tB I f sC BC tC uC","16":"pC qC","132":"rC"},J:{"1":"D A"},K:{"1":"C g rB","260":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"::first-letter CSS pseudo-element selector"}; +module.exports={A:{A:{"1":"F A B","16":"EC","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","132":"uB","260":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"w J D E","132":"I"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"w JC","132":"I 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","16":"F RC","260":"B SC TC UC rB CC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC"},H:{"1":"qC"},I:{"1":"uB I H uC DC vC wC","16":"rC sC","132":"tC"},J:{"1":"D A"},K:{"1":"C h sB","260":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"::first-letter CSS pseudo-element selector"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-line.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-line.js index c3feaeb16aa1e4..a8313f1302caec 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS first-line pseudo-element"}; +module.exports={A:{A:{"1":"F A B","132":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS first-line pseudo-element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-fixed.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-fixed.js index 9756f078fdddad..ae82335c6446f2 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":"CC","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","1025":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC","132":"VC WC XC"},H:{"2":"oC"},I:{"1":"tB f tC uC","260":"pC qC rC","513":"I sC BC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS position:fixed"}; +module.exports={A:{A:{"1":"D E F A B","2":"EC","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","1025":"NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC","132":"XC YC ZC"},H:{"2":"qC"},I:{"1":"uB H vC wC","260":"rC sC tC","513":"I uC DC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS position:fixed"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-visible.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-visible.js index 40a36e3da3726c..90bcaf1ed2db08 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 CC"},B:{"1":"V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","161":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T"},D:{"1":"V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB","328":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B MC","578":"G NC 2B"},F:{"1":"kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB PC QC RC SC qB AC TC rB","328":"eB fB gB hB iB jB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC","578":"nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"161":"AD"}},B:5,C:":focus-visible CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","161":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T"},D:{"1":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB","328":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B OC","578":"G PC 3B"},F:{"1":"lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB 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 TC UC rB CC VC sB","328":"fB gB hB iB jB kB"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC","578":"pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"161":"CD DD"}},B:5,C:":focus-visible CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-within.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-within.js index 66550bc3e9e153..cf5646e14cc0f6 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB EC FC"},D:{"1":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB 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":"uB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB PC QC RC SC qB AC TC rB","194":"MB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:":focus-within CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB GC HC"},D:{"1":"aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB 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":"vB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB RC SC TC UC rB CC VC sB","194":"NB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:7,C:":focus-within CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js index 75eaea3563b8dd..00d47bab027ce8 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 CC"},B:{"1":"q r s t f 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 h i j k l m n o p"},C:{"1":"s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r EC FC"},D:{"1":"m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B"},F:{"1":"W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V PC QC RC SC qB AC TC rB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS font-palette"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"r s t u v f 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 i j k l m n o p q"},C:{"1":"t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s GC HC"},D:{"1":"n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B"},F:{"1":"W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V RC SC TC UC rB CC VC sB"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS font-palette"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js index e1343270abb990..f1a44a4d6e059e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB EC FC","194":"MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","66":"PB QB RB SB TB UB VB WB XB YB uB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB","66":"CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","66":"wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"194":"AD"}},B:5,C:"CSS font-display"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB GC HC","194":"NB OB PB QB RB SB TB UB VB WB XB YB"},D:{"1":"aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","66":"QB RB SB TB UB VB WB XB YB ZB vB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB","66":"DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","66":"yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","194":"CD"}},B:5,C:"CSS font-display"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-stretch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-stretch.js index bcd178eaffdf36..03a659376be67b 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E EC FC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS font-stretch"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E GC HC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS font-stretch"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gencontent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gencontent.js index 942ec22ec78df9..57f603e340df63 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 CC","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS Generated content for pseudo-elements"}; +module.exports={A:{A:{"1":"F A B","2":"J D EC","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS Generated content for pseudo-elements"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gradients.js index 709afb6a33d45e..528529a39827a0 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC","260":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB","292":"I u J D E F A B C K L G FC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 A B C K L G M N O v w x y z","548":"I u J D E F"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB","260":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B","292":"J IC","804":"I u"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC","33":"C TC","164":"qB AC"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","260":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B","292":"VC WC","804":"zB UC BC"},H:{"2":"oC"},I:{"1":"f tC uC","33":"I sC BC","548":"tB pC qC rC"},J:{"1":"A","548":"D"},K:{"1":"g rB","2":"A B","33":"C","164":"qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC","260":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB","292":"I w J D E F A B C K L G HC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 A B C K L G M N O x g y z","548":"I w J D E F"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B","260":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B","292":"J KC","804":"I w"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC","33":"C VC","164":"rB CC"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","260":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B","292":"XC YC","804":"0B WC DC"},H:{"2":"qC"},I:{"1":"H vC wC","33":"I uC DC","548":"uB rC sC tC"},J:{"1":"A","548":"D"},K:{"1":"h sB","2":"A B","33":"C","164":"rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS Gradients"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js index 603cb84ca0a02d..8d5739bdac4196 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"CSS Grid animation"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"CSS Grid animation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js index 1917735fc46683..45e448071f610e 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 CC","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","292":"C K L G"},C:{"1":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O EC FC","8":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB","584":"GB HB IB JB KB LB MB NB OB PB QB RB","1025":"SB TB"},D:{"1":"YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 I u J D E F A B C K L G M N O v w x y z","8":"1 2 3 4","200":"5 6 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","1025":"XB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","8":"J D E F A JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","200":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","8":"E WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC","8":"BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"292":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"wC","8":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS Grid Layout (level 1)"}; +module.exports={A:{A:{"2":"J D E EC","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","292":"C K L G"},C:{"1":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O GC HC","8":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB","584":"HB IB JB KB LB MB NB OB PB QB RB SB","1025":"TB UB"},D:{"1":"ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 I w J D E F A B C K L G M N O x g y z","8":"2 3 4 5","200":"6 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","1025":"YB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","8":"J D E F A LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O x g y z RC SC TC UC rB CC VC sB","200":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","8":"E YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC","8":"DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"292":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"yC","8":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS Grid Layout (level 1)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js index aa334549566502..3fa19ccf6d81e5 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"CSS hanging-punctuation"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:4,C:"CSS hanging-punctuation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-has.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-has.js index b89e57857ef6e3..aefb8c722a5d34 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 CC"},B:{"1":"q r s t f 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 h i j k l m n o p"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n EC FC","322":"o p q r s t f H xB yB"},D:{"1":"q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l","194":"m n o p"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B"},F:{"1":"a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z PC QC RC SC qB AC TC rB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:":has() CSS relational pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"r s t u v f 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 i j k l m n o p q"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o GC HC","322":"p q r s t u v f H yB zB"},D:{"1":"r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m","194":"n o p q"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B"},F:{"1":"a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z RC SC TC UC rB CC VC sB"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:":has() CSS relational pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphens.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphens.js index eabcb010768b87..e2d338b19124b1 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 CC","33":"A B"},B:{"1":"q r s t f 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 h i j k l m n o p"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W"},E:{"2":"I u HC zB","33":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB PC QC RC SC qB AC TC rB","132":"IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z"},G:{"2":"zB UC","33":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"4":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","132":"wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS Hyphenation"}; +module.exports={A:{A:{"2":"J D E F EC","33":"A B"},B:{"1":"r s t u v f 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 i j k l m n o p q"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","132":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W"},E:{"2":"I w JC 0B","33":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB RC SC TC UC rB CC VC sB","132":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z"},G:{"2":"0B WC","33":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"4":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","132":"yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS Hyphenation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-orientation.js index ca29931cc278bb..e338421d819bcd 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 CC"},B:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O P Q","257":"R S T U V W X"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q","257":"R S T U V W X"},E:{"1":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB"},F:{"1":"oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB PC QC RC SC qB AC TC rB","257":"gB hB iB jB kB g lB mB nB"},G:{"1":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","132":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C","257":"3C 4C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 image-orientation"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O P Q","257":"R S T U V W X"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q","257":"R S T U V W X"},E:{"1":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB"},F:{"1":"pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB 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 TC UC rB CC VC sB","257":"hB iB jB kB lB h mB nB oB"},G:{"1":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","132":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C","257":"5C 6C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 image-orientation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-set.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-set.js index ceaaa79451a7d4..63bc3ba7b9de29 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 CC"},B:{"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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U EC FC","66":"V W","257":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB","772":"X"},D:{"2":"I u J D E F A B C K L G M N O v w","132":"xB yB GC","164":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},E:{"2":"I u HC zB IC","132":"A B C K 0B qB rB 1B","164":"J D E F JC KC LC","516":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","164":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"zB UC BC VC","132":"bC cC dC eC fC gC hC iC jC kC","164":"E WC XC YC ZC aC","516":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","164":"f tC uC"},J:{"2":"D","164":"A"},K:{"2":"A B C qB AC rB","164":"g"},L:{"164":"H"},M:{"257":"H"},N:{"2":"A B"},O:{"164":"vC"},P:{"164":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"164":"1B"},R:{"164":"9C"},S:{"2":"AD"}},B:5,C:"CSS image-set"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"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 i j k l m n o p q r s t u v f H"},C:{"1":"zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U GC HC","66":"V W","2305":"Y Z a b c d e i j k l m n o p q r s t u v f H yB","2820":"X"},D:{"2":"I w J D E F A B C K L G M N O x g","164":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB","2049":"zB IC"},E:{"1":"QC","2":"I w JC 0B KC","132":"A B C K 1B rB sB 2B","164":"J D E F LC MC NC","1540":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","164":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"0B WC DC XC","132":"dC eC fC gC hC iC jC kC lC mC","164":"E YC ZC aC bC cC","1540":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","164":"H vC wC"},J:{"2":"D","164":"A"},K:{"2":"A B C rB CC sB","164":"h"},L:{"164":"H"},M:{"2305":"f"},N:{"2":"A B"},O:{"164":"xC"},P:{"164":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"164":"2B"},R:{"164":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS image-set"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-in-out-of-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-in-out-of-range.js index 47886da7c5ba59..8a8a59385bc9ca 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C","260":"K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","516":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I","16":"u J D E F A B C K L","260":"SB","772":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","16":"u","772":"J D E F A IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F PC","260":"B C FB QC RC SC qB AC TC rB","772":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC","772":"E VC WC XC YC ZC aC bC"},H:{"132":"oC"},I:{"1":"f","2":"tB pC qC rC","260":"I sC BC tC uC"},J:{"2":"D","260":"A"},K:{"1":"g","260":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","260":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"516":"AD"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C","260":"K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC","516":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I","16":"w J D E F A B C K L","260":"TB","772":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","16":"w","772":"J D E F A KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F RC","260":"B C GB SC TC UC rB CC VC sB","772":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC","772":"E XC YC ZC aC bC cC dC"},H:{"132":"qC"},I:{"1":"H","2":"uB rC sC tC","260":"I uC DC vC wC"},J:{"2":"D","260":"A"},K:{"1":"h","260":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","260":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","516":"CD"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js index 081eb12fb6d30c..645b51eb0a6ae2 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 CC","132":"A B","388":"F"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","132":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC tB EC FC","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","388":"I u"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u J HC zB","132":"D E F A JC KC LC","388":"IC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F B PC QC RC SC qB AC","132":"0 1 G M N O v w x y z","516":"C TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC WC","132":"E XC YC ZC aC bC"},H:{"516":"oC"},I:{"1":"f","16":"tB pC qC rC uC","132":"tC","388":"I sC BC"},J:{"16":"D","132":"A"},K:{"1":"g","16":"A B C qB AC","516":"rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"132":"AD"}},B:5,C:":indeterminate CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E EC","132":"A B","388":"F"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","132":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC uB GC HC","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","388":"I w"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w J JC 0B","132":"D E F A LC MC NC","388":"KC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F B RC SC TC UC rB CC","132":"0 1 2 G M N O x g y z","516":"C VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC YC","132":"E ZC aC bC cC dC"},H:{"516":"qC"},I:{"1":"H","16":"uB rC sC tC wC","132":"vC","388":"I uC DC"},J:{"16":"D","132":"A"},K:{"1":"h","16":"A B C rB CC","516":"sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","132":"CD"}},B:5,C:":indeterminate CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-letter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-letter.js index 3053346498c5a7..c7e680f1438b1f 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 CC"},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 h i j k l m n o p q r s t f","260":"H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f","260":"H xB yB GC"},E:{"2":"I u J D E HC zB IC JC KC","4":"F","164":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC","164":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"260":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Initial Letter"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v","260":"f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v","260":"f H yB zB IC"},E:{"2":"I w J D E JC 0B KC LC MC","4":"F","164":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC","164":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"260":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Initial Letter"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-value.js index e67609d03246bc..6c689855578b08 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","33":"I u J D E F A B C K L G M N O EC FC","164":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS initial value"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","33":"I w J D E F A B C K L G M N O GC HC","164":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS initial value"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-lch-lab.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-lch-lab.js index 809296aa9ebce1..0901d2770a9711 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 CC"},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 h i j k l m n o p q r s t f","322":"H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H EC FC","194":"xB yB"},D:{"1":"xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f","322":"H"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"LCH and Lab color values"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"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 i j k l m n o p q r s t u v","322":"f"},C:{"1":"zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f GC HC","194":"H yB"},D:{"1":"H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v","322":"f"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:4,C:"LCH and Lab color values"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js index 95b81f5a9e87db..00b9236b32dabe 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":"CC","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"0 1 2 3 4 5 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC","132":"I u J zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F PC","132":"B C G M QC RC SC qB AC TC rB"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"2":"oC"},I:{"1":"f tC uC","16":"pC qC","132":"tB I rC sC BC"},J:{"132":"D A"},K:{"1":"g","132":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"letter-spacing CSS property"}; +module.exports={A:{A:{"1":"F A B","16":"EC","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"0 1 2 3 4 5 6 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC","132":"I w J 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F RC","132":"B C G M SC TC UC rB CC VC sB"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"2":"qC"},I:{"1":"H vC wC","16":"rC sC","132":"uB I tC uC DC"},J:{"132":"D A"},K:{"1":"h","132":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"letter-spacing CSS property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-line-clamp.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-line-clamp.js index aa45e25adb6855..6b3ac647413fb1 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 CC"},B:{"2":"C K L G M","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB EC FC","33":"gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"16":"I u J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I HC zB","33":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"zB UC BC","33":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"16":"pC qC","33":"tB I f rC sC BC tC uC"},J:{"33":"D A"},K:{"2":"A B C qB AC rB","33":"g"},L:{"33":"H"},M:{"33":"H"},N:{"2":"A B"},O:{"33":"vC"},P:{"33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"33":"1B"},R:{"33":"9C"},S:{"2":"AD"}},B:5,C:"CSS line-clamp"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB GC HC","33":"hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"16":"I w J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I JC 0B","33":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"0B WC DC","33":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"16":"rC sC","33":"uB I H tC uC DC vC wC"},J:{"33":"D A"},K:{"2":"A B C rB CC sB","33":"h"},L:{"33":"H"},M:{"33":"f"},N:{"2":"A B"},O:{"33":"xC"},P:{"33":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"33":"2B"},R:{"33":"BD"},S:{"2":"CD","33":"DD"}},B:5,C:"CSS line-clamp"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-logical-props.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-logical-props.js index b7c23c08c79c5d..0ede825ae68cdd 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 CC"},B:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC","164":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB EC FC","1540":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB"},D:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","292":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB","1028":"W X","1540":"hB iB jB kB g lB mB nB oB pB P Q R S T U V"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","292":"I u J D E F A B C HC zB IC JC KC LC 0B qB","1540":"K L rB 1B","5124":"MC"},F:{"1":"nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","292":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","1028":"lB mB","1540":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g"},G:{"1":"nC 2B 3B 4B 5B sB 6B 7B 8B 9B","292":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC","1540":"gC hC iC jC kC lC","5124":"mC"},H:{"2":"oC"},I:{"1":"f","292":"tB I pC qC rC sC BC tC uC"},J:{"292":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"292":"vC"},P:{"1":"5C sB 6C 7C 8C","292":"I wC xC yC zC 0C","1540":"0B 1C 2C 3C 4C"},Q:{"1540":"1B"},R:{"1":"9C"},S:{"1540":"AD"}},B:5,C:"CSS Logical Properties"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC","164":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB GC HC","1540":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB"},D:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","292":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB","1028":"W X","1540":"iB jB kB lB h mB nB oB pB qB P Q R S T U V"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","292":"I w J D E F A B C JC 0B KC LC MC NC 1B rB","1540":"K L sB 2B","5124":"OC"},F:{"1":"oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","292":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","1028":"mB nB","1540":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h"},G:{"1":"pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","292":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC","1540":"iC jC kC lC mC nC","5124":"oC"},H:{"2":"qC"},I:{"1":"H","292":"uB I rC sC tC uC DC vC wC"},J:{"292":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"292":"xC"},P:{"1":"g 7C tB 8C 9C AD","292":"I yC zC 0C 1C 2C","1540":"1B 3C 4C 5C 6C"},Q:{"1540":"2B"},R:{"1":"BD"},S:{"1":"DD","1540":"CD"}},B:5,C:"CSS Logical Properties"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-marker-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-marker-pseudo.js index 07ff44a5bb57c4..c0ba0fa10b725c 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 CC"},B:{"1":"V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O P Q R S T U"},C:{"1":"gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB EC FC"},D:{"1":"V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U"},E:{"1":"OC","2":"I u J D E F A B HC zB IC JC KC LC 0B","129":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B"},F:{"1":"kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"CSS ::marker pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O P Q R S T U"},C:{"1":"hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB GC HC"},D:{"1":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U"},E:{"1":"QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B","129":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},F:{"1":"lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"CSS ::marker pseudo-element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-masks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-masks.js index e9b9feb2316e93..e453c7737a07c4 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 CC"},B:{"2":"C K L G M","164":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","3138":"N","12292":"O"},C:{"1":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","260":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB EC FC"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB","164":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B"},F:{"2":"F B C PC QC RC SC qB AC TC rB","164":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","164":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"164":"f tC uC","676":"tB I pC qC rC sC BC"},J:{"164":"D A"},K:{"2":"A B C qB AC rB","164":"g"},L:{"164":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"vC"},P:{"164":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"164":"1B"},R:{"164":"9C"},S:{"260":"AD"}},B:4,C:"CSS Masks"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M","164":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","3138":"N","12292":"O"},C:{"1":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","260":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB GC HC"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B","164":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B"},F:{"2":"F B C RC SC TC UC rB CC VC sB","164":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","164":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"164":"H vC wC","676":"uB I rC sC tC uC DC"},J:{"164":"D A"},K:{"2":"A B C rB CC sB","164":"h"},L:{"164":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"164":"xC"},P:{"164":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"164":"2B"},R:{"164":"BD"},S:{"1":"DD","260":"CD"}},B:4,C:"CSS Masks"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-matches-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-matches-pseudo.js index 8788484948ff0c..8cd10526489fc2 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 CC"},B:{"1":"X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC tB EC FC","548":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB"},D:{"1":"X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB","196":"dB eB fB","1220":"gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W"},E:{"1":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","16":"u","164":"J D E IC JC KC","260":"F A B C K LC 0B qB rB 1B"},F:{"1":"mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","164":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","196":"SB TB UB","1220":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB"},G:{"1":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC WC","164":"E XC YC","260":"ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"oC"},I:{"1":"f","16":"tB pC qC rC","164":"I sC BC tC uC"},J:{"16":"D","164":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"vC"},P:{"1":"5C sB 6C 7C 8C","164":"I wC xC yC zC 0C 0B 1C 2C 3C 4C"},Q:{"1220":"1B"},R:{"1":"9C"},S:{"548":"AD"}},B:5,C:":is() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC uB GC HC","548":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB"},D:{"1":"X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB","196":"eB fB gB","1220":"hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W"},E:{"1":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","16":"w","164":"J D E KC LC MC","260":"F A B C K NC 1B rB sB 2B"},F:{"1":"nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","164":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","196":"TB UB VB","1220":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB"},G:{"1":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC YC","164":"E ZC aC","260":"bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"qC"},I:{"1":"H","16":"uB rC sC tC","164":"I uC DC vC wC"},J:{"16":"D","164":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"164":"xC"},P:{"1":"g 7C tB 8C 9C AD","164":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C"},Q:{"1220":"2B"},R:{"1":"BD"},S:{"1":"DD","548":"CD"}},B:5,C:":is() CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-math-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-math-functions.js index ff198207d8fdaa..16908d391ed359 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB EC FC"},D:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB"},E:{"1":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B","132":"C K qB rB"},F:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB PC QC RC SC qB AC TC rB"},G:{"1":"kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC","132":"eC fC gC hC iC jC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"CSS math functions min(), max() and clamp()"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB GC HC"},D:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB"},E:{"1":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B","132":"C K rB sB"},F:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB 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 TC UC rB CC VC sB"},G:{"1":"mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC","132":"gC hC iC jC kC lC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"CSS math functions min(), max() and clamp()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-interaction.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-interaction.js index 88f87282a84b04..68f0babea113ba 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB EC FC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"Media Queries: interaction media features"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB GC HC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"Media Queries: interaction media features"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js index aa32f1a4ec33c4..6e9660545cca8f 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 CC"},B:{"1":"p q r s t f 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 h i j k l m n o"},C:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB EC FC"},D:{"1":"p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o"},E:{"1":"9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B"},F:{"1":"a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z PC QC RC SC qB AC TC rB"},G:{"1":"9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"Media Queries: Range Syntax"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"q r s t u v f 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 i j k l m n o p"},C:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB GC HC"},D:{"1":"q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B"},F:{"1":"a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z RC SC TC UC rB CC VC sB"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"Media Queries: Range Syntax"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js index ecea1ffeb22fc5..92ee9b0ffa8d16 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 CC","132":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","1028":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","260":"I u J D E F A B C K L G EC FC","1028":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB"},D:{"1":"gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","548":"0 1 2 3 4 I u J D E F A B C K L G M N O v w x y z","1028":"5 6 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 uB ZB vB aB bB cB dB eB fB"},E:{"1":"sB 6B 7B 8B 9B OC","2":"HC zB","548":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F","548":"B C PC QC RC SC qB AC TC","1028":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"sB 6B 7B 8B 9B","16":"zB","548":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"132":"oC"},I:{"1":"f","16":"pC qC","548":"tB I rC sC BC","1028":"tC uC"},J:{"548":"D A"},K:{"1":"g rB","548":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","1028":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Media Queries: resolution feature"}; +module.exports={A:{A:{"2":"J D E EC","132":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","1028":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","260":"I w J D E F A B C K L G GC HC","1028":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB"},D:{"1":"hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","548":"0 1 2 3 4 5 I w J D E F A B C K L G M N O x g y z","1028":"6 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 vB aB wB bB cB dB eB fB gB"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"JC 0B","548":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F","548":"B C RC SC TC UC rB CC VC","1028":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"1":"tB 7B 8B 9B AC BC","16":"0B","548":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"132":"qC"},I:{"1":"H","16":"rC sC","548":"uB I tC uC DC","1028":"vC wC"},J:{"548":"D A"},K:{"1":"h sB","548":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","1028":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Media Queries: resolution feature"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js index c0e8057935b76a..98359fa1a95a94 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"Media Queries: scripting media feature"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"Media Queries: scripting media feature"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mediaqueries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mediaqueries.js index 004e68e9b5964d..011abd18918933 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 CC","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","129":"0 1 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","129":"I u J IC","388":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","129":"zB UC BC VC WC"},H:{"1":"oC"},I:{"1":"f tC uC","129":"tB I pC qC rC sC BC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS3 Media Queries"}; +module.exports={A:{A:{"8":"J D E EC","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","129":"0 1 2 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","129":"I w J KC","388":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","129":"0B WC DC XC YC"},H:{"1":"qC"},I:{"1":"H vC wC","129":"uB I rC sC tC uC DC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"129":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS3 Media Queries"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mixblendmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mixblendmode.js index 8256e1ee05cefb..66b424be90b5ed 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 I u J D E F A B C K L G M N O v w x y z","194":"5 6 7 8 9 AB BB CB DB EB FB GB"},E:{"2":"I u J D HC zB IC JC","260":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"2":"zB UC BC VC WC XC","260":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Blending of HTML/SVG elements"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 I w J D E F A B C K L G M N O x g y z","194":"6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"2":"I w J D JC 0B KC LC","260":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"2":"0B WC DC XC YC ZC","260":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Blending of HTML/SVG elements"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-motion-paths.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-motion-paths.js index 0bd39c406b3e5e..9bd8f8390a5f70 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB EC FC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB","194":"JB KB LB"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","194":"6 7 8"},G:{"1":"sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"CSS Motion Path"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB GC HC"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB","194":"KB LB MB"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 F B C G M N O x g y z RC SC TC UC rB CC VC sB","194":"7 8 9"},G:{"1":"tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"CSS Motion Path"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-namespaces.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-namespaces.js index 8db3da0507cd59..46cee0470c5db7 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS namespaces"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS namespaces"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nesting.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nesting.js index 9ee1d239a992dc..1fdb2d5abac93e 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 CC"},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 h i j k l m n o p q r s t","194":"f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t","194":"f H xB"},E:{"1":"OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d PC QC RC SC qB AC TC rB","194":"e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Nesting"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u","194":"v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u","194":"v f H"},E:{"1":"BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d RC SC TC UC rB CC VC sB","194":"e"},G:{"1":"BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Nesting"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-not-sel-list.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-not-sel-list.js index 8ab6a7018bf4e4..81a065f4692f8c 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 CC"},B:{"1":"X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S EC FC"},D:{"1":"X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"1":"mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"selector list argument of :not()"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S GC HC"},D:{"1":"X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"1":"nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"selector list argument of :not()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nth-child-of.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nth-child-of.js index a03c287b677098..81f07ab76a648d 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"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 i j k l m n o p q r s t u v f"},C:{"1":"zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB GC HC"},D:{"1":"H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js index 0b47a8e44cd867..affb0fbb4a90f8 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS3 Opacity"}; +module.exports={A:{A:{"1":"F A B","4":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS3 Opacity"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-optional-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-optional-pseudo.js index 4ac585591a35a2..6d1d0ee7399aaa 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F PC","132":"B C QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"132":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"g","132":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:":optional CSS pseudo-class"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F RC","132":"B C SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"132":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"h","132":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:":optional CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-anchor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-anchor.js index 4c58eb8f07e94c..427282a11bb6b2 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB EC FC"},D:{"1":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB GC HC"},D:{"1":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-overlay.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-overlay.js index 858d50699aba64..8571180b08e686 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"I u J D E F A B IC JC KC LC 0B qB","16":"HC zB","130":"C K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC","16":"zB","130":"fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"CSS overflow: overlay"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"I w J D E F A B KC LC MC NC 1B rB","16":"JC 0B","130":"C K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC","16":"0B","130":"hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS overflow: overlay"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow.js index 19e8f807beafee..207daf535ca1c4 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 CC"},B:{"1":"Z a b c d e h i j k l m n o p q r s t f H","260":"P Q R S T U V W X Y","388":"C K L G M N O"},C:{"1":"R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","260":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q","388":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB EC FC"},D:{"1":"Z a b c d e h i j k l m n o p q r s t f H xB yB GC","260":"gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y","388":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB"},E:{"1":"sB 6B 7B 8B 9B OC","260":"L G 1B MC NC 2B 3B 4B 5B","388":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB"},F:{"1":"nB oB pB P Q R wB S T U V W X Y Z a b c d e","260":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB PC QC RC SC qB AC TC rB"},G:{"1":"sB 6B 7B 8B 9B","260":"kC lC mC nC 2B 3B 4B 5B","388":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC"},H:{"388":"oC"},I:{"1":"f","388":"tB I pC qC rC sC BC tC uC"},J:{"388":"D A"},K:{"1":"g","388":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"388":"A B"},O:{"388":"vC"},P:{"1":"5C sB 6C 7C 8C","388":"I wC xC yC zC 0C 0B 1C 2C 3C 4C"},Q:{"388":"1B"},R:{"1":"9C"},S:{"388":"AD"}},B:5,C:"CSS overflow property"}; +module.exports={A:{A:{"388":"J D E F A B EC"},B:{"1":"Z a b c d e i j k l m n o p q r s t u v f H","260":"P Q R S T U V W X Y","388":"C K L G M N O"},C:{"1":"R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","260":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q","388":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB GC HC"},D:{"1":"Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","260":"hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y","388":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB"},E:{"1":"tB 7B 8B 9B AC BC QC","260":"L G 2B OC PC 3B 4B 5B 6B","388":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB"},F:{"1":"oB pB qB P Q R xB S T U V W X Y Z a b c d e","260":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC TC UC rB CC VC sB"},G:{"1":"tB 7B 8B 9B AC BC","260":"mC nC oC pC 3B 4B 5B 6B","388":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"388":"qC"},I:{"1":"H","388":"uB I rC sC tC uC DC vC wC"},J:{"388":"D A"},K:{"1":"h","388":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"388":"A B"},O:{"388":"xC"},P:{"1":"g 7C tB 8C 9C AD","388":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C"},Q:{"388":"2B"},R:{"1":"BD"},S:{"1":"DD","388":"CD"}},B:5,C:"CSS overflow property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js index 89fab6f2a22d25..907b0922239540 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 CC","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","132":"C K L G M N","516":"O"},C:{"1":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB EC FC"},D:{"1":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB","260":"bB cB"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B","1090":"G MC NC 2B 3B 4B 5B"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB PC QC RC SC qB AC TC rB","260":"QB RB"},G:{"1":"sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC","1090":"mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"CSS overscroll-behavior"}; +module.exports={A:{A:{"2":"J D E F EC","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","132":"C K L G M N","516":"O"},C:{"1":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB GC HC"},D:{"1":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB","260":"cB dB"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B","1090":"G OC PC 3B 4B 5B 6B"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RC SC TC UC rB CC VC sB","260":"RB SB"},G:{"1":"tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC","1090":"oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"CSS overscroll-behavior"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js index 5846b18944c5b7..666befb7a05af0 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 CC"},B:{"388":"C K L G M N O","900":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"772":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","900":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB EC FC"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"772":"A","900":"I u J D E F B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"16":"F PC","129":"B C QC RC SC qB AC TC rB","900":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"900":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"129":"oC"},I:{"900":"tB I f pC qC rC sC BC tC uC"},J:{"900":"D A"},K:{"129":"A B C qB AC rB","900":"g"},L:{"900":"H"},M:{"772":"H"},N:{"388":"A B"},O:{"900":"vC"},P:{"900":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"900":"1B"},R:{"900":"9C"},S:{"900":"AD"}},B:2,C:"CSS page-break properties"}; +module.exports={A:{A:{"388":"A B","900":"J D E F EC"},B:{"388":"C K L G M N O","900":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"772":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","900":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB GC HC"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"772":"A","900":"I w J D E F B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"16":"F RC","129":"B C SC TC UC rB CC VC sB","900":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"900":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"129":"qC"},I:{"900":"uB I H rC sC tC uC DC vC wC"},J:{"900":"D A"},K:{"129":"A B C rB CC sB","900":"h"},L:{"900":"H"},M:{"772":"f"},N:{"388":"A B"},O:{"900":"xC"},P:{"900":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"900":"2B"},R:{"900":"BD"},S:{"772":"DD","900":"CD"}},B:2,C:"CSS page-break properties"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paged-media.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paged-media.js index 55c5654398f088..2f4e80b1910f2b 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 CC","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","132":"C K L G M N O"},C:{"2":"DC tB I u J D E F A B C K L G M N O EC FC","132":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","132":"F B C PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"16":"oC"},I:{"16":"tB I f pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"1":"g","16":"A B C qB AC rB"},L:{"1":"H"},M:{"132":"H"},N:{"258":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"132":"AD"}},B:5,C:"CSS Paged Media (@page)"}; +module.exports={A:{A:{"2":"J D EC","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","132":"C K L G M N O"},C:{"2":"FC uB I w J D E F A B C K L G M N O GC HC","132":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","132":"F B C RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"16":"qC"},I:{"16":"uB I H rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"1":"h","16":"A B C rB CC sB"},L:{"1":"H"},M:{"132":"f"},N:{"258":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"132":"CD DD"}},B:5,C:"CSS Paged Media (@page)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paint-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paint-api.js index 7a8e585c32f45a..2cfd1502493862 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB"},E:{"2":"I u J D E F A B C HC zB IC JC KC LC 0B qB","194":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"CSS Painting API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB"},E:{"2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB","194":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:4,C:"CSS Painting API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder-shown.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder-shown.js index cc86ed42a0c2f4..d6883fea5b44a8 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 CC","292":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","164":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"164":"AD"}},B:5,C:":placeholder-shown CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F EC","292":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","164":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","164":"CD"}},B:5,C:":placeholder-shown CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder.js index 24eb777679ad99..73d088346202b8 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","36":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O EC FC","33":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","36":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","36":"u J D E F A IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","36":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC","36":"E BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","36":"tB I pC qC rC sC BC tC uC"},J:{"36":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","36":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"33":"AD"}},B:5,C:"::placeholder CSS pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","36":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O GC HC","33":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","36":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","36":"w J D E F A KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","36":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC","36":"E DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","36":"uB I rC sC tC uC DC vC wC"},J:{"36":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"36":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","36":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","33":"CD"}},B:5,C:"::placeholder CSS pseudo-element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js index 478d26c50d7faa..1d18ed03f294c1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js @@ -1 +1 @@ -module.exports={A:{D:{"2":"I u J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB EC FC","33":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h"},M:{"1":"H"},A:{"2":"J D E F A B CC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},K:{"2":"A B C qB AC rB","33":"g"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"I u HC zB IC OC","33":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},P:{"33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},I:{"2":"tB I pC qC rC sC BC","33":"f tC uC"}},B:6,C:"print-color-adjust property"}; +module.exports={A:{D:{"2":"I w J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB GC HC","33":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i"},M:{"1":"f"},A:{"2":"J D E F A B EC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},K:{"2":"A B C rB CC sB","33":"h"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"I w JC 0B KC QC","33":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},P:{"33":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},I:{"2":"uB I rC sC tC uC DC","33":"H vC wC"}},B:6,C:"print-color-adjust property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js index f87bd5ac8cde1c..b2bb5281286922 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC","33":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB EC FC"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC zB","132":"I u J D E IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F B PC QC RC SC qB","132":"C G M N O v w x y AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC","132":"E BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","16":"pC qC","132":"tB I rC sC BC tC uC"},J:{"1":"A","132":"D"},K:{"1":"g","2":"A B qB","132":"C AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"33":"AD"}},B:1,C:"CSS :read-only and :read-write selectors"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC","33":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB GC HC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC 0B","132":"I w J D E KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F B RC SC TC UC rB","132":"C G M N O x g y z CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC","132":"E DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","16":"rC sC","132":"uB I tC uC DC vC wC"},J:{"1":"A","132":"D"},K:{"1":"h","2":"A B rB","132":"C CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","33":"CD"}},B:1,C:"CSS :read-only and :read-write selectors"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rebeccapurple.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rebeccapurple.js index 1bc39ddac40ac8..0efb2b8182de44 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 CC","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC","16":"JC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Rebeccapurple color"}; +module.exports={A:{A:{"2":"J D E F A EC","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC","16":"LC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Rebeccapurple color"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js index b1b551eb34aa55..de92cac0dc9038 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 CC"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"HC zB","33":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"33":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"33":"tB I f pC qC rC sC BC tC uC"},J:{"33":"D A"},K:{"2":"A B C qB AC rB","33":"g"},L:{"33":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"33":"vC"},P:{"33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"33":"1B"},R:{"33":"9C"},S:{"2":"AD"}},B:7,C:"CSS Reflections"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"JC 0B","33":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"33":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"33":"uB I H rC sC tC uC DC vC wC"},J:{"33":"D A"},K:{"2":"A B C rB CC sB","33":"h"},L:{"33":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"33":"xC"},P:{"33":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"33":"2B"},R:{"33":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS Reflections"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-regions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-regions.js index 13105574393b27..849595343622ce 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 CC","420":"A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"I u J D E F A B C K L BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","36":"G M N O","66":"0 1 2 3 4 5 6 7 8 9 v w x y z AB"},E:{"2":"I u J C K L G HC zB IC qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"D E F A B JC KC LC 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"zB UC BC VC WC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"E XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"420":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Regions"}; +module.exports={A:{A:{"2":"J D E F EC","420":"A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"I w J D E F A B C K L CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","36":"G M N O","66":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB"},E:{"2":"I w J C K L G JC 0B KC rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"D E F A B LC MC NC 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"0B WC DC XC YC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"E ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"420":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Regions"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-repeating-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-repeating-gradients.js index 2ab1ab77d5aa96..fb111920d680f5 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC","33":"I u J D E F A B C K L G FC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F","33":"0 1 A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB","33":"J IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC","33":"C TC","36":"qB AC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC","33":"VC WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB pC qC rC","33":"I sC BC"},J:{"1":"A","2":"D"},K:{"1":"g rB","2":"A B","33":"C","36":"qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS Repeating Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC","33":"I w J D E F A B C K L G HC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F","33":"0 1 2 A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B","33":"J KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC","33":"C VC","36":"rB CC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC","33":"XC YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB rC sC tC","33":"I uC DC"},J:{"1":"A","2":"D"},K:{"1":"h sB","2":"A B","33":"C","36":"rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS Repeating Gradients"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-resize.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-resize.js index 6625c035d4541c..87dc2a5099afd3 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC","132":"rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"CSS resize property"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC","132":"sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:2,C:"CSS resize property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-revert-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-revert-value.js index 37f9aefde83f16..1f4af190783e50 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 CC"},B:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O P Q R S"},C:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB EC FC"},D:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC"},F:{"1":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB PC QC RC SC qB AC TC rB"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"CSS revert value"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O P Q R S"},C:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB GC HC"},D:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC"},F:{"1":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB RC SC TC UC rB CC VC sB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"CSS revert value"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rrggbbaa.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rrggbbaa.js index 0c9cd63a0a7d53..029c70b03c202e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB EC FC"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"SB TB UB VB WB XB YB uB ZB vB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB PC QC RC SC qB AC TC rB","194":"FB GB HB IB JB KB LB MB NB OB PB QB RB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","194":"wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"#rrggbbaa hex color notation"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB GC HC"},D:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB UB VB WB XB YB ZB vB aB wB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB RC SC TC UC rB CC VC sB","194":"GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","194":"yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"#rrggbbaa hex color notation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js index 8da7d2c867166f..1706d8e8424063 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 CC"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB","129":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","450":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB 1B","578":"L G MC NC 2B"},F:{"2":"0 1 2 3 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","129":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","450":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC","578":"mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"129":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"129":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"CSS Scroll-behavior"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB","129":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","450":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB 2B","578":"L G OC PC 3B"},F:{"2":"0 1 2 3 4 F B C G M N O x g y z RC SC TC UC rB CC VC sB","129":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","450":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC","578":"oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"129":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"129":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"CSS Scroll-behavior"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js index 9c7967db2185cf..296d18dc138f20 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 CC"},B:{"2":"C K L G M N O P Q R S T U V W X Y","194":"Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T","194":"X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","322":"U V W"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB PC QC RC SC qB AC TC rB","194":"mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","322":"g lB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"CSS @scroll-timeline"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O P Q R S T U V W X Y","194":"Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T","194":"X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","322":"U V W"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB RC SC TC UC rB CC VC sB","194":"nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","322":"h mB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS @scroll-timeline"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scrollbar.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scrollbar.js index 66fdc8f6a237fc..b5b7a142083246 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 CC"},B:{"2":"C K L G M N O","292":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB EC FC","3074":"bB","4100":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"16":"I u HC zB","292":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","292":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC WC","292":"XC","804":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"oC"},I:{"16":"pC qC","292":"tB I f rC sC BC tC uC"},J:{"292":"D A"},K:{"2":"A B C qB AC rB","292":"g"},L:{"292":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"292":"vC"},P:{"292":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"292":"1B"},R:{"292":"9C"},S:{"2":"AD"}},B:7,C:"CSS scrollbar styling"}; +module.exports={A:{A:{"132":"J D E F A B EC"},B:{"2":"C K L G M N O","292":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB GC HC","3074":"cB","4100":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"16":"I w JC 0B","292":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","292":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC YC","292":"ZC","804":"E aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"qC"},I:{"16":"rC sC","292":"uB I H tC uC DC vC wC"},J:{"292":"D A"},K:{"2":"A B C rB CC sB","292":"h"},L:{"292":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"292":"xC"},P:{"292":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"292":"2B"},R:{"292":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS scrollbar styling"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel2.js index e118707c4c62bd..1c6f3e30f1ff61 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":"CC","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS 2.1 selectors"}; +module.exports={A:{A:{"1":"D E F A B","2":"EC","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS 2.1 selectors"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel3.js index a34151a01c8348..892fdefa031cd8 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":"CC","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS3 selectors"}; +module.exports={A:{A:{"1":"F A B","2":"EC","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS3 selectors"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-selection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-selection.js index 12b4a89cba5340..c339c4e9233cd5 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","33":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"C g AC rB","16":"A B qB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"33":"AD"}},B:5,C:"::selection CSS pseudo-element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","33":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"C h CC sB","16":"A B rB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","33":"CD"}},B:5,C:"::selection CSS pseudo-element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-shapes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-shapes.js index 6d89e31819d406..1ec60100426eca 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB EC FC","322":"RB SB TB UB VB WB XB YB uB ZB vB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z","194":"AB BB CB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC","33":"E F A KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","33":"E YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"CSS Shapes Level 1"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB GC HC","322":"SB TB UB VB WB XB YB ZB vB aB wB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB","194":"BB CB DB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC","33":"E F A MC NC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","33":"E aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"CSS Shapes Level 1"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-snappoints.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-snappoints.js index e1c995c41f3e4f..113a24d5150a03 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 CC","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","6436":"C K L G M N O"},C:{"1":"gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB EC FC","2052":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB"},D:{"1":"hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB","8258":"eB fB gB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC","3108":"F A LC 0B"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB PC QC RC SC qB AC TC rB","8258":"UB VB WB XB YB ZB aB bB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC","3108":"ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2052":"AD"}},B:4,C:"CSS Scroll Snap"}; +module.exports={A:{A:{"2":"J D E F EC","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","6436":"C K L G M N O"},C:{"1":"hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GC HC","2052":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB"},D:{"1":"iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB","8258":"fB gB hB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC","3108":"F A NC 1B"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC TC UC rB CC VC sB","8258":"VB WB XB YB ZB aB bB cB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC","3108":"bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2052":"CD"}},B:4,C:"CSS Scroll Snap"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sticky.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sticky.js index 893d6b53515a6e..eb48caa2402a12 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 CC"},B:{"1":"a b c d e h i j k l m n o p q r s t f H","2":"C K L G","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"2 3 4 5 6 7","516":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},D:{"1":"a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w x y DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","322":"0 1 2 3 4 5 6 7 8 9 z AB BB CB SB TB UB VB","1028":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC","33":"E F A B C KC LC 0B qB rB","2084":"D JC"},F:{"1":"pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB PC QC RC SC qB AC TC rB","322":"FB GB HB","1028":"IB JB KB LB MB 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 lB mB nB oB"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"E YC ZC aC bC cC dC eC fC gC","2084":"WC XC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1028":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"1028":"1B"},R:{"1":"9C"},S:{"516":"AD"}},B:5,C:"CSS position:sticky"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"a b c d e i j k l m n o p q r s t u v f H","2":"C K L G","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"3 4 5 6 7 8","516":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},D:{"1":"a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g y z EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","322":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB TB UB VB WB","1028":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC","33":"E F A B C MC NC 1B rB sB","2084":"D LC"},F:{"1":"qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB RC SC TC UC rB CC VC sB","322":"GB HB IB","1028":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"E aC bC cC dC eC fC gC hC iC","2084":"YC ZC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1028":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"1028":"2B"},R:{"1":"BD"},S:{"1":"DD","516":"CD"}},B:5,C:"CSS position:sticky"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-subgrid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-subgrid.js index 6d1f32e55c1b4c..564abe9e53ce66 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"1":"jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"CSS Subgrid"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"1":"kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"CSS Subgrid"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-supports-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-supports-api.js index 467c35559515f5..803794dac29b91 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G M N O"},C:{"1":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v EC FC","66":"w x","260":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 I u J D E F A B C K L G M N O v w x y z","260":"4 5 6 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 uB ZB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC","132":"rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"132":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC","132":"rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS.supports() API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G M N O"},C:{"1":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x GC HC","66":"g y","260":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 I w J D E F A B C K L G M N O x g y z","260":"5 6 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 vB aB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC","132":"sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"132":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC","132":"sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS.supports() API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-table.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-table.js index 11751b814847c8..4bc297422bcec2 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","132":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS Table display"}; +module.exports={A:{A:{"1":"E F A B","2":"J D EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","132":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS Table display"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-align-last.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-align-last.js index 1c116ad776d516..f7a0fdd093e1ab 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","4":"C K L G M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B EC FC","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB","322":"BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x PC QC RC SC qB AC TC rB","578":"0 1 2 3 4 5 6 7 8 9 y z"},G:{"1":"sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"33":"AD"}},B:4,C:"CSS3 text-align-last"}; +module.exports={A:{A:{"132":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","4":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B GC HC","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB","322":"CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y RC SC TC UC rB CC VC sB","578":"0 1 2 3 4 5 6 7 8 9 z AB"},G:{"1":"tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","33":"CD"}},B:4,C:"CSS3 text-align-last"}; 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 new file mode 100644 index 00000000000000..88ec8c1974e7f0 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","129":"QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC","16":"BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS text-box-trim & text-box-edge"}; 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 8157d0a8c9f120..abd5e8c0e58603 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 CC"},B:{"132":"C K L G M N O","388":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB","388":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"sB 6B 7B 8B 9B OC","132":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},F:{"132":"0 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","388":"1 2 3 4 5 6 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"sB 6B 7B 8B 9B","132":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"132":"oC"},I:{"132":"tB I pC qC rC sC BC tC uC","388":"f"},J:{"132":"D A"},K:{"132":"A B C qB AC rB","388":"g"},L:{"388":"H"},M:{"132":"H"},N:{"132":"A B"},O:{"388":"vC"},P:{"132":"I","388":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"388":"1B"},R:{"388":"9C"},S:{"132":"AD"}},B:4,C:"CSS text-indent"}; +module.exports={A:{A:{"132":"J D E F A B EC"},B:{"132":"C K L G M N O","388":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"tB 7B 8B 9B AC BC QC","132":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},F:{"132":"0 1 F B C G M N O x g y z RC SC TC UC rB CC VC sB","388":"2 3 4 5 6 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"tB 7B 8B 9B AC BC","132":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"132":"qC"},I:{"132":"uB I rC sC tC uC DC vC wC","388":"H"},J:{"132":"D A"},K:{"132":"A B C rB CC sB","388":"h"},L:{"388":"H"},M:{"132":"f"},N:{"132":"A B"},O:{"388":"xC"},P:{"132":"I","388":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"388":"2B"},R:{"388":"BD"},S:{"132":"CD DD"}},B:4,C:"CSS text-indent"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-justify.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-justify.js index ea09ea1a6efe51..34475e2ff13e61 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 CC","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB EC FC","1025":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","1602":"UB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB","322":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","322":"6 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","322":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","322":"g"},L:{"322":"H"},M:{"1025":"H"},N:{"132":"A B"},O:{"322":"vC"},P:{"2":"I","322":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"322":"1B"},R:{"322":"9C"},S:{"2":"AD"}},B:4,C:"CSS text-justify"}; +module.exports={A:{A:{"16":"J D EC","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB GC HC","1025":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","1602":"VB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB","322":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O x g y z RC SC TC UC rB CC VC sB","322":"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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","322":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","322":"h"},L:{"322":"H"},M:{"1025":"f"},N:{"132":"A B"},O:{"322":"xC"},P:{"2":"I","322":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"322":"2B"},R:{"322":"BD"},S:{"2":"CD","1025":"DD"}},B:4,C:"CSS text-justify"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-orientation.js index 0650929355cdf3..c0c070c2dd2f03 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EC FC","194":"EB FB GB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC","16":"A","33":"B C K 0B qB rB 1B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS text-orientation"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB GC HC","194":"FB GB HB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC","16":"A","33":"B C K 1B rB sB 2B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS text-orientation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-spacing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-spacing.js index 9aad9baef68544..6dcfb728e04dbc 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 CC","161":"E F A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"16":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS Text 4 text-spacing"}; +module.exports={A:{A:{"2":"J D EC","161":"E F A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"16":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS Text 4 text-spacing"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-textshadow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-textshadow.js index 0b95da36444f6d..46559cffaeb5f4 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 CC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","260":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"4":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"A","4":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 Text-shadow"}; +module.exports={A:{A:{"2":"J D E F EC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","260":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"4":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"A","4":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"129":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 Text-shadow"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action.js index d16b96e5ec071e..481a9ea38f5840 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 CC","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","1025":"SB TB UB VB WB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y PC QC RC SC qB AC TC rB"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC","516":"aC bC cC dC eC fC gC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","289":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"194":"AD"}},B:2,C:"CSS touch-action property"}; +module.exports={A:{A:{"1":"B","2":"J D E F EC","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","1025":"TB UB VB WB XB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC","516":"cC dC eC fC gC hC iC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","289":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","194":"CD"}},B:2,C:"CSS touch-action property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-transitions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-transitions.js index 1b886c9541eb5d..76292504174258 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","33":"u J D E F A B C K L G","164":"I"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"J IC","164":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F PC QC","33":"C","164":"B RC SC qB AC TC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"WC","164":"zB UC BC VC"},H:{"2":"oC"},I:{"1":"f tC uC","33":"tB I pC qC rC sC BC"},J:{"1":"A","33":"D"},K:{"1":"g rB","33":"C","164":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"CSS3 Transitions"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","33":"w J D E F A B C K L G","164":"I"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"J KC","164":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F RC SC","33":"C","164":"B TC UC rB CC VC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"YC","164":"0B WC DC XC"},H:{"2":"qC"},I:{"1":"H vC wC","33":"uB I rC sC tC uC DC"},J:{"1":"A","33":"D"},K:{"1":"h sB","33":"C","164":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"CSS3 Transitions"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unicode-bidi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unicode-bidi.js index 4b7195be43820f..f9dda4c6eaff0c 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","132":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","33":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","132":"DC tB I u J D E F EC FC","292":"A B C K L G M"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"I u J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"132":"I u J D E HC zB IC JC KC","548":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"132":"E zB UC BC VC WC XC YC","548":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"16":"oC"},I:{"1":"f","16":"tB I pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"1":"g","16":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","16":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"33":"AD"}},B:4,C:"CSS unicode-bidi property"}; +module.exports={A:{A:{"132":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","132":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","33":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","132":"FC uB I w J D E F GC HC","292":"A B C K L G M"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"I w J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"132":"I w J D E JC 0B KC LC MC","548":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"132":"E 0B WC DC XC YC ZC aC","548":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"16":"qC"},I:{"1":"H","16":"uB I rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"1":"h","16":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","16":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","33":"CD"}},B:4,C:"CSS unicode-bidi property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unset-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unset-value.js index f43b0478665dd6..f3b46c948aa980 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS unset value"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS unset value"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-variables.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-variables.js index ef60688702a1e6..e13b94c0b1149c 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L","260":"G"},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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","194":"OB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC","260":"LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB PC QC RC SC qB AC TC rB","194":"BB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC","260":"aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS Variables (Custom Properties)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L","260":"G"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","194":"PB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC","260":"NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB RC SC TC UC rB CC VC sB","194":"CB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC","260":"cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS Variables (Custom Properties)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js index 7c3ce99c10ce72..dbcc30efabb065 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"CSS @when / @else conditional rules"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"CSS @when / @else conditional rules"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-widows-orphans.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-widows-orphans.js index 8a87e3a07fc4f6..ea236130c4bb32 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 CC","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","129":"F B PC QC RC SC qB AC TC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"2":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"CSS widows & orphans"}; +module.exports={A:{A:{"1":"A B","2":"J D EC","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","129":"F B RC SC TC UC rB CC VC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"2":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:2,C:"CSS widows & orphans"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js index 56320f48104047..96945426b2852c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js @@ -1 +1 @@ -module.exports={A:{D:{"2":"I u J D E F A B C K L G M N O v w x","33":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC","33":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},M:{"33":"H"},A:{"2":"J D E F A B CC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},K:{"2":"A B C qB AC rB","33":"g"},E:{"2":"I u J HC zB IC JC OC","33":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B"},G:{"2":"zB UC BC VC WC","33":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},P:{"2":"I","33":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},I:{"2":"tB I pC qC rC sC BC","33":"f tC uC"}},B:6,C:"width: stretch property"}; +module.exports={A:{D:{"2":"I w J D E F A B C K L G M N O x g y","33":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC","33":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},M:{"33":"f"},A:{"2":"J D E F A B EC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},K:{"2":"A B C rB CC sB","33":"h"},E:{"2":"I w J JC 0B KC LC QC","33":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},G:{"2":"0B WC DC XC YC","33":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},P:{"2":"I","33":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},I:{"2":"uB I rC sC tC uC DC","33":"H vC wC"}},B:6,C:"width: stretch property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-writing-mode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-writing-mode.js index 33c9df1dbf26a3..ca46b646e293c7 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB EC FC","322":"CB DB EB FB GB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J","16":"D","33":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","16":"u","33":"J D E F A IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC","33":"E VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"pC qC rC","33":"tB I sC BC tC uC"},J:{"33":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","33":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS writing-mode property"}; +module.exports={A:{A:{"132":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB GC HC","322":"DB EB FB GB HB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J","16":"D","33":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","16":"w","33":"J D E F A KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC","33":"E XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"rC sC tC","33":"uB I uC DC vC wC"},J:{"33":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"36":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","33":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS writing-mode property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-zoom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-zoom.js index 71c39a4db8c03e..f8579deca1e49b 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 CC","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"129":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"CSS zoom"}; +module.exports={A:{A:{"1":"J D EC","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"129":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS zoom"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-attr.js index 7c8a0b97ffb1ee..f2470921abfcd2 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"CSS3 attr() function for all properties"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS3 attr() function for all properties"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js index 09a55427253578..62fc9da9faee97 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","33":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"I u J D E F"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"zB UC BC"},H:{"1":"oC"},I:{"1":"I f sC BC tC uC","33":"tB pC qC rC"},J:{"1":"A","33":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"CSS3 Box-sizing"}; +module.exports={A:{A:{"1":"E F A B","8":"J D EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","33":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"I w J D E F"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"0B WC DC"},H:{"1":"qC"},I:{"1":"I H uC DC vC wC","33":"uB rC sC tC"},J:{"1":"A","33":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"CSS3 Box-sizing"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-colors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-colors.js index 54fec12291e44a..754eb92bad7403 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","4":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","2":"F","4":"PC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS3 Colors"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","4":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","2":"F","4":"RC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS3 Colors"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-grab.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-grab.js index 73917a86de963f..f989b04c070fca 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 CC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","33":"0 1 2 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"I u J D E F A HC zB IC JC KC LC 0B"},F:{"1":"C VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F B PC QC RC SC qB AC","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"33":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"CSS grab & grabbing cursors"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","33":"0 1 2 3 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"I w J D E F A JC 0B KC LC MC NC 1B"},F:{"1":"C WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F B RC SC TC UC rB CC","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"33":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:2,C:"CSS grab & grabbing cursors"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-newer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-newer.js index 18078bce35b285..7a0bb5c1bf3b95 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","33":"DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"I u J D E HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F B PC QC RC SC qB AC","33":"G M N O v w x y z"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"33":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","33":"0 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"I w J D E JC 0B KC LC MC"},F:{"1":"1 2 3 4 5 6 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F B RC SC TC UC rB CC","33":"0 G M N O x g y z"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"33":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors.js index c97320837a19a8..1eeae271ad635b 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","4":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"I"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","4":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","260":"F B C PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","16":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"CSS3 Cursors (original values)"}; +module.exports={A:{A:{"1":"F A B","132":"J D E EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","4":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"I"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","4":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","260":"F B C RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","16":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:2,C:"CSS3 Cursors (original values)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-tabsize.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-tabsize.js index 5c904e1917bd75..c2f06490add240 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","33":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z","164":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w","132":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB"},E:{"1":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC","132":"D E F A B C K JC KC LC 0B qB rB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F PC QC RC","132":"0 1 2 3 4 G M N O v w x y z","164":"B C SC qB AC TC rB"},G:{"1":"kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC","132":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC"},H:{"164":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC","132":"tC uC"},J:{"132":"D A"},K:{"1":"g","2":"A","164":"B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"164":"AD"}},B:4,C:"CSS3 tab-size"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","33":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z","164":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB"},E:{"1":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC","132":"D E F A B C K LC MC NC 1B rB sB"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F RC SC TC","132":"0 1 2 3 4 5 G M N O x g y z","164":"B C UC rB CC VC sB"},G:{"1":"mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC","132":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"164":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC","132":"vC wC"},J:{"132":"D A"},K:{"1":"h","2":"A","164":"B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"164":"CD DD"}},B:4,C:"CSS3 tab-size"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js index 998b6e066f82c0..7169b7c9f228f1 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS currentColor value"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS currentColor value"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elements.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elements.js index 5afab73275325b..eea76ca75efd87 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 CC","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","8":"C K L G M N O"},C:{"2":"DC tB I u J D E F A B C K L G M N O v w x y uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","66":"0 1 2 3 4 5 z","72":"6 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"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P","2":"0 1 2 I u J D E F A B C K L G M N O v w x y z Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","66":"3 4 5 6 7 8"},E:{"2":"I u HC zB IC","8":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"F B C fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","66":"G M N O v"},G:{"2":"zB UC BC VC WC","8":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"uC","2":"tB I f pC qC rC sC BC tC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C","2":"3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"2":"9C"},S:{"72":"AD"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F EC","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","8":"C K L G M N O"},C:{"2":"FC uB I w J D E F A B C K L G M N O x g y z vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","66":"0 1 2 3 4 5 6","72":"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"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P","2":"0 1 2 3 I w J D E F A B C K L G M N O x g y z Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","66":"4 5 6 7 8 9"},E:{"2":"I w JC 0B KC","8":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB 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":"F B C gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","66":"G M N O x"},G:{"2":"0B WC DC XC YC","8":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"wC","2":"uB I H rC sC tC uC DC vC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I yC zC 0C 1C 2C 1B 3C 4C","2":"g 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"2":"BD"},S:{"2":"DD","72":"CD"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elementsv1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elementsv1.js index d05a86973306e9..b1cfcd0479242d 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 CC","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","8":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","8":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","456":"QB RB SB TB UB VB WB XB YB","712":"uB ZB vB aB"},D:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","8":"SB TB","132":"UB VB WB XB YB uB ZB vB aB bB cB dB eB"},E:{"2":"I u J D HC zB IC JC KC","8":"E F A LC","132":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB PC QC RC SC qB AC TC rB","132":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC","132":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","132":"wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"8":"AD"}},B:1,C:"Custom Elements (V1)"}; +module.exports={A:{A:{"2":"J D E F EC","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","8":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 FC uB I w J D E F A B C K L G M N O x g y z GC HC","8":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","456":"RB SB TB UB VB WB XB YB ZB","712":"vB aB wB bB"},D:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","8":"TB UB","132":"VB WB XB YB ZB vB aB wB bB cB dB eB fB"},E:{"2":"I w J D JC 0B KC LC MC","8":"E F A NC","132":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB RC SC TC UC rB CC VC sB","132":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC","132":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","132":"yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","8":"CD"}},B:1,C:"Custom Elements (V1)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/customevent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/customevent.js index e22278e68acf42..5b33e7d34e56be 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 CC","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I","16":"u J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","16":"u J","388":"IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F PC QC RC SC","132":"B qB AC"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"UC","16":"zB BC","388":"VC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"pC qC rC","388":"tB I sC BC"},J:{"1":"A","388":"D"},K:{"1":"C g rB","2":"A","132":"B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"CustomEvent"}; +module.exports={A:{A:{"2":"J D E EC","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I","16":"w J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","16":"w J","388":"KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F RC SC TC UC","132":"B rB CC"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"WC","16":"0B DC","388":"XC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"rC sC tC","388":"uB I uC DC"},J:{"1":"A","388":"D"},K:{"1":"C h sB","2":"A","132":"B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"CustomEvent"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datalist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datalist.js index 4fea0201f11c72..4f27a68dbe9f1c 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":"CC","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G","1284":"M N O"},C:{"1":"H xB yB","8":"DC tB EC FC","516":"n o p q r s t f","4612":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m"},D:{"1":"hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","8":"I u J D E F A B C K L G M N O v","132":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I u J D E F A B C HC zB IC JC KC LC 0B qB"},F:{"1":"F B C cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB 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:{"8":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC","2049":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f uC","8":"tB I pC qC rC sC BC tC"},J:{"1":"A","8":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Datalist element"}; +module.exports={A:{A:{"2":"EC","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G","1284":"M N O"},C:{"1":"f H yB zB","8":"FC uB GC HC","516":"o p q r s t u v","4612":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n"},D:{"1":"iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","8":"I w J D E F A B C K L G M N O x","132":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I w J D E F A B C JC 0B KC LC MC NC 1B rB"},F:{"1":"F B C dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},G:{"8":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC","2049":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H wC","8":"uB I rC sC tC uC DC vC"},J:{"1":"A","8":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:1,C:"Datalist element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dataset.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dataset.js index 69639156e367ee..6c3ac30e477197 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 CC"},B:{"1":"C K L G M","129":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","4":"DC tB I u EC FC","129":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB","4":"I u J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"4":"I u HC zB","129":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"8 9 C AB BB CB DB EB FB GB HB qB AC TC rB","4":"F B PC QC RC SC","129":"0 1 2 3 4 5 6 7 G M N O v w x y z IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"4":"zB UC BC","129":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"4":"oC"},I:{"4":"pC qC rC","129":"tB I f sC BC tC uC"},J:{"129":"D A"},K:{"1":"C qB AC rB","4":"A B","129":"g"},L:{"129":"H"},M:{"129":"H"},N:{"1":"B","4":"A"},O:{"129":"vC"},P:{"129":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"129":"1B"},R:{"129":"9C"},S:{"1":"AD"}},B:1,C:"dataset & data-* attributes"}; +module.exports={A:{A:{"1":"B","4":"J D E F A EC"},B:{"1":"C K L G M","129":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","4":"FC uB I w GC HC","129":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB","4":"I w J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"4":"I w JC 0B","129":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"9 C AB BB CB DB EB FB GB HB IB rB CC VC sB","4":"F B RC SC TC UC","129":"0 1 2 3 4 5 6 7 8 G M N O x g y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"4":"0B WC DC","129":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"4":"qC"},I:{"4":"rC sC tC","129":"uB I H uC DC vC wC"},J:{"129":"D A"},K:{"1":"C rB CC sB","4":"A B","129":"h"},L:{"129":"H"},M:{"129":"f"},N:{"1":"B","4":"A"},O:{"129":"xC"},P:{"129":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"129":"2B"},R:{"129":"BD"},S:{"1":"CD","129":"DD"}},B:1,C:"dataset & data-* attributes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datauri.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datauri.js index 8882c90bba0cc6..7f99a87b945575 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 CC","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Data URIs"}; +module.exports={A:{A:{"2":"J D EC","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"260":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Data URIs"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js index 4cb7699ea344ca..a3ff2a2eaab115 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":"CC","132":"J D E F A B"},B:{"1":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","132":"C K L G M N"},C:{"1":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","132":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","260":"SB TB UB VB","772":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"I u J D E F A B C K L G M N O v w x y z","260":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB","772":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB"},E:{"1":"C K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB","132":"J D E F A IC JC KC LC","260":"B 0B qB"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F B C PC QC RC SC qB AC TC","132":"rB","260":"1 2 3 4 5 6 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","772":"0 G M N O v w x y z"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC","132":"E WC XC YC ZC aC bC"},H:{"132":"oC"},I:{"1":"f","16":"tB pC qC rC","132":"I sC BC","772":"tC uC"},J:{"132":"D A"},K:{"1":"g","16":"A B C qB AC","132":"rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","260":"I wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"132":"AD"}},B:6,C:"Date.prototype.toLocaleDateString"}; +module.exports={A:{A:{"16":"EC","132":"J D E F A B"},B:{"1":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","132":"C K L G M N"},C:{"1":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","132":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC","260":"TB UB VB WB","772":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"0 I w J D E F A B C K L G M N O x g y z","260":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB","772":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB"},E:{"1":"C K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B","132":"J D E F A KC LC MC NC","260":"B 1B rB"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F B C RC SC TC UC rB CC VC","132":"sB","260":"2 3 4 5 6 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","772":"0 1 G M N O x g y z"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC","132":"E YC ZC aC bC cC dC"},H:{"132":"qC"},I:{"1":"H","16":"uB rC sC tC","132":"I uC DC","772":"vC wC"},J:{"132":"D A"},K:{"1":"h","16":"A B C rB CC","132":"sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","260":"I yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","132":"CD"}},B:6,C:"Date.prototype.toLocaleDateString"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js index 0c55d5584afb64..57a504bd623b86 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 CC"},B:{"1":"Z a b c d e h i j k l m n o p q r s t f 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 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T","66":"U V W X Y"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"OC"},F:{"1":"oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"Declarative Shadow DOM"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"Z a b c d e i j k l m n o p q r s t u v f 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 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T","66":"U V W X Y"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B"},F:{"1":"pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB RC SC TC UC rB CC VC sB"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"Declarative Shadow DOM"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js index 37ddf1bcc1e55c..4174ca4daa654d 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Decorators"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Decorators"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/details.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/details.js index 2aad28201422be..a92c890971e963 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 CC","8":"J D E"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC","8":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB EC FC","194":"NB OB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","8":"I u J D E F A B","257":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB","769":"C K L G M N O"},E:{"1":"C K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I u HC zB IC","257":"J D E F A JC KC LC","1025":"B 0B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"C qB AC TC rB","8":"F B PC QC RC SC"},G:{"1":"E WC XC YC ZC aC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"zB UC BC VC","1025":"bC cC dC"},H:{"8":"oC"},I:{"1":"I f sC BC tC uC","8":"tB pC qC rC"},J:{"1":"A","8":"D"},K:{"1":"g","8":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Details & Summary elements"}; +module.exports={A:{A:{"2":"F A B EC","8":"J D E"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC","8":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB GC HC","194":"OB PB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","8":"I w J D E F A B","257":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB","769":"C K L G M N O"},E:{"1":"C K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I w JC 0B KC","257":"J D E F A LC MC NC","1025":"B 1B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"C rB CC VC sB","8":"F B RC SC TC UC"},G:{"1":"E YC ZC aC bC cC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"0B WC DC XC","1025":"dC eC fC"},H:{"8":"qC"},I:{"1":"I H uC DC vC wC","8":"uB rC sC tC"},J:{"1":"A","8":"D"},K:{"1":"h","8":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Details & Summary elements"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/deviceorientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/deviceorientation.js index 4b8703cf91c033..e991c83db316f7 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 CC","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB EC","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"I u FC"},D:{"2":"I u J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","4":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"zB UC","4":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"pC qC rC","4":"tB I f sC BC tC uC"},J:{"2":"D","4":"A"},K:{"1":"C rB","2":"A B qB AC","4":"g"},L:{"4":"H"},M:{"4":"H"},N:{"1":"B","2":"A"},O:{"4":"vC"},P:{"4":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"4":"1B"},R:{"4":"9C"},S:{"4":"AD"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; +module.exports={A:{A:{"2":"J D E F A EC","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC uB GC","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"I w HC"},D:{"2":"I w J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","4":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"0B WC","4":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"rC sC tC","4":"uB I H uC DC vC wC"},J:{"2":"D","4":"A"},K:{"1":"C sB","2":"A B rB CC","4":"h"},L:{"4":"H"},M:{"4":"f"},N:{"1":"B","2":"A"},O:{"4":"xC"},P:{"4":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"4":"2B"},R:{"4":"BD"},S:{"4":"CD DD"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/devicepixelratio.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/devicepixelratio.js index 4ab6942a806ec3..7f5c7756346256 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F B PC QC RC SC qB AC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"C g rB","2":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Window.devicePixelRatio"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F B RC SC TC UC rB CC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"C h sB","2":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Window.devicePixelRatio"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dialog.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dialog.js index 2a7ea2c2b42d56..df32bf23e5094d 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB EC FC","194":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P","1218":"Q R wB S T U V W X Y Z a b c d e h i"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 I u J D E F A B C K L G M N O v w x y z","322":"8 9 AB BB CB"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O PC QC RC SC qB AC TC rB","578":"v w x y z"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Dialog element"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB GC HC","194":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P","1218":"Q R xB S T U V W X Y Z a b c d e i j"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 I w J D E F A B C K L G M N O x g y z","322":"9 AB BB CB DB"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O RC SC TC UC rB CC VC sB","578":"0 x g y z"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:1,C:"Dialog element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dispatchevent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dispatchevent.js index 543bcffecec92e..97da8565938020 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":"CC","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","16":"F"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","129":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"EventTarget.dispatchEvent"}; +module.exports={A:{A:{"1":"B","16":"EC","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","16":"F"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","129":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"EventTarget.dispatchEvent"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dnssec.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dnssec.js index e38cb0deaf9130..b80ee81204a508 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 CC"},B:{"132":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"132":"7 8 9 I u AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","388":"0 1 2 3 4 5 6 J D E F A B C K L G M N O v w x y z"},E:{"132":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"132":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"132":"oC"},I:{"132":"tB I f pC qC rC sC BC tC uC"},J:{"132":"D A"},K:{"132":"A B C g qB AC rB"},L:{"132":"H"},M:{"132":"H"},N:{"132":"A B"},O:{"132":"vC"},P:{"132":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"132":"1B"},R:{"132":"9C"},S:{"132":"AD"}},B:6,C:"DNSSEC and DANE"}; +module.exports={A:{A:{"132":"J D E F A B EC"},B:{"132":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"132":"8 9 I w AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","388":"0 1 2 3 4 5 6 7 J D E F A B C K L G M N O x g y z"},E:{"132":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"132":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"132":"qC"},I:{"132":"uB I H rC sC tC uC DC vC wC"},J:{"132":"D A"},K:{"132":"A B C h rB CC sB"},L:{"132":"H"},M:{"132":"f"},N:{"132":"A B"},O:{"132":"xC"},P:{"132":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"132":"2B"},R:{"132":"BD"},S:{"132":"CD DD"}},B:6,C:"DNSSEC and DANE"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/do-not-track.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/do-not-track.js index efbd75ab86b788..61eef33d2b62b1 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 CC","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G M"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E EC FC","516":"0 1 2 3 4 5 6 7 F A B C K L G M N O v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w x y"},E:{"1":"J A B C IC LC 0B qB","2":"I u K L G HC zB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","1028":"D E F JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC"},G:{"1":"ZC aC bC cC dC eC fC","2":"zB UC BC VC WC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","1028":"E XC YC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"16":"D","1028":"A"},K:{"1":"g rB","16":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"164":"A","260":"B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:7,C:"Do Not Track API"}; +module.exports={A:{A:{"2":"J D E EC","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G M"},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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E GC HC","516":"0 1 2 3 4 5 6 7 8 F A B C K L G M N O x g y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g y z"},E:{"1":"J A B C KC NC 1B rB","2":"I w K L G JC 0B sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","1028":"D E F LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC"},G:{"1":"bC cC dC eC fC gC hC","2":"0B WC DC XC YC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","1028":"E ZC aC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"16":"D","1028":"A"},K:{"1":"h sB","16":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"164":"A","260":"B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:7,C:"Do Not Track API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-currentscript.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-currentscript.js index d2fc95f2c8f44b..4e5815f5489d50 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"E F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G PC QC RC SC qB AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"document.currentScript"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 I w J D E F A B C K L G M N O x g y z"},E:{"1":"E F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G RC SC TC UC rB CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"document.currentScript"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js index 8f29ec23aed025..3f6c9188630a07 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","16":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","16":"F"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:7,C:"document.evaluate & XPath"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","16":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","16":"F"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:7,C:"document.evaluate & XPath"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-execcommand.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-execcommand.js index 710740df3cab54..2eb06fcbece2ad 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","16":"F PC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC","16":"BC VC WC"},H:{"2":"oC"},I:{"1":"f sC BC tC uC","2":"tB I pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:7,C:"Document.execCommand()"}; +module.exports={A:{A:{"1":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","16":"F RC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC","16":"DC XC YC"},H:{"2":"qC"},I:{"1":"H uC DC vC wC","2":"uB I rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:7,C:"Document.execCommand()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-policy.js index c3abb9bd8f4eef..0e6bea1cae639a 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 CC"},B:{"2":"C K L G M N O P Q R S T","132":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T","132":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB PC QC RC SC qB AC TC rB","132":"jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","132":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","132":"g"},L:{"132":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"132":"9C"},S:{"2":"AD"}},B:7,C:"Document Policy"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O P Q R S T","132":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T","132":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB RC SC TC UC rB CC VC sB","132":"kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","132":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","132":"h"},L:{"132":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"132":"BD"},S:{"2":"CD DD"}},B:7,C:"Document Policy"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-scrollingelement.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-scrollingelement.js index 70d695132dd157..559dc60387fbce 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","16":"C K"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB EC FC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"document.scrollingElement"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","16":"C K"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB GC HC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"document.scrollingElement"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/documenthead.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/documenthead.js index 0e1460306fbcce..c98f94b03a1866 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","16":"u"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F PC QC RC SC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"document.head"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","16":"w"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F RC SC TC UC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"document.head"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-manip-convenience.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-manip-convenience.js index 971b1128830ad0..e8629dad658f51 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB EC FC"},D:{"1":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"SB TB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB PC QC RC SC qB AC TC rB","194":"GB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"DOM manipulation convenience methods"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB GC HC"},D:{"1":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB UB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB RC SC TC UC rB CC VC sB","194":"HB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"DOM manipulation convenience methods"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-range.js index 871a9dda7ca2db..ae6c5fb245f94a 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":"CC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Document Object Model Range"}; +module.exports={A:{A:{"1":"F A B","2":"EC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Document Object Model Range"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domcontentloaded.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domcontentloaded.js index 80a69b53f3fa1f..5f4f11bb1bb3d8 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"DOMContentLoaded"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"DOMContentLoaded"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dommatrix.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dommatrix.js index 763960a5a6774f..c36575bade1172 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 CC","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","1028":"hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2564":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","3076":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB"},D:{"16":"I u J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB","388":"E","1028":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"16":"I HC zB","132":"u J D E F A IC JC KC LC 0B","1028":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","1028":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"16":"zB UC BC","132":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"132":"I sC BC tC uC","292":"tB pC qC rC","1028":"f"},J:{"16":"D","132":"A"},K:{"2":"A B C qB AC rB","1028":"g"},L:{"1028":"H"},M:{"1028":"H"},N:{"132":"A B"},O:{"1028":"vC"},P:{"132":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1028":"1B"},R:{"1028":"9C"},S:{"2564":"AD"}},B:4,C:"DOMMatrix"}; +module.exports={A:{A:{"2":"J D E F EC","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z GC HC","1028":"iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2564":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","3076":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB"},D:{"16":"I w J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB","388":"E","1028":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"16":"I JC 0B","132":"w J D E F A KC LC MC NC 1B","1028":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"16":"0B WC DC","132":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"132":"I uC DC vC wC","292":"uB rC sC tC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C rB CC sB","1028":"h"},L:{"1028":"H"},M:{"1028":"f"},N:{"132":"A B"},O:{"1028":"xC"},P:{"132":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1028":"2B"},R:{"1028":"BD"},S:{"1028":"DD","2564":"CD"}},B:4,C:"DOMMatrix"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/download.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/download.js index 4309af0f02ad39..66615e75eefa4a 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Download attribute"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Download attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dragndrop.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dragndrop.js index 76ee66131cf1da..de4aae4afa7f4b 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 CC","772":"A B"},B:{"1":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","8":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","8":"F B PC QC RC SC qB AC TC"},G:{"1":"nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","1025":"f"},J:{"2":"D A"},K:{"1":"rB","8":"A B C qB AC","1025":"g"},L:{"1025":"H"},M:{"2":"H"},N:{"1":"A B"},O:{"1025":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:1,C:"Drag and Drop"}; +module.exports={A:{A:{"644":"J D E F EC","772":"A B"},B:{"1":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","8":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","8":"F B RC SC TC UC rB CC VC"},G:{"1":"pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","1025":"H"},J:{"2":"D A"},K:{"1":"sB","8":"A B C rB CC","1025":"h"},L:{"1025":"H"},M:{"2":"f"},N:{"1":"A B"},O:{"1025":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:1,C:"Drag and Drop"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-closest.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-closest.js index 0aaa55f5a69d82..79e7bd9ba44f95 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 CC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB EC FC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Element.closest()"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB GC HC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Element.closest()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-from-point.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-from-point.js index b1a8ce45c9f6f7..8a4365b8bdc433 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":"CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","16":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","16":"F PC QC RC SC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"C g rB","16":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"document.elementFromPoint()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","16":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","16":"F RC SC TC UC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"C h sB","16":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"document.elementFromPoint()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-scroll-methods.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-scroll-methods.js index 1ed2f86d620901..b648ac83e4ea20 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB EC FC"},D:{"1":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB"},E:{"1":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC","132":"A B C K 0B qB rB 1B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB PC QC RC SC qB AC TC rB"},G:{"1":"mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC","132":"bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB GC HC"},D:{"1":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB"},E:{"1":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC","132":"A B C K 1B rB sB 2B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB RC SC TC UC rB CC VC sB"},G:{"1":"oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC","132":"dC eC fC gC hC iC jC kC lC mC nC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eme.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eme.js index 59c91c8cdcb0af..27c5dfaee8a92e 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 CC","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EC FC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB","132":"BB CB DB EB FB GB HB"},E:{"1":"C K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC","164":"D E F A B KC LC 0B qB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x PC QC RC SC qB AC TC rB","132":"0 1 2 3 4 y z"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Encrypted Media Extensions"}; +module.exports={A:{A:{"2":"J D E F A EC","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB GC HC"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB","132":"CB DB EB FB GB HB IB"},E:{"1":"C K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC","164":"D E F A B MC NC 1B rB"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y RC SC TC UC rB CC VC sB","132":"0 1 2 3 4 5 z"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Encrypted Media Extensions"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eot.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eot.js index f1145346185644..680630869f1a8b 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":"CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"EOT - Embedded OpenType fonts"}; +module.exports={A:{A:{"1":"J D E F A B","2":"EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"EOT - Embedded OpenType fonts"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es5.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es5.js index d452ef9e53cf7a..6dc7b1a56eb301 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 CC","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","4":"DC tB EC FC","132":"I u J D E F A B C K L G M N O v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"I u J D E F A B C K L G M N O","132":"v w x y"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","4":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","4":"F B C PC QC RC SC qB AC TC","132":"rB"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","4":"zB UC BC VC"},H:{"132":"oC"},I:{"1":"f tC uC","4":"tB pC qC rC","132":"sC BC","900":"I"},J:{"1":"A","4":"D"},K:{"1":"g","4":"A B C qB AC","132":"rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"ECMAScript 5"}; +module.exports={A:{A:{"1":"A B","2":"J D EC","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","4":"FC uB GC HC","132":"I w J D E F A B C K L G M N O x g"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"I w J D E F A B C K L G M N O","132":"x g y z"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","4":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","4":"F B C RC SC TC UC rB CC VC","132":"sB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","4":"0B WC DC XC"},H:{"132":"qC"},I:{"1":"H vC wC","4":"uB rC sC tC","132":"uC DC","900":"I"},J:{"1":"A","4":"D"},K:{"1":"h","4":"A B C rB CC","132":"sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"ECMAScript 5"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-class.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-class.js index 668bbb575ccb5f..6e1c4ff21aef09 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB","132":"IB JB KB LB MB NB OB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","132":"5 6 7 8 9 AB BB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"ES6 classes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB","132":"JB KB LB MB NB OB PB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 F B C G M N O x g y z RC SC TC UC rB CC VC sB","132":"6 7 8 9 AB BB CB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"ES6 classes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-generators.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-generators.js index c8c207f6f322f7..99037dbd02eb80 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"ES6 Generators"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"ES6 Generators"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js index 324dcc627ebed9..6dd3a234022325 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB EC FC","194":"eB"},D:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"JavaScript modules: dynamic import()"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB GC HC","194":"fB"},D:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"JavaScript modules: dynamic import()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module.js index d3d91a5a889585..013bf709acc8da 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB EC FC","322":"UB VB WB XB YB uB"},D:{"1":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB","194":"ZB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC","3076":"0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB PC QC RC SC qB AC TC rB","194":"NB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC","3076":"cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"JavaScript modules via script tag"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB GC HC","322":"VB WB XB YB ZB vB"},D:{"1":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB","194":"aB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC","3076":"1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB RC SC TC UC rB CC VC sB","194":"OB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC","3076":"eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"JavaScript modules via script tag"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-number.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-number.js index eb6a57000751da..af3d9c80b23fe5 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G EC FC","132":"0 M N O v w x y z","260":"1 2 3 4 5 6","516":"7"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O","1028":"0 1 2 3 4 5 6 7 8 9 v w x y z"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","1028":"G M N O v w"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC","1028":"sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"ES6 Number"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G GC HC","132":"0 1 M N O x g y z","260":"2 3 4 5 6 7","516":"8"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O","1028":"0 1 2 3 4 5 6 7 8 9 x g y z AB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","1028":"G M N O x g"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC","1028":"uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"ES6 Number"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-string-includes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-string-includes.js index de770334a97a66..6e3fc3fe1b6021 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB EC FC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"String.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB GC HC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"String.prototype.includes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6.js index f7ae9225036508..14491df81bc421 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 CC","388":"B"},B:{"257":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L","769":"G M N O"},C:{"2":"DC tB I u EC FC","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","257":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"I u J D E F A B C K L G M N O v w","4":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","257":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC","4":"E F KC LC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","4":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB","257":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC","4":"E XC YC ZC aC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","4":"tC uC","257":"f"},J:{"2":"D","4":"A"},K:{"2":"A B C qB AC rB","257":"g"},L:{"257":"H"},M:{"257":"H"},N:{"2":"A","388":"B"},O:{"257":"vC"},P:{"4":"I","257":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"257":"1B"},R:{"257":"9C"},S:{"4":"AD"}},B:6,C:"ECMAScript 2015 (ES6)"}; +module.exports={A:{A:{"2":"J D E F A EC","388":"B"},B:{"257":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L","769":"G M N O"},C:{"2":"FC uB I w GC HC","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","257":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"I w J D E F A B C K L G M N O x g","4":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","257":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC","4":"E F MC NC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","4":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB","257":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC","4":"E ZC aC bC cC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","4":"vC wC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C rB CC sB","257":"h"},L:{"257":"H"},M:{"257":"f"},N:{"2":"A","388":"B"},O:{"257":"xC"},P:{"4":"I","257":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"257":"2B"},R:{"257":"BD"},S:{"4":"CD","257":"DD"}},B:6,C:"ECMAScript 2015 (ES6)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eventsource.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eventsource.js index e3d26d94caed21..c89d30b40b58cc 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC"},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 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","4":"F PC QC RC SC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"D A"},K:{"1":"C g qB AC rB","4":"A B"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Server-sent events"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC"},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 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","4":"F RC SC TC UC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"D A"},K:{"1":"C h rB CC sB","4":"A B"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Server-sent events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/extended-system-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/extended-system-fonts.js index a57187c5391788..e751f995dd22d7 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/feature-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/feature-policy.js index 71f1bf437fe200..b962e74fe898cc 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 CC"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g EC FC","260":"lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"lB mB nB oB pB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB","132":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g","1025":"X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B HC zB IC JC KC LC 0B","772":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB PC QC RC SC qB AC TC rB","132":"NB OB PB QB RB SB TB UB VB WB XB YB ZB","1025":"mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC","772":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","1025":"g"},L:{"1025":"H"},M:{"260":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC","132":"zC 0C 0B"},Q:{"132":"1B"},R:{"1025":"9C"},S:{"2":"AD"}},B:7,C:"Feature Policy"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h GC HC","260":"mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"mB nB oB pB qB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB","132":"aB wB bB cB dB eB fB gB hB iB jB kB lB h","1025":"X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B JC 0B KC LC MC NC 1B","772":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB RC SC TC UC rB CC VC sB","132":"OB PB QB RB SB TB UB VB WB XB YB ZB aB","1025":"nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC","772":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","1025":"h"},L:{"1025":"H"},M:{"260":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C","132":"1C 2C 1B"},Q:{"132":"2B"},R:{"1025":"BD"},S:{"2":"CD","260":"DD"}},B:7,C:"Feature Policy"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fetch.js index 7219bbd51c096d..f63d3fd1e00513 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","1025":"FB","1218":"AB BB CB DB EB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB","260":"GB","772":"HB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","260":"3","772":"4"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Fetch"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB GC HC","1025":"GB","1218":"BB CB DB EB FB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB","260":"HB","772":"IB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 F B C G M N O x g y z RC SC TC UC rB CC VC sB","260":"4","772":"5"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Fetch"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fieldset-disabled.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fieldset-disabled.js index 7227b4f47b3560..80c8da1e794c35 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":"CC","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G","16":"M N O v"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","16":"F PC"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC"},H:{"388":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A","260":"B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"disabled attribute of the fieldset element"}; +module.exports={A:{A:{"16":"EC","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G","16":"M N O x"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","16":"F RC"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC"},H:{"388":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A","260":"B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"disabled attribute of the fieldset element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fileapi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fileapi.js index 7ca2d9fd37605b..af49addb9e562f 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 CC","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC","260":"0 1 2 3 I u J D E F A B C K L G M N O v w x y z FC"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u","260":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB","388":"J D E F A B C"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB","260":"J D E F JC KC LC","388":"IC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B PC QC RC SC","260":"0 C G M N O v w x y z qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","260":"E WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f uC","2":"pC qC rC","260":"tC","388":"tB I sC BC"},J:{"260":"A","388":"D"},K:{"1":"g","2":"A B","260":"C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A","260":"B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"File API"}; +module.exports={A:{A:{"2":"J D E F EC","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC","260":"0 1 2 3 4 I w J D E F A B C K L G M N O x g y z HC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w","260":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB","388":"J D E F A B C"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B","260":"J D E F LC MC NC","388":"KC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B RC SC TC UC","260":"0 1 C G M N O x g y z rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","260":"E YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H wC","2":"rC sC tC","260":"vC","388":"uB I uC DC"},J:{"260":"A","388":"D"},K:{"1":"h","2":"A B","260":"C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A","260":"B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"File API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereader.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereader.js index fd48a9dd404921..ae94fd0d0514a5 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 CC","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","2":"DC tB EC"},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 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F B PC QC RC SC"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"C g qB AC rB","2":"A B"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"FileReader API"}; +module.exports={A:{A:{"2":"J D E F EC","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","2":"FC uB GC"},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 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F B RC SC TC UC"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"C h rB CC sB","2":"A B"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"FileReader API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereadersync.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereadersync.js index c313a867d2153b..cfaf706c185685 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F PC QC","16":"B RC SC qB AC"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"C g AC rB","2":"A","16":"B qB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"FileReaderSync"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F RC SC","16":"B TC UC rB CC"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"C h CC sB","2":"A","16":"B rB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"FileReaderSync"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filesystem.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filesystem.js index 88777629a20d90..d8cf272da135c7 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 CC"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"I u J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","36":"E F A B C"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D","33":"A"},K:{"2":"A B C qB AC rB","33":"g"},L:{"33":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"33":"vC"},P:{"2":"I","33":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"33":"9C"},S:{"2":"AD"}},B:7,C:"Filesystem & FileWriter API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"I w J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","36":"E F A B C"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D","33":"A"},K:{"2":"A B C rB CC sB","33":"h"},L:{"33":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"33":"xC"},P:{"2":"I","33":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"33":"BD"},S:{"2":"CD DD"}},B:7,C:"Filesystem & FileWriter API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flac.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flac.js index 06b1c2a62f78af..995a1c7c1159d4 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB EC FC"},D:{"1":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB","16":"KB LB MB","388":"NB OB PB QB RB SB TB UB VB"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","516":"B C qB rB"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"pC qC rC","16":"tB I sC BC tC uC"},J:{"1":"A","2":"D"},K:{"1":"g rB","16":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","129":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"FLAC audio format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB GC HC"},D:{"1":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB","16":"LB MB NB","388":"OB PB QB RB SB TB UB VB WB"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","516":"B C rB sB"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"rC sC tC","16":"uB I uC DC vC wC"},J:{"1":"A","2":"D"},K:{"1":"h sB","16":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","129":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"FLAC audio format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox-gap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox-gap.js index dfb8947cfae266..0009928f4d0eaf 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 CC"},B:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O P Q R S"},C:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB EC FC"},D:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S"},E:{"1":"G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B"},F:{"1":"iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB PC QC RC SC qB AC TC rB"},G:{"1":"mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"gap property for Flexbox"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O P Q R S"},C:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB GC HC"},D:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S"},E:{"1":"G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B"},F:{"1":"jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB RC SC TC UC rB CC VC sB"},G:{"1":"oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"gap property for Flexbox"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox.js index 2dbbc0c1862d7e..ec1638c5175d21 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 CC","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","164":"DC tB I u J D E F A B C K L G M N O v w x EC FC","516":"0 1 2 3 y z"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 2 3 4 x y z","164":"I u J D E F A B C K L G M N O v w"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"D E JC KC","164":"I u J HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B C PC QC RC SC qB AC TC","33":"G M"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"E XC YC","164":"zB UC BC VC WC"},H:{"1":"oC"},I:{"1":"f tC uC","164":"tB I pC qC rC sC BC"},J:{"1":"A","164":"D"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","292":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS Flexible Box Layout Module"}; +module.exports={A:{A:{"2":"J D E F EC","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","164":"FC uB I w J D E F A B C K L G M N O x g y GC HC","516":"0 1 2 3 4 z"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 3 4 5 y z","164":"I w J D E F A B C K L G M N O x g"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"D E LC MC","164":"I w J JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B C RC SC TC UC rB CC VC","33":"G M"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"E ZC aC","164":"0B WC DC XC YC"},H:{"1":"qC"},I:{"1":"H vC wC","164":"uB I rC sC tC uC DC"},J:{"1":"A","164":"D"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","292":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS Flexible Box Layout Module"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flow-root.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flow-root.js index 9420101932873a..d4c05138f5738e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB EC FC"},D:{"1":"YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB rB"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB PC QC RC SC qB AC TC rB"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"display: flow-root"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB GC HC"},D:{"1":"ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB 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":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB sB"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB RC SC TC UC rB CC VC sB"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"display: flow-root"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusin-focusout-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusin-focusout-events.js index 6ca75d7e83923d..7846b94e63b3cc 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":"CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F PC QC RC SC","16":"B qB AC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"I f sC BC tC uC","2":"pC qC rC","16":"tB"},J:{"1":"D A"},K:{"1":"C g rB","2":"A","16":"B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"focusin & focusout events"}; +module.exports={A:{A:{"1":"J D E F A B","2":"EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F RC SC TC UC","16":"B rB CC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"I H uC DC vC wC","2":"rC sC tC","16":"uB"},J:{"1":"D A"},K:{"1":"C h sB","2":"A","16":"B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"focusin & focusout events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-family-system-ui.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-family-system-ui.js index d1de1a45db6254..efb601d470d70e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB EC FC","132":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a"},D:{"1":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","260":"TB UB VB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC","16":"F","132":"A LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC","132":"ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"132":"AD"}},B:5,C:"system-ui value for font-family"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB GC HC","132":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a"},D:{"1":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","260":"UB VB WB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC","16":"F","132":"A NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC","132":"bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"132":"CD DD"}},B:5,C:"system-ui value for font-family"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-feature.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-feature.js index 83a14f5c7cc6f0..677cb68151a31d 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z","164":"I u J D E F A B C K L"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","292":"M N O v w"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"D E F HC zB JC KC","4":"I u J IC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E XC YC ZC","4":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC","33":"tC uC"},J:{"2":"D","33":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","33":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS font-feature-settings"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB","164":"I w J D E F A B C K L"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","292":"M N O x g"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"D E F JC 0B LC MC","4":"I w J KC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E ZC aC bC","4":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC","33":"vC wC"},J:{"2":"D","33":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","33":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS font-feature-settings"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-kerning.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-kerning.js index 234d221f861dd2..4f963f96205f6e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"0 1 2 3 4 5 6 7 8 9"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 I u J D E F A B C K L G M N O v w x y z","33":"5 6 7 8"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC","33":"D E F KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G PC QC RC SC qB AC TC rB","33":"M N O v"},G:{"1":"fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","33":"E YC ZC aC bC cC dC eC"},H:{"2":"oC"},I:{"1":"f uC","2":"tB I pC qC rC sC BC","33":"tC"},J:{"2":"D","33":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 font-kerning"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"1 2 3 4 5 6 7 8 9 AB"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 I w J D E F A B C K L G M N O x g y z","33":"6 7 8 9"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC","33":"D E F MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G RC SC TC UC rB CC VC sB","33":"M N O x"},G:{"1":"hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","33":"E aC bC cC dC eC fC gC"},H:{"2":"qC"},I:{"1":"H wC","2":"uB I rC sC tC uC DC","33":"vC"},J:{"2":"D","33":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 font-kerning"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-loading.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-loading.js index 439904841884c8..a6af78d9fa16a1 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB EC FC","194":"BB CB DB EB FB GB"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"CSS Font Loading"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB GC HC","194":"CB DB EB FB GB HB"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"CSS Font Loading"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-size-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-size-adjust.js index ee8afb38a15416..bead738d7738ea 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 CC"},B:{"2":"C K L G M N O","194":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB","194":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B"},F:{"2":"0 1 2 3 4 5 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","194":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"194":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:2,C:"CSS font-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","194":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB","194":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O x g y z RC SC TC UC rB CC VC sB","194":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"194":"2B"},R:{"2":"BD"},S:{"1":"DD","2":"CD"}},B:2,C:"CSS font-size-adjust"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-smooth.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-smooth.js index 43696f8f4aafa7..b29f44923a975d 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 CC"},B:{"2":"C K L G M N O","676":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","804":"1 2 3 4 5 6 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"HC zB","676":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","676":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"804":"AD"}},B:7,C:"CSS font-smooth"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","676":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 FC uB I w J D E F A B C K L G M N O x g y z GC HC","804":"2 3 4 5 6 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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"JC 0B","676":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","676":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"804":"CD DD"}},B:7,C:"CSS font-smooth"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-unicode-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-unicode-range.js index 6a312170b6cbfe..458dc54d1a4f72 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 CC","4":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","4":"C K L G M"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB EC FC","194":"CB DB EB FB GB HB IB JB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","4":"I u J D E F HC zB IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","4":"G M N O v w x y"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","4":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","4":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","4":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","4":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Font unicode-range subsetting"}; +module.exports={A:{A:{"2":"J D E EC","4":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","4":"C K L G M"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB GC HC","194":"DB EB FB GB HB IB JB KB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","4":"I w J D E F JC 0B KC LC MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","4":"G M N O x g y z"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","4":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","4":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","4":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"4":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","4":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Font unicode-range subsetting"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-alternates.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-alternates.js index f263d71ce12452..623829d1a8c483 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 CC","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","130":"I u J D E F A B C K L G M N O v w x y z","322":"0 1 2 3 4 5 6 7 8 9"},D:{"1":"xB yB GC","2":"I u J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"D E F HC zB JC KC","130":"I u J IC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","130":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB XC YC ZC","130":"UC BC VC WC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","130":"f tC uC"},J:{"2":"D","130":"A"},K:{"2":"A B C qB AC rB","130":"g"},L:{"130":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"130":"vC"},P:{"130":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"130":"1B"},R:{"130":"9C"},S:{"1":"AD"}},B:5,C:"CSS font-variant-alternates"}; +module.exports={A:{A:{"2":"J D E F EC","130":"A B"},B:{"1":"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 i j k l m n o p q r s t u v f"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","130":"0 I w J D E F A B C K L G M N O x g y z","322":"1 2 3 4 5 6 7 8 9 AB"},D:{"1":"H yB zB IC","2":"I w J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"D E F JC 0B LC MC","130":"I w J KC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","130":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B ZC aC bC","130":"WC DC XC YC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC","130":"vC wC"},J:{"2":"D","130":"A"},K:{"2":"A B C rB CC sB","130":"h"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"130":"xC"},P:{"130":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"130":"2B"},R:{"130":"BD"},S:{"1":"CD DD"}},B:5,C:"CSS font-variant-alternates"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js index d0404aad22b7b0..162b3e87c625d1 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB PC QC RC SC qB AC TC rB"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","16":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS font-variant-numeric"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB GC HC"},D:{"1":"TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB RC SC TC UC rB CC VC sB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","16":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS font-variant-numeric"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fontface.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fontface.js index 4f0700610606b4..e9f146f77a7fcb 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","2":"F PC"},G:{"1":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","260":"zB UC"},H:{"2":"oC"},I:{"1":"I f sC BC tC uC","2":"pC","4":"tB qC rC"},J:{"1":"A","4":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"@font-face Web fonts"}; +module.exports={A:{A:{"1":"F A B","132":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","2":"F RC"},G:{"1":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","260":"0B WC"},H:{"2":"qC"},I:{"1":"I H uC DC vC wC","2":"rC","4":"uB sC tC"},J:{"1":"A","4":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"@font-face Web fonts"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-attribute.js index e5f813b5b63508..1ba406e20ec6ac 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","16":"u"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"1":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Form attribute"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","16":"w"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"1":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Form attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-submit-attributes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-submit-attributes.js index adb81b862b9fc1..367e3c6dc5d1c0 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","2":"F PC","16":"QC RC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"1":"oC"},I:{"1":"I f sC BC tC uC","2":"pC qC rC","16":"tB"},J:{"1":"A","2":"D"},K:{"1":"B C g qB AC rB","16":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Attributes for form submission"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","2":"F RC","16":"SC TC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"1":"qC"},I:{"1":"I H uC DC vC wC","2":"rC sC tC","16":"uB"},J:{"1":"A","2":"D"},K:{"1":"B C h rB CC sB","16":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Attributes for form submission"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-validation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-validation.js index df988c32c68678..d889efad558599 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","132":"u J D E F A IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","2":"F PC"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB","132":"E UC BC VC WC XC YC ZC aC bC"},H:{"516":"oC"},I:{"1":"f uC","2":"tB pC qC rC","132":"I sC BC tC"},J:{"1":"A","132":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"132":"AD"}},B:1,C:"Form validation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","132":"w J D E F A KC LC MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","2":"F RC"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B","132":"E WC DC XC YC ZC aC bC cC dC"},H:{"516":"qC"},I:{"1":"H wC","2":"uB rC sC tC","132":"I uC DC vC"},J:{"1":"A","132":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"260":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","132":"CD"}},B:1,C:"Form validation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/forms.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/forms.js index 354dd9f9eb72a7..0592af2b866117 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":"CC","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"DC tB EC FC"},D:{"1":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB"},E:{"4":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"HC zB"},F:{"1":"F B C SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","4":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},G:{"2":"zB","4":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC","4":"tC uC"},J:{"2":"D","4":"A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"4":"H"},N:{"4":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","4":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"4":"AD"}},B:1,C:"HTML5 form features"}; +module.exports={A:{A:{"2":"EC","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"FC uB GC HC"},D:{"1":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB"},E:{"4":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"JC 0B"},F:{"1":"F B C TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","4":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"2":"0B","4":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC","4":"vC wC"},J:{"2":"D","4":"A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"4":"f"},N:{"4":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","4":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"4":"CD DD"}},B:1,C:"HTML5 form features"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fullscreen.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fullscreen.js index fe53c5380632ca..7f1d7619960649 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 CC","548":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","516":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F EC FC","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","1700":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB"},D:{"1":"jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L","676":"G M N O v","804":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB"},E:{"1":"9B OC","2":"I u HC zB","548":"3B 4B 5B sB 6B 7B 8B","676":"IC","804":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B C PC QC RC SC qB AC TC","804":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB 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 zB UC BC VC WC XC YC ZC aC bC cC dC eC","2052":"fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D","292":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A","548":"B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","804":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Full Screen API"}; +module.exports={A:{A:{"2":"J D E F A EC","548":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","516":"C K L G M N O"},C:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F GC HC","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","1700":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB"},D:{"1":"kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L","676":"G M N O x","804":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB"},E:{"1":"AC BC QC","2":"I w JC 0B","548":"4B 5B 6B tB 7B 8B 9B","676":"KC","804":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B C RC SC TC UC rB CC VC","804":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC","2052":"hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D","292":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A","548":"B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","804":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Full Screen API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gamepad.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gamepad.js index 64fd91a93eabda..674ad7bbddf023 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w","33":"0 x y z"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Gamepad API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g","33":"0 1 y z"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"Gamepad API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/geolocation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/geolocation.js index 3fba5c5e951a06..b7f26a9bd94dc1 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":"CC","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB EC FC","8":"DC tB","129":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","4":"I","129":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I HC zB","129":"A"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C M N O v w x y z AB BB CB DB EB SC qB AC TC rB","2":"F G PC","8":"QC RC","129":"FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"E zB UC BC VC WC XC YC ZC aC","129":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I pC qC rC sC BC tC uC","129":"f"},J:{"1":"D A"},K:{"1":"B C qB AC rB","8":"A","129":"g"},L:{"129":"H"},M:{"129":"H"},N:{"1":"A B"},O:{"129":"vC"},P:{"1":"I","129":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"129":"1B"},R:{"129":"9C"},S:{"1":"AD"}},B:2,C:"Geolocation"}; +module.exports={A:{A:{"1":"F A B","2":"EC","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB GC HC","8":"FC uB","129":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","4":"I","129":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I JC 0B","129":"A"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C M N O x g y z AB BB CB DB EB FB UC rB CC VC sB","2":"F G RC","8":"SC TC","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 eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC","129":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I rC sC tC uC DC vC wC","129":"H"},J:{"1":"D A"},K:{"1":"B C rB CC sB","8":"A","129":"h"},L:{"129":"H"},M:{"129":"f"},N:{"1":"A B"},O:{"129":"xC"},P:{"1":"I","129":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"129":"2B"},R:{"129":"BD"},S:{"1":"CD","129":"DD"}},B:2,C:"Geolocation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getboundingclientrect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getboundingclientrect.js index 36fcaecf858d5c..88f3a4d717018c 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 CC","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2049":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC","260":"I u J D E F A B","1156":"tB","1284":"EC","1796":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","16":"F PC","132":"QC RC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","132":"A"},L:{"1":"H"},M:{"1":"H"},N:{"2049":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Element.getBoundingClientRect()"}; +module.exports={A:{A:{"644":"J D EC","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2049":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC","260":"I w J D E F A B","1156":"uB","1284":"GC","1796":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","16":"F RC","132":"SC TC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","132":"A"},L:{"1":"H"},M:{"1":"f"},N:{"2049":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Element.getBoundingClientRect()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getcomputedstyle.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getcomputedstyle.js index da954877ae12dd..907167240e4282 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC","132":"tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","260":"I u J D E F A"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","260":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","260":"F PC QC RC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","260":"zB UC BC"},H:{"260":"oC"},I:{"1":"I f sC BC tC uC","260":"tB pC qC rC"},J:{"1":"A","260":"D"},K:{"1":"B C g qB AC rB","260":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"getComputedStyle"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC","132":"uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","260":"I w J D E F A"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","260":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","260":"F RC SC TC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","260":"0B WC DC"},H:{"260":"qC"},I:{"1":"I H uC DC vC wC","260":"uB rC sC tC"},J:{"1":"A","260":"D"},K:{"1":"B C h rB CC sB","260":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"getComputedStyle"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getelementsbyclassname.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getelementsbyclassname.js index c577d4eeba84aa..2b4314f71ae445 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":"CC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","8":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"getElementsByClassName"}; +module.exports={A:{A:{"1":"F A B","2":"EC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","8":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"getElementsByClassName"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getrandomvalues.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getrandomvalues.js index f5b5d67e58d250..5526cf07e656ea 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 CC","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A","33":"B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"crypto.getRandomValues()"}; +module.exports={A:{A:{"2":"J D E F A EC","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A","33":"B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"crypto.getRandomValues()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gyroscope.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gyroscope.js index 97d388cd210c40..23b27a2702c4a4 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB aB bB cB dB eB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"Gyroscope"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB 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 vB aB wB bB cB dB eB fB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:4,C:"Gyroscope"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hardwareconcurrency.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hardwareconcurrency.js index c302ae1bc17131..c463d93cbd6f23 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 CC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB EC FC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB"},E:{"2":"I u J D HC zB IC JC KC","129":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","194":"E F A LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"2":"zB UC BC VC WC XC","129":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","194":"E YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"navigator.hardwareConcurrency"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB GC HC"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB"},E:{"2":"I w J D JC 0B KC LC MC","129":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","194":"E F A NC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"2":"0B WC DC XC YC ZC","129":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","194":"E aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"navigator.hardwareConcurrency"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hashchange.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hashchange.js index 50c5fcac40d6eb..cb0318a562daba 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","8":"DC tB EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","8":"I"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","8":"F PC QC RC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB"},H:{"2":"oC"},I:{"1":"tB I f qC rC sC BC tC uC","2":"pC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","8":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Hashchange event"}; +module.exports={A:{A:{"1":"E F A B","8":"J D EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","8":"FC uB GC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","8":"I"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","8":"F RC SC TC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B"},H:{"2":"qC"},I:{"1":"uB I H sC tC uC DC vC wC","2":"rC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","8":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Hashchange event"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/heif.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/heif.js index 33a28e6b7a2d99..b9b47db09fb8db 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A HC zB IC JC KC LC 0B","130":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC","130":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"HEIF/ISO Base Media File Format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A JC 0B KC LC MC NC 1B","130":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC","130":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"HEIF/ISO Base Media File Format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hevc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hevc.js index 21fcba86f1c71a..7b5d8e1a921ed5 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 CC","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r","2052":"s t f H xB yB GC"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","516":"B C qB rB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c PC QC RC SC qB AC TC rB","2052":"d e"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","2052":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","258":"g"},L:{"2052":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I","258":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"HEVC/H.265 video format"}; +module.exports={A:{A:{"2":"J D E F A EC","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s","2052":"t u v f H yB zB IC"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","516":"B C rB sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c RC SC TC UC rB CC VC sB","2052":"d e"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","2052":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","258":"h"},L:{"2052":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I","258":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:6,C:"HEVC/H.265 video format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hidden.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hidden.js index ab07c79ce75400..09e7b268bf5565 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},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 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F B PC QC RC SC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"1":"oC"},I:{"1":"I f sC BC tC uC","2":"tB pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"C g qB AC rB","2":"A B"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"hidden attribute"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},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 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F B RC SC TC UC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"1":"qC"},I:{"1":"I H uC DC vC wC","2":"uB rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"C h rB CC sB","2":"A B"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"hidden attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/high-resolution-time.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/high-resolution-time.js index 6ca1232129c62a..15ac11e8ccdfc4 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v","33":"w x y z"},E:{"1":"E F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"High Resolution Time API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x","33":"0 g y z"},E:{"1":"E F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"High Resolution Time API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/history.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/history.js index 8d98c358703c0d..87ebcb74991942 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","4":"u IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e AC TC rB","2":"F B PC QC RC SC qB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC","4":"BC"},H:{"2":"oC"},I:{"1":"f qC rC BC tC uC","2":"tB I pC sC"},J:{"1":"D A"},K:{"1":"C g qB AC rB","2":"A B"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Session history management"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","4":"w KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e CC VC sB","2":"F B RC SC TC UC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC","4":"DC"},H:{"2":"qC"},I:{"1":"H sC tC DC vC wC","2":"uB I rC uC"},J:{"1":"D A"},K:{"1":"C h rB CC sB","2":"A B"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Session history management"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html-media-capture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html-media-capture.js index 68124acdd7f4d7..d0c0f0ca242c2f 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"zB UC BC VC","129":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC","257":"qC rC"},J:{"1":"A","16":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"516":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"16":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"HTML Media Capture"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"0B WC DC XC","129":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC","257":"sC tC"},J:{"1":"A","16":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"516":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"16":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:2,C:"HTML Media Capture"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html5semantic.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html5semantic.js index 59a55989e667fd..f68972da120832 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":"CC","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC","132":"tB EC FC","260":"I u J D E F A B C K L G M N O v w"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"I u","260":"0 1 J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","132":"I HC zB","260":"u J IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","132":"F B PC QC RC SC","260":"C qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","132":"zB","260":"UC BC VC WC"},H:{"132":"oC"},I:{"1":"f tC uC","132":"pC","260":"tB I qC rC sC BC"},J:{"260":"D A"},K:{"1":"g","132":"A","260":"B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"HTML5 semantic elements"}; +module.exports={A:{A:{"2":"EC","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC","132":"uB GC HC","260":"I w J D E F A B C K L G M N O x g"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"I w","260":"0 1 2 J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","132":"I JC 0B","260":"w J KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","132":"F B RC SC TC UC","260":"C rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","132":"0B","260":"WC DC XC YC"},H:{"132":"qC"},I:{"1":"H vC wC","132":"rC","260":"uB I sC tC uC DC"},J:{"260":"D A"},K:{"1":"h","132":"A","260":"B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"260":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"HTML5 semantic elements"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http-live-streaming.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http-live-streaming.js index 5f94883c3cfd37..032ef9c6bcd37a 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 CC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"HTTP Live Streaming (HLS)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"HTTP Live Streaming (HLS)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http2.js index 634eb83b999527..9ec55fcc630b07 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 CC","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB EC FC","513":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB","513":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC","260":"F A LC 0B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB","2":"0 1 2 3 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","513":"EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","513":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","513":"g"},L:{"513":"H"},M:{"513":"H"},N:{"2":"A B"},O:{"513":"vC"},P:{"1":"I","513":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"513":"1B"},R:{"513":"9C"},S:{"1":"AD"}},B:6,C:"HTTP/2 protocol"}; +module.exports={A:{A:{"2":"J D E F A EC","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB GC HC","513":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB","513":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC","260":"F A NC 1B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB","2":"0 1 2 3 4 F B C G M N O x g y z RC SC TC UC rB CC VC sB","513":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","513":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","513":"h"},L:{"513":"H"},M:{"513":"f"},N:{"2":"A B"},O:{"513":"xC"},P:{"1":"I","513":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"513":"2B"},R:{"513":"BD"},S:{"1":"CD","513":"DD"}},B:6,C:"HTTP/2 protocol"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http3.js index baf8d035b46e6a..0d0d31b7eed3e1 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 CC"},B:{"1":"W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB EC FC","194":"kB g lB mB nB oB pB P Q R wB S T U V W"},D:{"1":"W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB","322":"P Q R S T","578":"U V"},E:{"2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB 1B","1090":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB PC QC RC SC qB AC TC rB","578":"g"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC","66":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"HTTP/3 protocol"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB GC HC","194":"lB h mB nB oB pB qB P Q R xB S T U V W"},D:{"1":"W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB","322":"P Q R S T","578":"U V"},E:{"2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB 2B","1090":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB RC SC TC UC rB CC VC sB","578":"h"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC","66":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:6,C:"HTTP/3 protocol"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-sandbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-sandbox.js index 6ec1fa8d89c25b..40292abf074966 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M EC FC","4":"0 1 2 3 N O v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC"},H:{"2":"oC"},I:{"1":"tB I f qC rC sC BC tC uC","2":"pC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"sandbox attribute for iframes"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M GC HC","4":"0 1 2 3 4 N O x g y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC"},H:{"2":"qC"},I:{"1":"uB I H sC tC uC DC vC wC","2":"rC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"sandbox attribute for iframes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-seamless.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-seamless.js index b4d1003523d5f6..fcf860c4832a4a 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","66":"0 1 2 w x y z"},E:{"2":"I u J E F A B C K L G HC zB IC JC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","130":"D KC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","130":"XC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"seamless attribute for iframes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"4 5 6 7 8 9 I w J D E F A B C K L G M N O x AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","66":"0 1 2 3 g y z"},E:{"2":"I w J E F A B C K L G JC 0B KC LC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","130":"D MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","130":"ZC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"seamless attribute for iframes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-srcdoc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-srcdoc.js index fb7dc24572a786..d4e0b75ee43e03 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":"CC","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","8":"C K L G M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC","8":"0 tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K","8":"L G M N O v"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB","8":"I u IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B PC QC RC SC","8":"C qB AC TC rB"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB","8":"UC BC VC"},H:{"2":"oC"},I:{"1":"f tC uC","8":"tB I pC qC rC sC BC"},J:{"1":"A","8":"D"},K:{"1":"g","2":"A B","8":"C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"srcdoc attribute for iframes"}; +module.exports={A:{A:{"2":"EC","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","8":"C K L G M N O"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC","8":"0 1 uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K","8":"L G M N O x"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B","8":"I w KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B RC SC TC UC","8":"C rB CC VC sB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B","8":"WC DC XC"},H:{"2":"qC"},I:{"1":"H vC wC","8":"uB I rC sC tC uC DC"},J:{"1":"A","8":"D"},K:{"1":"h","2":"A B","8":"C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"srcdoc attribute for iframes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imagecapture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imagecapture.js index 617a9cb7808c1c..a76220f47f89ed 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB EC FC","194":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","322":"TB UB VB WB XB YB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB PC QC RC SC qB AC TC rB","322":"GB HB IB JB KB LB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"194":"AD"}},B:5,C:"ImageCapture API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB GC HC","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","322":"UB VB WB XB YB ZB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB RC SC TC UC rB CC VC sB","322":"HB IB JB KB LB MB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"194":"CD DD"}},B:5,C:"ImageCapture API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ime.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ime.js index d0d70d11851b77..10dd64180c38b6 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 CC","161":"B"},B:{"2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A","161":"B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Input Method Editor API"}; +module.exports={A:{A:{"2":"J D E F A EC","161":"B"},B:{"2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A","161":"B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Input Method Editor API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js index 30c210f98fdb61..345982152446a1 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"naturalWidth & naturalHeight image properties"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"naturalWidth & naturalHeight image properties"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/import-maps.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/import-maps.js index 37c9df33b400ee..2ef8f98240c01d 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 CC"},B:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O","194":"P Q R S T U V W X"},C:{"1":"t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m EC FC","322":"n o p q r s"},D:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g","194":"lB mB nB oB pB P Q R S T U V W X"},E:{"1":"9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B"},F:{"1":"nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB PC QC RC SC qB AC TC rB","194":"aB bB cB dB eB fB gB hB iB jB kB g lB mB"},G:{"1":"9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"Import maps"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O","194":"P Q R S T U V W X"},C:{"1":"u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n GC HC","322":"o p q r s t"},D:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h","194":"mB nB oB pB qB P Q R S T U V W X"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B"},F:{"1":"oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB 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 TC UC rB CC VC sB","194":"bB cB dB eB fB gB hB iB jB kB lB h mB nB"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"Import maps"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imports.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imports.js index 52d2ef8d6c1875..940bb5b557e622 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 CC","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","8":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","8":"6 7 WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","72":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P","2":"0 1 2 3 4 5 I u J D E F A B C K L G M N O v w x y z Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","66":"6 7 8 9 AB","72":"BB"},E:{"2":"I u HC zB IC","8":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"F B C G M fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","66":"N O v w x","72":"y"},G:{"2":"zB UC BC VC WC","8":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"8":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C","2":"3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:5,C:"HTML Imports"}; +module.exports={A:{A:{"2":"J D E F EC","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","8":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 FC uB I w J D E F A B C K L G M N O x g y z GC HC","8":"7 8 XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","72":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P","2":"0 1 2 3 4 5 6 I w J D E F A B C K L G M N O x g y z Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","66":"7 8 9 AB BB","72":"CB"},E:{"2":"I w JC 0B KC","8":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","2":"F B C G M gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","66":"N O x g y","72":"z"},G:{"2":"0B WC DC XC YC","8":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"8":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I yC zC 0C 1C 2C 1B 3C 4C","2":"g 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"2":"BD"},S:{"1":"CD","8":"DD"}},B:5,C:"HTML Imports"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js index 9397ad221c46f5..7e2aa037dcadd8 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":"CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","2":"DC tB","16":"EC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F B PC QC RC SC qB AC"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"indeterminate checkbox"}; +module.exports={A:{A:{"1":"J D E F A B","16":"EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","2":"FC uB","16":"GC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 I w J D E F A B C K L G M N O x g y z"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F B RC SC TC UC rB CC"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"indeterminate checkbox"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb.js index 52d86f6514544b..0a7c65b6283900 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 CC","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","33":"A B C K L G","36":"I u J D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"A","8":"I u J D E F","33":"z","36":"B C K L G M N O v w x y"},E:{"1":"A B C K L G 0B qB rB 1B NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I u J D HC zB IC JC","260":"E F KC LC","516":"MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F PC QC","8":"B C RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"zB UC BC VC WC XC","260":"E YC ZC aC","516":"mC"},H:{"2":"oC"},I:{"1":"f tC uC","8":"tB I pC qC rC sC BC"},J:{"1":"A","8":"D"},K:{"1":"g","2":"A","8":"B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"IndexedDB"}; +module.exports={A:{A:{"2":"J D E F EC","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","33":"A B C K L G","36":"I w J D E F"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"A","8":"I w J D E F","33":"0","36":"B C K L G M N O x g y z"},E:{"1":"A B C K L G 1B rB sB 2B PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I w J D JC 0B KC LC","260":"E F MC NC","516":"OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F RC SC","8":"B C TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"0B WC DC XC YC ZC","260":"E aC bC cC","516":"oC"},H:{"2":"qC"},I:{"1":"H vC wC","8":"uB I rC sC tC uC DC"},J:{"1":"A","8":"D"},K:{"1":"h","2":"A","8":"B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"IndexedDB"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb2.js index d83e4c46c9b4ac..6f9b419b635427 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB EC FC","132":"KB LB MB","260":"NB OB PB QB"},D:{"1":"YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","132":"OB PB QB RB","260":"SB TB UB VB WB XB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB PC QC RC SC qB AC TC rB","132":"BB CB DB EB","260":"FB GB HB IB JB KB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC","16":"bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","260":"wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"260":"AD"}},B:2,C:"IndexedDB 2.0"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB GC HC","132":"LB MB NB","260":"OB PB QB RB"},D:{"1":"ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","132":"PB QB RB SB","260":"TB UB VB WB XB YB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB RC SC TC UC rB CC VC sB","132":"CB DB EB FB","260":"GB HB IB JB KB LB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC","16":"dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","260":"yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","260":"CD"}},B:2,C:"IndexedDB 2.0"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/inline-block.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/inline-block.js index 52c2a4d0ef6722..f196077af41e24 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":"CC","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","36":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS inline-block"}; +module.exports={A:{A:{"1":"E F A B","4":"EC","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","36":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS inline-block"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/innertext.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/innertext.js index 08ee667a5b1b92..cd89e0f3ee3a6a 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":"CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","16":"F"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"HTMLElement.innerText"}; +module.exports={A:{A:{"1":"J D E F A B","16":"EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","16":"F"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"HTMLElement.innerText"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js index 8ee4c1fed34de0..865b7117862834 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 CC","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","516":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"0 1 2 N O v w x y z","2":"I u J D E F A B C K L G M","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB","260":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"J IC JC","2":"I u HC zB","2052":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"zB UC BC","1025":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1025":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2052":"A B"},O:{"1025":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"260":"1B"},R:{"1":"9C"},S:{"516":"AD"}},B:1,C:"autocomplete attribute: on & off values"}; +module.exports={A:{A:{"1":"J D E F A EC","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 FC uB I w J D E F A B C K L G M N O x g y z GC HC","516":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"0 1 2 3 N O x g y z","2":"I w J D E F A B C K L G M","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB","260":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"J KC LC","2":"I w JC 0B","2052":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"0B WC DC","1025":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1025":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2052":"A B"},O:{"1025":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"260":"2B"},R:{"1":"BD"},S:{"516":"CD DD"}},B:1,C:"autocomplete attribute: on & off values"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-color.js index 206ee4124b77e0..67ec225b8cc43f 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F G M PC QC RC SC"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC","129":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Color input type"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F G M RC SC TC UC"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC","129":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"Color input type"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-datetime.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-datetime.js index d30d5dcc3831a1..427fb465942993 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB EC FC","1090":"TB UB VB WB","2052":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b","4100":"c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v","2052":"0 w x y z"},E:{"2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B","4100":"G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"zB UC BC","260":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB pC qC rC","514":"I sC BC"},J:{"1":"A","2":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"4100":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2052":"AD"}},B:1,C:"Date and time input types"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB GC HC","1090":"UB VB WB XB","2052":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b","4100":"c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x","2052":"0 1 g y z"},E:{"2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B","4100":"G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"0B WC DC","260":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB rC sC tC","514":"I uC DC"},J:{"1":"A","2":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"4100":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2052":"CD DD"}},B:1,C:"Date and time input types"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-email-tel-url.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-email-tel-url.js index 46fbdff1dd40bd..9a8575636bb47e 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","132":"pC qC rC"},J:{"1":"A","132":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Email, telephone & URL input types"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","132":"rC sC tC"},J:{"1":"A","132":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Email, telephone & URL input types"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-event.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-event.js index 1a43570a1f2eea..c05106820c4c62 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 CC","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2561":"C K L G M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC","1537":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB FC","1796":"tB EC"},D:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L","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 uB ZB vB aB bB cB dB","1537":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB"},E:{"1":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u J HC zB","1025":"D E F A B C JC KC LC 0B qB","1537":"IC","4097":"K rB"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","16":"F B C PC QC RC SC qB AC","260":"TC","1025":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","1537":"G M N O v w x"},G:{"1":"iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC","1025":"E YC ZC aC bC cC dC eC fC","1537":"VC WC XC","4097":"gC hC"},H:{"2":"oC"},I:{"16":"pC qC","1025":"f uC","1537":"tB I rC sC BC tC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2561":"A B"},O:{"1":"vC"},P:{"1025":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1537":"AD"}},B:1,C:"input event"}; +module.exports={A:{A:{"2":"J D E EC","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2561":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC","1537":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB HC","1796":"uB GC"},D:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L","1025":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB","1537":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB"},E:{"1":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w J JC 0B","1025":"D E F A B C LC MC NC 1B rB","1537":"KC","4097":"K sB"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","16":"F B C RC SC TC UC rB CC","260":"VC","1025":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","1537":"G M N O x g y"},G:{"1":"kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC","1025":"E aC bC cC dC eC fC gC hC","1537":"XC YC ZC","4097":"iC jC"},H:{"2":"qC"},I:{"16":"rC sC","1025":"H wC","1537":"uB I tC uC DC vC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2561":"A B"},O:{"1":"xC"},P:{"1025":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","1537":"CD"}},B:1,C:"input event"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-accept.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-accept.js index d73752737b078b..8ffe690c10eeaa 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","132":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I","16":"0 1 u J D E x y z","132":"F A B C K L G M N O v w"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","132":"J D E F A B JC KC LC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"2":"WC XC","132":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","514":"zB UC BC VC"},H:{"2":"oC"},I:{"2":"pC qC rC","260":"tB I sC BC","514":"f tC uC"},J:{"132":"A","260":"D"},K:{"2":"A B C qB AC rB","514":"g"},L:{"260":"H"},M:{"2":"H"},N:{"514":"A","1028":"B"},O:{"2":"vC"},P:{"260":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"260":"1B"},R:{"260":"9C"},S:{"1":"AD"}},B:1,C:"accept attribute for file input"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","132":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I","16":"0 1 2 w J D E y z","132":"F A B C K L G M N O x g"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","132":"J D E F A B LC MC NC 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"2":"YC ZC","132":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","514":"0B WC DC XC"},H:{"2":"qC"},I:{"2":"rC sC tC","260":"uB I uC DC","514":"H vC wC"},J:{"132":"A","260":"D"},K:{"2":"A B C rB CC sB","514":"h"},L:{"260":"H"},M:{"2":"f"},N:{"514":"A","1028":"B"},O:{"2":"xC"},P:{"260":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"260":"2B"},R:{"260":"BD"},S:{"1":"CD DD"}},B:1,C:"accept attribute for file input"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-directory.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-directory.js index f3a67e02c9755d..6d94e711737998 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB EC FC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Directory selection from file input"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB GC HC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 I w J D E F A B C K L G M N O x g y z"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Directory selection from file input"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-multiple.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-multiple.js index 8fbe83f00285fc..706366006b12b7 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","2":"DC tB EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","2":"F PC QC RC"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC"},H:{"130":"oC"},I:{"130":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"130":"A B C g qB AC rB"},L:{"132":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"130":"vC"},P:{"130":"I","132":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"132":"1B"},R:{"132":"9C"},S:{"2":"AD"}},B:1,C:"Multiple file selection"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","2":"FC uB GC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","2":"F RC SC TC"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC"},H:{"130":"qC"},I:{"130":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"130":"A B C h rB CC sB"},L:{"132":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"130":"xC"},P:{"130":"I","132":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"132":"2B"},R:{"132":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"Multiple file selection"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-inputmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-inputmode.js index 40eb87e0862915..59f8cfbf6321c6 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M EC FC","4":"N O v w","194":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d"},D:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB aB bB cB dB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB PC QC RC SC qB AC TC rB","66":"JB KB LB MB NB OB PB QB RB SB"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"194":"AD"}},B:1,C:"inputmode attribute"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M GC HC","4":"N O x g","194":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d"},D:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 vB aB wB bB cB dB eB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB RC SC TC UC rB CC VC sB","66":"KB LB MB NB OB PB QB RB SB TB"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"194":"CD DD"}},B:1,C:"inputmode attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-minlength.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-minlength.js index e41aafa0725a2a..8bd420b79c7788 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB EC FC"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Minimum length attribute for input fields"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB GC HC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"Minimum length attribute for input fields"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-number.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-number.js index 788faf9890720e..cdc18090f97275 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 CC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"C K","1025":"L G M N O"},C:{"2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","513":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"388":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB pC qC rC","388":"I f sC BC tC uC"},J:{"2":"D","388":"A"},K:{"1":"A B C qB AC rB","388":"g"},L:{"388":"H"},M:{"641":"H"},N:{"388":"A B"},O:{"388":"vC"},P:{"388":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"388":"1B"},R:{"388":"9C"},S:{"513":"AD"}},B:1,C:"Number input type"}; +module.exports={A:{A:{"2":"J D E F EC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"C K","1025":"L G M N O"},C:{"2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC","513":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"388":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB rC sC tC","388":"I H uC DC vC wC"},J:{"2":"D","388":"A"},K:{"1":"A B C rB CC sB","388":"h"},L:{"388":"H"},M:{"641":"f"},N:{"388":"A B"},O:{"388":"xC"},P:{"388":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"388":"2B"},R:{"388":"BD"},S:{"513":"CD DD"}},B:1,C:"Number input type"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-pattern.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-pattern.js index 05b73f9cd0c759..8080fdc9c6e960 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","16":"u","388":"J D E F A IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC","388":"E VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f uC","2":"tB I pC qC rC sC BC tC"},J:{"1":"A","2":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Pattern attribute for input fields"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","16":"w","388":"J D E F A KC LC MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC","388":"E XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H wC","2":"uB I rC sC tC uC DC vC"},J:{"1":"A","2":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Pattern attribute for input fields"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-placeholder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-placeholder.js index 27678234f3d119..d493578ba655db 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","132":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e AC TC rB","2":"F PC QC RC SC","132":"B qB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB f pC qC rC BC tC uC","4":"I sC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"input placeholder attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","132":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e CC VC sB","2":"F RC SC TC UC","132":"B rB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB H rC sC tC DC vC wC","4":"I uC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"input placeholder attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-range.js index 50be2f43f3b59f..118b6224433918 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x y EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"f BC tC uC","4":"tB I pC qC rC sC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Range input type"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"H DC vC wC","4":"uB I rC sC tC uC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Range input type"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-search.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-search.js index 1f25f5a2c791d4..76b3e10c1b8011 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 CC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"C K L G M N O"},C:{"2":"DC tB EC FC","129":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"0 1 I u J D E F A B C K L x y z","129":"G M N O v w"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F PC QC RC SC","16":"B qB AC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC"},H:{"129":"oC"},I:{"1":"f tC uC","16":"pC qC","129":"tB I rC sC BC"},J:{"1":"D","129":"A"},K:{"1":"C g","2":"A","16":"B qB AC","129":"rB"},L:{"1":"H"},M:{"129":"H"},N:{"129":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"129":"AD"}},B:1,C:"Search input type"}; +module.exports={A:{A:{"2":"J D E F EC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"C K L G M N O"},C:{"2":"FC uB GC HC","129":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"0 1 2 I w J D E F A B C K L y z","129":"G M N O x g"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F RC SC TC UC","16":"B rB CC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC"},H:{"129":"qC"},I:{"1":"H vC wC","16":"rC sC","129":"uB I tC uC DC"},J:{"1":"D","129":"A"},K:{"1":"C h","2":"A","16":"B rB CC","129":"sB"},L:{"1":"H"},M:{"129":"f"},N:{"129":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"129":"CD DD"}},B:1,C:"Search input type"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-selection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-selection.js index cd9b0969c37a98..affbc0d7626684 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","16":"F PC QC RC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Selection controls for input & textarea"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","16":"F RC SC TC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Selection controls for input & textarea"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insert-adjacent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insert-adjacent.js index 2a96ab30d752e9..f950d9279eb43d 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":"CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","16":"F"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","16":"F"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insertadjacenthtml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insertadjacenthtml.js index 92eace0010ecad..694a8a2588c54d 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":"CC","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","16":"F PC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Element.insertAdjacentHTML()"}; +module.exports={A:{A:{"1":"A B","16":"EC","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","16":"F RC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Element.insertAdjacentHTML()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/internationalization.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/internationalization.js index 854ab1242cb689..f06cd8dc060698 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w x y z"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"Internationalization API"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 I w J D E F A B C K L G M N O x g y z"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"Internationalization API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js index ffb583b7978e69..742d42fa0fe9d4 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"IntersectionObserver V2"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB 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 TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"IntersectionObserver V2"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver.js index 9e62183dd98e4f..a46cd340888c0e 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 CC"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB EC FC","194":"SB TB UB"},D:{"1":"YB uB ZB vB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","516":"RB SB TB UB VB WB XB","1025":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB PC QC RC SC qB AC TC rB","516":"EB FB GB HB IB JB KB","1025":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","1025":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","1025":"g"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","516":"wC xC"},Q:{"1025":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"IntersectionObserver"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB GC HC","194":"TB UB VB"},D:{"1":"ZB vB aB wB bB cB dB","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","516":"SB TB UB VB WB XB YB","1025":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB RC SC TC UC rB CC VC sB","516":"FB GB HB IB JB KB LB","1025":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","1025":"h"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","516":"yC zC"},Q:{"1025":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"IntersectionObserver"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intl-pluralrules.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intl-pluralrules.js index 1e2398db2a3662..0d85945bc163ed 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N","130":"O"},C:{"1":"YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB EC FC"},D:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB rB"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB PC QC RC SC qB AC TC rB"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"Intl.PluralRules API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N","130":"O"},C:{"1":"ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB GC HC"},D:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB sB"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RC SC TC UC rB CC VC sB"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"Intl.PluralRules API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intrinsic-width.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intrinsic-width.js index 55b02a5ab8610a..0fe111bf20cd14 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 CC"},B:{"2":"C K L G M N O","1025":"d e h i j k l m n o p q r s t f H","1537":"P Q R S T U V W X Y Z a b c"},C:{"2":"DC","932":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB EC FC","2308":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"I u J D E F A B C K L G M N O v w x","545":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB","1025":"d e h i j k l m n o p q r s t f H xB yB GC","1537":"MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J HC zB IC","516":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B","548":"F A LC 0B","676":"D E JC KC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","513":"AB","545":"0 1 2 3 4 5 6 7 8 G M N O v w x y z","1025":"e","1537":"9 BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d"},G:{"1":"sB 6B 7B 8B 9B","2":"zB UC BC VC WC","516":"lC mC nC 2B 3B 4B 5B","548":"ZC aC bC cC dC eC fC gC hC iC jC kC","676":"E XC YC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","545":"tC uC","1025":"f"},J:{"2":"D","545":"A"},K:{"2":"A B C qB AC rB","1025":"g"},L:{"1025":"H"},M:{"2308":"H"},N:{"2":"A B"},O:{"1537":"vC"},P:{"545":"I","1025":"6C 7C 8C","1537":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB"},Q:{"1537":"1B"},R:{"1537":"9C"},S:{"932":"AD"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","1025":"d e i j k l m n o p q r s t u v f H","1537":"P Q R S T U V W X Y Z a b c"},C:{"2":"FC","932":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB GC HC","2308":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"I w J D E F A B C K L G M N O x g y","545":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB","1025":"d e i j k l m n o p q r s t u v f H yB zB IC","1537":"NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC","516":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B","548":"F A NC 1B","676":"D E LC MC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","513":"BB","545":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z","1025":"e","1537":"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 dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d"},G:{"1":"tB 7B 8B 9B AC BC","2":"0B WC DC XC YC","516":"nC oC pC 3B 4B 5B 6B","548":"bC cC dC eC fC gC hC iC jC kC lC mC","676":"E ZC aC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","545":"vC wC","1025":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C rB CC sB","1025":"h"},L:{"1025":"H"},M:{"2308":"f"},N:{"2":"A B"},O:{"1537":"xC"},P:{"545":"I","1025":"g 8C 9C AD","1537":"yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB"},Q:{"1537":"2B"},R:{"1537":"BD"},S:{"932":"CD","2308":"DD"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpeg2000.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpeg2000.js index 8b0ec04a7aa1c3..74e0f883bb636a 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","129":"u IC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"JPEG 2000 image format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","129":"w KC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"JPEG 2000 image format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxl.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxl.js index 0cd5216d061678..0352146f75a605 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 CC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z H","578":"a b c d e h i j k l m n o p q r s t f"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y EC FC","322":"Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z H xB yB GC","194":"a b c d e h i j k l m n o p q r s t f"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB PC QC RC SC qB AC TC rB","194":"oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"JPEG XL image format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z f H","578":"a b c d e i j k l m n o p q r s t u v"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y GC HC","322":"Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z f H yB zB IC","194":"a b c d e i j k l m n o p q r s t u v"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB RC SC TC UC rB CC VC sB","194":"pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"JPEG XL image format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxr.js index e5ad4c14b31aef..7f7cbf2aba19ae 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 CC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"JPEG XR image format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"1":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"JPEG XR image format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js index 4b414692a91c8f..47d5a477b11619 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB EC FC"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB"},E:{"1":"9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PC QC RC SC qB AC TC rB"},G:{"1":"9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"Lookbehind in JS regular expressions"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB GC HC"},D:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB RC SC TC UC rB CC VC sB"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"Lookbehind in JS regular expressions"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/json.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/json.js index 9eb852a99093f2..8b16a148393cda 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 CC","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"JSON parsing"}; +module.exports={A:{A:{"1":"F A B","2":"J D EC","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"JSON parsing"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js index 6ca2c9d8e3e054..c3d1efe8c59b4a 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G","132":"M N O"},C:{"1":"SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB EC FC"},D:{"1":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC","132":"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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB PC QC RC SC qB AC TC rB","132":"KB LB MB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC","132":"cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC","132":"yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"132":"AD"}},B:5,C:"CSS justify-content: space-evenly"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G","132":"M N O"},C:{"1":"TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB GC HC"},D:{"1":"aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","132":"YB ZB vB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC","132":"1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB RC SC TC UC rB CC VC sB","132":"LB MB NB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC","132":"eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC","132":"0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","132":"CD"}},B:5,C:"CSS justify-content: space-evenly"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js index cbb8c9c5f42db7..0ec7a29790b4b1 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 CC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"pC qC rC","132":"tB I sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:7,C:"High-quality kerning pairs & ligatures"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"rC sC tC","132":"uB I uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:7,C:"High-quality kerning pairs & ligatures"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js index bd5500621f107d..5d589ee0a70049 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","16":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC","16":"C"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"g rB","2":"A B qB AC","16":"C"},L:{"1":"H"},M:{"130":"H"},N:{"130":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:7,C:"KeyboardEvent.charCode"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","16":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC","16":"C"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"h sB","2":"A B rB CC","16":"C"},L:{"1":"H"},M:{"130":"f"},N:{"130":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:7,C:"KeyboardEvent.charCode"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-code.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-code.js index 4db59140b18cdc..2d7e4777635b9a 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EC FC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB","194":"IB JB KB LB MB NB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","194":"5 6 7 8 9 AB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"194":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I","194":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"194":"9C"},S:{"1":"AD"}},B:5,C:"KeyboardEvent.code"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB GC HC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB","194":"JB KB LB MB NB OB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 F B C G M N O x g y z RC SC TC UC rB CC VC sB","194":"6 7 8 9 AB BB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"194":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I","194":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"194":"BD"},S:{"1":"CD DD"}},B:5,C:"KeyboardEvent.code"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js index b1c0230c3b9e29..bbf6d2cca66c63 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B G M PC QC RC SC qB AC TC","16":"C"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g rB","2":"A B qB AC","16":"C"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"KeyboardEvent.getModifierState()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 I w J D E F A B C K L G M N O x g y z"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B G M RC SC TC UC rB CC VC","16":"C"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h sB","2":"A B rB CC","16":"C"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"KeyboardEvent.getModifierState()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-key.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-key.js index d6a148dfd4f496..a3fe554c79cc29 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 CC","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x y EC FC","132":"0 1 2 3 4 z"},D:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"0 1 2 3 4 5 6 7 8 9 F B G M N O v w x y z AB BB CB DB PC QC RC SC qB AC TC","16":"C"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"1":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g rB","2":"A B qB AC","16":"C"},L:{"1":"H"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"KeyboardEvent.key"}; +module.exports={A:{A:{"2":"J D E EC","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y z GC HC","132":"0 1 2 3 4 5"},D:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"0 1 2 3 4 5 6 7 8 9 F B G M N O x g y z AB BB CB DB EB RC SC TC UC rB CC VC","16":"C"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"1":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h sB","2":"A B rB CC","16":"C"},L:{"1":"H"},M:{"1":"f"},N:{"260":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"KeyboardEvent.key"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-location.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-location.js index 696df8c50c516e..07c2cc2f004d03 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"0 1 2 3 4 5 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"J HC zB","132":"I u IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC","16":"C","132":"G M"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC","132":"VC WC XC"},H:{"2":"oC"},I:{"1":"f tC uC","16":"pC qC","132":"tB I rC sC BC"},J:{"132":"D A"},K:{"1":"g rB","2":"A B qB AC","16":"C"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"KeyboardEvent.location"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"0 1 2 3 4 5 6 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"J JC 0B","132":"I w KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC","16":"C","132":"G M"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC","132":"XC YC ZC"},H:{"2":"qC"},I:{"1":"H vC wC","16":"rC sC","132":"uB I tC uC DC"},J:{"132":"D A"},K:{"1":"h sB","2":"A B rB CC","16":"C"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"KeyboardEvent.location"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-which.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-which.js index bf2e9762321bb2..adb0dbf28f3d4f 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","16":"u"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","16":"F PC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC","16":"pC qC","132":"tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"132":"H"},M:{"132":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"2":"I","132":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"132":"9C"},S:{"1":"AD"}},B:7,C:"KeyboardEvent.which"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","16":"w"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","16":"F RC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC","16":"rC sC","132":"vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"132":"H"},M:{"132":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"2":"I","132":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"132":"BD"},S:{"1":"CD DD"}},B:7,C:"KeyboardEvent.which"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/lazyload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/lazyload.js index c8603f375bcaac..0005b3d91698df 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 CC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Resource Hints: Lazyload"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"1":"B","2":"A"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Resource Hints: Lazyload"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/let.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/let.js index cdec8e8e36641a..5b8661749f4a6f 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 CC","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","194":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB","516":"HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC","1028":"A 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","322":"0 1 2 3 G M N O v w x y z","516":"4 5 6 7 8 9 AB BB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC","1028":"bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","516":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"let"}; +module.exports={A:{A:{"2":"J D E F A EC","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","194":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB","516":"IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC","1028":"A 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","322":"0 1 2 3 4 G M N O x g y z","516":"5 6 7 8 9 AB BB CB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC","1028":"dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","516":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"let"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-png.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-png.js index c5f70d6cc0e81b..60a429cd57f2db 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","130":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC"},H:{"130":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D","130":"A"},K:{"1":"g","130":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"130":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"PNG favicons"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","130":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC"},H:{"130":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D","130":"A"},K:{"1":"h","130":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"130":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"PNG favicons"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-svg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-svg.js index 595faaba120790..a23680d0047d4b 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 CC"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB EC FC","260":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB","513":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P","1537":"Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB UB VB WB XB YB ZB aB bB cB dB eB PC QC RC SC qB AC TC rB","1537":"fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","130":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC"},H:{"130":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D","130":"A"},K:{"130":"A B C qB AC rB","1537":"g"},L:{"1537":"H"},M:{"2":"H"},N:{"130":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C","1537":"3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"1537":"9C"},S:{"513":"AD"}},B:1,C:"SVG favicons"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC uB GC HC","260":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB","513":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P","1537":"Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB VB WB XB YB ZB aB bB cB dB eB fB RC SC TC UC rB CC VC sB","1537":"gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","130":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC"},H:{"130":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D","130":"A"},K:{"130":"A B C rB CC sB","1537":"h"},L:{"1537":"H"},M:{"2":"f"},N:{"130":"A B"},O:{"2":"xC"},P:{"2":"I yC zC 0C 1C 2C 1B 3C 4C","1537":"g 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"1537":"BD"},S:{"513":"CD DD"}},B:1,C:"SVG favicons"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js index 0332b0f560906a..ea06c865047f42 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 CC","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB","260":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"16":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"16":"tB I f pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"1":"g","16":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","16":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Resource Hints: dns-prefetch"}; +module.exports={A:{A:{"1":"A B","2":"J D E EC","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC uB","260":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"16":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"16":"uB I H rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"1":"h","16":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","16":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Resource Hints: dns-prefetch"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js index f8c51dacb97f82..b8ee9eaef6813e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Resource Hints: modulepreload"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB"},E:{"1":"QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:1,C:"Resource Hints: modulepreload"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preconnect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preconnect.js index 1a0e8e269bc08c..581a883bd2a8cf 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L","260":"G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","129":"FB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"16":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Resource Hints: preconnect"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L","260":"G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","129":"GB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"16":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Resource Hints: preconnect"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prefetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prefetch.js index 526214b7d8e5fd..bb35c4b74caeac 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D"},E:{"2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB","194":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC","194":"kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"I f tC uC","2":"tB pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Resource Hints: prefetch"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D"},E:{"2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB","194":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC","194":"mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"I H vC wC","2":"uB rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Resource Hints: prefetch"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preload.js index 09affa20f39abc..bce23f8895be67 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M","1028":"N O"},C:{"1":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB EC FC","132":"WB","578":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T"},D:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","322":"B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC","322":"dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"Resource Hints: preload"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M","1028":"N O"},C:{"1":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB GC HC","132":"XB","578":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T"},D:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","322":"B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC","322":"fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:4,C:"Resource Hints: preload"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prerender.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prerender.js index 4ff0ec22f5bc15..3fc0dbf333f0ba 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Resource Hints: prerender"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:5,C:"Resource Hints: prerender"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/loading-lazy-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/loading-lazy-attr.js index 2a3566af5420ce..4be41e88065bf5 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB EC FC","132":"mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB","66":"mB nB"},E:{"1":"9B OC","2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB","322":"L G 1B MC NC 2B","580":"3B 4B 5B sB 6B 7B 8B"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB PC QC RC SC qB AC TC rB","66":"aB bB"},G:{"1":"9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC","322":"kC lC mC nC 2B","580":"3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"132":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Lazy loading via attribute for images & iframes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB GC HC","132":"nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB","66":"nB oB"},E:{"1":"AC BC QC","2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB","322":"L G 2B OC PC 3B","580":"4B 5B 6B tB 7B 8B 9B"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB 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 TC UC rB CC VC sB","66":"bB cB"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC","322":"mC nC oC pC 3B","580":"4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"132":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD","132":"DD"}},B:1,C:"Lazy loading via attribute for images & iframes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/localecompare.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/localecompare.js index 43373930d4a1a5..cb78398479472a 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":"CC","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","132":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"I u J D E F A B C K L G M N O v w x y z"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","132":"I u J D E F HC zB IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F B C PC QC RC SC qB AC TC","132":"rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","132":"E zB UC BC VC WC XC YC ZC aC"},H:{"132":"oC"},I:{"1":"f tC uC","132":"tB I pC qC rC sC BC"},J:{"132":"D A"},K:{"1":"g","16":"A B C qB AC","132":"rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","132":"A"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","132":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"4":"AD"}},B:6,C:"localeCompare()"}; +module.exports={A:{A:{"1":"B","16":"EC","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","132":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"0 I w J D E F A B C K L G M N O x g y z"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","132":"I w J D E F JC 0B KC LC MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F B C RC SC TC UC rB CC VC","132":"sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","132":"E 0B WC DC XC YC ZC aC bC cC"},H:{"132":"qC"},I:{"1":"H vC wC","132":"uB I rC sC tC uC DC"},J:{"132":"D A"},K:{"1":"h","16":"A B C rB CC","132":"sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","132":"A"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","132":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","4":"CD"}},B:6,C:"localeCompare()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/magnetometer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/magnetometer.js index 3eb9e075020970..aaaa5bbebcf578 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB aB bB cB dB eB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"194":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"Magnetometer"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB 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 vB aB wB bB cB dB eB fB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"194":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:4,C:"Magnetometer"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchesselector.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchesselector.js index 24c297b4ef507a..c08ed7449759ba 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 CC","36":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","36":"C K L"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC","36":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z FC"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","36":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","36":"u J D IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B PC QC RC SC qB","36":"C G M N O v w AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB","36":"UC BC VC WC XC"},H:{"2":"oC"},I:{"1":"f","2":"pC","36":"tB I qC rC sC BC tC uC"},J:{"36":"D A"},K:{"1":"g","2":"A B","36":"C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","36":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"matches() DOM method"}; +module.exports={A:{A:{"2":"J D E EC","36":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","36":"C K L"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC","36":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB HC"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","36":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB"},E:{"1":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","36":"w J D KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B RC SC TC UC rB","36":"C G M N O x g CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B","36":"WC DC XC YC ZC"},H:{"2":"qC"},I:{"1":"H","2":"rC","36":"uB I sC tC uC DC vC wC"},J:{"36":"D A"},K:{"1":"h","2":"A B","36":"C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"36":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","36":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"matches() DOM method"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchmedia.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchmedia.js index d33151baab69f3..86790d4536731a 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B C PC QC RC SC qB AC TC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"1":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"matchMedia"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B C RC SC TC UC rB CC VC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"1":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"matchMedia"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mathml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mathml.js index fa5ca8bce2c84f..e75c2cf4416078 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 CC","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 h","584":"i j k l m n o p q r s t","1025":"f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","129":"DC tB EC FC"},D:{"1":"0","8":"1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h","584":"i j k l m n o p q r s t","1025":"f H xB yB GC"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","260":"I u J D E F HC zB IC JC KC LC"},F:{"2":"F","8":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB","584":"S T U V W X Y Z a b c d","1025":"e","2052":"B C PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"zB UC BC"},H:{"8":"oC"},I:{"8":"tB I pC qC rC sC BC tC uC","1025":"f"},J:{"1":"A","8":"D"},K:{"8":"A B C g qB AC rB"},L:{"1025":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"8":"vC"},P:{"8":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"8":"1B"},R:{"8":"9C"},S:{"1":"AD"}},B:2,C:"MathML"}; +module.exports={A:{A:{"2":"F A B EC","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 i","584":"j k l m n o p q r s t u","1025":"v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","129":"FC uB GC HC"},D:{"1":"1","8":"0 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i","584":"j k l m n o p q r s t u","1025":"v f H yB zB IC"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","260":"I w J D E F JC 0B KC LC MC NC"},F:{"2":"F","8":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB","584":"S T U V W X Y Z a b c d","1025":"e","2052":"B C RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"0B WC DC"},H:{"8":"qC"},I:{"8":"uB I rC sC tC uC DC vC wC","1025":"H"},J:{"1":"A","8":"D"},K:{"8":"A B C h rB CC sB"},L:{"1025":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"8":"xC"},P:{"8":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"8":"2B"},R:{"8":"BD"},S:{"1":"CD DD"}},B:2,C:"MathML"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/maxlength.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/maxlength.js index 00587208c277fb..b3926d866fcd9a 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":"CC","900":"J D E F"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","1025":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","900":"DC tB EC FC","1025":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"u HC","900":"I zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F","132":"B C PC QC RC SC qB AC TC rB"},G:{"1":"UC BC VC WC XC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB","2052":"E YC"},H:{"132":"oC"},I:{"1":"tB I rC sC BC tC uC","16":"pC qC","4097":"f"},J:{"1":"D A"},K:{"132":"A B C qB AC rB","4097":"g"},L:{"4097":"H"},M:{"4097":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"4097":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1025":"AD"}},B:1,C:"maxlength attribute for input and textarea elements"}; +module.exports={A:{A:{"1":"A B","16":"EC","900":"J D E F"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","1025":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","900":"FC uB GC HC","1025":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"w JC","900":"I 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F","132":"B C RC SC TC UC rB CC VC sB"},G:{"1":"WC DC XC YC ZC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B","2052":"E aC"},H:{"132":"qC"},I:{"1":"uB I tC uC DC vC wC","16":"rC sC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C rB CC sB","4097":"h"},L:{"4097":"H"},M:{"4097":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"4097":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1025":"CD DD"}},B:1,C:"maxlength attribute for input and textarea elements"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js index 7f5e0539233a88..fabd95a3a4d486 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":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M EC FC","33":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},M:{"1":"H"},A:{"2":"J D E F A B 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB PC QC RC SC qB AC TC rB"},K:{"1":"g","2":"A B C qB AC rB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"I u J HC zB IC JC OC","33":"D E F A KC LC 0B"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC","33":"E XC YC ZC aC bC cC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"}},B:6,C:"isolate-override from unicode-bidi"}; +module.exports={A:{D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M GC HC","33":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},M:{"1":"f"},A:{"2":"J D E F A B EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB RC SC TC UC rB CC VC sB"},K:{"1":"h","2":"A B C rB CC sB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"I w J JC 0B KC LC QC","33":"D E F A MC NC 1B"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC","33":"E ZC aC bC cC dC eC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"}},B:6,C:"isolate-override from unicode-bidi"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js index b9814879e9d92a..384899ddc90ab8 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":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F EC FC","33":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},M:{"1":"H"},A:{"2":"J D E F A B 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB"},K:{"1":"g","2":"A B C qB AC rB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"I u HC zB IC OC","33":"J D E F A JC KC LC 0B"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"E WC XC YC ZC aC bC cC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"}},B:6,C:"isolate from unicode-bidi"}; +module.exports={A:{D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F GC HC","33":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},M:{"1":"f"},A:{"2":"J D E F A B EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB"},K:{"1":"h","2":"A B C rB CC sB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"I w JC 0B KC QC","33":"J D E F A LC MC NC 1B"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"E YC ZC aC bC cC dC eC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"}},B:6,C:"isolate from unicode-bidi"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js index 93f54e96f2da72..0e2896387b59b7 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":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F EC FC","33":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},M:{"1":"H"},A:{"2":"J D E F A B 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB PC QC RC SC qB AC TC rB"},K:{"1":"g","2":"A B C qB AC rB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"I u HC zB IC OC","33":"J D E F A JC KC LC 0B"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"E WC XC YC ZC aC bC cC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"}},B:6,C:"plaintext from unicode-bidi"}; +module.exports={A:{D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F GC HC","33":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},M:{"1":"f"},A:{"2":"J D E F A B EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB RC SC TC UC rB CC VC sB"},K:{"1":"h","2":"A B C rB CC sB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"I w JC 0B KC QC","33":"J D E F A LC MC NC 1B"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"E YC ZC aC bC cC dC eC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"}},B:6,C:"plaintext from unicode-bidi"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js index 8a15d0b0e4eb2f..f671e64a07b815 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":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB"},M:{"1":"H"},A:{"2":"J D E F A B 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB PC QC RC SC qB AC TC rB"},K:{"1":"g","2":"A B C qB AC rB"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"I u J D HC zB IC JC KC OC","33":"E F A B C LC 0B qB"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","33":"E YC ZC aC bC cC dC eC fC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"}},B:6,C:"text-decoration-color property"}; +module.exports={A:{D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB"},M:{"1":"f"},A:{"2":"J D E F A B EC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB RC SC TC UC rB CC VC sB"},K:{"1":"h","2":"A B C rB CC sB"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"I w J D JC 0B KC LC MC QC","33":"E F A B C NC 1B rB"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","33":"E aC bC cC dC eC fC gC hC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"}},B:6,C:"text-decoration-color property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js index 95d4bde7b9af92..eb8577e2ef144f 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":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB"},M:{"1":"H"},A:{"2":"J D E F A B 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB PC QC RC SC qB AC TC rB"},K:{"1":"g","2":"A B C qB AC rB"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"I u J D HC zB IC JC KC OC","33":"E F A B C LC 0B qB"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","33":"E YC ZC aC bC cC dC eC fC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"}},B:6,C:"text-decoration-line property"}; +module.exports={A:{D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB"},M:{"1":"f"},A:{"2":"J D E F A B EC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB RC SC TC UC rB CC VC sB"},K:{"1":"h","2":"A B C rB CC sB"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"I w J D JC 0B KC LC MC QC","33":"E F A B C NC 1B rB"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","33":"E aC bC cC dC eC fC gC hC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"}},B:6,C:"text-decoration-line property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js index 147fcab97a46e1..26490e5a486d07 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":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC"},M:{"1":"H"},A:{"2":"J D E F A B 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB PC QC RC SC qB AC TC rB"},K:{"1":"g","2":"A B C qB AC rB"},E:{"2":"I u J D HC zB IC JC KC OC","33":"E F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B"},G:{"2":"zB UC BC VC WC XC","33":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"}},B:6,C:"text-decoration shorthand property"}; +module.exports={A:{D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC"},M:{"1":"f"},A:{"2":"J D E F A B EC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB RC SC TC UC rB CC VC sB"},K:{"1":"h","2":"A B C rB CC sB"},E:{"2":"I w J D JC 0B KC LC MC QC","33":"E F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},G:{"2":"0B WC DC XC YC ZC","33":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"}},B:6,C:"text-decoration shorthand property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js index e79b6954f992ae..3ccc8636288a3a 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":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB"},M:{"1":"H"},A:{"2":"J D E F A B 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB PC QC RC SC qB AC TC rB"},K:{"1":"g","2":"A B C qB AC rB"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"I u J D HC zB IC JC KC OC","33":"E F A B C LC 0B qB"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","33":"E YC ZC aC bC cC dC eC fC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"}},B:6,C:"text-decoration-style property"}; +module.exports={A:{D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB"},M:{"1":"f"},A:{"2":"J D E F A B EC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB RC SC TC UC rB CC VC sB"},K:{"1":"h","2":"A B C rB CC sB"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"I w J D JC 0B KC LC MC QC","33":"E F A B C NC 1B rB"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","33":"E aC bC cC dC eC fC gC hC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"}},B:6,C:"text-decoration-style property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-fragments.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-fragments.js index defa94bd3cb3e1..db40f7f5c346f3 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 CC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"I u J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u HC zB IC","132":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"zB UC BC VC WC XC","132":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","132":"f tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","132":"g"},L:{"132":"H"},M:{"132":"H"},N:{"132":"A B"},O:{"132":"vC"},P:{"2":"I wC","132":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"132":"1B"},R:{"132":"9C"},S:{"132":"AD"}},B:2,C:"Media Fragments"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB GC HC","132":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"I w J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w JC 0B KC","132":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"0B WC DC XC YC ZC","132":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","132":"H vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","132":"h"},L:{"132":"H"},M:{"132":"f"},N:{"132":"A B"},O:{"132":"xC"},P:{"2":"I yC","132":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"132":"2B"},R:{"132":"BD"},S:{"132":"CD DD"}},B:2,C:"Media Fragments"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js index 832bf3090609be..660bbfbbbfc409 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB EC FC","260":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","324":"RB SB TB UB VB WB XB YB uB ZB vB"},E:{"2":"I u J D E F A HC zB IC JC KC LC 0B","132":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB","324":"CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"260":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","132":"wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"260":"AD"}},B:5,C:"Media Capture from DOM Elements API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB GC HC","260":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","324":"SB TB UB VB WB XB YB ZB vB aB wB"},E:{"2":"I w J D E F A JC 0B KC LC MC NC 1B","132":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB","324":"DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"260":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","132":"yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"260":"CD DD"}},B:5,C:"Media Capture from DOM Elements API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediarecorder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediarecorder.js index 4100244cdc81bb..c96982f472ba31 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","194":"NB OB"},E:{"1":"G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB","322":"K L rB 1B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","194":"AB BB"},G:{"1":"mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC","578":"fC gC hC iC jC kC lC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"MediaRecorder API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","194":"OB PB"},E:{"1":"G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB","322":"K L sB 2B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB RC SC TC UC rB CC VC sB","194":"BB CB"},G:{"1":"oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC","578":"hC iC jC kC lC mC nC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"MediaRecorder API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediasource.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediasource.js index 04a547e73755b5..4cd49e55ab69e7 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 CC","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","66":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M","33":"0 1 2 3 4 5 6 z","66":"N O v w x y"},E:{"1":"E F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC","260":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f uC","2":"tB I pC qC rC sC BC tC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Media Source Extensions"}; +module.exports={A:{A:{"2":"J D E F A EC","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 FC uB I w J D E F A B C K L G M N O x g y z GC HC","66":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7","66":"N O x g y z"},E:{"1":"E F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC","260":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H wC","2":"uB I rC sC tC uC DC vC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Media Source Extensions"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/menu.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/menu.js index 058f48cb510e43..79cbc214e4f136 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"DC tB I u J D EC FC","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T","450":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","66":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","66":"BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"450":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Context menu item (menuitem element)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"FC uB I w J D GC HC","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T","450":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","66":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","66":"CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"450":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Context menu item (menuitem element)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meta-theme-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meta-theme-color.js index 789d9e169264d2..a3c8b2c12bb1fc 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB","132":"g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","258":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"513":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","16":"wC"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:1,C:"theme-color Meta Tag"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB","132":"h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","258":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"513":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","16":"yC"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:1,C:"theme-color Meta Tag"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meter.js index 68406e74e52fb8..6cbb0479f0eee6 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F PC QC RC SC"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"meter element"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F RC SC TC UC"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"meter element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/midi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/midi.js index d81a515f899cc3..d1471e7e693fad 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s EC FC"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Web MIDI API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t GC HC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:5,C:"Web MIDI API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/minmaxwh.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/minmaxwh.js index 8fd00cf5df592c..91541ff2ec729e 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 CC","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS min/max-width/height"}; +module.exports={A:{A:{"1":"F A B","8":"J EC","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS min/max-width/height"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mp3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mp3.js index 2abb9856928964..8d9436565e79ab 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","132":"I u J D E F A B C K L G M N O v w x EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","2":"pC qC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"MP3 audio format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","132":"I w J D E F A B C K L G M N O x g y GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","2":"rC sC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"MP3 audio format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg-dash.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg-dash.js index 7e9e5832487671..059d84566b24df 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 CC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","386":"x y"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","386":"y z"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg4.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg4.js index e1a21ea42616a3..eae26330282ad1 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w EC FC","4":"0 1 2 3 4 5 6 7 8 9 x y z AB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f tC uC","4":"tB I pC qC sC BC","132":"rC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"260":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"MPEG-4/H.264 video format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g GC HC","4":"0 1 2 3 4 5 6 7 8 9 y z AB BB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H vC wC","4":"uB I rC sC uC DC","132":"tC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"260":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"MPEG-4/H.264 video format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multibackgrounds.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multibackgrounds.js index f8baf957721de7..2abe866cf726e4 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","2":"DC tB EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 Multiple backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","2":"FC uB GC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 Multiple backgrounds"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multicolumn.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multicolumn.js index 4a010488059daa..b1501c231ffed3 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 CC"},B:{"1":"C K L G M N O","516":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"132":"SB TB UB VB WB XB YB uB ZB vB aB bB cB","164":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB EC FC","516":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a","1028":"b c d e h i j k l m n o p q r s t f H xB yB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","132":"F LC","164":"D E KC","420":"I u J HC zB IC JC"},F:{"1":"C qB AC TC rB","2":"F B PC QC RC SC","420":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB","516":"DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","132":"ZC aC","164":"E XC YC","420":"zB UC BC VC WC"},H:{"1":"oC"},I:{"420":"tB I pC qC rC sC BC tC uC","516":"f"},J:{"420":"D A"},K:{"1":"C qB AC rB","2":"A B","516":"g"},L:{"516":"H"},M:{"1028":"H"},N:{"1":"A B"},O:{"516":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","420":"I"},Q:{"516":"1B"},R:{"516":"9C"},S:{"164":"AD"}},B:4,C:"CSS3 Multiple column layout"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O","516":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"132":"TB UB VB WB XB YB ZB vB aB wB bB cB dB","164":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB GC HC","516":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a","1028":"b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","516":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","132":"F NC","164":"D E MC","420":"I w J JC 0B KC LC"},F:{"1":"C rB CC VC sB","2":"F B RC SC TC UC","420":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB","516":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","132":"bC cC","164":"E ZC aC","420":"0B WC DC XC YC"},H:{"1":"qC"},I:{"420":"uB I rC sC tC uC DC vC wC","516":"H"},J:{"420":"D A"},K:{"1":"C rB CC sB","2":"A B","516":"h"},L:{"516":"H"},M:{"1028":"f"},N:{"1":"A B"},O:{"516":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","420":"I"},Q:{"516":"2B"},R:{"516":"BD"},S:{"164":"CD DD"}},B:4,C:"CSS3 Multiple column layout"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutation-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutation-events.js index 0bd91e575826b5..e6a1cf113f0cf7 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 CC","260":"F A B"},B:{"132":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G M N O"},C:{"2":"DC tB I u EC FC","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"16":"I u J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"16":"HC zB","132":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"C TC rB","2":"F PC QC RC SC","16":"B qB AC","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"16":"zB UC","132":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"16":"pC qC","132":"tB I f rC sC BC tC uC"},J:{"132":"D A"},K:{"1":"C rB","2":"A","16":"B qB AC","132":"g"},L:{"132":"H"},M:{"260":"H"},N:{"260":"A B"},O:{"132":"vC"},P:{"132":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"132":"1B"},R:{"132":"9C"},S:{"260":"AD"}},B:5,C:"Mutation events"}; +module.exports={A:{A:{"2":"J D E EC","260":"F A B"},B:{"132":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G M N O"},C:{"2":"FC uB I w GC HC","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"16":"I w J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"16":"JC 0B","132":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"C VC sB","2":"F RC SC TC UC","16":"B rB CC","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"16":"0B WC","132":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"16":"rC sC","132":"uB I H tC uC DC vC wC"},J:{"132":"D A"},K:{"1":"C sB","2":"A","16":"B rB CC","132":"h"},L:{"132":"H"},M:{"260":"f"},N:{"260":"A B"},O:{"132":"xC"},P:{"132":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"132":"2B"},R:{"132":"BD"},S:{"260":"CD DD"}},B:5,C:"Mutation events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutationobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutationobserver.js index e1deb78f08dae8..778d4d15627909 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 CC","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K EC FC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N","33":"0 1 2 O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB pC qC rC","8":"I sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","8":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Mutation Observer"}; +module.exports={A:{A:{"1":"B","2":"J D E EC","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K GC HC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N","33":"0 1 2 3 O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB rC sC tC","8":"I uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","8":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Mutation Observer"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/namevalue-storage.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/namevalue-storage.js index 09cd279568c014..a7103000ac9c26 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":"CC","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","4":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Web Storage - name/value pairs"}; +module.exports={A:{A:{"1":"E F A B","2":"EC","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","4":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Web Storage - name/value pairs"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/native-filesystem-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/native-filesystem-api.js index 4b923c6a4cb889..b7701054eb74f4 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 CC"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g","194":"lB mB nB oB pB P Q R S T U","260":"V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC","516":"2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB PC QC RC SC qB AC TC rB","194":"aB bB cB dB eB fB gB hB iB jB","260":"kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC","516":"2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"File System Access API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f GC HC","516":"H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h","194":"mB nB oB pB qB P Q R S T U","260":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC","516":"3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB 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 TC UC rB CC VC sB","194":"bB cB dB eB fB gB hB iB jB kB","260":"lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC","516":"3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"File System Access API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/nav-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/nav-timing.js index 90477cf5edc718..56fad5ee79a6e6 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u","33":"J D E F A B C"},E:{"1":"E F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"I f sC BC tC uC","2":"tB pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Navigation Timing API"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w","33":"J D E F A B C"},E:{"1":"E F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"I H uC DC vC wC","2":"uB rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Navigation Timing API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/netinfo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/netinfo.js index 777cb57899989c..8542d877808c6f 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 CC"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB","1028":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB PC QC RC SC qB AC TC rB","1028":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"pC tC uC","132":"tB I qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","132":"I","516":"wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"260":"AD"}},B:7,C:"Network Information API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB","1028":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB RC SC TC UC rB CC VC sB","1028":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"rC vC wC","132":"uB I sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","132":"I","516":"yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"DD","260":"CD"}},B:7,C:"Network Information API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/notifications.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/notifications.js index b311935ae335a5..323e5c07951ee4 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I","36":"u J D E F A B C K L G M N O v w x"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B","1028":"9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","36":"f tC uC"},J:{"1":"A","2":"D"},K:{"2":"A B C qB AC rB","36":"g"},L:{"513":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"36":"I","258":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"258":"9C"},S:{"1":"AD"}},B:1,C:"Web Notifications"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I","36":"w J D E F A B C K L G M N O x g y"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B","1028":"AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","36":"H vC wC"},J:{"1":"A","2":"D"},K:{"2":"A B C rB CC sB","36":"h"},L:{"513":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"36":"I","258":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"258":"BD"},S:{"1":"CD DD"}},B:1,C:"Web Notifications"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-entries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-entries.js index e8f48a273cd060..33a5d6625a16c4 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB EC FC"},D:{"1":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","16":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Object.entries"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB GC HC"},D:{"1":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","16":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Object.entries"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-fit.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-fit.js index b02ebad010a6d4..df9a98558affa1 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G","260":"M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB EC FC"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC","132":"E F KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F G M N O PC QC RC","33":"B C SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","132":"E YC ZC aC"},H:{"33":"oC"},I:{"1":"f uC","2":"tB I pC qC rC sC BC tC"},J:{"2":"D A"},K:{"1":"g","2":"A","33":"B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 object-fit/object-position"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G","260":"M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB GC HC"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 I w J D E F A B C K L G M N O x g y z"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC","132":"E F MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F G M N O RC SC TC","33":"B C UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","132":"E aC bC cC"},H:{"33":"qC"},I:{"1":"H wC","2":"uB I rC sC tC uC DC vC"},J:{"2":"D A"},K:{"1":"h","2":"A","33":"B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 object-fit/object-position"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-observe.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-observe.js index ec12a6af678d9a..17ee94e50b7573 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB","2":"F B C G M N O v w x y DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"I","2":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Object.observe data binding"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB","2":"F B C G M N O x g y z EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"I","2":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Object.observe data binding"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-values.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-values.js index c5d525d9c75b8a..ae7ccc4511a28b 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB EC FC"},D:{"1":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","8":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"8":"oC"},I:{"1":"f","8":"tB I pC qC rC sC BC tC uC"},J:{"8":"D A"},K:{"1":"g","8":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","8":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Object.values method"}; +module.exports={A:{A:{"8":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB GC HC"},D:{"1":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","8":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I w J D E F A JC 0B KC LC MC 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"8":"qC"},I:{"1":"H","8":"uB I rC sC tC uC DC vC wC"},J:{"8":"D A"},K:{"1":"h","8":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","8":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Object.values method"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/objectrtc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/objectrtc.js index 91237aaa3d3cb8..4a0f6def42b198 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 CC"},B:{"1":"K L G M N O","2":"C P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D","130":"A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O","2":"C P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D","130":"A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offline-apps.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offline-apps.js index ee053bf0d1b604..b6edcd2b49626a 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 CC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S EC FC","2":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","4":"tB","8":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T","2":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB SC qB AC TC rB","2":"F g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC","8":"QC RC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I pC qC rC sC BC tC uC","2":"f"},J:{"1":"D A"},K:{"1":"B C qB AC rB","2":"A g"},L:{"2":"H"},M:{"2":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:7,C:"Offline web applications"}; +module.exports={A:{A:{"1":"A B","2":"F EC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S GC HC","2":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","4":"uB","8":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T","2":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB UC rB CC VC sB","2":"F h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC","8":"SC TC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I rC sC tC uC DC vC wC","2":"H"},J:{"1":"D A"},K:{"1":"B C rB CC sB","2":"A h"},L:{"2":"H"},M:{"2":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"2":"BD"},S:{"1":"CD","2":"DD"}},B:7,C:"Offline web applications"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offscreencanvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offscreencanvas.js index 12935539961ff3..98e0f38e49a2a0 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB EC FC","194":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p"},D:{"1":"hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB aB bB cB dB eB fB gB"},E:{"1":"9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB PC QC RC SC qB AC TC rB","322":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"1":"9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"194":"AD"}},B:1,C:"OffscreenCanvas"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB GC HC","194":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q"},D:{"1":"iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","322":"ZB vB aB wB bB cB dB eB fB gB hB"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB RC SC TC UC rB CC VC sB","322":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"194":"CD DD"}},B:1,C:"OffscreenCanvas"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogg-vorbis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogg-vorbis.js index b1cadfb03fe286..8cc0821f0c16fa 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B","132":"G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"A","2":"D"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Ogg Vorbis audio format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B","132":"G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"A","2":"D"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Ogg Vorbis audio format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogv.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogv.js index 000f0893dd1da6..3a0113ad556554 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 CC","8":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:6,C:"Ogg/Theora video format"}; +module.exports={A:{A:{"2":"J D E EC","8":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"1":"f"},N:{"8":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"2":"BD"},S:{"1":"CD DD"}},B:6,C:"Ogg/Theora video format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ol-reversed.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ol-reversed.js index 979bb78d72925e..26d896ea16b927 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G","16":"M N O v"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC","16":"C"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Reversed attribute of ordered lists"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G","16":"M N O x"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC","16":"C"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Reversed attribute of ordered lists"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/once-event-listener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/once-event-listener.js index b9df311405e964..68719c331afb8a 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G"},C:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB EC FC"},D:{"1":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"\"once\" event listener option"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G"},C:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB GC HC"},D:{"1":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"\"once\" event listener option"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/online-status.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/online-status.js index a12577d80fab00..72cbfe962fe25c 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 CC","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB","516":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC","4":"rB"},G:{"1":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"A","132":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Online/offline status"}; +module.exports={A:{A:{"1":"F A B","2":"J D EC","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB","516":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC","4":"sB"},G:{"1":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"A","132":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Online/offline status"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/opus.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/opus.js index b629a5c2d099d7..ca3ad25d1e2659 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 I u J D E F A B C K L G M N O v w x y z"},E:{"2":"I u J D E F A HC zB IC JC KC LC 0B","132":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC","132":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Opus audio format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z"},E:{"2":"I w J D E F A JC 0B KC LC MC NC 1B","132":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC","132":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Opus audio format"}; 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 6f70dd376c3ddd..0207b234c4e12b 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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 uB ZB vB aB bB cB dB eB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"Orientation Sensor"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB 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 vB aB wB bB cB dB eB fB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:4,C:"Orientation Sensor"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/outline.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/outline.js index 385775f2f8dab6..e6c1e68b06e0a9 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 CC","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC","129":"rB","260":"F B PC QC RC SC qB AC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"C g rB","260":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"388":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS outline properties"}; +module.exports={A:{A:{"2":"J D EC","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC","129":"sB","260":"F B RC SC TC UC rB CC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"C h sB","260":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"388":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS outline properties"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pad-start-end.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pad-start-end.js index 738bb6f55c0d5e..a3939bd70593ea 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 CC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB EC FC"},D:{"1":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z 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":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB GC HC"},D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/page-transition-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/page-transition-events.js index 135b22593a8eb2..c0ff18813d8ac1 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"PageTransitionEvent"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"PageTransitionEvent"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pagevisibility.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pagevisibility.js index cdfbb732209254..f46ee4c49f9347 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F EC FC","33":"A B C K L G M N"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 L G M N O v w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B C PC QC RC SC qB AC TC","33":"G M N O v"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC","33":"tC uC"},J:{"1":"A","2":"D"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","33":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Page Visibility"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F GC HC","33":"A B C K L G M N"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B C RC SC TC UC rB CC VC","33":"G M N O x"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC","33":"vC wC"},J:{"1":"A","2":"D"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","33":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Page Visibility"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passive-event-listener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passive-event-listener.js index 19929745449291..b3639f7146aff5 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB EC FC"},D:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Passive event listeners"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB GC HC"},D:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"Passive event listeners"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passwordrules.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passwordrules.js index 9751853a4db7c9..5f38996b5539e3 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 CC"},B:{"2":"C K L G M N O","16":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H EC FC","16":"xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","16":"xB yB GC"},E:{"1":"C K rB","2":"I u J D E F A B HC zB IC JC KC LC 0B qB","16":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB PC QC RC SC qB AC TC rB","16":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"16":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","16":"f"},J:{"2":"D","16":"A"},K:{"2":"A B C qB AC rB","16":"g"},L:{"16":"H"},M:{"16":"H"},N:{"2":"A","16":"B"},O:{"16":"vC"},P:{"2":"I wC xC","16":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"16":"1B"},R:{"16":"9C"},S:{"2":"AD"}},B:1,C:"Password Rules"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","16":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H GC HC","16":"yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","16":"yB zB IC"},E:{"1":"C K sB","2":"I w J D E F A B JC 0B KC LC MC NC 1B rB","16":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB RC SC TC UC rB CC VC sB","16":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"16":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C rB CC sB","16":"h"},L:{"16":"H"},M:{"16":"f"},N:{"2":"A","16":"B"},O:{"16":"xC"},P:{"2":"I yC zC","16":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"16":"2B"},R:{"16":"BD"},S:{"2":"CD DD"}},B:1,C:"Password Rules"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/path2d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/path2d.js index a86ddeb13d90a6..ea10b10474c8cc 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K","132":"L G M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","132":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC","132":"E F KC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y PC QC RC SC qB AC TC rB","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","16":"E","132":"YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","132":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Path2D"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K","132":"L G M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 FC uB I w J D E F A B C K L G M N O x g y z GC HC","132":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB","132":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC","132":"E F MC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y z RC SC TC UC rB CC VC sB","132":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","16":"E","132":"aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","132":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Path2D"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/payment-request.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/payment-request.js index 577990fc989f72..6b6243de9ee35e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB EC FC","4162":"VB WB XB YB uB ZB vB aB bB cB dB","16452":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB UB VB WB XB YB","1090":"uB ZB","8196":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC","514":"A B 0B","8196":"C qB"},F:{"1":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB PC QC RC SC qB AC TC rB","194":"GB HB IB JB KB LB MB NB","8196":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC","514":"bC cC dC","8196":"eC fC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"2049":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"2C 3C 4C 5C sB 6C 7C 8C","2":"I","8196":"wC xC yC zC 0C 0B 1C"},Q:{"8196":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:2,C:"Payment Request API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB GC HC","4162":"WB XB YB ZB vB aB wB bB cB dB eB","16452":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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","1090":"vB aB","8196":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC","514":"A B 1B","8196":"C rB"},F:{"1":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB RC SC TC UC rB CC VC sB","194":"HB IB JB KB LB MB NB OB","8196":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC","514":"dC eC fC","8196":"gC hC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"2049":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 4C 5C 6C 7C tB 8C 9C AD","2":"I","8196":"yC zC 0C 1C 2C 1B 3C"},Q:{"8196":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:2,C:"Payment Request API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pdf-viewer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pdf-viewer.js index 5069e046437ac6..d863eb466cfc10 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 CC","132":"B"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"16":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"Built-in PDF viewer"}; +module.exports={A:{A:{"2":"J D E F A EC","132":"B"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"16":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"Built-in PDF viewer"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-api.js index d04aef9a0f34e6..82a2ed1b0508b3 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB EC FC"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Permissions API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB GC HC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Permissions API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-policy.js index 0390ef9a24b349..3b75725bcc2f68 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 CC"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g EC FC","258":"lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB","258":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U","322":"V W","388":"X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B HC zB IC JC KC LC 0B","258":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB PC QC RC SC qB AC TC rB","258":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","322":"kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d","388":"e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC","258":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","258":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","388":"g"},L:{"388":"H"},M:{"258":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC","258":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"258":"1B"},R:{"388":"9C"},S:{"2":"AD"}},B:5,C:"Permissions Policy"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h GC HC","258":"mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB","258":"aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U","322":"V W","388":"X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B JC 0B KC LC MC NC 1B","258":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB RC SC TC UC rB CC VC sB","258":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","322":"lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d","388":"e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC","258":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","258":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","388":"h"},L:{"388":"H"},M:{"258":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I yC zC 0C","258":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"258":"2B"},R:{"388":"BD"},S:{"2":"CD","258":"DD"}},B:5,C:"Permissions Policy"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture-in-picture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture-in-picture.js index cb4404e0aa1d64..4e6db3ba125f8e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB EC FC","132":"kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","1090":"fB","1412":"jB","1668":"gB hB iB"},D:{"1":"iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB","2114":"hB"},E:{"1":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC","4100":"A B C K 0B qB rB"},F:{"1":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB PC QC RC SC qB AC TC rB","8196":"DB EB FB GB HB IB JB KB LB MB 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":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC","4100":"ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"16388":"H"},M:{"16388":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"Picture-in-Picture"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB GC HC","132":"lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","1090":"gB","1412":"kB","1668":"hB iB jB"},D:{"1":"jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB","2114":"iB"},E:{"1":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC","4100":"A B C K 1B rB sB"},F:{"1":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB RC SC TC UC rB CC VC sB","8196":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB"},G:{"1":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC","4100":"bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"16388":"H"},M:{"16388":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"Picture-in-Picture"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture.js index aeb90ec9e0ac95..ac41c5461f6594 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","578":"AB BB CB DB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB","194":"DB"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y z PC QC RC SC qB AC TC rB","322":"0"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Picture element"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB GC HC","578":"BB CB DB EB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB","194":"EB"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 F B C G M N O x g y z RC SC TC UC rB CC VC sB","322":"1"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Picture element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ping.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ping.js index 14ec3b4d3d1380..757d1c93cdb40d 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M"},C:{"2":"DC","194":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"194":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"194":"AD"}},B:1,C:"Ping attribute"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M"},C:{"2":"FC","194":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"194":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"194":"CD DD"}},B:1,C:"Ping attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/png-alpha.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/png-alpha.js index 85ed8cdd7618df..98a3a36c287b9b 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":"CC","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"PNG alpha transparency"}; +module.exports={A:{A:{"1":"D E F A B","2":"EC","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"PNG alpha transparency"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer-events.js index e1033bd6471271..ce249858391bc4 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","2":"DC tB EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:7,C:"CSS pointer-events (for HTML)"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","2":"FC uB GC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:7,C:"CSS pointer-events (for HTML)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer.js index ff7c2fd26bbf3d..93ae00884950e5 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 CC","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC","8":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB","328":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},D:{"1":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w x","8":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","584":"SB TB UB"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC","8":"D E F A B C JC KC LC 0B qB","1096":"rB"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","8":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB","584":"FB GB HB"},G:{"1":"iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC","6148":"hC"},H:{"2":"oC"},I:{"1":"f","8":"tB I pC qC rC sC BC tC uC"},J:{"8":"D A"},K:{"1":"g","2":"A","8":"B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","36":"A"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"wC","8":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"328":"AD"}},B:2,C:"Pointer events"}; +module.exports={A:{A:{"1":"B","2":"J D E F EC","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC","8":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB","328":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},D:{"1":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g y","8":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","584":"TB UB VB"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC","8":"D E F A B C LC MC NC 1B rB","1096":"sB"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","8":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB","584":"GB HB IB"},G:{"1":"kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC","6148":"jC"},H:{"2":"qC"},I:{"1":"H","8":"uB I rC sC tC uC DC vC wC"},J:{"8":"D A"},K:{"1":"h","2":"A","8":"B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","36":"A"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"yC","8":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","328":"CD"}},B:2,C:"Pointer events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointerlock.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointerlock.js index 3226df521b0af0..0afb96229105d8 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K EC FC","33":"0 1 2 3 4 5 6 7 8 9 L G M N O v w x y z AB BB CB DB EB FB GB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB","66":"M N O v w x"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"G M N O v w x y z"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Pointer Lock API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K GC HC","33":"0 1 2 3 4 5 6 7 8 9 L G M N O x g y z AB BB CB DB EB FB GB HB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB","66":"M N O x g y"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"0 G M N O x g y z"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Pointer Lock API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/portals.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/portals.js index 8cebf821d6c1d8..2242ec6c40e451 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 CC"},B:{"2":"C K L G M N O P Q R S T","322":"Z a b c d e h i j k l m n o p q r s t f H","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB","194":"mB nB oB pB P Q R S T","322":"V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","450":"U"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB PC QC RC SC qB AC TC rB","194":"aB bB cB dB eB fB gB hB iB jB kB","322":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"450":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Portals"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O P Q R S T","322":"Z a b c d e i j k l m n o p q r s t u v f H","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB","194":"nB oB pB qB P Q R S T","322":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","450":"U"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB 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 TC UC rB CC VC sB","194":"bB cB dB eB fB gB hB iB jB kB lB","322":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"450":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Portals"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-color-scheme.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-color-scheme.js index 1e102e00c93fea..f0e48fe486b372 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB EC FC"},D:{"1":"nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB"},E:{"1":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB PC QC RC SC qB AC TC rB"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"prefers-color-scheme media query"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB GC HC"},D:{"1":"oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB"},E:{"1":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB 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 TC UC rB CC VC sB"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"prefers-color-scheme media query"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js index 538c33f2d95e63..0a8b155c70da63 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB EC FC"},D:{"1":"lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"prefers-reduced-motion media query"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB GC HC"},D:{"1":"mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB 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 TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"prefers-reduced-motion media query"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/progress.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/progress.js index 5b6a3268e99a0e..4e65bbce1cfce9 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F PC QC RC SC"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC","132":"XC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"progress element"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F RC SC TC UC"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC","132":"ZC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"progress element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promise-finally.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promise-finally.js index cc2cb2eb243ce0..c76895c13b7f60 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 CC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N"},C:{"1":"YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB EC FC"},D:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"Promise.prototype.finally"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N"},C:{"1":"ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB GC HC"},D:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"Promise.prototype.finally"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promises.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promises.js index 0d54133b198330..9ac485698500f1 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","4":"3 4","8":"0 1 2 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"8","8":"0 1 2 3 4 5 6 7 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I u J D HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","4":"v","8":"F B C G M N O PC QC RC SC qB AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"zB UC BC VC WC XC"},H:{"8":"oC"},I:{"1":"f uC","8":"tB I pC qC rC sC BC tC"},J:{"8":"D A"},K:{"1":"g","8":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Promises"}; +module.exports={A:{A:{"8":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","4":"4 5","8":"0 1 2 3 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"9","8":"0 1 2 3 4 5 6 7 8 I w J D E F A B C K L G M N O x g y z"},E:{"1":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I w J D JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","4":"x","8":"F B C G M N O RC SC TC UC rB CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"0B WC DC XC YC ZC"},H:{"8":"qC"},I:{"1":"H wC","8":"uB I rC sC tC uC DC vC"},J:{"8":"D A"},K:{"1":"h","8":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Promises"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proximity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proximity.js index 9719c044083842..3a67d589ee4c9a 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:4,C:"Proximity API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"CD DD"}},B:4,C:"Proximity API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proxy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proxy.js index d99a5a5db91079..242ca7a885e94d 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O EB FB GB HB IB JB KB LB MB NB OB","66":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"1 2 3 4 5 6 7 8 9 F B C AB BB PC QC RC SC qB AC TC rB","66":"0 G M N O v w x y z"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Proxy object"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O FB GB HB IB JB KB LB MB NB OB PB","66":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"2 3 4 5 6 7 8 9 F B C AB BB CB RC SC TC UC rB CC VC sB","66":"0 1 G M N O x g y z"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Proxy object"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/publickeypinning.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/publickeypinning.js index 64cd8946a52fb8..e1d8410f5cb047 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","2":"F B C G M N O v eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","4":"z","16":"0 w x y"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"I wC xC yC zC 0C 0B","2":"1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:6,C:"HTTP Public Key Pinning"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"F B C G M N O x fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","4":"0","16":"1 g y z"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"I yC zC 0C 1C 2C 1B","2":"g 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"CD","2":"DD"}},B:6,C:"HTTP Public Key Pinning"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/push-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/push-api.js index 78e0e278865939..7e2251448d8873 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 CC"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB EC FC","257":"KB MB NB OB PB QB RB TB UB VB WB XB YB uB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","1281":"LB SB ZB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB","257":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","388":"KB LB MB NB OB PB"},E:{"2":"I u J HC zB IC JC","514":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB","4612":"6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB PC QC RC SC qB AC TC rB","16":"DB EB FB GB HB","257":"IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B","8196":"9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"2":"9C"},S:{"257":"AD"}},B:5,C:"Push API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB GC HC","257":"LB NB OB PB QB RB SB UB VB WB XB YB ZB vB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","1281":"MB TB aB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB","257":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","388":"LB MB NB OB PB QB"},E:{"2":"I w J JC 0B KC LC","514":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB","4612":"7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB RC SC TC UC rB CC VC sB","16":"EB FB GB HB IB","257":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B","8196":"AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"2":"BD"},S:{"257":"CD DD"}},B:5,C:"Push API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/queryselector.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/queryselector.js index bab8f703ec84e1..8be59357d6aa48 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":"CC","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","8":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","8":"F PC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"querySelector/querySelectorAll"}; +module.exports={A:{A:{"1":"F A B","2":"EC","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","8":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","8":"F RC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"querySelector/querySelectorAll"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/readonly-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/readonly-attr.js index 15dd6b1c4ad597..032463b647e4b1 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":"CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC tB EC FC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"0 1 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F PC","132":"B C QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC WC"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"g","132":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"257":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"readonly attribute of input and textarea elements"}; +module.exports={A:{A:{"1":"J D E F A B","16":"EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC uB GC HC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"0 1 2 I w J D E F A B C K L G M N O x g y z"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F RC","132":"B C SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC YC"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"h","132":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"257":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"readonly attribute of input and textarea elements"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/referrer-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/referrer-policy.js index e88b188bb0669c..ffbc2a1dd79eef 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 CC","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB EC FC","513":"W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T","2":"I u J D E F A B C K L G M N O v w","260":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB","513":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"C qB rB","2":"I u J D HC zB IC JC","132":"E F A B KC LC 0B","1025":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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":"F B C PC QC RC SC qB AC TC rB","513":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"fC gC hC iC","2":"zB UC BC VC WC XC","132":"E YC ZC aC bC cC dC eC","1025":"jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","513":"g"},L:{"513":"H"},M:{"513":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"513":"9C"},S:{"1":"AD"}},B:4,C:"Referrer Policy"}; +module.exports={A:{A:{"2":"J D E F A EC","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB GC HC","513":"W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T","2":"I w J D E F A B C K L G M N O x g","260":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB","513":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"C rB sB","2":"I w J D JC 0B KC LC","132":"E F A B MC NC 1B","1025":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 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 RC SC TC UC rB CC VC sB","513":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"hC iC jC kC","2":"0B WC DC XC YC ZC","132":"E aC bC cC dC eC fC gC","1025":"lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","513":"h"},L:{"513":"H"},M:{"513":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"513":"BD"},S:{"1":"CD DD"}},B:4,C:"Referrer Policy"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/registerprotocolhandler.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/registerprotocolhandler.js index 4fe69ae5de8ef0..8c46e0a12e7e71 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 CC"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC"},D:{"2":"I u J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B PC QC RC SC qB AC","129":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D","129":"A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:1,C:"Custom protocol handling"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC"},D:{"2":"I w J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B RC SC TC UC rB CC","129":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D","129":"A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:1,C:"Custom protocol handling"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noopener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noopener.js index ff03455302849a..df182863858311 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"rel=noopener"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"rel=noopener"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noreferrer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noreferrer.js index 784accc4c67c56..81c6d34af5cfc5 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 CC","132":"B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","16":"C"},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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L G"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Link type \"noreferrer\""}; +module.exports={A:{A:{"2":"J D E F A EC","132":"B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","16":"C"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L G"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Link type \"noreferrer\""}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rellist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rellist.js index 396adbf101c41d..37abdcbe0b142c 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 CC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M","132":"N"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","132":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E HC zB IC JC KC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB PC QC RC SC qB AC TC rB","132":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","132":"wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"relList (DOMTokenList)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M","132":"N"},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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 YB ZB vB aB wB bB cB dB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E JC 0B KC LC MC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB RC SC TC UC rB CC VC sB","132":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","132":"yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"relList (DOMTokenList)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rem.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rem.js index 69cdf0c9d256b0..338d1f594969e6 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 CC","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","2":"DC tB EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F B PC QC RC SC qB AC"},G:{"1":"E UC BC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB","260":"VC"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"C g rB","2":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"rem (root em) units"}; +module.exports={A:{A:{"1":"B","2":"J D E EC","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","2":"FC uB GC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F B RC SC TC UC rB CC"},G:{"1":"E WC DC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B","260":"XC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"C h sB","2":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"rem (root em) units"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestanimationframe.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestanimationframe.js index a9f5a6ad6b4c9d..add9b6e8f4dfce 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","33":"B C K L G M N O v w x y","164":"I u J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F","33":"y z","164":"O v w x","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","33":"WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"requestAnimationFrame"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","33":"B C K L G M N O x g y z","164":"I w J D E F A"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F","33":"0 z","164":"O x g y","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","33":"YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"requestAnimationFrame"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestidlecallback.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestidlecallback.js index 3bd8fbe03a2e07..457db0c5598495 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB EC FC","194":"TB UB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB","322":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC","322":"kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"requestIdleCallback"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB GC HC","194":"UB VB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB","322":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC","322":"mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"requestIdleCallback"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resizeobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resizeobserver.js index 57adc24a7e74cc..dbb015e5bdc4e4 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB EC FC"},D:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB VB WB XB YB uB ZB vB aB bB"},E:{"1":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB rB","66":"K"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB PC QC RC SC qB AC TC rB","194":"HB IB JB KB LB MB NB OB PB QB RB"},G:{"1":"kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Resize Observer"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB GC HC"},D:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","194":"VB WB XB YB ZB vB aB wB bB cB"},E:{"1":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB sB","66":"K"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB RC SC TC UC rB CC VC sB","194":"IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"Resize Observer"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resource-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resource-timing.js index 13d3d4665c7837..b87e3472589052 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"7 8 9 AB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Resource Timing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"8 9 AB BB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 I w J D E F A B C K L G M N O x g y z"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Resource Timing"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rest-parameters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rest-parameters.js index f53cd9b72c3fd9..e8d9fe5b5c6a4d 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB","194":"KB LB MB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","194":"7 8 9"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Rest parameters"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB NB"},E:{"1":"A B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 F B C G M N O x g y z RC SC TC UC rB CC VC sB","194":"8 9 AB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Rest parameters"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rtcpeerconnection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rtcpeerconnection.js index 02a596193c61c1..233971a312fe83 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L","516":"G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x EC FC","33":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w x y","33":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","130":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"WebRTC Peer-to-peer connections"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L","516":"G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y GC HC","33":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g y z","33":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","130":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"33":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"WebRTC Peer-to-peer connections"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js index a6fb004e52809f..4cad437f10cbcc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js @@ -1 +1 @@ -module.exports={A:{A:{"4":"J D E F A B CC"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EC FC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","8":"I"},E:{"4":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I HC zB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","8":"F B C PC QC RC SC qB AC TC rB"},G:{"4":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"zB UC BC"},H:{"8":"oC"},I:{"4":"tB I f sC BC tC uC","8":"pC qC rC"},J:{"4":"A","8":"D"},K:{"4":"g","8":"A B C qB AC rB"},L:{"4":"H"},M:{"1":"H"},N:{"4":"A B"},O:{"4":"vC"},P:{"4":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"4":"1B"},R:{"4":"9C"},S:{"1":"AD"}},B:1,C:"Ruby annotation"}; +module.exports={A:{A:{"4":"J D E F A B EC"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB GC HC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","8":"I"},E:{"4":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I JC 0B"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","8":"F B C RC SC TC UC rB CC VC sB"},G:{"4":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"0B WC DC"},H:{"8":"qC"},I:{"4":"uB I H uC DC vC wC","8":"rC sC tC"},J:{"4":"A","8":"D"},K:{"4":"h","8":"A B C rB CC sB"},L:{"4":"H"},M:{"1":"f"},N:{"4":"A B"},O:{"4":"xC"},P:{"4":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"4":"2B"},R:{"4":"BD"},S:{"1":"CD DD"}},B:1,C:"Ruby annotation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/run-in.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/run-in.js index 2841a3844cd40c..43eb2b70dd45d9 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 I u J D E F A B C K L G M N O v w x y z","2":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J IC","2":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"JC","129":"I HC zB"},F:{"1":"F B C G M N O PC QC RC SC qB AC TC rB","2":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"UC BC VC WC XC","2":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","129":"zB"},H:{"1":"oC"},I:{"1":"tB I pC qC rC sC BC tC","2":"f uC"},J:{"1":"D A"},K:{"1":"A B C qB AC rB","2":"g"},L:{"2":"H"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"display: run-in"}; +module.exports={A:{A:{"1":"E F A B","2":"J D EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 I w J D E F A B C K L G M N O x g y z","2":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J KC","2":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"LC","129":"I JC 0B"},F:{"1":"F B C G M N O RC SC TC UC rB CC VC sB","2":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"WC DC XC YC ZC","2":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","129":"0B"},H:{"1":"qC"},I:{"1":"uB I rC sC tC uC DC vC","2":"H wC"},J:{"1":"D A"},K:{"1":"A B C rB CC sB","2":"h"},L:{"2":"H"},M:{"2":"f"},N:{"1":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:4,C:"display: run-in"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js index d1e0041f58e752..4f11c63c875226 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 CC","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB EC FC"},D:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","513":"Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B qB","2052":"L MC","3076":"C K rB 1B"},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","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB PC QC RC SC qB AC TC rB","513":"jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC","2052":"fC gC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","513":"g"},L:{"513":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"16":"1B"},R:{"513":"9C"},S:{"2":"AD"}},B:6,C:"'SameSite' cookie attribute"}; +module.exports={A:{A:{"2":"J D E F A EC","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB GC HC"},D:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","513":"Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B rB","2052":"L OC","3076":"C K sB 2B"},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","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB RC SC TC UC rB CC VC sB","513":"kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC","2052":"hC iC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","513":"h"},L:{"513":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"16":"2B"},R:{"513":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"'SameSite' cookie attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/screen-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/screen-orientation.js index e76f30d6dc2e80..97b4e057683770 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 CC","164":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","36":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N EC FC","36":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB"},E:{"1":"9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A","36":"B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","16":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"Screen Orientation"}; +module.exports={A:{A:{"2":"J D E F A EC","164":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","36":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N GC HC","36":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB"},E:{"1":"AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A","36":"B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","16":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"Screen Orientation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-async.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-async.js index 5a43520c9e6f26..dd44454f842496 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","2":"DC tB EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","132":"u"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"async attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","2":"FC uB GC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","132":"w"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"async attribute for external scripts"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-defer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-defer.js index 69271930cc4c82..835560dac7ce38 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","257":"0 1 2 3 4 5 6 I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"defer attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","132":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","257":"0 1 2 3 4 5 6 7 I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"defer attribute for external scripts"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoview.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoview.js index 131a60f47796cd..696caf606af5d2 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 CC","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","132":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","132":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB EC FC"},D:{"1":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u HC zB","132":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F PC QC RC SC","16":"B qB AC","132":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB TC rB"},G:{"1":"sB 6B 7B 8B 9B","16":"zB UC BC","132":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"1":"f","16":"pC qC","132":"tB I rC sC BC tC uC"},J:{"132":"D A"},K:{"1":"g","132":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"132":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"scrollIntoView"}; +module.exports={A:{A:{"2":"J D EC","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","132":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","132":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB GC HC"},D:{"1":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w JC 0B","132":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F RC SC TC UC","16":"B rB CC","132":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB VC sB"},G:{"1":"tB 7B 8B 9B AC BC","16":"0B WC DC","132":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"1":"H","16":"rC sC","132":"uB I tC uC DC vC wC"},J:{"132":"D A"},K:{"1":"h","132":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"132":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"scrollIntoView"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js index 772d9908bc0af0..96e915794b2c18 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sdch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sdch.js index b820fb82ead691..679b5a365a63a3 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","2":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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":"F B C g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB 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":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selection-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selection-api.js index 014059413443e2..a3747d9b85234f 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":"CC","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","132":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB EC FC","2180":"JB KB LB MB NB OB PB QB RB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","132":"F B C PC QC RC SC qB AC TC rB"},G:{"16":"BC","132":"zB UC","516":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f tC uC","16":"tB I pC qC rC sC","1025":"BC"},J:{"1":"A","16":"D"},K:{"1":"g","16":"A B C qB AC","132":"rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","16":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2180":"AD"}},B:5,C:"Selection API"}; +module.exports={A:{A:{"1":"F A B","16":"EC","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","132":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB GC HC","2180":"KB LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","132":"F B C RC SC TC UC rB CC VC sB"},G:{"16":"DC","132":"0B WC","516":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H vC wC","16":"uB I rC sC tC uC","1025":"DC"},J:{"1":"A","16":"D"},K:{"1":"h","16":"A B C rB CC","132":"sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","16":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2180":"CD"}},B:5,C:"Selection API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/server-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/server-timing.js index b63cc1ad9c5d67..7e87c36bc7a211 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB EC FC"},D:{"1":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB","196":"ZB vB aB bB","324":"cB"},E:{"2":"I u J D E F A B C HC zB IC JC KC LC 0B qB","516":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Server Timing"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB GC HC"},D:{"1":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB","196":"aB wB bB cB","324":"dB"},E:{"2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB","516":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"Server Timing"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/serviceworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/serviceworkers.js index 55e2af61db4bea..42eff61b5ee0c0 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L","322":"G M"},C:{"1":"KB MB NB OB PB QB RB TB UB VB WB XB YB uB vB aB bB cB dB eB fB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"9 AB BB CB DB EB FB GB HB IB JB","513":"LB SB ZB gB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB","4":"GB HB IB JB KB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","4":"3 4 5 6 7"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","4":"f"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"Service Workers"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L","322":"G M"},C:{"1":"LB NB OB PB QB RB SB UB VB WB XB YB ZB vB wB bB cB dB eB fB gB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"AB BB CB DB EB FB GB HB IB JB KB","513":"MB TB aB hB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB","4":"HB IB JB KB LB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 F B C G M N O x g y z RC SC TC UC rB CC VC sB","4":"4 5 6 7 8"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","4":"H"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"Service Workers"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/setimmediate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/setimmediate.js index 91ef5c05a11dff..a5f209fea34649 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 CC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"1":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdom.js index 7f60b3e18b5602..9de757a080f179 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 CC"},B:{"1":"P","2":"C K L G M N O Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","66":"5 6 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 uB ZB"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P","2":"0 I u J D E F A B C K L G M N O v w x y z Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"1 2 3 4 5 6 7 8 9 AB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"F B C fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","33":"G M N O v w x"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC","33":"tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C","2":"3C 4C 5C sB 6C 7C 8C","33":"I"},Q:{"1":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P","2":"C K L G M N O Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","66":"6 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 vB aB"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P","2":"0 1 I w J D E F A B C K L G M N O x g y z Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"2 3 4 5 6 7 8 9 AB BB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","2":"F B C gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","33":"G M N O x g y"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC","33":"vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"yC zC 0C 1C 2C 1B 3C 4C","2":"g 5C 6C 7C tB 8C 9C AD","33":"I"},Q:{"1":"2B"},R:{"2":"BD"},S:{"1":"CD","2":"DD"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdomv1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdomv1.js index 021436dd6acb88..6bfa03f7302b9b 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB EC FC","322":"YB","578":"uB ZB vB aB"},D:{"1":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"A B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC","132":"bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","4":"wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Shadow DOM (V1)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB GC HC","322":"ZB","578":"vB aB wB bB"},D:{"1":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC","132":"dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","4":"yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"Shadow DOM (V1)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedarraybuffer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedarraybuffer.js index b32b15276695b8..6ab2e9b702c435 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 CC"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L G","194":"M N O","513":"a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB EC FC","194":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g","450":"lB mB nB oB pB","513":"P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB","194":"ZB vB aB bB cB dB eB fB","513":"a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A HC zB IC JC KC LC","194":"B C K L G 0B qB rB 1B MC NC","513":"2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB PC QC RC SC qB AC TC rB","194":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC","194":"cC dC eC fC gC hC iC jC kC lC mC nC","513":"2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","513":"g"},L:{"513":"H"},M:{"513":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C","513":"5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"513":"9C"},S:{"2":"AD"}},B:6,C:"Shared Array Buffer"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L G","194":"M N O","513":"a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB GC HC","194":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h","450":"mB nB oB pB qB","513":"P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB","194":"aB wB bB cB dB eB fB gB","513":"a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A JC 0B KC LC MC NC","194":"B C K L G 1B rB sB 2B OC PC","513":"3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB RC SC TC UC rB CC VC sB","194":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC","194":"eC fC gC hC iC jC kC lC mC nC oC pC","513":"3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","513":"h"},L:{"513":"H"},M:{"513":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C","513":"g 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"513":"BD"},S:{"2":"CD","513":"DD"}},B:6,C:"Shared Array Buffer"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedworkers.js index cef63a658614b9..27f0c72adc3a2d 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"u J IC sB 6B 7B 8B 9B OC","2":"I D E F A B C K L G HC zB JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","2":"F PC QC RC"},G:{"1":"VC WC sB 6B 7B 8B 9B","2":"E zB UC BC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"B C qB AC rB","2":"g","16":"A"},L:{"2":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"I","2":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:1,C:"Shared Web Workers"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"w J KC tB 7B 8B 9B AC BC QC","2":"I D E F A B C K L G JC 0B LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","2":"F RC SC TC"},G:{"1":"XC YC tB 7B 8B 9B AC BC","2":"E 0B WC DC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"B C rB CC sB","2":"h","16":"A"},L:{"2":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"I","2":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"CD DD"}},B:1,C:"Shared Web Workers"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sni.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sni.js index a3fe0803c4aac8..0a01af25d86230 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 CC","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},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 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB"},H:{"1":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Server Name Indication"}; +module.exports={A:{A:{"1":"F A B","2":"J EC","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},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 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B"},H:{"1":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Server Name Indication"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spdy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spdy.js index 63971fbce6f02c..9dc83b907cff74 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","2":"DC tB I u J D E F A B C RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","2":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"E F A B C LC 0B qB","2":"I u J D HC zB IC JC KC","129":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB IB KB rB","2":"F B C GB HB JB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC"},G:{"1":"E YC ZC aC bC cC dC eC fC","2":"zB UC BC VC WC XC","257":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I sC BC tC uC","2":"f pC qC rC"},J:{"2":"D A"},K:{"1":"rB","2":"A B C g qB AC"},L:{"2":"H"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"2":"vC"},P:{"1":"I","2":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:7,C:"SPDY protocol"}; +module.exports={A:{A:{"1":"B","2":"J D E F A EC"},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 i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","2":"FC uB I w J D E F A B C SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","2":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"E F A B C NC 1B rB","2":"I w J D JC 0B KC LC MC","129":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB JB LB sB","2":"F B C HB IB KB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC"},G:{"1":"E aC bC cC dC eC fC gC hC","2":"0B WC DC XC YC ZC","257":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I uC DC vC wC","2":"H rC sC tC"},J:{"2":"D A"},K:{"1":"sB","2":"A B C h rB CC"},L:{"2":"H"},M:{"2":"f"},N:{"1":"B","2":"A"},O:{"2":"xC"},P:{"1":"I","2":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"CD","2":"DD"}},B:7,C:"SPDY protocol"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-recognition.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-recognition.js index 0e1f5242274990..49e315fd29092b 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 CC"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB I u J D E F A B C K L G M N O v w x EC FC","322":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 I u J D E F A B C K L G M N O v w x y z","164":"1 2 3 4 5 6 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L HC zB IC JC KC LC 0B qB rB 1B","2084":"G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","1026":"3 4 5 6 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC","2084":"mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","164":"g"},L:{"164":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"164":"vC"},P:{"164":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"164":"1B"},R:{"164":"9C"},S:{"322":"AD"}},B:7,C:"Speech Recognition API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC uB I w J D E F A B C K L G M N O x g y GC HC","322":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 I w J D E F A B C K L G M N O x g y z","164":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L JC 0B KC LC MC NC 1B rB sB 2B","2084":"G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 F B C G M N O x g y z RC SC TC UC rB CC VC sB","1026":"4 5 6 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC","2084":"oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","164":"h"},L:{"164":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"164":"xC"},P:{"164":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"164":"2B"},R:{"164":"BD"},S:{"322":"CD DD"}},B:7,C:"Speech Recognition API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-synthesis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-synthesis.js index c3256e04993fd6..8b12855ce641bd 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 CC"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","2":"0 1 2 3 4 5 6 7 8 I u J D E F A B C K L G M N O v w x y z","257":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","2":"0 1 2 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","257":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:7,C:"Speech Synthesis API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z","257":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","2":"0 1 2 3 F B C G M N O x g y z RC SC TC UC rB CC VC sB","257":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"2":"BD"},S:{"1":"CD DD"}},B:7,C:"Speech Synthesis API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spellcheck-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spellcheck-attribute.js index daa91756695a1f..17d82c905ff521 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"4":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"4":"oC"},I:{"4":"tB I f pC qC rC sC BC tC uC"},J:{"1":"A","4":"D"},K:{"4":"A B C g qB AC rB"},L:{"4":"H"},M:{"4":"H"},N:{"4":"A B"},O:{"4":"vC"},P:{"4":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"4":"9C"},S:{"2":"AD"}},B:1,C:"Spellcheck attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"4":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"4":"qC"},I:{"4":"uB I H rC sC tC uC DC vC wC"},J:{"1":"A","4":"D"},K:{"4":"A B C h rB CC sB"},L:{"4":"H"},M:{"4":"f"},N:{"4":"A B"},O:{"4":"xC"},P:{"4":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"4":"BD"},S:{"2":"CD DD"}},B:1,C:"Spellcheck attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sql-storage.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sql-storage.js index 92b449e461bafb..6f1ad4ec0cf4c7 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p","2":"C K L G M N O","129":"q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p","129":"q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C HC zB IC JC KC LC 0B qB rB","2":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z RC SC qB AC TC rB","2":"F PC QC","129":"a b c d e"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC","2":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I pC qC rC sC BC tC uC","129":"f"},J:{"1":"D A"},K:{"1":"B C qB AC rB","2":"A","129":"g"},L:{"129":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"Web SQL Database"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q","2":"C K L G M N O","129":"r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q","129":"r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C JC 0B KC LC MC NC 1B rB sB","2":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z TC UC rB CC VC sB","2":"F RC SC","129":"a b c d e"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC","2":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I rC sC tC uC DC vC wC","129":"H"},J:{"1":"D A"},K:{"1":"B C rB CC sB","2":"A","129":"h"},L:{"129":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"Web SQL Database"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/srcset.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/srcset.js index 9da922750ffdbb..8c1518c19e79e3 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C","514":"K L G"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"8 9 AB BB CB DB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z","260":"AB BB CB DB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC JC","260":"E KC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w PC QC RC SC qB AC TC rB","260":"0 x y z"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","260":"E YC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Srcset and sizes attributes"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C","514":"K L G"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"9 AB BB CB DB EB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB","260":"BB CB DB EB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC LC","260":"E MC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g RC SC TC UC rB CC VC sB","260":"0 1 y z"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","260":"E aC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Srcset and sizes attributes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stream.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stream.js index 878a6f3c2790ba..33e1f2c0db0b21 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M EC FC","129":"CB DB EB FB GB HB","420":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB"},D:{"1":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w","420":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B G M N PC QC RC SC qB AC TC","420":"0 1 2 3 4 5 6 7 8 9 C O v w x y z AB BB CB DB EB FB rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC","513":"kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","1537":"dC eC fC gC hC iC jC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","420":"A"},K:{"1":"g","2":"A B qB AC","420":"C rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","420":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"getUserMedia/Stream API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M GC HC","129":"DB EB FB GB HB IB","420":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB"},D:{"1":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g","420":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B G M N RC SC TC UC rB CC VC","420":"0 1 2 3 4 5 6 7 8 9 C O x g y z AB BB CB DB EB FB GB sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC","513":"mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","1537":"fC gC hC iC jC kC lC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","420":"A"},K:{"1":"h","2":"A B rB CC","420":"C sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","420":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:4,C:"getUserMedia/Stream API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/streams.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/streams.js index 93416fcb567262..bd6ad2afaf57a0 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 CC","130":"B"},B:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H","16":"C K","260":"L G","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB EC FC","5124":"l m","7172":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k","7746":"XB YB uB ZB vB aB bB cB"},D:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","260":"SB TB UB VB WB XB YB","1028":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X"},E:{"2":"I u J D E F HC zB IC JC KC LC","1028":"G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","3076":"A B C K L 0B qB rB 1B"},F:{"1":"nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB PC QC RC SC qB AC TC rB","260":"FB GB HB IB JB KB LB","1028":"MB 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 lB mB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC","16":"bC","1028":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1028":"vC"},P:{"1":"5C sB 6C 7C 8C","2":"I wC xC","1028":"yC zC 0C 0B 1C 2C 3C 4C"},Q:{"1028":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"Streams"}; +module.exports={A:{A:{"2":"J D E F A EC","130":"B"},B:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H","16":"C K","260":"L G","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB GC HC","5124":"m n","7172":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l","7746":"YB ZB vB aB wB bB cB dB"},D:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","260":"TB UB VB WB XB YB ZB","1028":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X"},E:{"2":"I w J D E F JC 0B KC LC MC NC","1028":"G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","3076":"A B C K L 1B rB sB 2B"},F:{"1":"oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB RC SC TC UC rB CC VC sB","260":"GB HB IB JB KB LB MB","1028":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC","16":"dC","1028":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1028":"xC"},P:{"1":"g 7C tB 8C 9C AD","2":"I yC zC","1028":"0C 1C 2C 1B 3C 4C 5C 6C"},Q:{"1028":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:1,C:"Streams"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stricttransportsecurity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stricttransportsecurity.js index 902d44e808cc9b..a75b3ffa1ab942 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 CC","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Strict Transport Security"}; +module.exports={A:{A:{"2":"J D E F A EC","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Strict Transport Security"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/style-scoped.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/style-scoped.js index 7a1823c24d411a..70e90e34d8daee 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","2":"DC tB I u J D E F A B C K L G M N O v w vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","322":"VB WB XB YB uB ZB"},D:{"2":"I u J D E F A B C K L G M N O v DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","194":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"1":"AD"}},B:7,C:"Scoped CSS"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","2":"FC uB I w J D E F A B C K L G M N O x g wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","322":"WB XB YB ZB vB aB"},D:{"2":"I w J D E F A B C K L G M N O x EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","194":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"CD","2":"DD"}},B:7,C:"Scoped CSS"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js index 15784c9140d818..e63a19f1eadf65 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 CC"},B:{"1":"p q r s t f 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 h i j k l m n o"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Subresource Loading with Web Bundles"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"q r s t u v f 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 i j k l m n o p"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Subresource Loading with Web Bundles"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-integrity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-integrity.js index 701b5e45472ed8..dd8525958a1ec8 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB EC FC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC","194":"dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Subresource Integrity"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB GC HC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC","194":"fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Subresource Integrity"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-css.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-css.js index d07e296411c846..89ef8e4c0ed78d 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","516":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","260":"I u J D E F A B C K L G M N O v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"I"},E:{"1":"u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC","132":"I zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","132":"zB UC"},H:{"260":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"D A"},K:{"1":"g","260":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"SVG in CSS backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","516":"C K L G"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","260":"0 I w J D E F A B C K L G M N O x g y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"I"},E:{"1":"w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC","132":"I 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","132":"0B WC"},H:{"260":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"D A"},K:{"1":"h","260":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"SVG in CSS backgrounds"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-filters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-filters.js index b5b075857dc8f7..a4ff0bc172d9be 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I","4":"u J D"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"SVG filters"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I","4":"w J D"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"SVG filters"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fonts.js index 318fea623af382..8f533ee9e6dbfa 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 CC","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB","2":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","130":"EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC"},F:{"1":"0 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","2":"DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","130":"1 2 3 4 5 6 7 8 9 AB BB CB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"258":"oC"},I:{"1":"tB I sC BC tC uC","2":"f pC qC rC"},J:{"1":"D A"},K:{"1":"A B C qB AC rB","2":"g"},L:{"130":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"I","130":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"130":"9C"},S:{"2":"AD"}},B:2,C:"SVG fonts"}; +module.exports={A:{A:{"2":"F A B EC","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB","2":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","130":"FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC"},F:{"1":"0 1 F B C G M N O x g y z RC SC TC UC rB CC VC sB","2":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","130":"2 3 4 5 6 7 8 9 AB BB CB DB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"258":"qC"},I:{"1":"uB I uC DC vC wC","2":"H rC sC tC"},J:{"1":"D A"},K:{"1":"A B C rB CC sB","2":"h"},L:{"130":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"I","130":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"130":"BD"},S:{"2":"CD DD"}},B:2,C:"SVG fonts"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fragment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fragment.js index af606ad5f618ae..d6fd76375c77b5 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 CC","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"1":"QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D F A B HC zB IC JC LC 0B","132":"E KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"G M N O v w x y","4":"B C QC RC SC qB AC TC","16":"F PC","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC ZC aC bC cC dC","132":"E YC"},H:{"1":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D","132":"A"},K:{"1":"g rB","4":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","132":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"SVG fragment identifiers"}; +module.exports={A:{A:{"2":"J D E EC","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"1":"RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB","132":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D F A B JC 0B KC LC NC 1B","132":"E MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"G M N O x g y z","4":"B C SC TC UC rB CC VC","16":"F RC","132":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC bC cC dC eC fC","132":"E aC"},H:{"1":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D","132":"A"},K:{"1":"h sB","4":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","132":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"SVG fragment identifiers"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html.js index 59cabfe038f995..bb505a95b54b76 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 CC","388":"F A B"},B:{"4":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC","4":"tB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"HC zB","4":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"4":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC","4":"f tC uC"},J:{"1":"A","2":"D"},K:{"4":"A B C g qB AC rB"},L:{"4":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"4":"vC"},P:{"4":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"4":"1B"},R:{"4":"9C"},S:{"1":"AD"}},B:2,C:"SVG effects for HTML"}; +module.exports={A:{A:{"2":"J D E EC","388":"F A B"},B:{"4":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC","4":"uB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"JC 0B","4":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"4":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC","4":"H vC wC"},J:{"1":"A","2":"D"},K:{"4":"A B C h rB CC sB"},L:{"4":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"4":"xC"},P:{"4":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"4":"2B"},R:{"4":"BD"},S:{"1":"CD DD"}},B:2,C:"SVG effects for HTML"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html5.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html5.js index 50462070d93fb4..734e36f094f04f 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":"CC","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","8":"I u J"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"I u HC zB","129":"J D E IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"B SC qB AC","8":"F PC QC RC"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","8":"zB UC BC","129":"E VC WC XC YC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"pC qC rC","129":"tB I sC BC"},J:{"1":"A","129":"D"},K:{"1":"C g rB","8":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Inline SVG in HTML5"}; +module.exports={A:{A:{"2":"EC","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","8":"I w J"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"I w JC 0B","129":"J D E KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"B UC rB CC","8":"F RC SC TC"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","8":"0B WC DC","129":"E XC YC ZC aC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"rC sC tC","129":"uB I uC DC"},J:{"1":"A","129":"D"},K:{"1":"C h sB","8":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"129":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Inline SVG in HTML5"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-img.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-img.js index 802292b3496a81..27e5871f02bf35 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"0 1 2 3 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC","4":"zB","132":"I u J D E IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","132":"E zB UC BC VC WC XC YC"},H:{"1":"oC"},I:{"1":"f tC uC","2":"pC qC rC","132":"tB I sC BC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"SVG in HTML img element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"0 1 2 3 4 I w J D E F A B C K L G M N O x g y z"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC","4":"0B","132":"I w J D E KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","132":"E 0B WC DC XC YC ZC aC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"rC sC tC","132":"uB I uC DC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"SVG in HTML img element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-smil.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-smil.js index 6cadefef0413c0..b7eebfde7c75f6 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":"CC","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"I"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"HC zB","132":"I u IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","132":"zB UC BC VC"},H:{"2":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"SVG SMIL animation"}; +module.exports={A:{A:{"2":"EC","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"I"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"JC 0B","132":"I w KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","132":"0B WC DC XC"},H:{"2":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"SVG SMIL animation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg.js index d6beb403905865..1b535e6701f656 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":"CC","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","4":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","4":"HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"f tC uC","2":"pC qC rC","132":"tB I sC BC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"257":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"SVG (basic support)"}; +module.exports={A:{A:{"2":"EC","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","4":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","4":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"H vC wC","2":"rC sC tC","132":"uB I uC DC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"257":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"SVG (basic support)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sxg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sxg.js index 5941035aa74a76..bafd1c9c3e044b 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB","132":"jB kB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB","132":"kB lB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB 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 TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tabindex-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tabindex-attr.js index a3ddbcb87a816e..0c41f697888640 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"16":"DC tB EC FC","129":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"16":"I u HC zB","257":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","16":"F"},G:{"769":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"16":"oC"},I:{"16":"tB I f pC qC rC sC BC tC uC"},J:{"16":"D A"},K:{"1":"g","16":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"16":"A B"},O:{"1":"vC"},P:{"16":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"129":"AD"}},B:1,C:"tabindex global attribute"}; +module.exports={A:{A:{"1":"D E F A B","16":"J EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"16":"FC uB GC HC","129":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"16":"I w JC 0B","257":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","16":"F"},G:{"769":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"16":"qC"},I:{"16":"uB I H rC sC tC uC DC vC wC"},J:{"16":"D A"},K:{"1":"h","16":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"16":"A B"},O:{"1":"xC"},P:{"16":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"129":"CD DD"}},B:1,C:"tabindex global attribute"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template-literals.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template-literals.js index 7cd80e3056c071..5cbb745256e599 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 CC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","16":"C"},C:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB"},E:{"1":"A B K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC","129":"C"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"ZC aC bC cC dC eC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC","129":"fC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"ES6 Template Literals (Template Strings)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","16":"C"},C:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB GC HC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB"},E:{"1":"A B K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC","129":"C"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"bC cC dC eC fC gC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC","129":"hC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"ES6 Template Literals (Template Strings)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template.js index 843e0a8c69ba59..c600132019c27e 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 CC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x EC FC"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 I u J D E F A B C K L G M N O v w x y z","132":"2 3 4 5 6 7 8 9 AB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D HC zB IC","388":"E KC","514":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","132":"G M N O v w x"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC","388":"E YC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"HTML templates"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O x g y GC HC"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 I w J D E F A B C K L G M N O x g y z","132":"3 4 5 6 7 8 9 AB BB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D JC 0B KC","388":"E MC","514":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","132":"G M N O x g y"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC","388":"E aC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"HTML templates"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/temporal.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/temporal.js index 35c7c10a3cc533..9d71fe2bef5273 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 CC"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:6,C:"Temporal"}; +module.exports={A:{A:{"2":"J D E F A B EC"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:6,C:"Temporal"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/testfeat.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/testfeat.js index d9b64216684eea..0097a0cbe81327 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 CC","16":"F"},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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","16":"I u"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"B C"},E:{"2":"I J HC zB IC","16":"u D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC AC TC rB","16":"qB"},G:{"2":"zB UC BC VC WC","16":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC sC BC tC uC","16":"rC"},J:{"2":"A","16":"D"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Test feature - updated"}; +module.exports={A:{A:{"2":"J D E A B EC","16":"F"},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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","16":"I w"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"B C"},E:{"2":"I J JC 0B KC","16":"w D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC CC VC sB","16":"rB"},G:{"2":"0B WC DC XC YC","16":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC uC DC vC wC","16":"tC"},J:{"2":"A","16":"D"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Test feature - updated"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-decoration.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-decoration.js index 21146dcaf5e5f3..a89ec3ad48b993 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 CC"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB I u EC FC","1028":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","1060":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O v w x y z AB BB"},D:{"2":"0 1 I u J D E F A B C K L G M N O v w x y z","226":"2 3 4 5 6 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","2052":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D HC zB IC JC","772":"K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","804":"E F A B C LC 0B qB","1316":"KC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB PC QC RC SC qB AC TC rB","226":"BB CB DB EB FB GB HB IB JB","2052":"KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"zB UC BC VC WC XC","292":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","2052":"g"},L:{"2052":"H"},M:{"1028":"H"},N:{"2":"A B"},O:{"2052":"vC"},P:{"2":"I wC xC","2052":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2052":"1B"},R:{"2052":"9C"},S:{"1028":"AD"}},B:4,C:"text-decoration styling"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"FC uB I w GC HC","1028":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","1060":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O x g y z AB BB CB"},D:{"2":"0 1 2 I w J D E F A B C K L G M N O x g y z","226":"3 4 5 6 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","2052":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D JC 0B KC LC","772":"K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","804":"E F A B C NC 1B rB","1316":"MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB RC SC TC UC rB CC VC sB","226":"CB DB EB FB GB HB IB JB KB","2052":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"0B WC DC XC YC ZC","292":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","2052":"h"},L:{"2052":"H"},M:{"1028":"f"},N:{"2":"A B"},O:{"2052":"xC"},P:{"2":"I yC zC","2052":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2052":"2B"},R:{"2052":"BD"},S:{"1028":"CD DD"}},B:4,C:"text-decoration styling"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-emphasis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-emphasis.js index 8103d9f2da42a7..2b7a14bd6f8c31 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 CC"},B:{"1":"k l m n o p q r s t f 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 h i j"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB EC FC","322":"LB"},D:{"1":"k l m n o p q r s t f H xB yB GC","2":"0 I u J D E F A B C K L G M N O v w x y z","164":"1 2 3 4 5 6 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j"},E:{"1":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC","164":"D JC"},F:{"1":"V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","164":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC","164":"tC uC"},J:{"2":"D","164":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"vC"},P:{"1":"7C 8C","164":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C"},Q:{"164":"1B"},R:{"164":"9C"},S:{"1":"AD"}},B:4,C:"text-emphasis styling"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"l m n o p q r s t u v f 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 i j k"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB GC HC","322":"MB"},D:{"1":"l m n o p q r s t u v f H yB zB IC","2":"0 1 I w J D E F A B C K L G M N O x g y z","164":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k"},E:{"1":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC","164":"D LC"},F:{"1":"V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","164":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC","164":"vC wC"},J:{"2":"D","164":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"164":"xC"},P:{"1":"g 9C AD","164":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C"},Q:{"164":"2B"},R:{"164":"BD"},S:{"1":"CD DD"}},B:4,C:"text-emphasis styling"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-overflow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-overflow.js index 1cfc9ae5fd5138..c51fa2b3fc012f 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":"CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","8":"DC tB I u J EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","33":"F PC QC RC SC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"g rB","33":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"CSS3 Text-overflow"}; +module.exports={A:{A:{"1":"J D E F A B","2":"EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","8":"FC uB I w J GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","33":"F RC SC TC UC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"h sB","33":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"CSS3 Text-overflow"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-size-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-size-adjust.js index bca75bdd740be7..f4403f3d7269f0 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","258":"2"},E:{"2":"I u J D E F A B C K L G HC zB JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","258":"IC"},F:{"1":"JB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB KB PC QC RC SC qB AC TC rB"},G:{"2":"zB UC BC","33":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"33":"H"},N:{"161":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"CSS text-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","258":"3"},E:{"2":"I w J D E F A B C K L G JC 0B LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","258":"KC"},F:{"1":"KB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB LB RC SC TC UC rB CC VC sB"},G:{"2":"0B WC DC","33":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"33":"f"},N:{"161":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS text-size-adjust"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-stroke.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-stroke.js index 7409f8c882cde9..532b1dda325d74 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 CC"},B:{"2":"C K L","33":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB EC FC","161":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","450":"OB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"33":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"33":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","36":"zB"},H:{"2":"oC"},I:{"2":"tB","33":"I f pC qC rC sC BC tC uC"},J:{"33":"D A"},K:{"2":"A B C qB AC rB","33":"g"},L:{"33":"H"},M:{"161":"H"},N:{"2":"A B"},O:{"33":"vC"},P:{"33":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"33":"1B"},R:{"33":"9C"},S:{"161":"AD"}},B:7,C:"CSS text-stroke and text-fill"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L","33":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB GC HC","161":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","450":"PB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"33":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"33":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","36":"0B"},H:{"2":"qC"},I:{"2":"uB","33":"I H rC sC tC uC DC vC wC"},J:{"33":"D A"},K:{"2":"A B C rB CC sB","33":"h"},L:{"33":"H"},M:{"161":"f"},N:{"2":"A B"},O:{"33":"xC"},P:{"33":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"33":"2B"},R:{"33":"BD"},S:{"161":"CD DD"}},B:7,C:"CSS text-stroke and text-fill"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textcontent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textcontent.js index c8fc93f203979d..98e8fb46bcad8d 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","16":"F"},G:{"1":"E UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Node.textContent"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","16":"F"},G:{"1":"E WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Node.textContent"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textencoder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textencoder.js index c6d08c5290da6a..8809dc5e749512 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O EC FC","132":"v"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"TextEncoder & TextDecoder"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O GC HC","132":"x"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"TextEncoder & TextDecoder"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-1.js index 11969a0181082e..6c47758dae4bf1 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 CC","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB","2":"DC tB I u J D E F A B C K L G M N O v w x y EC FC","66":"z","129":"gB hB iB jB kB g lB mB nB oB","388":"pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T","2":"I u J D E F A B C K L G M N O v w x","1540":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"D E F A B C K KC LC 0B qB rB","2":"I u J HC zB IC JC","513":"L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB rB","2":"F B C PC QC RC SC qB AC TC","1540":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"1":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"1":"A","2":"D"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"129":"H"},N:{"1":"B","66":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"TLS 1.1"}; +module.exports={A:{A:{"1":"B","2":"J D EC","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB","2":"FC uB I w J D E F A B C K L G M N O x g y z GC HC","66":"0","129":"hB iB jB kB lB h mB nB oB pB","388":"qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T","2":"I w J D E F A B C K L G M N O x g y","1540":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"D E F A B C K MC NC 1B rB sB","2":"I w J JC 0B KC LC","513":"L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB sB","2":"F B C RC SC TC UC rB CC VC","1540":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"1":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"1":"A","2":"D"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"129":"f"},N:{"1":"B","66":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"TLS 1.1"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-2.js index 1be45ee3260cf6..2565836e1896e6 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 CC","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O v w x y z EC FC","66":"0 1 2"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F G PC","66":"B C QC RC SC qB AC TC rB"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"1":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"1":"A","2":"D"},K:{"1":"g rB","2":"A B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","66":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"TLS 1.2"}; +module.exports={A:{A:{"1":"B","2":"J D EC","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 FC uB I w J D E F A B C K L G M N O x g y z GC HC","66":"1 2 3"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F G RC","66":"B C SC TC UC rB CC VC sB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"1":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"1":"A","2":"D"},K:{"1":"h sB","2":"A B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","66":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"TLS 1.2"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-3.js index 65f115ebc88365..695a1035356675 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB EC FC","132":"ZB vB aB","450":"RB SB TB UB VB WB XB YB uB"},D:{"1":"iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","706":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB"},E:{"1":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB","1028":"K rB 1B"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB PC QC RC SC qB AC TC rB","706":"UB VB WB"},G:{"1":"gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:6,C:"TLS 1.3"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB GC HC","132":"aB wB bB","450":"SB TB UB VB WB XB YB ZB vB"},D:{"1":"jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","706":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB"},E:{"1":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB","1028":"K sB 2B"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC TC UC rB CC VC sB","706":"VB WB XB"},G:{"1":"iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:6,C:"TLS 1.3"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/touch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/touch.js index db97c5cacdc84e..12e49002624e4d 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 CC","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","578":"C K L G M N O"},C:{"1":"0 O v w x y z SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","4":"I u J D E F A B C K L G M N","194":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w x"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A","260":"B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"Touch events"}; +module.exports={A:{A:{"2":"J D E F EC","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","578":"C K L G M N O"},C:{"1":"0 1 O x g y z TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","4":"I w J D E F A B C K L G M N","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g y"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A","260":"B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:2,C:"Touch events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms2d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms2d.js index 8a2614f44007f6..452f1cc2575b70 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":"CC","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","33":"I u J D E F A B C K L G EC FC"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","33":"I u J D E HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F PC QC","33":"B C G M N O v w x y RC SC qB AC TC"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","33":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","33":"tB I pC qC rC sC BC tC uC"},J:{"33":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 2D Transforms"}; +module.exports={A:{A:{"2":"EC","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","33":"I w J D E F A B C K L G GC HC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","33":"I w J D E JC 0B KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F RC SC","33":"B C G M N O x g y z TC UC rB CC VC"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","33":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","33":"uB I rC sC tC uC DC vC wC"},J:{"33":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 2D Transforms"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms3d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms3d.js index a3a8f26ca45d58..1960e25c979f30 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 CC","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F EC FC","33":"A B C K L G"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O v w x y z AB BB"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB","33":"I u J D E IC JC KC","257":"F A B C K L G LC 0B qB rB 1B MC NC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"G M N O v w x y"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","33":"E zB UC BC VC WC XC YC","257":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"pC qC rC","33":"tB I sC BC tC uC"},J:{"33":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:5,C:"CSS3 3D Transforms"}; +module.exports={A:{A:{"2":"J D E F EC","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F GC HC","33":"A B C K L G"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O x g y z AB BB CB"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B","33":"I w J D E KC LC MC","257":"F A B C K L G NC 1B rB sB 2B OC PC 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"G M N O x g y z"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","33":"E 0B WC DC XC YC ZC aC","257":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"rC sC tC","33":"uB I uC DC vC wC"},J:{"33":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:5,C:"CSS3 3D Transforms"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/trusted-types.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/trusted-types.js index 6c33cd2718f7ab..4fd7a7975a6ba2 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 CC"},B:{"1":"S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"Trusted Types for DOM manipulation"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB 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 TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"Trusted Types for DOM manipulation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ttf.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ttf.js index 3bcdf4dc1824ac..79c6fa2ee0cb9b 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 CC","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e QC RC SC qB AC TC rB","2":"F PC"},G:{"1":"E BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC"},H:{"2":"oC"},I:{"1":"tB I f qC rC sC BC tC uC","2":"pC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; +module.exports={A:{A:{"2":"J D E EC","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e SC TC UC rB CC VC sB","2":"F RC"},G:{"1":"E DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC"},H:{"2":"qC"},I:{"1":"uB I H sC tC uC DC vC wC","2":"rC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/typedarrays.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/typedarrays.js index cc21182cbac947..181da2d614f88e 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 CC","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB","260":"IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F B PC QC RC SC qB AC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC","260":"BC"},H:{"1":"oC"},I:{"1":"I f sC BC tC uC","2":"tB pC qC rC"},J:{"1":"A","2":"D"},K:{"1":"C g rB","2":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Typed Arrays"}; +module.exports={A:{A:{"1":"B","2":"J D E F EC","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B","260":"KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F B RC SC TC UC rB CC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC","260":"DC"},H:{"1":"qC"},I:{"1":"I H uC DC vC wC","2":"uB rC sC tC"},J:{"1":"A","2":"D"},K:{"1":"C h sB","2":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Typed Arrays"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/u2f.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/u2f.js index d4b0a06a093caa..bb35b9719d46ed 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 CC"},B:{"2":"C K L G M N O r s t f H","513":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q"},C:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB EC FC","322":"NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB r s t f H xB yB GC","130":"EB FB GB","513":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i","578":"j k l m n o p q"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB rB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB HB PC QC RC SC qB AC TC rB","513":"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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"322":"AD"}},B:7,C:"FIDO U2F API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O s t u v f H","513":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r"},C:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB GC HC","322":"OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB s t u v f H yB zB IC","130":"FB GB HB","513":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j","578":"k l m n o p q r"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB IB RC SC TC UC rB CC VC sB","513":"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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"1":"DD","322":"CD"}},B:7,C:"FIDO U2F API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js index 3f258eb3a95eee..70edb913d45ab6 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB EC FC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC","16":"dC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:1,C:"unhandledrejection/rejectionhandled events"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB GC HC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC","16":"fC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:1,C:"unhandledrejection/rejectionhandled events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js index a8d796b5fd1fb1..d8be57168accaa 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB EC FC"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Upgrade Insecure Requests"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB GC HC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Upgrade Insecure Requests"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js index 44168b63321915..d7efbccf2893ed 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 CC"},B:{"1":"S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g","66":"lB mB nB oB pB P Q"},E:{"1":"6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB"},F:{"1":"gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB PC QC RC SC qB AC TC rB","66":"eB fB"},G:{"1":"6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"URL Scroll-To-Text Fragment"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h","66":"mB nB oB pB qB P Q"},E:{"1":"7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB"},F:{"1":"hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB 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 TC UC rB CC VC sB","66":"fB gB"},G:{"1":"7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"URL Scroll-To-Text Fragment"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url.js index 2cbb57e9b44679..229e3b12b073cf 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 DC tB I u J D E F A B C K L G M N O v w x y z EC FC"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v w x y","130":"0 1 2 3 4 5 6 7 z"},E:{"1":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC JC","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","130":"G M N O"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC","130":"XC"},H:{"2":"oC"},I:{"1":"f uC","2":"tB I pC qC rC sC BC","130":"tC"},J:{"2":"D","130":"A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"URL API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 FC uB I w J D E F A B C K L G M N O x g y z GC HC"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x g y z","130":"0 1 2 3 4 5 6 7 8"},E:{"1":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC LC","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","130":"G M N O"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC","130":"ZC"},H:{"2":"qC"},I:{"1":"H wC","2":"uB I rC sC tC uC DC","130":"vC"},J:{"2":"D","130":"A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"URL API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/urlsearchparams.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/urlsearchparams.js index 4fc779b0fb6111..cebc1606833a10 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"URLSearchParams"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"URLSearchParams"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/use-strict.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/use-strict.js index 0faeeae6776f9c..040cd5a54045b0 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","132":"u IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F B PC QC RC SC qB AC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"1":"oC"},I:{"1":"tB I f sC BC tC uC","2":"pC qC rC"},J:{"1":"D A"},K:{"1":"C g AC rB","2":"A B qB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"ECMAScript 5 Strict Mode"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","132":"w KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F B RC SC TC UC rB CC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"1":"qC"},I:{"1":"uB I H uC DC vC wC","2":"rC sC tC"},J:{"1":"D A"},K:{"1":"C h CC sB","2":"A B rB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"ECMAScript 5 Strict Mode"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-select-none.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-select-none.js index a5270152b94484..f15af44f67f244 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 CC","33":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","33":"C K L G M N O"},C:{"1":"hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","33":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB EC FC"},D:{"1":"UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","33":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"OC","33":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","33":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB"},G:{"33":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","33":"tB I pC qC rC sC BC tC uC"},J:{"33":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"33":"A B"},O:{"1":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","33":"I wC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"33":"AD"}},B:5,C:"CSS user-select: none"}; +module.exports={A:{A:{"2":"J D E F EC","33":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","33":"C K L G M N O"},C:{"1":"iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","33":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB GC HC"},D:{"1":"VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","33":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"QC","33":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC 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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","33":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB"},G:{"33":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","33":"uB I rC sC tC uC DC vC wC"},J:{"33":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"33":"A B"},O:{"1":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","33":"I yC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","33":"CD"}},B:5,C:"CSS user-select: none"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-timing.js index e237871b881bef..4e851379acac16 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EC FC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"User Timing API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB GC HC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 I w J D E F A B C K L G M N O x g y z"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"User Timing API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/variable-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/variable-fonts.js index 15b694068d7543..412e15c4707471 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 CC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB EC FC","4609":"aB bB cB dB eB fB gB hB iB","4674":"vB","5698":"ZB","7490":"TB UB VB WB XB","7746":"YB uB","8705":"jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","4097":"eB","4290":"uB ZB vB","6148":"aB bB cB dB"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","4609":"B C qB rB","8193":"K L 1B MC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PC QC RC SC qB AC TC rB","4097":"TB","6148":"PB QB RB SB"},G:{"1":"hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC","4097":"dC eC fC gC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"4097":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"2":"I wC xC yC","4097":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Variable fonts"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB GC HC","4609":"bB cB dB eB fB gB hB iB jB","4674":"wB","5698":"aB","7490":"UB VB WB XB YB","7746":"ZB vB","8705":"kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","4097":"fB","4290":"vB aB wB","6148":"bB cB dB eB"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","4609":"B C rB sB","8193":"K L 2B OC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB RC SC TC UC rB CC VC sB","4097":"UB","6148":"QB RB SB TB"},G:{"1":"jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC","4097":"fC gC hC iC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"4097":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"2":"I yC zC 0C","4097":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:5,C:"Variable fonts"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vector-effect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vector-effect.js index e04441cf01c38d..721dd36fdcb8ee 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J D E F A B C K L"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","2":"F B PC QC RC SC qB AC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC"},H:{"1":"oC"},I:{"1":"f tC uC","16":"tB I pC qC rC sC BC"},J:{"16":"D A"},K:{"1":"C g rB","2":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J D E F A B C K L"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","2":"F B RC SC TC UC rB CC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC"},H:{"1":"qC"},I:{"1":"H vC wC","16":"uB I rC sC tC uC DC"},J:{"16":"D A"},K:{"1":"C h sB","2":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vibration.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vibration.js index 92be9096faa163..75f5ff2c2c277c 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A EC FC","33":"B C K L G"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 I u J D E F A B C K L G M N O v w x y z"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"Vibration API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A GC HC","33":"B C K L G"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 I w J D E F A B C K L G M N O x g y z"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"Vibration API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/video.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/video.js index a9fb66ad4d5af7..ce2bfef5085869 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","260":"I u J D E F A B C K L G M N O v EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A IC JC KC LC 0B","2":"HC zB","513":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC","513":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","132":"pC qC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Video element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","260":"I w J D E F A B C K L G M N O x GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A KC LC MC NC 1B","2":"JC 0B","513":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC","513":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","132":"rC sC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Video element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/videotracks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/videotracks.js index 967dc6fd402c33..ee6e76680f1913 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 CC"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB","322":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J HC zB IC"},F:{"2":"0 1 2 3 4 5 6 7 F B C G M N O v w x y z PC QC RC SC qB AC TC rB","322":"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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","322":"g"},L:{"322":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"322":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"322":"1B"},R:{"322":"9C"},S:{"194":"AD"}},B:1,C:"Video Tracks"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z GC HC","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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB","322":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J JC 0B KC"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O x g y z RC SC TC UC rB CC VC sB","322":"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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","322":"h"},L:{"322":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"322":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"322":"2B"},R:{"322":"BD"},S:{"194":"CD DD"}},B:1,C:"Video Tracks"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-unit-variants.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-unit-variants.js index 9a2917b76aa50e..5879c1335b89ba 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 CC"},B:{"1":"t f 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 h i j k l m n o p","194":"q r s"},C:{"1":"m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l EC FC"},D:{"1":"t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k","194":"l m n o p q r s"},E:{"1":"3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B"},F:{"1":"d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z PC QC RC SC qB AC TC rB","194":"a b c"},G:{"1":"3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"Small, Large, and Dynamic viewport units"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"u v f 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 i j k l m n o p q","194":"r s t"},C:{"1":"n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m GC HC"},D:{"1":"u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l","194":"m n o p q r s t"},E:{"1":"4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B"},F:{"1":"d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z RC SC TC UC rB CC VC sB","194":"a b c"},G:{"1":"4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:5,C:"Small, Large, and Dynamic viewport units"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js index 33b175dedcfeb9..c1bf09615e0914 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 CC","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L G M N O EC FC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N O v","260":"0 1 w x y z"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC","516":"XC","772":"WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; +module.exports={A:{A:{"2":"J D E EC","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L G M N O GC HC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N O x","260":"0 1 2 g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC","516":"ZC","772":"YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"260":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wai-aria.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wai-aria.js index 5c0b9db253c63a..794c104d4e8711 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 CC","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"HC zB","4":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"4":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"4":"oC"},I:{"2":"tB I pC qC rC sC BC","4":"f tC uC"},J:{"2":"D A"},K:{"4":"A B C g qB AC rB"},L:{"4":"H"},M:{"4":"H"},N:{"4":"A B"},O:{"4":"vC"},P:{"4":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"4":"1B"},R:{"4":"9C"},S:{"4":"AD"}},B:2,C:"WAI-ARIA Accessibility features"}; +module.exports={A:{A:{"2":"J D EC","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"JC 0B","4":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"4":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"4":"qC"},I:{"2":"uB I rC sC tC uC DC","4":"H vC wC"},J:{"2":"D A"},K:{"4":"A B C h rB CC sB"},L:{"4":"H"},M:{"4":"f"},N:{"4":"A B"},O:{"4":"xC"},P:{"4":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"4":"2B"},R:{"4":"BD"},S:{"4":"CD DD"}},B:2,C:"WAI-ARIA Accessibility features"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wake-lock.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wake-lock.js index 0abca94a0f5bb4..8fe5306bd5b7a3 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 CC"},B:{"1":"Z a b c d e h i j k l m n o p q r s t f 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 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB","194":"jB kB g lB mB nB oB pB P Q R S T"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B","4":"9B OC"},F:{"1":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB PC QC RC SC qB AC TC rB","194":"YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B","4":"9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"4C 5C sB 6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:4,C:"Screen Wake Lock API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"Z a b c d e i j k l m n o p q r s t u v f 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 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB","194":"kB lB h mB nB oB pB qB P Q R S T"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B","4":"AC BC QC"},F:{"1":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB 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 TC UC rB CC VC sB","194":"ZB aB bB cB dB eB fB gB hB iB jB kB lB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B","4":"AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 6C 7C tB 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:4,C:"Screen Wake Lock API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm.js index 630929001e0185..fb817aa0658fe0 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 CC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L","578":"G"},C:{"1":"TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB EC FC","194":"NB OB PB QB RB","1025":"SB"},D:{"1":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","322":"RB SB TB UB VB WB"},E:{"1":"B C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB PC QC RC SC qB AC TC rB","322":"EB FB GB HB IB JB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"194":"AD"}},B:6,C:"WebAssembly"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L","578":"G"},C:{"1":"UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB GC HC","194":"OB PB QB RB SB","1025":"TB"},D:{"1":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","322":"SB TB UB VB WB XB"},E:{"1":"B C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB RC SC TC UC rB CC VC sB","322":"FB GB HB IB JB KB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","194":"CD"}},B:6,C:"WebAssembly"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wav.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wav.js index d3d56a4ff0dd23..a0445b3b6fe881 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e RC SC qB AC TC rB","2":"F PC QC"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","16":"A"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"Wav audio format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e TC UC rB CC VC sB","2":"F RC SC"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","16":"A"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"Wav audio format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wbr-element.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wbr-element.js index f845bef32678f8..0e69eb868944c7 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 CC","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","16":"F"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC"},H:{"1":"oC"},I:{"1":"tB I f rC sC BC tC uC","16":"pC qC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"wbr (word break opportunity) element"}; +module.exports={A:{A:{"1":"J D EC","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","16":"F"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC"},H:{"1":"qC"},I:{"1":"uB I H tC uC DC vC wC","16":"rC sC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"wbr (word break opportunity) element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-animation.js index 717df9dc8c132f..789b10fe82efb8 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 CC"},B:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","260":"uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB","516":"NB OB PB QB RB SB TB UB VB WB XB YB","580":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB","2049":"mB nB oB pB P Q"},D:{"1":"T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB","132":"CB DB EB","260":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC 0B","1090":"B C K qB rB","2049":"L 1B MC"},F:{"1":"jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y PC QC RC SC qB AC TC rB","132":"0 1 z","260":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB 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 zB UC BC VC WC XC YC ZC aC bC cC","1090":"dC eC fC gC hC iC jC","2049":"kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"260":"vC"},P:{"260":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"260":"1B"},R:{"1":"9C"},S:{"516":"AD"}},B:5,C:"Web Animations API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z GC HC","260":"vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB","516":"OB PB QB RB SB TB UB VB WB XB YB ZB","580":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB","2049":"nB oB pB qB P Q"},D:{"1":"T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB","132":"DB EB FB","260":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC 1B","1090":"B C K rB sB","2049":"L 2B OC"},F:{"1":"kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y z RC SC TC UC rB CC VC sB","132":"0 1 2","260":"3 4 5 6 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"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC","1090":"fC gC hC iC jC kC lC","2049":"mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"260":"xC"},P:{"260":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"260":"2B"},R:{"1":"BD"},S:{"1":"DD","516":"CD"}},B:5,C:"Web Animations API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-app-manifest.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-app-manifest.js index 10991ff8e97113..0c5fa7c0a40371 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","578":"nB oB pB P Q R wB S T U"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC","4":"9B","260":"eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"Add to home screen (A2HS)"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","578":"oB pB qB P Q R xB S T U"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC","4":"AC BC","260":"gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:5,C:"Add to home screen (A2HS)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-bluetooth.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-bluetooth.js index 487e02ad6778ea..cdb7b8734c3aa4 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 CC"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB NB OB PB QB RB SB","706":"TB UB VB","1025":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB PC QC RC SC qB AC TC rB","450":"CB DB EB FB","706":"GB HB IB","1025":"JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC uC","1025":"f"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","1025":"g"},L:{"1025":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1025":"vC"},P:{"1":"xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC"},Q:{"2":"1B"},R:{"1025":"9C"},S:{"2":"AD"}},B:7,C:"Web Bluetooth"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB","194":"MB NB OB PB QB RB SB TB","706":"UB VB WB","1025":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB RC SC TC UC rB CC VC sB","450":"DB EB FB GB","706":"HB IB JB","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 iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC wC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","1025":"h"},L:{"1025":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1025":"xC"},P:{"1":"g zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC"},Q:{"2":"2B"},R:{"1025":"BD"},S:{"2":"CD DD"}},B:7,C:"Web Bluetooth"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-serial.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-serial.js index a3ed4873d0493c..fe2e11ad516cd7 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 CC"},B:{"1":"Y Z a b c d e h i j k l m n o p q r s t f 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 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB","66":"pB P Q R S T U V W X"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB PC QC RC SC qB AC TC rB","66":"dB eB fB gB hB iB jB kB g lB mB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"Web Serial API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f 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 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB","66":"qB P Q R S T U V W X"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB 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 TC UC rB CC VC sB","66":"eB fB gB hB iB jB kB lB h mB nB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"Web Serial API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-share.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-share.js index e513de92486093..b08ef300d2b077 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 CC"},B:{"1":"e h i j k l m n o p q r s t f 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 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"1 2 3 4 5 6 7 8 9 I u 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X","130":"0 O v w x y z","1028":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"L G MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB","2049":"K rB 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC","2049":"gC hC iC jC kC"},H:{"2":"oC"},I:{"2":"tB I pC qC rC sC BC tC","258":"f uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I","258":"wC xC yC"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"Web Share API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"e i j k l m n o p q r s t u v f 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 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"2 3 4 5 6 7 8 9 I w 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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X","130":"0 1 O x g y z","1028":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"L G OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB","2049":"K sB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC","2049":"iC jC kC lC mC"},H:{"2":"qC"},I:{"2":"uB I rC sC tC uC DC vC","258":"H wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I","258":"yC zC 0C"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:4,C:"Web Share API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webauthn.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webauthn.js index f229a5afac377e..ace323f4667018 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 CC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C","226":"K L G M N"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB EC FC","5124":"ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB"},E:{"1":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A B C HC zB IC JC KC LC 0B qB","322":"rB"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB PC QC RC SC qB AC TC rB"},G:{"1":"mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC","578":"iC","2052":"lC","3076":"jC kC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1028":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:2,C:"Web Authentication API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C","226":"K L G M N"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB GC HC","5124":"aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB"},E:{"1":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB","322":"sB"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC TC UC rB CC VC sB"},G:{"1":"oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC","578":"kC","2052":"nC","3076":"lC mC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1028":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2":"CD"}},B:2,C:"Web Authentication API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js index ecb291895e0ae4..faf4accea3c064 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 CC"},B:{"1":"d e h i j k l m n o p q r s t f 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 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B","260":"9B OC"},F:{"1":"Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B","260":"9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"6C 7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"WebCodecs API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"d e i j k l m n o p q r s t u v f 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 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B","260":"AC BC QC"},F:{"1":"Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B","260":"AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 8C 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:5,C:"WebCodecs API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl.js index f527ccd5a7407d..41112f287278ab 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":"CC","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","129":"I u J D E F A B C K L G M N O v w x y z"},D:{"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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D","129":"0 1 2 3 4 5 6 7 8 E F A B C K L G M N O v w x y z"},E:{"1":"E F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB","129":"J D IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B PC QC RC SC qB AC TC","129":"C G M N O rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC XC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"1":"A","2":"D"},K:{"1":"C g rB","2":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A","129":"B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"129":"AD"}},B:6,C:"WebGL - 3D Canvas graphics"}; +module.exports={A:{A:{"2":"EC","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","129":"C K L G M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","129":"0 I w J D E F A B C K L G M N O x g y z"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D","129":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O x g y z"},E:{"1":"E F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B","129":"J D KC LC MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B RC SC TC UC rB CC VC","129":"C G M N O sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC ZC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"1":"A","2":"D"},K:{"1":"C h sB","2":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A","129":"B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","129":"CD"}},B:6,C:"WebGL - 3D Canvas graphics"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl2.js index 971d44537bcd6e..62d2d0820cc1bb 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"IB JB KB","450":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB","2242":"LB MB NB OB PB QB"},D:{"1":"WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB","578":"JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"G NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F A HC zB IC JC KC LC","1090":"B C K L 0B qB rB 1B 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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB PC QC RC SC qB AC TC rB"},G:{"1":"nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC","1090":"fC gC hC iC jC kC lC mC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC"},Q:{"1":"1B"},R:{"1":"9C"},S:{"2242":"AD"}},B:6,C:"WebGL 2.0"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"JB KB LB","450":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB","2242":"MB NB OB PB QB RB"},D:{"1":"XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB","578":"KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"G PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F A JC 0B KC LC MC NC","1090":"B C K L 1B rB sB 2B OC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB RC SC TC UC rB CC VC sB"},G:{"1":"pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC","1090":"hC iC jC kC lC mC nC oC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","2242":"CD"}},B:6,C:"WebGL 2.0"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgpu.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgpu.js index 6b099e1e9d8845..9a8df01afdf737 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 CC"},B:{"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 h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB EC FC","194":"bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P","578":"Q R S T U V W X Y Z a b c","1602":"d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B HC zB IC JC KC LC 0B","322":"C K L G qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB PC QC RC SC qB AC TC rB","578":"g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"194":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:5,C:"WebGPU"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"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 i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB GC HC","194":"cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P","578":"Q R S T U V W X Y Z a b c","1602":"d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B JC 0B KC LC MC NC 1B","322":"C K L G rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB RC SC TC UC rB CC VC sB","578":"h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"194":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD","194":"DD"}},B:5,C:"WebGPU"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webhid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webhid.js index 1709e1a62e3ff8..7d8b7c4b291b16 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 CC"},B:{"1":"Y Z a b c d e h i j k l m n o p q r s t f 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 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB","66":"pB P Q R S T U V W X"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB PC QC RC SC qB AC TC rB","66":"eB fB gB hB iB jB kB g lB mB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"WebHID API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f 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 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB","66":"qB P Q R S T U V W X"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB 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 TC UC rB CC VC sB","66":"fB gB hB iB jB kB lB h mB nB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"WebHID API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webkit-user-drag.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webkit-user-drag.js index 8dcc0bbddb69ec..327b1a78f6a52b 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 CC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"16":"I u J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"F B C PC QC RC SC qB AC TC rB","132":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"CSS -webkit-user-drag property"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"16":"I w J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"F B C RC SC TC UC rB CC VC sB","132":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"CSS -webkit-user-drag property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webm.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webm.js index fbdbad4b9db9ec..542c7338b180c4 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 CC","520":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","8":"C K","388":"L G M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","132":"0 1 2 3 I u J D E F A B C K L G M N O v w x y z"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u","132":"0 J D E F A B C K L G M N O v w x y z"},E:{"1":"sB 6B 7B 8B 9B OC","2":"HC","8":"I u zB IC","520":"J D E F A B C JC KC LC 0B qB","1028":"K rB 1B","7172":"L","8196":"G MC NC 2B 3B 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F PC QC RC","132":"B C G SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC","1028":"gC hC iC jC kC","3076":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"pC qC","132":"tB I rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"vC"},P:{"1":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","132":"I"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:6,C:"WebM video format"}; +module.exports={A:{A:{"2":"J D E EC","520":"F A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","8":"C K","388":"L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","132":"0 1 2 3 4 I w J D E F A B C K L G M N O x g y z"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w","132":"0 1 J D E F A B C K L G M N O x g y z"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"JC","8":"I w 0B KC","520":"J D E F A B C LC MC NC 1B rB","1028":"K sB 2B","7172":"L","8196":"G OC PC 3B 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F RC SC TC","132":"B C G UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC","1028":"iC jC kC lC mC","3076":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"rC sC","132":"uB I tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"8":"A B"},O:{"1":"xC"},P:{"1":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","132":"I"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:6,C:"WebM video format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webnfc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webnfc.js index 3dd887760fc3a4..6253a18ecaa78c 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 CC"},B:{"2":"C K L G M N O P Y Z a b c d e h i j k l m n o p q r s t f H","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","450":"Q R S T U V W X"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","450":"fB gB hB iB jB kB g lB mB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"257":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"Web NFC"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O P Y Z a b c d e i j k l m n o p q r s t u v f H","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","450":"Q R S T U V W X"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","450":"gB hB iB jB kB lB h mB nB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"257":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"Web NFC"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webp.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webp.js index 056a4176238edc..25013f9738fabd 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 CC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N"},C:{"1":"dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","8":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u","8":"J D E","132":"F A B C K L G M N O v w x y","260":"0 1 2 3 4 5 6 7 z"},E:{"1":"sB 6B 7B 8B 9B OC","2":"I u J D E F A B C K HC zB IC JC KC LC 0B qB rB 1B","516":"L G MC NC 2B 3B 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F PC QC RC","8":"B SC","132":"qB AC TC","260":"C G M N O rB"},G:{"1":"lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC"},H:{"1":"oC"},I:{"1":"f BC tC uC","2":"tB pC qC rC","132":"I sC"},J:{"2":"D A"},K:{"1":"C g qB AC rB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"8":"AD"}},B:6,C:"WebP image format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N"},C:{"1":"eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","8":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB"},D:{"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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w","8":"J D E","132":"F A B C K L G M N O x g y z","260":"0 1 2 3 4 5 6 7 8"},E:{"1":"tB 7B 8B 9B AC BC QC","2":"I w J D E F A B C K JC 0B KC LC MC NC 1B rB sB 2B","516":"L G OC PC 3B 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F RC SC TC","8":"B UC","132":"rB CC VC","260":"C G M N O sB"},G:{"1":"nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC"},H:{"1":"qC"},I:{"1":"H DC vC wC","2":"uB rC sC tC","132":"I uC"},J:{"2":"D A"},K:{"1":"C h rB CC sB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","8":"CD"}},B:6,C:"WebP image format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js index ba29cabb5edc2e..3704b3e051f8cc 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB EC FC","132":"I u","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"I u J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","132":"u IC","260":"J JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F PC QC RC SC","132":"B C qB AC TC"},G:{"1":"E WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC","132":"BC VC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","129":"D"},K:{"1":"g rB","2":"A","132":"B C qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Web Sockets"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB GC HC","132":"I w","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"I w J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","132":"w KC","260":"J LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F RC SC TC UC","132":"B C rB CC VC"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC","132":"DC XC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","129":"D"},K:{"1":"h sB","2":"A","132":"B C rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Web Sockets"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js index 7faa92bf96429d..7d73b48900cf56 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 CC"},B:{"1":"j k l m n o p q r s t f 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 h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z e h","66":"a b c d"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB PC QC RC SC qB AC TC rB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"1":"7C 8C","2":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:5,C:"WebTransport"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"k l m n o p q r s t u v f 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 i j"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z e i","66":"a b c d"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB RC SC TC UC rB CC VC sB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"1":"g 9C AD","2":"I yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:5,C:"WebTransport"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js index a7c6290516e0c7..37dc1fd399743e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","66":"UB VB WB XB YB uB ZB"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB PC QC RC SC qB AC TC rB","66":"HB IB JB KB LB MB NB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C","2":"I wC xC yC"},Q:{"2":"1B"},R:{"1":"9C"},S:{"2":"AD"}},B:7,C:"WebUSB"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z 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 YB ZB vB aB"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB RC SC TC UC rB CC VC sB","66":"IB JB KB LB MB NB OB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"g 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD","2":"I yC zC 0C"},Q:{"2":"2B"},R:{"1":"BD"},S:{"2":"CD DD"}},B:7,C:"WebUSB"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvr.js index 5fbe18f1c931cf..2641cdc36204ba 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 CC"},B:{"2":"C K L Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB EC FC","129":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","194":"UB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","66":"XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P"},E:{"2":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","66":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C g qB AC rB"},L:{"2":"H"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"513":"I","516":"wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:7,C:"WebVR API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB GC HC","129":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","194":"VB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","66":"YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P"},E:{"2":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","66":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C h rB CC sB"},L:{"2":"H"},M:{"2":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"513":"I","516":"g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD DD"}},B:7,C:"WebVR API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvtt.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvtt.js index 7155dad1401fbb..62aefcdf9bf8b8 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"DC tB I u J D E F A B C K L G M N O v w x y z EC FC","66":"0 1 2 3 4 5 6","129":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","257":"VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I u J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC VC WC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB I pC qC rC sC BC"},J:{"1":"A","2":"D"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"129":"AD"}},B:4,C:"WebVTT - Web Video Text Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 FC uB I w J D E F A B C K L G M N O x g y z GC HC","66":"1 2 3 4 5 6 7","129":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","257":"WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I w J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC XC YC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB I rC sC tC uC DC"},J:{"1":"A","2":"D"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"B","2":"A"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"129":"CD DD"}},B:4,C:"WebVTT - Web Video Text Tracks"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webworkers.js index 8b23668b32e6e5..2c137df3f59f2a 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":"CC","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","8":"DC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","8":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e SC qB AC TC rB","2":"F PC","8":"QC RC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"f pC tC uC","2":"tB I qC rC sC BC"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","8":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Web Workers"}; +module.exports={A:{A:{"1":"A B","2":"EC","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","8":"FC uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","8":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e UC rB CC VC sB","2":"F RC","8":"SC TC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"H rC vC wC","2":"uB I sC tC uC DC"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","8":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Web Workers"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webxr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webxr.js index fa17eba8d476f6..4f97f755454d38 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 CC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB EC FC","322":"oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB","66":"dB eB fB gB hB iB jB kB g lB mB nB oB pB","132":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"2":"I u J D E F A B C HC zB IC JC KC LC 0B qB rB","578":"K L G 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB PC QC RC SC qB AC TC rB","66":"SB TB UB VB WB XB YB ZB aB bB cB dB","132":"eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e"},G:{"2":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"2":"oC"},I:{"2":"tB I f pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"2":"A B C qB AC rB","132":"g"},L:{"132":"H"},M:{"322":"H"},N:{"2":"A B"},O:{"2":"vC"},P:{"2":"I wC xC yC zC 0C 0B 1C","132":"2C 3C 4C 5C sB 6C 7C 8C"},Q:{"2":"1B"},R:{"2":"9C"},S:{"2":"AD"}},B:4,C:"WebXR Device API"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB GC HC","322":"pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB","66":"eB fB gB hB iB jB kB lB h mB nB oB pB qB","132":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"2":"I w J D E F A B C JC 0B KC LC MC NC 1B rB sB","578":"K L G 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC TC UC rB CC VC sB","66":"TB UB VB WB XB YB ZB aB bB cB dB eB","132":"fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e"},G:{"2":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"2":"qC"},I:{"2":"uB I H rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"2":"A B C rB CC sB","132":"h"},L:{"132":"H"},M:{"322":"f"},N:{"2":"A B"},O:{"2":"xC"},P:{"2":"I yC zC 0C 1C 2C 1B 3C","132":"g 4C 5C 6C 7C tB 8C 9C AD"},Q:{"2":"2B"},R:{"2":"BD"},S:{"2":"CD","322":"DD"}},B:4,C:"WebXR Device API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js index 3b58203cfba7bd..0ecfe32390b50e 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 CC"},B:{"1":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 DC tB I u J D E F A B C K L G M N O v w x y z EC FC","194":"5 6 7 8 9 AB BB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB"},E:{"1":"A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y z PC QC RC SC qB AC TC rB"},G:{"1":"aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS will-change property"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 FC uB I w J D E F A B C K L G M N O x g y z GC HC","194":"6 7 8 9 AB BB CB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB"},E:{"1":"A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"0 F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS will-change property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff.js index 4c274904981baf..a68441a726280b 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB FC","2":"DC tB EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"I"},E:{"1":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e qB AC TC rB","2":"F B PC QC RC SC"},G:{"1":"E VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC"},H:{"2":"oC"},I:{"1":"f tC uC","2":"tB pC qC rC sC BC","130":"I"},J:{"1":"D A"},K:{"1":"B C g qB AC rB","2":"A"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"WOFF - Web Open Font Format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB HC","2":"FC uB GC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"I"},E:{"1":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e rB CC VC sB","2":"F B RC SC TC UC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC"},H:{"2":"qC"},I:{"1":"H vC wC","2":"uB rC sC tC uC DC","130":"I"},J:{"1":"D A"},K:{"1":"B C h rB CC sB","2":"A"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"WOFF - Web Open Font Format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff2.js index b80a2d6fb1ec56..4517ed7d8c0002 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 CC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","2":"C K"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB EC FC"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","2":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB"},E:{"1":"C K L G rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I u J D E F HC zB IC JC KC LC","132":"A B 0B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C G M N O v w x y PC QC RC SC qB AC TC rB"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"E zB UC BC VC WC XC YC ZC aC"},H:{"2":"oC"},I:{"1":"f","2":"tB I pC qC rC sC BC tC uC"},J:{"2":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:2,C:"WOFF 2.0 - Web Open Font Format"}; +module.exports={A:{A:{"2":"J D E F A B EC"},B:{"1":"L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","2":"C K"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GC HC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","2":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB"},E:{"1":"C K L G sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I w J D E F JC 0B KC LC MC NC","132":"A B 1B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C G M N O x g y z RC SC TC UC rB CC VC sB"},G:{"1":"dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"E 0B WC DC XC YC ZC aC bC cC"},H:{"2":"qC"},I:{"1":"H","2":"uB I rC sC tC uC DC vC wC"},J:{"2":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"2":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:2,C:"WOFF 2.0 - Web Open Font Format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/word-break.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/word-break.js index d91635201bc32a..1dbff246e9e452 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB I u J D E F A B C K L EC FC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"F A B C K L G LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","4":"I u J D E HC zB IC JC KC"},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 g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","2":"F B C PC QC RC SC qB AC TC rB","4":"0 1 2 3 4 5 6 G M N O v w x y z"},G:{"1":"ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","4":"E zB UC BC VC WC XC YC"},H:{"2":"oC"},I:{"1":"f","4":"tB I pC qC rC sC BC tC uC"},J:{"4":"D A"},K:{"1":"g","2":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"CSS3 word-break"}; +module.exports={A:{A:{"1":"J D E F A B EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB I w J D E F A B C K L GC HC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"F A B C K L G NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","4":"I w J D E JC 0B KC LC MC"},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 h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","2":"F B C RC SC TC UC rB CC VC sB","4":"0 1 2 3 4 5 6 7 G M N O x g y z"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","4":"E 0B WC DC XC YC ZC aC"},H:{"2":"qC"},I:{"1":"H","4":"uB I rC sC tC uC DC vC wC"},J:{"4":"D A"},K:{"1":"h","2":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"CSS3 word-break"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wordwrap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wordwrap.js index e45797cf151a67..fd083776e74081 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 CC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H","4":"C K L G M N"},C:{"1":"PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","4":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","4":"I u J D E F A B C K L G M N O v w x y"},E:{"1":"D E F A B C K L G JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","4":"I u J HC zB IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F PC QC","4":"B C RC SC qB AC TC"},G:{"1":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","4":"zB UC BC VC WC"},H:{"4":"oC"},I:{"1":"f tC uC","4":"tB I pC qC rC sC BC"},J:{"1":"A","4":"D"},K:{"1":"g","4":"A B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"4":"AD"}},B:4,C:"CSS3 Overflow-wrap"}; +module.exports={A:{A:{"4":"J D E F A B EC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H","4":"C K L G M N"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","4":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","4":"I w J D E F A B C K L G M N O x g y z"},E:{"1":"D E F A B C K L G LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","4":"I w J JC 0B KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F RC SC","4":"B C TC UC rB CC VC"},G:{"1":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","4":"0B WC DC XC YC"},H:{"4":"qC"},I:{"1":"H vC wC","4":"uB I rC sC tC uC DC"},J:{"1":"A","4":"D"},K:{"1":"h","4":"A B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"4":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"DD","4":"CD"}},B:4,C:"CSS3 Overflow-wrap"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-doc-messaging.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-doc-messaging.js index c096271ef2e3e8..8efb52c2a38bf6 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 CC","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC","2":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"HC zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB","2":"F"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"Cross-document messaging"}; +module.exports={A:{A:{"2":"J D EC","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC","2":"FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"JC 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB","2":"F"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"4":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"Cross-document messaging"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-frame-options.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-frame-options.js index 4313701c82f3fa..f21b63b21a83be 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 CC"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB","4":"I u J D E F A B C K L G M N iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","16":"DC tB EC FC"},D:{"4":"2 3 4 5 6 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 uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"0 1 I u J D E F A B C K L G M N O v w x y z"},E:{"4":"J D E F A B C K L G IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","16":"I u HC zB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e TC rB","16":"F B PC QC RC SC qB AC"},G:{"4":"E XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","16":"zB UC BC VC WC"},H:{"2":"oC"},I:{"4":"I f sC BC tC uC","16":"tB pC qC rC"},J:{"4":"D A"},K:{"4":"g rB","16":"A B C qB AC"},L:{"4":"H"},M:{"4":"H"},N:{"1":"A B"},O:{"4":"vC"},P:{"4":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"4":"1B"},R:{"4":"9C"},S:{"1":"AD"}},B:6,C:"X-Frame-Options HTTP header"}; +module.exports={A:{A:{"1":"E F A B","2":"J D EC"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB","4":"I w J D E F A B C K L G M N jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","16":"FC uB GC HC"},D:{"4":"3 4 5 6 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 vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"0 1 2 I w J D E F A B C K L G M N O x g y z"},E:{"4":"J D E F A B C K L G KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","16":"I w JC 0B"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e VC sB","16":"F B RC SC TC UC rB CC"},G:{"4":"E ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","16":"0B WC DC XC YC"},H:{"2":"qC"},I:{"4":"I H uC DC vC wC","16":"uB rC sC tC"},J:{"4":"D A"},K:{"4":"h sB","16":"A B C rB CC"},L:{"4":"H"},M:{"4":"f"},N:{"1":"A B"},O:{"4":"xC"},P:{"4":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"4":"2B"},R:{"4":"BD"},S:{"1":"CD","4":"DD"}},B:6,C:"X-Frame-Options HTTP header"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhr2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhr2.js index 06ae744b7501a6..1d48a3084d1493 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 CC","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","2":"DC tB","260":"A B","388":"J D E F","900":"I u EC FC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","16":"I u J","132":"5 6","388":"0 1 2 3 4 D E F A B C K L G M N O v w x y z"},E:{"1":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","2":"I HC zB","132":"D JC","388":"u J IC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e rB","2":"F B PC QC RC SC qB AC TC","132":"G M N"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","2":"zB UC BC","132":"XC","388":"VC WC"},H:{"2":"oC"},I:{"1":"f uC","2":"pC qC rC","388":"tC","900":"tB I sC BC"},J:{"132":"A","388":"D"},K:{"1":"C g rB","2":"A B qB AC"},L:{"1":"H"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"XMLHttpRequest advanced features"}; +module.exports={A:{A:{"2":"J D E F EC","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","2":"FC uB","260":"A B","388":"J D E F","900":"I w GC HC"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","16":"I w J","132":"6 7","388":"0 1 2 3 4 5 D E F A B C K L G M N O x g y z"},E:{"1":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","2":"I JC 0B","132":"D LC","388":"w J KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e sB","2":"F B RC SC TC UC rB CC VC","132":"G M N"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","2":"0B WC DC","132":"ZC","388":"XC YC"},H:{"2":"qC"},I:{"1":"H wC","2":"rC sC tC","388":"vC","900":"uB I uC DC"},J:{"132":"A","388":"D"},K:{"1":"C h sB","2":"A B rB CC"},L:{"1":"H"},M:{"1":"f"},N:{"132":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"XMLHttpRequest advanced features"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtml.js index de59ba8f8d8b69..b380cfcd24c85c 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"1":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"1":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"1":"oC"},I:{"1":"tB I f pC qC rC sC BC tC uC"},J:{"1":"D A"},K:{"1":"A B C g qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:1,C:"XHTML served as application/xhtml+xml"}; +module.exports={A:{A:{"1":"F A B","2":"J D E EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"1":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"1":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"1":"qC"},I:{"1":"uB I H rC sC tC uC DC vC wC"},J:{"1":"D A"},K:{"1":"A B C h rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:1,C:"XHTML served as application/xhtml+xml"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtmlsmil.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtmlsmil.js index c03898d1a2b665..3347635f374e33 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 CC","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 DC tB I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB EC FC"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I u J D E F A B C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC"},E:{"8":"I u J D E F A B C K L G HC zB IC JC KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e PC QC RC SC qB AC TC rB"},G:{"8":"E zB UC BC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B"},H:{"8":"oC"},I:{"8":"tB I f pC qC rC sC BC tC uC"},J:{"8":"D A"},K:{"8":"A B C g qB AC rB"},L:{"8":"H"},M:{"8":"H"},N:{"2":"A B"},O:{"8":"vC"},P:{"8":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"8":"1B"},R:{"8":"9C"},S:{"8":"AD"}},B:7,C:"XHTML+SMIL animation"}; +module.exports={A:{A:{"2":"F A B EC","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 FC uB I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB GC HC"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I w J D E F A B C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC"},E:{"8":"I w J D E F A B C K L G JC 0B KC LC MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e RC SC TC UC rB CC VC sB"},G:{"8":"E 0B WC DC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC"},H:{"8":"qC"},I:{"8":"uB I H rC sC tC uC DC vC wC"},J:{"8":"D A"},K:{"8":"A B C h rB CC sB"},L:{"8":"H"},M:{"8":"f"},N:{"2":"A B"},O:{"8":"xC"},P:{"8":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"8":"2B"},R:{"8":"BD"},S:{"8":"CD DD"}},B:7,C:"XHTML+SMIL animation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xml-serializer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xml-serializer.js index f175f66173c23b..0253e03e7ef0bf 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 CC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB","132":"B","260":"DC tB I u J D EC FC","516":"E F A"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB g lB mB nB oB pB P Q R S T U V W X Y Z a b c d e h i j k l m n o p q r s t f H xB yB GC","132":"0 1 2 3 4 5 6 I u J D E F A B C K L G M N O v w x y z"},E:{"1":"E F A B C K L G KC LC 0B qB rB 1B MC NC 2B 3B 4B 5B sB 6B 7B 8B 9B OC","132":"I u J D HC zB IC JC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 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 lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d e","16":"F PC","132":"B C G M N QC RC SC qB AC TC rB"},G:{"1":"E YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC nC 2B 3B 4B 5B sB 6B 7B 8B 9B","132":"zB UC BC VC WC XC"},H:{"132":"oC"},I:{"1":"f tC uC","132":"tB I pC qC rC sC BC"},J:{"132":"D A"},K:{"1":"g","16":"A","132":"B C qB AC rB"},L:{"1":"H"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"vC"},P:{"1":"I wC xC yC zC 0C 0B 1C 2C 3C 4C 5C sB 6C 7C 8C"},Q:{"1":"1B"},R:{"1":"9C"},S:{"1":"AD"}},B:4,C:"DOM Parsing and Serialization"}; +module.exports={A:{A:{"1":"A B","260":"J D E F EC"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB","132":"B","260":"FC uB I w J D GC HC","516":"E F A"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB vB aB wB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R S T U V W X Y Z a b c d e i j k l m n o p q r s t u v f H yB zB IC","132":"0 1 2 3 4 5 6 7 I w J D E F A B C K L G M N O x g y z"},E:{"1":"E F A B C K L G MC NC 1B rB sB 2B OC PC 3B 4B 5B 6B tB 7B 8B 9B AC BC QC","132":"I w J D JC 0B KC LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O x g y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB h mB nB oB pB qB P Q R xB S T U V W X Y Z a b c d e","16":"F RC","132":"B C G M N SC TC UC rB CC VC sB"},G:{"1":"E aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC 3B 4B 5B 6B tB 7B 8B 9B AC BC","132":"0B WC DC XC YC ZC"},H:{"132":"qC"},I:{"1":"H vC wC","132":"uB I rC sC tC uC DC"},J:{"132":"D A"},K:{"1":"h","16":"A","132":"B C rB CC sB"},L:{"1":"H"},M:{"1":"f"},N:{"1":"A B"},O:{"1":"xC"},P:{"1":"I g yC zC 0C 1C 2C 1B 3C 4C 5C 6C 7C tB 8C 9C AD"},Q:{"1":"2B"},R:{"1":"BD"},S:{"1":"CD DD"}},B:4,C:"DOM Parsing and Serialization"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js index a6de6f7563a36d..040dd06ee18b67 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00421,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02944,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00421,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02944,"103":0,"104":0.00841,"105":0,"106":0,"107":0.01682,"108":0.54245,"109":0.3364,"110":0.01682,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00841,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00421,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00421,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00421,"78":0,"79":0.01262,"80":0,"81":0.00841,"83":0,"84":0,"85":0,"86":0,"87":0.00421,"88":0.00421,"89":0.00421,"90":0,"91":0.00421,"92":0,"93":0.00421,"94":0,"95":0,"96":0,"97":0.00421,"98":0.01262,"99":0.01262,"100":0.00841,"101":0,"102":0.00841,"103":0.04205,"104":0.01262,"105":0.34481,"106":0.00841,"107":0.29856,"108":3.74666,"109":3.82235,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00421,"86":0.00421,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00421,"93":0.50881,"94":0.29015,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00841,"108":0.64337,"109":0.56347},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00421,"14":0.03785,"15":0.00841,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00421,"12.1":0.00841,"13.1":0.06728,"14.1":0.10513,"15.1":0.07569,"15.2-15.3":0.0799,"15.4":0.18082,"15.5":0.32379,"15.6":2.02681,"16.0":0.2523,"16.1":0.76111,"16.2":1.56006,"16.3":0.18082},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.02864,"9.0-9.2":0,"9.3":0.1031,"10.0-10.2":0,"10.3":0.09737,"11.0-11.2":0.00573,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.46968,"13.0-13.1":0,"13.2":0.01146,"13.3":0.00573,"13.4-13.7":0.13174,"14.0-14.4":0.4525,"14.5-14.8":0.59569,"15.0-15.1":0.30357,"15.2-15.3":0.61288,"15.4":0.6186,"15.5":1.50642,"15.6":7.66382,"16.0":9.02131,"16.1":19.10227,"16.2":12.33199,"16.3":1.09974},P:{"4":0.09329,"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.0311,"18.0":0.02073,"19.0":1.12979},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01493,"4.4":0,"4.4.3-4.4.4":0.05973},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02944,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.29555},Q:{"13.1":0},O:{"0":0.0058},H:{"0":0.05486},L:{"0":26.1029},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0.00399,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00399,"36":0,"37":0.00399,"38":0.00399,"39":0.00399,"40":0.00399,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00399,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01595,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00399,"98":0,"99":0,"100":0.00399,"101":0.04387,"102":0.00798,"103":0,"104":0,"105":0.00399,"106":0.00399,"107":0.01595,"108":0.11166,"109":0.51445,"110":0.27118,"111":0,"112":0,"3.5":0.00399,"3.6":0.00798},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00399,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00399,"22":0.00399,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00399,"33":0.00399,"34":0,"35":0,"36":0.00399,"37":0,"38":0,"39":0.00399,"40":0.00399,"41":0.00399,"42":0.00798,"43":0.01196,"44":0.01994,"45":0.00798,"46":0.00399,"47":0.00399,"48":0,"49":0.00798,"50":0,"51":0.00399,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00798,"78":0,"79":0.02393,"80":0,"81":0.00798,"83":0,"84":0.00399,"85":0,"86":0,"87":0.00399,"88":0,"89":0,"90":0.04387,"91":0.01196,"92":0.00399,"93":0,"94":0,"95":0.00399,"96":0.00399,"97":0.00399,"98":0.00399,"99":0.00399,"100":0.00798,"101":0.00399,"102":0.00399,"103":0.05583,"104":0.01196,"105":0.29511,"106":0.00798,"107":0.05184,"108":0.13958,"109":4.07972,"110":2.37685,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00399,"32":0.00399,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00399,"89":0,"90":0,"91":0.00399,"92":0,"93":0.02792,"94":0.22333,"95":0.11166,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00399},B:{"12":0.00399,"13":0,"14":0.00399,"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.00399,"108":0.01196,"109":0.51844,"110":0.69391},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00399,"9":0.01196,"10":0,"11":0,"12":0,"13":0.00798,"14":0.01994,"15":0.00399,_:"0","3.1":0,"3.2":0,"5.1":0.00399,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01196,"13.1":0.10369,"14.1":0.12363,"15.1":0.06381,"15.2-15.3":0.08774,"15.4":0.08774,"15.5":0.2313,"15.6":1.09271,"16.0":0.15553,"16.1":0.47058,"16.2":1.46758,"16.3":1.21634,"16.4":0.01196},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02957,"8.1-8.4":0.06506,"9.0-9.2":0,"9.3":0.13603,"10.0-10.2":0,"10.3":0.09463,"11.0-11.2":0.10646,"11.3-11.4":0,"12.0-12.1":0.01183,"12.2-12.5":0.18335,"13.0-13.1":0,"13.2":0.01183,"13.3":0.01183,"13.4-13.7":0.15377,"14.0-14.4":0.32529,"14.5-14.8":0.43767,"15.0-15.1":0.207,"15.2-15.3":0.68016,"15.4":0.43767,"15.5":1.20062,"15.6":6.41712,"16.0":7.07361,"16.1":15.9452,"16.2":13.78054,"16.3":8.20918,"16.4":0.05914},P:{"4":0.07161,"20":0.43989,"5.0-5.4":0,"6.2-6.4":0.01023,"7.2-7.4":0.02046,"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.02046,"18.0":0.03069,"19.0":0.67519},I:{"0":0,"3":0.00583,"4":0.02478,"2.1":0.00437,"2.2":0.01895,"2.3":0.02332,"4.1":0.03061,"4.2-4.3":0.05394,"4.4":0,"4.4.3-4.4.4":0.15015},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00399,"7":0.00399,"8":0.05982,"9":0.01595,"10":0.01196,"11":0.03988,"5.5":0},N:{"10":0.01002,"11":0.02004},S:{"2.5":0.00601,_:"3.0-3.1"},J:{"7":0,"10":0.01804},O:{"0":0.02405},H:{"0":0.10814},L:{"0":25.98917},R:{_:"0"},M:{"0":0.33066},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js index 50e25f800c009b..3dfce89bf90563 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.02369,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00338,"77":0,"78":0.00338,"79":0.00338,"80":0,"81":0.00338,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00677,"103":0,"104":0.00338,"105":0.00338,"106":0.00338,"107":0.01015,"108":0.28426,"109":0.1049,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00338,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.14551,"36":0,"37":0,"38":0.00338,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00338,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00338,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00338,"66":0,"67":0,"68":0.00338,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00338,"75":0.00677,"76":0.01354,"77":0,"78":0.00338,"79":0.01354,"80":0.00677,"81":0.00338,"83":0.01354,"84":0.01692,"85":0.02369,"86":0.01692,"87":0.01354,"88":0.00338,"89":0.00338,"90":0.00677,"91":0.0203,"92":0.01692,"93":0.03384,"94":0.01354,"95":0.00338,"96":0.01692,"97":0.00677,"98":0.01015,"99":0.00677,"100":0.01015,"101":0.00677,"102":0.02707,"103":0.08798,"104":0.01692,"105":0.04061,"106":0.03046,"107":0.19627,"108":3.48552,"109":3.52951,"110":0.00338,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00338,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00338,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00338,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02707,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00338,"91":0,"92":0.00338,"93":0.12859,"94":0.12859,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00338,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00677,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00338,"105":0.00338,"106":0.00338,"107":0.01692,"108":0.48391,"109":0.56174},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01015,"14":0.03046,"15":0.00677,_:"0","3.1":0,"3.2":0,"5.1":0.00338,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00677,"13.1":0.02707,"14.1":0.08122,"15.1":0.01354,"15.2-15.3":0.01354,"15.4":0.03722,"15.5":0.07445,"15.6":0.33163,"16.0":0.04061,"16.1":0.16582,"16.2":0.23688,"16.3":0.01692},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.05032,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14888,"10.0-10.2":0.0021,"10.3":0.10065,"11.0-11.2":0.01258,"11.3-11.4":0.01048,"12.0-12.1":0.01677,"12.2-12.5":0.41308,"13.0-13.1":0.00629,"13.2":0.00419,"13.3":0.01887,"13.4-13.7":0.08387,"14.0-14.4":0.22856,"14.5-14.8":0.51373,"15.0-15.1":0.18033,"15.2-15.3":0.21388,"15.4":0.2663,"15.5":0.62067,"15.6":2.23106,"16.0":2.86012,"16.1":6.17526,"16.2":4.8815,"16.3":0.49905},P:{"4":0.07278,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03119,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0104,"12.0":0,"13.0":0.03119,"14.0":0.02079,"15.0":0.0104,"16.0":0.04159,"17.0":0.04159,"18.0":0.07278,"19.0":1.92337},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0703},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.004,"9":0.004,"10":0,"11":0.03599,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.00662},R:{_:"0"},M:{"0":0.18525},Q:{"13.1":0},O:{"0":3.42047},H:{"0":0.64515},L:{"0":60.27319}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00353,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00353,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00353,"51":0,"52":0.00353,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00353,"67":0,"68":0.02468,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00353,"79":0,"80":0.00353,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00353,"88":0,"89":0,"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.01058,"103":0,"104":0,"105":0,"106":0,"107":0.00353,"108":0.17983,"109":0.20451,"110":0.11636,"111":0.00353,"112":0.00353,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.16572,"36":0,"37":0,"38":0.00353,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00705,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00353,"57":0,"58":0,"59":0,"60":0.00353,"61":0,"62":0,"63":0,"64":0,"65":0.00353,"66":0,"67":0.00353,"68":0.00353,"69":0.00353,"70":0,"71":0,"72":0.00353,"73":0,"74":0.00353,"75":0.00705,"76":0.01058,"77":0,"78":0.00705,"79":0.01763,"80":0.00705,"81":0.00353,"83":0.01058,"84":0.0141,"85":0.02116,"86":0.0141,"87":0.0141,"88":0.00353,"89":0.00353,"90":0.00705,"91":0.02116,"92":0.01058,"93":0.03173,"94":0,"95":0.00705,"96":0.00353,"97":0.00705,"98":0.01058,"99":0.00705,"100":0.01058,"101":0.01058,"102":0.01058,"103":0.09168,"104":0.0141,"105":0.02821,"106":0.02116,"107":0.20803,"108":0.18688,"109":4.49212,"110":2.99357,"111":0.00353,"112":0.00353,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00353,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00353,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00353,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.02116,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00353,"74":0.0141,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00353,"91":0,"92":0.00353,"93":0.02468,"94":0.19746,"95":0.09873,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00353,"16":0.00353,"17":0,"18":0.00353,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00353,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00353,"106":0.00353,"107":0.00705,"108":0.02116,"109":0.46896,"110":0.57826},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01058,"14":0.02821,"15":0.00705,_:"0","3.1":0,"3.2":0,"5.1":0.00353,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00705,"13.1":0.02821,"14.1":0.0811,"15.1":0.01058,"15.2-15.3":0.0141,"15.4":0.04231,"15.5":0.05642,"15.6":0.25035,"16.0":0.03173,"16.1":0.12694,"16.2":0.23977,"16.3":0.17983,"16.4":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.02837,"8.1-8.4":0.00218,"9.0-9.2":0,"9.3":0.13312,"10.0-10.2":0.00436,"10.3":0.09384,"11.0-11.2":0.01091,"11.3-11.4":0.01309,"12.0-12.1":0.01309,"12.2-12.5":0.40809,"13.0-13.1":0.00655,"13.2":0.00436,"13.3":0.02182,"13.4-13.7":0.09602,"14.0-14.4":0.22041,"14.5-14.8":0.56522,"15.0-15.1":0.17895,"15.2-15.3":0.19204,"15.4":0.25097,"15.5":0.53248,"15.6":1.74803,"16.0":2.3438,"16.1":4.51301,"16.2":5.11314,"16.3":3.89542,"16.4":0.02182},P:{"4":0.08221,"20":0.70909,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.03083,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01028,"12.0":0,"13.0":0.01028,"14.0":0.02055,"15.0":0.01028,"16.0":0.03083,"17.0":0.03083,"18.0":0.05138,"19.0":1.12016},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.06468},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00411,"9":0.00411,"10":0,"11":0.04114,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":3.03631},H:{"0":0.6313},L:{"0":59.42968},R:{_:"0"},M:{"0":0.13595},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js index ba76384743fe2d..59c0d1b95faa73 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.00212,"48":0.00212,"49":0,"50":0.00212,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00212,"57":0,"58":0,"59":0,"60":0,"61":0.00212,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00212,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00212,"95":0,"96":0,"97":0.00212,"98":0,"99":0.00425,"100":0,"101":0,"102":0.00637,"103":0.00212,"104":0.0085,"105":0,"106":0.00425,"107":0.00637,"108":0.14231,"109":0.0616,"110":0.00425,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00212,"36":0.02124,"37":0.00425,"38":0,"39":0,"40":0.00212,"41":0,"42":0,"43":0.00425,"44":0.00212,"45":0,"46":0.00212,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00212,"53":0,"54":0.00212,"55":0.00212,"56":0,"57":0.00212,"58":0,"59":0,"60":0.00212,"61":0.00212,"62":0.00425,"63":0.00212,"64":0.00212,"65":0.00212,"66":0,"67":0.00212,"68":0.00212,"69":0.00212,"70":0.00212,"71":0.0085,"72":0.00212,"73":0.00212,"74":0,"75":0.00212,"76":0,"77":0.00212,"78":0.00637,"79":0.00425,"80":0.01062,"81":0.01062,"83":0.00425,"84":0.01487,"85":0.01487,"86":0.01274,"87":0.00425,"88":0.00425,"89":0.00425,"90":0.00212,"91":0.00425,"92":0.00637,"93":0.00425,"94":0.00637,"95":0.00425,"96":0.00425,"97":0.00425,"98":0.00425,"99":0.01062,"100":0.00637,"101":0.00212,"102":0.01487,"103":0.01699,"104":0.0085,"105":0.01274,"106":0.01912,"107":0.04248,"108":1.18944,"109":0.9112,"110":0.00425,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00212,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00212,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00212,"60":0.00212,"62":0,"63":0.00637,"64":0.00425,"65":0.00212,"66":0.01487,"67":0.00212,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00212,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00425,"80":0,"81":0,"82":0,"83":0,"84":0.00212,"85":0.00212,"86":0.00212,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00212,"93":0.00637,"94":0.16567,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00212},B:{"12":0.00425,"13":0.00212,"14":0.00425,"15":0.00425,"16":0.01487,"17":0.00425,"18":0.03611,"79":0,"80":0,"81":0.00212,"83":0,"84":0.0085,"85":0,"86":0,"87":0,"88":0,"89":0.00425,"90":0.0085,"91":0,"92":0.01699,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00212,"101":0,"102":0.00212,"103":0.01062,"104":0,"105":0.00212,"106":0.00212,"107":0.0085,"108":0.14231,"109":0.11894},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00212,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00637,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00212,"13.1":0.00212,"14.1":0.00212,"15.1":0.01912,"15.2-15.3":0.01699,"15.4":0.01699,"15.5":0.05098,"15.6":0.1593,"16.0":0.01699,"16.1":0.10832,"16.2":0.17417,"16.3":0.02549},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00218,"7.0-7.1":0.05459,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03494,"10.0-10.2":0,"10.3":0.03494,"11.0-11.2":0.00218,"11.3-11.4":0.00437,"12.0-12.1":0.0262,"12.2-12.5":0.7184,"13.0-13.1":0.00437,"13.2":0.01529,"13.3":0.09608,"13.4-13.7":0.10481,"14.0-14.4":0.452,"14.5-14.8":0.32754,"15.0-15.1":0.45637,"15.2-15.3":0.5328,"15.4":0.62232,"15.5":1.03721,"15.6":2.0635,"16.0":3.34308,"16.1":4.84758,"16.2":4.59428,"16.3":0.38431},P:{"4":0.57704,"5.0-5.4":0.20247,"6.2-6.4":0.15185,"7.2-7.4":0.43531,"8.2":0.03037,"9.2":0.22272,"10.1":0.03037,"11.1-11.2":0.16198,"12.0":0.07086,"13.0":0.11136,"14.0":0.09111,"15.0":0.05062,"16.0":0.31383,"17.0":0.15185,"18.0":0.37457,"19.0":1.16421},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00586,"4.2-4.3":0.03318,"4.4":0,"4.4.3-4.4.4":0.27132},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00212,"10":0,"11":0.1147,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08664},Q:{"13.1":0},O:{"0":1.36255},H:{"0":0.95443},L:{"0":67.74516},S:{"2.5":0.00788}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00212,"39":0,"40":0,"41":0,"42":0,"43":0.00212,"44":0,"45":0,"46":0,"47":0,"48":0.00212,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00212,"69":0,"70":0,"71":0,"72":0.00212,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00212,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00212,"95":0,"96":0,"97":0,"98":0,"99":0.00212,"100":0,"101":0,"102":0.00424,"103":0.00424,"104":0.00212,"105":0.00212,"106":0.00212,"107":0.00212,"108":0.01485,"109":0.12938,"110":0.0806,"111":0.00212,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00212,"35":0,"36":0,"37":0,"38":0.00212,"39":0.00212,"40":0,"41":0,"42":0,"43":0.00212,"44":0,"45":0,"46":0,"47":0,"48":0.00212,"49":0.00212,"50":0,"51":0,"52":0.00212,"53":0,"54":0.00212,"55":0.00212,"56":0,"57":0,"58":0.00212,"59":0,"60":0,"61":0,"62":0.00636,"63":0.00212,"64":0.00212,"65":0,"66":0,"67":0,"68":0,"69":0.00848,"70":0.00212,"71":0.00848,"72":0.00424,"73":0.00424,"74":0.00212,"75":0.00212,"76":0.00212,"77":0.00212,"78":0.00848,"79":0.00848,"80":0.00848,"81":0.00636,"83":0.00212,"84":0.00424,"85":0.00212,"86":0.01485,"87":0.01485,"88":0.00212,"89":0.00424,"90":0.00212,"91":0.00636,"92":0.00848,"93":0,"94":0.00424,"95":0.00424,"96":0.00636,"97":0.00424,"98":0.00424,"99":0.00848,"100":0.00636,"101":0.00212,"102":0.00636,"103":0.01485,"104":0.00848,"105":0.00848,"106":0.01273,"107":0.02333,"108":0.07848,"109":1.46985,"110":0.67872,"111":0.00424,"112":0.00212,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.01061,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00212,"60":0.00212,"62":0,"63":0.00212,"64":0.00212,"65":0,"66":0.00212,"67":0.02121,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00212,"75":0,"76":0,"77":0,"78":0,"79":0.00424,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00212,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00212,"93":0,"94":0.0509,"95":0.12514,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00212},B:{"12":0.01273,"13":0.00424,"14":0.00848,"15":0.00212,"16":0.00848,"17":0.00212,"18":0.02121,"79":0,"80":0,"81":0.00212,"83":0,"84":0.00424,"85":0,"86":0,"87":0,"88":0,"89":0.00636,"90":0.00848,"91":0,"92":0.02545,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00424,"101":0,"102":0.00212,"103":0.00212,"104":0,"105":0.00212,"106":0.00212,"107":0.00424,"108":0.01485,"109":0.11878,"110":0.16332},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00424,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00636,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00212,"13.1":0.00424,"14.1":0.00212,"15.1":0.01909,"15.2-15.3":0.00848,"15.4":0.01909,"15.5":0.03182,"15.6":0.08484,"16.0":0.01061,"16.1":0.05727,"16.2":0.12302,"16.3":0.15483,"16.4":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.0136,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02947,"10.0-10.2":0,"10.3":0.01813,"11.0-11.2":0,"11.3-11.4":0.00453,"12.0-12.1":0.02267,"12.2-12.5":0.71396,"13.0-13.1":0.02493,"13.2":0.02493,"13.3":0.068,"13.4-13.7":0.10199,"14.0-14.4":0.37171,"14.5-14.8":0.42611,"15.0-15.1":0.36038,"15.2-15.3":0.52584,"15.4":0.56437,"15.5":0.93155,"15.6":1.56618,"16.0":2.45013,"16.1":3.68993,"16.2":4.06391,"16.3":4.23616,"16.4":0.02493},P:{"4":0.42533,"20":0.19241,"5.0-5.4":0.16203,"6.2-6.4":0.12152,"7.2-7.4":0.33419,"8.2":0.01013,"9.2":0.21266,"10.1":0.01013,"11.1-11.2":0.13165,"12.0":0.10127,"13.0":0.08101,"14.0":0.09114,"15.0":0.04051,"16.0":0.20254,"17.0":0.13165,"18.0":0.18228,"19.0":1.01268},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00375,"4.2-4.3":0.00625,"4.4":0,"4.4.3-4.4.4":0.21635},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00424,"10":0,"11":0.09545,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00788,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.33943},H:{"0":0.7161},L:{"0":68.55879},R:{_:"0"},M:{"0":0.06303},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js index 06113d62040e7f..bdcd244545ee23 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00443,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00443,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00887,"87":0,"88":0,"89":0,"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.00443,"104":0,"105":0.0133,"106":0,"107":0.00887,"108":0.46547,"109":0.18175,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00443,"50":0,"51":0,"52":0,"53":0.01773,"54":0,"55":0,"56":0.00443,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00443,"63":0.00443,"64":0,"65":0.00887,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.02217,"73":0,"74":0.00443,"75":0.00887,"76":0.0133,"77":0.00443,"78":0,"79":0.02217,"80":0,"81":0.00443,"83":0,"84":0.0266,"85":0,"86":0.00887,"87":0.00887,"88":0,"89":0,"90":0,"91":0.00887,"92":0.00443,"93":0.39454,"94":0.00443,"95":0.00887,"96":0,"97":0,"98":0.00443,"99":0.00443,"100":0.0133,"101":0,"102":0.00887,"103":0.26598,"104":0,"105":0.0266,"106":0.03546,"107":0.09309,"108":5.04919,"109":4.63249,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00887,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.10196,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00443,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.07093,"94":0.12856,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00443,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00443,"93":0.00443,"94":0,"95":0,"96":0.00443,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00443,"104":0,"105":0.00443,"106":0.03546,"107":0.04433,"108":1.58258,"109":1.53825},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00443,"14":0.0266,"15":0.00443,_:"0","3.1":0,"3.2":0,"5.1":0.00443,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01773,"13.1":0.05763,"14.1":0.07536,"15.1":0.02217,"15.2-15.3":0.00887,"15.4":0.02217,"15.5":0.30144,"15.6":0.58072,"16.0":0.70041,"16.1":0.19062,"16.2":0.31031,"16.3":0.02217},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00481,"6.0-6.1":0.01202,"7.0-7.1":0.05049,"8.1-8.4":0,"9.0-9.2":0.00721,"9.3":0.1659,"10.0-10.2":0,"10.3":0.06011,"11.0-11.2":0.00721,"11.3-11.4":0.00962,"12.0-12.1":0.01683,"12.2-12.5":0.3799,"13.0-13.1":0.01924,"13.2":0,"13.3":0,"13.4-13.7":0.24525,"14.0-14.4":0.24285,"14.5-14.8":0.45684,"15.0-15.1":0.29815,"15.2-15.3":0.20678,"15.4":0.13946,"15.5":0.66843,"15.6":2.60878,"16.0":3.40464,"16.1":7.16514,"16.2":5.92687,"16.3":0.46646},P:{"4":0.25809,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21507,"8.2":0,"9.2":0.02151,"10.1":0,"11.1-11.2":0.04301,"12.0":0.01075,"13.0":0.05377,"14.0":0.03226,"15.0":0.05377,"16.0":0.15055,"17.0":0.10754,"18.0":0.17206,"19.0":4.07563},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.24937,"4.4":0,"4.4.3-4.4.4":1.66249},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00887,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.28392},Q:{"13.1":0},O:{"0":0.05567},H:{"0":0.32677},L:{"0":49.76162},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00473,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00473,"87":0.00473,"88":0,"89":0,"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.00473,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.01894,"109":0.47813,"110":0.24143,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00473,"48":0,"49":0.00473,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.02367,"77":0.04734,"78":0,"79":0.00473,"80":0,"81":0.00473,"83":0.00473,"84":0.00473,"85":0,"86":0.00473,"87":0,"88":0,"89":0,"90":0,"91":0.00473,"92":0.0142,"93":0.56335,"94":0,"95":0,"96":0,"97":0.00947,"98":0.00473,"99":0.00473,"100":0.0142,"101":0,"102":0.02367,"103":0.22723,"104":0.01894,"105":0.0284,"106":0.0284,"107":0.03787,"108":0.34558,"109":6.81223,"110":3.7872,"111":0.00947,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00947,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04734,"64":0,"65":0,"66":0,"67":0.00947,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00473,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0284,"94":0.12308,"95":0.06154,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00473,"15":0,"16":0.00473,"17":0,"18":0.00947,"79":0,"80":0,"81":0,"83":0,"84":0.00473,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03787,"94":0,"95":0,"96":0.00473,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02367,"103":0,"104":0,"105":0.00947,"106":0.00473,"107":0.03314,"108":0.05207,"109":1.97408,"110":1.77525},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01894,"14":0.09941,"15":0.01894,_:"0","3.1":0,"3.2":0,"5.1":0.00473,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03314,"13.1":0.04734,"14.1":0.13729,"15.1":0.04261,"15.2-15.3":0.01894,"15.4":0.02367,"15.5":0.56808,"15.6":0.56335,"16.0":0.18463,"16.1":0.17042,"16.2":0.44026,"16.3":0.35032,"16.4":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.00939,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.34266,"10.0-10.2":0,"10.3":0.05867,"11.0-11.2":0,"11.3-11.4":0.00939,"12.0-12.1":0.00469,"12.2-12.5":0.32623,"13.0-13.1":0.01878,"13.2":0,"13.3":0.01173,"13.4-13.7":0.15959,"14.0-14.4":0.16663,"14.5-14.8":0.33562,"15.0-15.1":0.23939,"15.2-15.3":0.20419,"15.4":0.14317,"15.5":0.47174,"15.6":2.18972,"16.0":2.26013,"16.1":5.48486,"16.2":6.08334,"16.3":3.57209,"16.4":0.02112},P:{"4":0.14792,"20":1.52148,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.23245,"8.2":0,"9.2":0.01057,"10.1":0,"11.1-11.2":0.06339,"12.0":0,"13.0":0.04226,"14.0":0.02113,"15.0":0.0317,"16.0":0.08453,"17.0":0.06339,"18.0":0.16905,"19.0":2.54636},I:{"0":0,"3":0,"4":0.08088,"2.1":0,"2.2":0,"2.3":0,"4.1":0.12131,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.45577},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.0142,"11":0.00947,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.0316},H:{"0":0.28417},L:{"0":48.21667},R:{_:"0"},M:{"0":0.20537},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js index 5c9b067ec85a0c..2e012d1444e88f 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.00452,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.01809,"103":0,"104":0,"105":0,"106":0,"107":0.00452,"108":0.18997,"109":0.10855,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.05428,"77":0,"78":0,"79":0,"80":0,"81":0.00905,"83":0.00905,"84":0,"85":0,"86":0,"87":0.00452,"88":0,"89":0,"90":0.00452,"91":0,"92":0,"93":0.00452,"94":0,"95":0,"96":0.00452,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00452,"103":0.06785,"104":0.00452,"105":0.00452,"106":0.01809,"107":0.04523,"108":2.60525,"109":2.93995,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00905,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.10855,"94":4.44159,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00905,"79":0,"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.00905,"94":0,"95":0,"96":0.00452,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00452,"107":0.09046,"108":3.00327,"109":2.41981},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01357,"15":0.10403,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00452,"13.1":0.47039,"14.1":0.06785,"15.1":0.04071,"15.2-15.3":0.02714,"15.4":0.03166,"15.5":0.09951,"15.6":0.74177,"16.0":0.15378,"16.1":0.22163,"16.2":0.63322,"16.3":0.01357},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.03724,"11.0-11.2":0,"11.3-11.4":0.03724,"12.0-12.1":0,"12.2-12.5":0.90722,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.04401,"14.0-14.4":0.00677,"14.5-14.8":1.33375,"15.0-15.1":0.03724,"15.2-15.3":0.23358,"15.4":0.58225,"15.5":0.58225,"15.6":3.79813,"16.0":2.63026,"16.1":16.25548,"16.2":6.05264,"16.3":0.72104},P:{"4":0.10438,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.22964,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.08351,"12.0":0.01044,"13.0":0.02088,"14.0":0.06263,"15.0":0.03131,"16.0":0.01044,"17.0":0.6576,"18.0":0.05219,"19.0":2.49472},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.2352},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08763},Q:{"13.1":0},O:{"0":0},H:{"0":0.01556},L:{"0":41.95311},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00544,"91":0.01632,"92":0.00544,"93":0.00544,"94":0.00544,"95":0.01632,"96":0,"97":0.00544,"98":0.00544,"99":0.00544,"100":0.00544,"101":0.00544,"102":0.02176,"103":0,"104":0.00544,"105":0.01632,"106":0.01088,"107":0,"108":0.01632,"109":0.23388,"110":0.06527,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.03807,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.04351,"77":0,"78":0,"79":0,"80":0,"81":0.01088,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01088,"91":0.00544,"92":0.00544,"93":0,"94":0.00544,"95":0.00544,"96":0.01088,"97":0.00544,"98":0.01088,"99":0.00544,"100":0,"101":0.00544,"102":0.00544,"103":0.08702,"104":0.00544,"105":0,"106":0.06527,"107":0.06527,"108":0.21756,"109":4.11732,"110":3.4592,"111":0.0272,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00544,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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":2.24631,"95":4.73193,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00544,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00544,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00544,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00544,"106":0,"107":0,"108":0.32634,"109":2.8446,"110":3.05128},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.01088,"13":0,"14":0.00544,"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.02176,"13.1":0.44056,"14.1":0.11422,"15.1":0.01632,"15.2-15.3":0.01632,"15.4":0.01632,"15.5":0.06527,"15.6":0.70707,"16.0":0.65812,"16.1":0.35354,"16.2":1.60451,"16.3":1.37607,"16.4":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.48732,"13.0-13.1":0,"13.2":0.06859,"13.3":0,"13.4-13.7":0.06137,"14.0-14.4":0.04332,"14.5-14.8":3.56645,"15.0-15.1":0.36098,"15.2-15.3":0.37903,"15.4":0.15522,"15.5":0.20576,"15.6":1.60635,"16.0":2.38244,"16.1":10.79681,"16.2":9.40344,"16.3":5.63123,"16.4":0.05054},P:{"4":0.19721,"20":0.78885,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03114,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01038,"13.0":0.04152,"14.0":0.08304,"15.0":0,"16.0":0,"17.0":0.75771,"18.0":0.03114,"19.0":0.88227},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.56214},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01088,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.01727},L:{"0":32.3033},R:{_:"0"},M:{"0":0.14139},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js index fb36ec0c4a0481..68be779b4632e8 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.00125,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00125,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00125,"103":0,"104":0.00125,"105":0.00125,"106":0.00125,"107":0.00125,"108":0.07601,"109":0.03115,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00125,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00125,"50":0,"51":0,"52":0,"53":0,"54":0.00125,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00125,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00125,"75":0,"76":0.00125,"77":0,"78":0.00125,"79":0.00623,"80":0.00125,"81":0.00125,"83":0.00125,"84":0.00125,"85":0.00249,"86":0.00249,"87":0.00249,"88":0.00125,"89":0.00125,"90":0.00125,"91":0,"92":0.00125,"93":0,"94":0.00125,"95":0.00125,"96":0.00125,"97":0.00125,"98":0.00125,"99":0.00125,"100":0.00125,"101":0.00125,"102":0.00125,"103":0.00748,"104":0.00249,"105":0.00374,"106":0.00249,"107":0.01495,"108":0.50338,"109":0.48469,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00125,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00125,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00872,"94":0.03987,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00125,"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.00125,"108":0.04361,"109":0.04486},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00125,"14":0.00125,"15":0.00125,_:"0","3.1":0,"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.00249,"14.1":0.00374,"15.1":0.00125,"15.2-15.3":0.00249,"15.4":0.00872,"15.5":0.00872,"15.6":0.04236,"16.0":0.00374,"16.1":0.02617,"16.2":0.04112,"16.3":0.00498},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04532,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03525,"10.0-10.2":0.01007,"10.3":0.08056,"11.0-11.2":0.01007,"11.3-11.4":0.01007,"12.0-12.1":0.02518,"12.2-12.5":1.25376,"13.0-13.1":0.02518,"13.2":0.01007,"13.3":0.08056,"13.4-13.7":0.31722,"14.0-14.4":0.96676,"14.5-14.8":3.17721,"15.0-15.1":0.3575,"15.2-15.3":0.57905,"15.4":0.83081,"15.5":1.68679,"15.6":7.09963,"16.0":6.44505,"16.1":13.32313,"16.2":8.80656,"16.3":0.63443},P:{"4":0.12121,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0606,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0303,"12.0":0.0101,"13.0":0.0606,"14.0":0.0303,"15.0":0.0606,"16.0":0.0404,"17.0":0.0505,"18.0":0.11111,"19.0":2.05046},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01998,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00999},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00249,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10505},Q:{"13.1":0},O:{"0":0.03502},H:{"0":0.07459},L:{"0":49.41691},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00132,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00132,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00132,"98":0,"99":0,"100":0,"101":0,"102":0.00132,"103":0,"104":0,"105":0.00132,"106":0.00132,"107":0.00132,"108":0.00396,"109":0.08184,"110":0.04356,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00132,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00264,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00132,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00396,"80":0,"81":0.00132,"83":0.00132,"84":0.00132,"85":0.00132,"86":0.00132,"87":0.00264,"88":0.00132,"89":0,"90":0.00132,"91":0,"92":0.00132,"93":0,"94":0,"95":0,"96":0.00132,"97":0.00132,"98":0.00132,"99":0.00132,"100":0.00264,"101":0.00132,"102":0.00132,"103":0.00396,"104":0.00264,"105":0.00528,"106":0.00396,"107":0.0066,"108":0.0264,"109":0.7656,"110":0.37356,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00132,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00132,"94":0.01716,"95":0.01452,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00132,"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.00132,"108":0.00396,"109":0.04224,"110":0.05016},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00132,"15":0.00132,_:"0","3.1":0,"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.00396,"14.1":0.00264,"15.1":0.00264,"15.2-15.3":0.00132,"15.4":0.00528,"15.5":0.00924,"15.6":0.03564,"16.0":0.00396,"16.1":0.01584,"16.2":0.033,"16.3":0.04224,"16.4":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.0492,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0246,"10.0-10.2":0.00984,"10.3":0.08365,"11.0-11.2":0.01476,"11.3-11.4":0.00984,"12.0-12.1":0.0246,"12.2-12.5":1.14645,"13.0-13.1":0.0246,"13.2":0.03444,"13.3":0.07873,"13.4-13.7":0.27554,"14.0-14.4":0.81678,"14.5-14.8":2.77018,"15.0-15.1":0.29522,"15.2-15.3":0.49696,"15.4":0.76758,"15.5":1.47612,"15.6":5.75193,"16.0":5.17133,"16.1":10.2098,"16.2":9.88014,"16.3":5.28942,"16.4":0.0246},P:{"4":0.11048,"20":0.75326,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0703,"8.2":0,"9.2":0.01004,"10.1":0,"11.1-11.2":0.04017,"12.0":0.01004,"13.0":0.05022,"14.0":0.04017,"15.0":0.06026,"16.0":0.06026,"17.0":0.05022,"18.0":0.06026,"19.0":1.30566},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00616,"4.2-4.3":0.00308,"4.4":0,"4.4.3-4.4.4":0.02001},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00132,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.00868},H:{"0":0.07396},L:{"0":50.34328},R:{_:"0"},M:{"0":0.11284},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js index fc65a20b8d36c5..3ae8bc7f6495f4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":28.06362,"53":0,"54":0,"55":0,"56":0.00693,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01386,"79":0.01386,"80":0,"81":0.02079,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00693,"103":0,"104":0,"105":0,"106":0,"107":0.00693,"108":0.44358,"109":0.16634,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00693,"48":0.01386,"49":0.04159,"50":0,"51":0.00693,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00693,"72":0,"73":0,"74":0.00693,"75":0.01386,"76":0.00693,"77":0,"78":0,"79":0.01386,"80":0.02079,"81":0.01386,"83":0,"84":0.01386,"85":0.03466,"86":0.04159,"87":0.04159,"88":0.00693,"89":0.00693,"90":0.02079,"91":0.00693,"92":0.01386,"93":0,"94":0.01386,"95":0.00693,"96":0.00693,"97":0.01386,"98":0.02079,"99":0.00693,"100":0.01386,"101":0.04852,"102":0.04852,"103":0.38121,"104":0.04852,"105":0.09703,"106":0.04159,"107":0.85944,"108":6.93793,"109":6.92407,"110":0.02772,"111":0.00693,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00693,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00693,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02079,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02079,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.11783,"94":0.30496,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.06238,"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.00693,"108":0.31883,"109":0.32576},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01386,"15":0.01386,_:"0","3.1":0,"3.2":0,"5.1":0.04159,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.08317,"14.1":0.04852,"15.1":0.00693,"15.2-15.3":0.01386,"15.4":0.02079,"15.5":0.06931,"15.6":0.13862,"16.0":0.02079,"16.1":0.15248,"16.2":0.24259,"16.3":0.02079},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00169,"6.0-6.1":0,"7.0-7.1":0.01354,"8.1-8.4":0,"9.0-9.2":0.00169,"9.3":0.16078,"10.0-10.2":0,"10.3":0.05247,"11.0-11.2":0.00846,"11.3-11.4":0.01354,"12.0-12.1":0.01185,"12.2-12.5":0.53988,"13.0-13.1":0.01015,"13.2":0.00508,"13.3":0.02708,"13.4-13.7":0.0897,"14.0-14.4":0.44341,"14.5-14.8":0.56696,"15.0-15.1":0.24709,"15.2-15.3":0.29448,"15.4":0.23863,"15.5":0.48572,"15.6":1.12208,"16.0":2.99559,"16.1":4.02458,"16.2":3.77579,"16.3":0.35033},P:{"4":0.05111,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07156,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05111,"12.0":0,"13.0":0.01022,"14.0":0.03067,"15.0":0.01022,"16.0":0.02044,"17.0":0.04089,"18.0":0.05111,"19.0":1.02223},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00326,"4.2-4.3":0.0049,"4.4":0,"4.4.3-4.4.4":0.03263},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0077,"7":0.0077,"8":0.0154,"9":0.0077,"10":0.0077,"11":0.09241,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0399},Q:{"13.1":0},O:{"0":0.12276},H:{"0":0.11913},L:{"0":33.85499},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":23.87252,"53":0,"54":0,"55":0,"56":0.0067,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03351,"79":0.0067,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.02011,"103":0,"104":0.0067,"105":0,"106":0.0067,"107":0,"108":0.0067,"109":0.38201,"110":0.20106,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0067,"49":0.07372,"50":0,"51":0.0067,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0067,"72":0,"73":0,"74":0.0067,"75":0.0067,"76":0,"77":0,"78":0.13404,"79":0.0134,"80":0.02011,"81":0.0067,"83":0,"84":0.0067,"85":0.03351,"86":0.02681,"87":0.0134,"88":0.0067,"89":0.0134,"90":0.0067,"91":0.0134,"92":0.0067,"93":0,"94":0,"95":0,"96":0.06032,"97":0.0134,"98":0.02011,"99":0.0067,"100":0.0134,"101":0.06032,"102":0.03351,"103":0.24797,"104":0.02011,"105":0.06702,"106":0.04691,"107":0.58307,"108":0.3284,"109":10.56905,"110":4.40992,"111":0.02011,"112":0.0134,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02011,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.0067,"82":0,"83":0,"84":0,"85":0.0134,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0134,"94":0.21446,"95":0.25468,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0067,"15":0,"16":0.04021,"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.0067,"108":0.0067,"109":0.26138,"110":0.3418},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02011,"15":0.0067,_:"0","3.1":0,"3.2":0,"5.1":0.02681,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.04021,"14.1":0.03351,"15.1":0.0067,"15.2-15.3":0.0067,"15.4":0.0134,"15.5":0.04691,"15.6":0.10053,"16.0":0.0134,"16.1":0.08713,"16.2":0.15415,"16.3":0.22117,"16.4":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.00202,"7.0-7.1":0.00808,"8.1-8.4":0,"9.0-9.2":0.0101,"9.3":0.10302,"10.0-10.2":0,"10.3":0.0505,"11.0-11.2":0.00404,"11.3-11.4":0.00606,"12.0-12.1":0.0101,"12.2-12.5":0.47673,"13.0-13.1":0.01212,"13.2":0.00808,"13.3":0.02222,"13.4-13.7":0.18988,"14.0-14.4":0.38179,"14.5-14.8":0.59389,"15.0-15.1":0.17776,"15.2-15.3":0.23837,"15.4":0.27271,"15.5":0.43633,"15.6":1.14941,"16.0":2.75939,"16.1":3.57347,"16.2":4.51885,"16.3":3.16542,"16.4":0.0101},P:{"4":0.02071,"20":0.36242,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07248,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03106,"12.0":0.01035,"13.0":0.01035,"14.0":0.02071,"15.0":0.01035,"16.0":0.01035,"17.0":0.03106,"18.0":0.06213,"19.0":0.76625},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01865,"4.2-4.3":0.00415,"4.4":0,"4.4.3-4.4.4":0.03731},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01468,"9":0.00734,"10":0.00734,"11":0.12478,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.0033,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.07585},H:{"0":0.14675},L:{"0":34.39087},R:{_:"0"},M:{"0":0.04617},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js index 9b40347ecd5751..614e77a50798aa 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.00793,"34":0.01189,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00396,"48":0,"49":0,"50":0,"51":0,"52":0.00396,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00396,"67":0,"68":0.00396,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00396,"85":0,"86":0,"87":0,"88":0.00396,"89":0,"90":0.00396,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00396,"98":0,"99":0.01189,"100":0,"101":0,"102":0.00793,"103":0.00396,"104":0,"105":0,"106":0,"107":0.00793,"108":0.19419,"109":0.13078,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00396,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01189,"35":0.00793,"36":0,"37":0,"38":0.00793,"39":0,"40":0.01585,"41":0,"42":0.00793,"43":0.04359,"44":0.00396,"45":0,"46":0.01982,"47":0,"48":0,"49":0.01189,"50":0,"51":0.00396,"52":0,"53":0.00396,"54":0,"55":0.00396,"56":0,"57":0,"58":0.01189,"59":0,"60":0,"61":0,"62":0,"63":0.00793,"64":0.00396,"65":0,"66":0,"67":0,"68":0,"69":0.01982,"70":0.00793,"71":0,"72":0.01585,"73":0.00396,"74":0.06737,"75":0,"76":0.00396,"77":0,"78":0.00396,"79":0.01585,"80":0,"81":0.01585,"83":0.00396,"84":0.01585,"85":0.00396,"86":0.00793,"87":0.05152,"88":0.00793,"89":0.00793,"90":0.00396,"91":0.01982,"92":0.00793,"93":0.01189,"94":0.00396,"95":0.00396,"96":0.00793,"97":0.00396,"98":0.00793,"99":0.00396,"100":0.01585,"101":0.01585,"102":0.01585,"103":0.01982,"104":0.01189,"105":0.01982,"106":0.03567,"107":0.09115,"108":2.44121,"109":2.54028,"110":0.00793,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00793,"27":0,"28":0.00396,"29":0,"30":0,"31":0,"32":0.00793,"33":0,"34":0,"35":0.00396,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00396,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00793,"55":0,"56":0,"57":0.00396,"58":0.00396,"60":0.05548,"62":0,"63":0.04756,"64":0.02774,"65":0,"66":0.02774,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00793,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00793,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00396,"86":0,"87":0,"88":0,"89":0,"90":0.00396,"91":0.01585,"92":0,"93":0.01585,"94":0.36063,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00396,"13":0.00396,"14":0.02774,"15":0.0317,"16":0.00396,"17":0.02774,"18":0.04359,"79":0,"80":0,"81":0,"83":0,"84":0.01982,"85":0,"86":0,"87":0,"88":0,"89":0.00396,"90":0.00396,"91":0,"92":0.00396,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01982,"102":0.00396,"103":0.00396,"104":0.01189,"105":0.00396,"106":0.00396,"107":0.0317,"108":0.62615,"109":0.59445},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00793,"15":0.00396,_:"0","3.1":0,"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.01585,"14.1":0.01189,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00793,"15.6":0.04756,"16.0":0,"16.1":0.00793,"16.2":0.03963,"16.3":0.00396},G:{"8":0.00143,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00717,"5.0-5.1":0.00143,"6.0-6.1":0,"7.0-7.1":0.08897,"8.1-8.4":0,"9.0-9.2":0.00287,"9.3":0.36736,"10.0-10.2":0.01004,"10.3":0.7548,"11.0-11.2":0.10045,"11.3-11.4":0.03874,"12.0-12.1":0.14063,"12.2-12.5":3.65778,"13.0-13.1":0.02439,"13.2":0.01291,"13.3":0.13489,"13.4-13.7":0.48502,"14.0-14.4":0.39175,"14.5-14.8":0.58404,"15.0-15.1":0.32718,"15.2-15.3":0.35444,"15.4":0.36736,"15.5":0.83947,"15.6":0.82225,"16.0":0.85812,"16.1":1.18243,"16.2":1.01597,"16.3":0.09471},P:{"4":0.93724,"5.0-5.4":0.0815,"6.2-6.4":0.07131,"7.2-7.4":0.09169,"8.2":0.03056,"9.2":0.04075,"10.1":0.01019,"11.1-11.2":0.04075,"12.0":0.02037,"13.0":0.11206,"14.0":0.03056,"15.0":0.02037,"16.0":0.163,"17.0":0.12225,"18.0":0.15281,"19.0":0.51956},I:{"0":0,"3":0,"4":0.00077,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02811,"4.2-4.3":0.10936,"4.4":0,"4.4.3-4.4.4":0.26609},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01982,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15696},Q:{"13.1":0},O:{"0":0.63992},H:{"0":2.08614},L:{"0":70.04366},S:{"2.5":0.54333}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00406,"34":0.01218,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00406,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00406,"67":0,"68":0.00406,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00406,"98":0,"99":0.00406,"100":0,"101":0,"102":0.00812,"103":0,"104":0,"105":0,"106":0,"107":0.00812,"108":0.00406,"109":0.2273,"110":0.14207,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00406,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01218,"36":0,"37":0,"38":0,"39":0,"40":0.01218,"41":0,"42":0.00406,"43":0.04465,"44":0,"45":0,"46":0.01218,"47":0,"48":0,"49":0.00406,"50":0,"51":0,"52":0,"53":0.00406,"54":0,"55":0.0203,"56":0,"57":0,"58":0.01218,"59":0,"60":0,"61":0.00406,"62":0.00406,"63":0.00812,"64":0.00406,"65":0.00406,"66":0,"67":0,"68":0,"69":0.02435,"70":0.00812,"71":0,"72":0.00812,"73":0.00406,"74":0.04465,"75":0.00406,"76":0,"77":0.00406,"78":0,"79":0.01218,"80":0,"81":0.02435,"83":0.00812,"84":0.01218,"85":0,"86":0.00406,"87":0.04059,"88":0.00406,"89":0.01218,"90":0.00406,"91":0.00812,"92":0.00812,"93":0.00406,"94":0.00406,"95":0.00406,"96":0.00812,"97":0.01218,"98":0.00406,"99":0.00406,"100":0.01218,"101":0.01218,"102":0.01624,"103":0.03247,"104":0.00812,"105":0.01624,"106":0.02435,"107":0.05277,"108":0.0893,"109":3.39738,"110":1.64795,"111":0.00812,"112":0.00406,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00406,"27":0,"28":0,"29":0.00406,"30":0,"31":0,"32":0.00406,"33":0,"34":0,"35":0.00406,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00812,"55":0,"56":0,"57":0,"58":0.00812,"60":0.0203,"62":0,"63":0.02435,"64":0.01218,"65":0,"66":0.04465,"67":0.05277,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00406,"74":0.00406,"75":0,"76":0,"77":0,"78":0,"79":0.00406,"80":0,"81":0,"82":0,"83":0,"84":0.00406,"85":0.00812,"86":0,"87":0,"88":0,"89":0,"90":0.00406,"91":0.0203,"92":0,"93":0.00406,"94":0.13801,"95":0.28007,"9.5-9.6":0,"10.0-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.00812,"14":0.0203,"15":0.03653,"16":0.00406,"17":0,"18":0.04059,"79":0,"80":0,"81":0,"83":0,"84":0.00812,"85":0,"86":0,"87":0,"88":0,"89":0.00406,"90":0.00812,"91":0,"92":0.01218,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01624,"102":0.00406,"103":0.00406,"104":0.00406,"105":0.00406,"106":0.00406,"107":0.04465,"108":0.05277,"109":0.49114,"110":0.61291},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00406,"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.00406,"12.1":0.00406,"13.1":0.01624,"14.1":0.0203,"15.1":0,"15.2-15.3":0,"15.4":0.00406,"15.5":0.00812,"15.6":0.05277,"16.0":0,"16.1":0.00406,"16.2":0.01218,"16.3":0.01624,"16.4":0},G:{"8":0.00471,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00314,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07697,"8.1-8.4":0.00628,"9.0-9.2":0.00314,"9.3":0.26705,"10.0-10.2":0.00314,"10.3":0.72103,"11.0-11.2":0.05969,"11.3-11.4":0.02199,"12.0-12.1":0.12724,"12.2-12.5":3.69468,"13.0-13.1":0.11467,"13.2":0.00943,"13.3":0.16023,"13.4-13.7":0.49168,"14.0-14.4":0.38329,"14.5-14.8":0.58436,"15.0-15.1":0.32831,"15.2-15.3":0.399,"15.4":0.40528,"15.5":0.70061,"15.6":0.84041,"16.0":0.77444,"16.1":1.01478,"16.2":1.19543,"16.3":0.81528,"16.4":0.00157},P:{"4":0.64851,"20":0.13173,"5.0-5.4":0.11146,"6.2-6.4":0.0608,"7.2-7.4":0.14186,"8.2":0.02027,"9.2":0.0304,"10.1":0.01013,"11.1-11.2":0.0304,"12.0":0.01013,"13.0":0.14186,"14.0":0.04053,"15.0":0.0304,"16.0":0.14186,"17.0":0.13173,"18.0":0.11146,"19.0":0.37492},I:{"0":0,"3":0,"4":0.00069,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01486,"4.2-4.3":0.06878,"4.4":0,"4.4.3-4.4.4":0.16974},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02841,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.37428,_:"3.0-3.1"},J:{"7":0,"10":0.01782},O:{"0":0.60004},H:{"0":1.58612},L:{"0":70.90839},R:{_:"0"},M:{"0":0.11882},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AR.js index e9840b73d6237b..7f7bb09a1bc5c6 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.01733,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00347,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00347,"67":0,"68":0.00347,"69":0,"70":0,"71":0,"72":0,"73":0.00347,"74":0,"75":0,"76":0,"77":0,"78":0.00693,"79":0,"80":0.00347,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00693,"87":0,"88":0.0104,"89":0.00347,"90":0.00347,"91":0.04506,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00693,"100":0,"101":0.00347,"102":0.00693,"103":0.00347,"104":0.0104,"105":0.00693,"106":0.00693,"107":0.0104,"108":0.27381,"109":0.1629,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00347,"35":0,"36":0,"37":0,"38":0.00693,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.06239,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00347,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01733,"67":0,"68":0,"69":0,"70":0.00347,"71":0,"72":0.00347,"73":0,"74":0.00347,"75":0.00347,"76":0.00347,"77":0.00347,"78":0.00347,"79":0.01386,"80":0.00347,"81":0.01386,"83":0.00347,"84":0.00347,"85":0.00693,"86":0.00693,"87":0.00693,"88":0.00347,"89":0.00347,"90":0.00347,"91":0.0104,"92":0.0104,"93":0.00693,"94":0.00693,"95":0.00693,"96":0.01733,"97":0.0104,"98":0.0104,"99":0.0208,"100":0.01386,"101":0.0104,"102":0.01386,"103":0.04852,"104":0.02426,"105":0.03466,"106":0.03466,"107":0.07972,"108":4.3533,"109":4.3117,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00347,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00347,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00347,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00347,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.42285,"94":0.30501,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00347,"16":0,"17":0.00347,"18":0.00347,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00347,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00347,"106":0.00347,"107":0.0104,"108":0.33274,"109":0.32927},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00693,"15":0.00347,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00347,"12.1":0,"13.1":0.00693,"14.1":0.01733,"15.1":0.00347,"15.2-15.3":0.00347,"15.4":0.00347,"15.5":0.0104,"15.6":0.05546,"16.0":0.00693,"16.1":0.02773,"16.2":0.04506,"16.3":0.00347},G:{"8":0,"3.2":0.00139,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01458,"6.0-6.1":0.00069,"7.0-7.1":0.00208,"8.1-8.4":0.00139,"9.0-9.2":0,"9.3":0.02569,"10.0-10.2":0,"10.3":0.01944,"11.0-11.2":0.00278,"11.3-11.4":0.07359,"12.0-12.1":0.00208,"12.2-12.5":0.16246,"13.0-13.1":0.00625,"13.2":0.00139,"13.3":0.00972,"13.4-13.7":0.02985,"14.0-14.4":0.06457,"14.5-14.8":0.19578,"15.0-15.1":0.04096,"15.2-15.3":0.04721,"15.4":0.08053,"15.5":0.1576,"15.6":0.73245,"16.0":0.68385,"16.1":2.39451,"16.2":1.32465,"16.3":0.09859},P:{"4":0.12229,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.2344,"8.2":0.01019,"9.2":0.01019,"10.1":0,"11.1-11.2":0.03057,"12.0":0.01019,"13.0":0.04076,"14.0":0.03057,"15.0":0.02038,"16.0":0.07134,"17.0":0.17325,"18.0":0.12229,"19.0":1.85478},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00723,"4.2-4.3":0.00482,"4.4":0,"4.4.3-4.4.4":0.06262},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02426,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10454},Q:{"13.1":0},O:{"0":0.0196},H:{"0":0.16702},L:{"0":77.82762},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0135,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00338,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00338,"67":0,"68":0.00338,"69":0,"70":0,"71":0,"72":0,"73":0.00338,"74":0,"75":0,"76":0,"77":0,"78":0.00338,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00675,"87":0,"88":0.00675,"89":0,"90":0,"91":0.03713,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00338,"100":0,"101":0,"102":0.00675,"103":0.00338,"104":0.00675,"105":0.00675,"106":0.00675,"107":0.00675,"108":0.0135,"109":0.243,"110":0.16538,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"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.00675,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05063,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00338,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01688,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00338,"73":0,"74":0.00338,"75":0.00338,"76":0.00338,"77":0.00338,"78":0.00338,"79":0.0135,"80":0.00338,"81":0.00675,"83":0.00338,"84":0.00338,"85":0.00675,"86":0.00338,"87":0.00338,"88":0.00338,"89":0.00338,"90":0.00338,"91":0.01013,"92":0.00338,"93":0.00338,"94":0.0135,"95":0.00675,"96":0.01688,"97":0.01013,"98":0.01013,"99":0.01688,"100":0.01013,"101":0.0135,"102":0.0135,"103":0.0405,"104":0.02363,"105":0.03375,"106":0.027,"107":0.04388,"108":0.16875,"109":5.184,"110":2.84513,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00338,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00338,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00675,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00338,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.06075,"94":0.46913,"95":0.14513,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00338,"16":0,"17":0.00338,"18":0.00338,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00338,"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.00675,"108":0.0135,"109":0.28013,"110":0.34763},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00675,"15":0.00338,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00338,"12.1":0,"13.1":0.01013,"14.1":0.01688,"15.1":0.00338,"15.2-15.3":0.00338,"15.4":0.00338,"15.5":0.00675,"15.6":0.04725,"16.0":0.00675,"16.1":0.02025,"16.2":0.03713,"16.3":0.03375,"16.4":0},G:{"8":0,"3.2":0.00144,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01442,"6.0-6.1":0.00072,"7.0-7.1":0.00144,"8.1-8.4":0.00144,"9.0-9.2":0,"9.3":0.02308,"10.0-10.2":0.00072,"10.3":0.01731,"11.0-11.2":0.00216,"11.3-11.4":0.06779,"12.0-12.1":0.00288,"12.2-12.5":0.16226,"13.0-13.1":0.00649,"13.2":0.00216,"13.3":0.00793,"13.4-13.7":0.02668,"14.0-14.4":0.0613,"14.5-14.8":0.17596,"15.0-15.1":0.03317,"15.2-15.3":0.04687,"15.4":0.075,"15.5":0.13413,"15.6":0.54302,"16.0":0.53581,"16.1":1.84614,"16.2":1.68316,"16.3":0.92451,"16.4":0.00361},P:{"4":0.11154,"20":0.69965,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.22308,"8.2":0,"9.2":0.01014,"10.1":0,"11.1-11.2":0.03042,"12.0":0.01014,"13.0":0.04056,"14.0":0.03042,"15.0":0.02028,"16.0":0.06084,"17.0":0.16224,"18.0":0.08112,"19.0":1.17622},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00277,"4.2-4.3":0.01386,"4.4":0,"4.4.3-4.4.4":0.06375},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03375,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01988},H:{"0":0.14426},L:{"0":78.51113},R:{_:"0"},M:{"0":0.11263},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js index 7e142a4889ee21..ed619f02f39e36 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.00667,"103":0.01334,"104":0,"105":0,"106":0,"107":0.00667,"108":0.12669,"109":0.08668,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01334,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00667,"73":0,"74":0.13336,"75":0.01334,"76":0.44009,"77":0.04668,"78":0,"79":0.06668,"80":0.00667,"81":0,"83":0.00667,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00667,"92":0.02,"93":1.28692,"94":0.02,"95":0,"96":0.00667,"97":0,"98":0.00667,"99":0.00667,"100":0.00667,"101":0,"102":0.02667,"103":2.20044,"104":0.00667,"105":0.17337,"106":0.02667,"107":0.37341,"108":17.54351,"109":4.51424,"110":0.04001,"111":0.00667,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02667,"94":0.01334,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.02,"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.01334,"104":0.00667,"105":0,"106":0,"107":0.04001,"108":1.647,"109":1.63366},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02667,"14":0.15336,"15":0.07335,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00667,"13.1":0.08668,"14.1":0.43342,"15.1":0.10002,"15.2-15.3":0.06001,"15.4":0.24672,"15.5":0.43342,"15.6":5.15436,"16.0":0.47343,"16.1":1.57365,"16.2":3.17397,"16.3":0.26672},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03042,"10.0-10.2":0,"10.3":0.00507,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.43597,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.02028,"14.0-14.4":0.12167,"14.5-14.8":0.25854,"15.0-15.1":0.12674,"15.2-15.3":0.40049,"15.4":1.20653,"15.5":1.54112,"15.6":7.36593,"16.0":5.15057,"16.1":19.61375,"16.2":10.28594,"16.3":0.58299},P:{"4":0.11165,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0406,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01015,"12.0":0,"13.0":0.01015,"14.0":0,"15.0":0,"16.0":0.0203,"17.0":0.01015,"18.0":0.0203,"19.0":0.43644},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02,"4.4":0,"4.4.3-4.4.4":0.14668},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.01999},Q:{"13.1":0},O:{"0":0.03665},H:{"0":0.01893},L:{"0":8.20554},S:{"2.5":0.00333}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.10962,"110":0.05116,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00731,"73":0,"74":0,"75":0.16078,"76":2.29471,"77":0.2704,"78":0,"79":0.10962,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02192,"89":0,"90":0,"91":0,"92":0.01462,"93":0.87696,"94":0.01462,"95":0,"96":0.07308,"97":0,"98":0,"99":0,"100":0.01462,"101":0,"102":0.02923,"103":1.732,"104":0.00731,"105":0.095,"106":0.00731,"107":0.07308,"108":2.99628,"109":12.43091,"110":3.60284,"111":0.00731,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00731,"93":0,"94":0.01462,"95":0.00731,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"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.00731,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00731,"100":0,"101":0,"102":0,"103":0.00731,"104":0,"105":0,"106":0,"107":0.02923,"108":0.01462,"109":1.22044,"110":1.63699},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.05846,"14":0.04385,"15":0.00731,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00731,"12.1":0.05846,"13.1":0.13154,"14.1":0.54079,"15.1":5.91217,"15.2-15.3":0.65772,"15.4":0.60656,"15.5":0.59195,"15.6":4.45788,"16.0":0.39463,"16.1":2.23625,"16.2":4.90367,"16.3":2.25817,"16.4":0.02192},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02633,"10.0-10.2":0,"10.3":0.01316,"11.0-11.2":0.02194,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.4476,"13.0-13.1":0,"13.2":0,"13.3":0.02194,"13.4-13.7":0.00439,"14.0-14.4":0.11848,"14.5-14.8":0.09215,"15.0-15.1":0.11409,"15.2-15.3":0.26329,"15.4":0.64068,"15.5":1.07072,"15.6":4.93234,"16.0":3.56761,"16.1":12.85305,"16.2":11.52342,"16.3":5.52036,"16.4":0.05266},P:{"4":0.041,"20":0.05125,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03075,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.01025,"15.0":0,"16.0":0.01025,"17.0":0.0205,"18.0":0.01025,"19.0":0.09225},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13577},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.00538},H:{"0":0.0051},L:{"0":5.69668},R:{_:"0"},M:{"0":0.00808},Q:{"13.1":0.00808}}; 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 bbb8dccc8364da..0eb64225b7ac61 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00527,"49":0,"50":0,"51":0,"52":0.02108,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.04743,"61":0.00527,"62":0,"63":0,"64":0,"65":0,"66":0.01581,"67":0,"68":0.00527,"69":0,"70":0,"71":0,"72":0.01054,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04216,"79":0,"80":0,"81":0,"82":0,"83":0.00527,"84":0,"85":0.00527,"86":0,"87":0.00527,"88":0.00527,"89":0.00527,"90":0,"91":0.0527,"92":0,"93":0.02108,"94":0.20553,"95":0.00527,"96":0,"97":0,"98":0.00527,"99":0.01054,"100":0.00527,"101":0.00527,"102":0.16864,"103":0.02635,"104":0.01054,"105":0.01581,"106":0.02635,"107":0.07905,"108":2.33461,"109":1.39128,"110":0.00527,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00527,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01581,"50":0,"51":0,"52":0,"53":0.00527,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00527,"66":0,"67":0.00527,"68":0.00527,"69":0,"70":0.00527,"71":0.00527,"72":0,"73":0.00527,"74":0.00527,"75":0.00527,"76":0.00527,"77":0.00527,"78":0.01054,"79":0.07905,"80":0.01054,"81":0.01054,"83":0.01054,"84":0.01054,"85":0.01581,"86":0.07378,"87":0.02635,"88":0.01054,"89":0.03162,"90":0.01054,"91":0.00527,"92":0.01581,"93":0.02108,"94":0.02635,"95":0.03162,"96":0.02635,"97":0.00527,"98":0.01054,"99":0.01054,"100":0.05797,"101":0.10013,"102":0.06851,"103":0.11067,"104":0.07905,"105":0.04216,"106":0.13175,"107":0.23715,"108":5.55458,"109":5.83916,"110":0.00527,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00527,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00527,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01581,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00527,"81":0,"82":0,"83":0,"84":0,"85":0.01581,"86":0,"87":0,"88":0,"89":0.01054,"90":0,"91":0,"92":0.01054,"93":0.77996,"94":0.85374,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00527,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00527,"93":0,"94":0.00527,"95":0.02108,"96":0.00527,"97":0,"98":0.00527,"99":0,"100":0.00527,"101":0.00527,"102":0,"103":0.00527,"104":0.02635,"105":0.01054,"106":0.02108,"107":0.08959,"108":2.27664,"109":2.4769},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01581,"14":0.08959,"15":0.02108,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01054,"10.1":0,"11.1":0.02108,"12.1":0.02108,"13.1":0.11594,"14.1":0.20553,"15.1":0.04216,"15.2-15.3":0.03689,"15.4":0.08432,"15.5":0.14229,"15.6":0.76942,"16.0":0.13702,"16.1":0.38998,"16.2":0.76942,"16.3":0.06324},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00616,"8.1-8.4":0,"9.0-9.2":0.00308,"9.3":0.06163,"10.0-10.2":0.00308,"10.3":0.11401,"11.0-11.2":0.01849,"11.3-11.4":0.01849,"12.0-12.1":0.02465,"12.2-12.5":0.36667,"13.0-13.1":0.01541,"13.2":0.01541,"13.3":0.03389,"13.4-13.7":0.07703,"14.0-14.4":0.36051,"14.5-14.8":0.81962,"15.0-15.1":0.20645,"15.2-15.3":0.28348,"15.4":0.39748,"15.5":0.83503,"15.6":3.43254,"16.0":4.49558,"16.1":10.79987,"16.2":6.63091,"16.3":0.63782},P:{"4":0.19482,"5.0-5.4":0.02051,"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.03076,"14.0":0.02051,"15.0":0.02051,"16.0":0.04102,"17.0":0.06152,"18.0":0.11279,"19.0":3.85545},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03785,"4.2-4.3":0.00344,"4.4":0,"4.4.3-4.4.4":0.11356},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06324,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.71423},Q:{"13.1":0},O:{"0":0.04257},H:{"0":0.35377},L:{"0":34.6642},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00528,"49":0,"50":0,"51":0,"52":0.02114,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.06869,"61":0.00528,"62":0,"63":0,"64":0,"65":0,"66":0.05812,"67":0,"68":0.00528,"69":0.00528,"70":0,"71":0,"72":0.01057,"73":0,"74":0,"75":0.00528,"76":0.00528,"77":0.00528,"78":0.04756,"79":0.00528,"80":0.00528,"81":0.00528,"82":0,"83":0.00528,"84":0,"85":0.00528,"86":0,"87":0.00528,"88":0.00528,"89":0,"90":0,"91":0.05284,"92":0,"93":0.02114,"94":0.21136,"95":0.01057,"96":0,"97":0,"98":0.00528,"99":0.00528,"100":0.00528,"101":0.00528,"102":0.20079,"103":0.02114,"104":0.01057,"105":0.01057,"106":0.01057,"107":0.0317,"108":0.09511,"109":2.12945,"110":1.51122,"111":0.00528,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00528,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01057,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00528,"66":0,"67":0,"68":0.01057,"69":0.00528,"70":0.01057,"71":0.00528,"72":0.01057,"73":0.00528,"74":0.01057,"75":0.01057,"76":0.01057,"77":0.01057,"78":0.01585,"79":0.09511,"80":0.02114,"81":0.02114,"83":0.01585,"84":0.01057,"85":0.02114,"86":0.10568,"87":0.02642,"88":0.02114,"89":0.04227,"90":0.01585,"91":0.01057,"92":0.02642,"93":0,"94":0.02642,"95":0.0317,"96":0.02642,"97":0.00528,"98":0.01057,"99":0.00528,"100":0.08454,"101":0.21664,"102":0.09511,"103":0.12682,"104":0.08983,"105":0.04756,"106":0.04756,"107":0.5601,"108":0.29062,"109":6.19285,"110":4.1955,"111":0.00528,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00528,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00528,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00528,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00528,"75":0.00528,"76":0,"77":0,"78":0,"79":0,"80":0.00528,"81":0,"82":0,"83":0,"84":0,"85":0.01057,"86":0,"87":0,"88":0,"89":0.01057,"90":0,"91":0,"92":0.00528,"93":0.11096,"94":0.97226,"95":0.45971,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00528,"79":0,"80":0.00528,"81":0.00528,"83":0.00528,"84":0.00528,"85":0.00528,"86":0.00528,"87":0.00528,"88":0.00528,"89":0.00528,"90":0.00528,"91":0,"92":0.00528,"93":0,"94":0,"95":0.02114,"96":0.00528,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00528,"103":0.00528,"104":0.01585,"105":0.00528,"106":0.00528,"107":0.04227,"108":0.14795,"109":1.9815,"110":2.6103},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02114,"14":0.08983,"15":0.02114,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.05812,"10.1":0,"11.1":0.01585,"12.1":0.02114,"13.1":0.13738,"14.1":0.21136,"15.1":0.04756,"15.2-15.3":0.03699,"15.4":0.08454,"15.5":0.11096,"15.6":0.57596,"16.0":0.08454,"16.1":0.32761,"16.2":0.66578,"16.3":0.68164,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00305,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00915,"9.3":0.07627,"10.0-10.2":0.0122,"10.3":0.13118,"11.0-11.2":0.04271,"11.3-11.4":0.0244,"12.0-12.1":0.05491,"12.2-12.5":0.46064,"13.0-13.1":0.0244,"13.2":0.02135,"13.3":0.03051,"13.4-13.7":0.08847,"14.0-14.4":0.34777,"14.5-14.8":0.74435,"15.0-15.1":0.19829,"15.2-15.3":0.28981,"15.4":0.32641,"15.5":0.67723,"15.6":2.46183,"16.0":3.2977,"16.1":7.79428,"16.2":7.47092,"16.3":4.75589,"16.4":0.0244},P:{"4":0.18584,"20":1.58998,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.05162,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01032,"12.0":0,"13.0":0.03097,"14.0":0.02065,"15.0":0.02065,"16.0":0.0413,"17.0":0.05162,"18.0":0.07227,"19.0":2.33334},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01657,"4.2-4.3":0.02899,"4.4":0,"4.4.3-4.4.4":0.12012},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.05284,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.03301},H:{"0":0.37058},L:{"0":34.91978},R:{_:"0"},M:{"0":0.69797},Q:{"13.1":0}}; 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 3a4df4bc56d71e..6f16b09ad948a9 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.00515,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00515,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01546,"53":0,"54":0.01031,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00515,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06185,"79":0,"80":0,"81":0,"82":0,"83":0.00515,"84":0,"85":0,"86":0,"87":0.01031,"88":0.00515,"89":0,"90":0,"91":0.00515,"92":0,"93":0.00515,"94":0.03092,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02577,"103":0.03608,"104":0.00515,"105":0.01031,"106":0.03092,"107":0.04639,"108":0.86072,"109":0.48963,"110":0.00515,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01546,"26":0.00515,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01546,"35":0,"36":0,"37":0,"38":0.05154,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00515,"45":0,"46":0,"47":0.00515,"48":0,"49":0.02062,"50":0,"51":0,"52":0.00515,"53":0.00515,"54":0,"55":0.00515,"56":0.00515,"57":0,"58":0,"59":0.01546,"60":0.03608,"61":0,"62":0.00515,"63":0,"64":0,"65":0.00515,"66":0.01031,"67":0.02062,"68":0.00515,"69":0.14431,"70":0.00515,"71":0,"72":0.00515,"73":0.00515,"74":0.01031,"75":0.00515,"76":0.01031,"77":0.00515,"78":0.00515,"79":0.06185,"80":0.01031,"81":0.01031,"83":0.01031,"84":0.01031,"85":0.03092,"86":0.134,"87":0.04123,"88":0.01031,"89":0.00515,"90":0.00515,"91":0.01031,"92":0.01546,"93":0.01546,"94":0.01031,"95":0.01031,"96":0.03092,"97":0.03608,"98":0.02062,"99":0.05154,"100":0.03092,"101":0.04639,"102":0.03608,"103":0.20616,"104":0.07731,"105":0.11339,"106":0.09277,"107":0.35563,"108":6.87544,"109":5.87041,"110":0.00515,"111":0.00515,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00515,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02062,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00515,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01546,"90":0,"91":0,"92":0.00515,"93":0.23193,"94":0.22678,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00515,"16":0,"17":0,"18":0.00515,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00515,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00515,"93":0,"94":0,"95":0.00515,"96":0,"97":0,"98":0,"99":0.00515,"100":0.00515,"101":0,"102":0.01031,"103":0.00515,"104":0.01546,"105":0.01546,"106":0.01031,"107":0.07731,"108":1.71113,"109":1.55135},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00515,"13":0.03092,"14":0.1237,"15":0.02577,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00515,"10.1":0,"11.1":0.00515,"12.1":0.04639,"13.1":0.15977,"14.1":0.35047,"15.1":0.04639,"15.2-15.3":0.04639,"15.4":0.11854,"15.5":0.2577,"15.6":1.64413,"16.0":0.13916,"16.1":0.47417,"16.2":0.90195,"16.3":0.05669},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02588,"6.0-6.1":0.02156,"7.0-7.1":0.01725,"8.1-8.4":0.02588,"9.0-9.2":0.02156,"9.3":0.25445,"10.0-10.2":0.01294,"10.3":0.29758,"11.0-11.2":0.06038,"11.3-11.4":0.10351,"12.0-12.1":0.06038,"12.2-12.5":1.33695,"13.0-13.1":0.03019,"13.2":0.01725,"13.3":0.09057,"13.4-13.7":0.2027,"14.0-14.4":0.61241,"14.5-14.8":1.44908,"15.0-15.1":0.31914,"15.2-15.3":0.42265,"15.4":0.56928,"15.5":1.11269,"15.6":5.72732,"16.0":4.51113,"16.1":14.76682,"16.2":8.14245,"16.3":0.51322},P:{"4":0.23231,"5.0-5.4":0.03168,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01056,"10.1":0,"11.1-11.2":0.01056,"12.0":0.01056,"13.0":0.04224,"14.0":0.03168,"15.0":0.02112,"16.0":0.06336,"17.0":0.06336,"18.0":0.11615,"19.0":2.78771},I:{"0":0,"3":0,"4":0.00968,"2.1":0,"2.2":0.01451,"2.3":0.00726,"4.1":0.00968,"4.2-4.3":0.01935,"4.4":0,"4.4.3-4.4.4":0.07015},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02996,"9":0.02996,"10":0.00999,"11":0.08987,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.46037},Q:{"13.1":0.00485},O:{"0":0.05815},H:{"0":0.16516},L:{"0":27.63058},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00541,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00541,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01081,"53":0,"54":0.01081,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01081,"67":0,"68":0.00541,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06487,"79":0,"80":0.00541,"81":0.00541,"82":0,"83":0.00541,"84":0,"85":0,"86":0,"87":0.02162,"88":0.00541,"89":0,"90":0,"91":0.00541,"92":0,"93":0.00541,"94":0.02703,"95":0,"96":0,"97":0.00541,"98":0,"99":0,"100":0,"101":0,"102":0.02703,"103":0.02162,"104":0.00541,"105":0.00541,"106":0.02162,"107":0.02703,"108":0.05406,"109":0.84334,"110":0.56222,"111":0.00541,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01622,"26":0.00541,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02162,"35":0.04865,"36":0,"37":0,"38":0.05947,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00541,"45":0,"46":0,"47":0.00541,"48":0,"49":0.01622,"50":0,"51":0,"52":0.00541,"53":0.00541,"54":0,"55":0,"56":0.00541,"57":0,"58":0,"59":0.01622,"60":0.04325,"61":0,"62":0,"63":0,"64":0,"65":0.00541,"66":0.01622,"67":0.02162,"68":0.00541,"69":0.17299,"70":0.00541,"71":0,"72":0.00541,"73":0.00541,"74":0.01081,"75":0.00541,"76":0.00541,"77":0.00541,"78":0.01081,"79":0.06487,"80":0.01622,"81":0.03244,"83":0.02162,"84":0.02162,"85":0.03784,"86":0.07568,"87":0.05406,"88":0.01622,"89":0.00541,"90":0.00541,"91":0.01081,"92":0.01622,"93":0.01081,"94":0.01081,"95":0.01622,"96":0.03244,"97":0.03784,"98":0.02703,"99":0.03244,"100":0.04325,"101":0.06487,"102":0.03784,"103":0.21083,"104":0.0919,"105":0.11353,"106":0.07028,"107":0.20002,"108":0.719,"109":8.2874,"110":5.35194,"111":0.00541,"112":0.00541,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02162,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00541,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01081,"90":0,"91":0,"92":0,"93":0.03784,"94":0.29192,"95":0.12434,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00541,"16":0,"17":0,"18":0.00541,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00541,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00541,"93":0,"94":0,"95":0.00541,"96":0,"97":0,"98":0,"99":0.00541,"100":0.00541,"101":0,"102":0.00541,"103":0.00541,"104":0.01081,"105":0.00541,"106":0.00541,"107":0.04325,"108":0.15677,"109":1.47584,"110":2.02725},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00541,"13":0.02703,"14":0.12434,"15":0.02703,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00541,"12.1":0.04325,"13.1":0.16218,"14.1":0.3568,"15.1":0.05406,"15.2-15.3":0.04865,"15.4":0.11353,"15.5":0.22705,"15.6":1.31906,"16.0":0.10812,"16.1":0.36761,"16.2":1.19473,"16.3":0.70819,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02065,"6.0-6.1":0.02065,"7.0-7.1":0.01652,"8.1-8.4":0.02478,"9.0-9.2":0.02065,"9.3":0.23949,"10.0-10.2":0.00826,"10.3":0.30143,"11.0-11.2":0.05781,"11.3-11.4":0.11562,"12.0-12.1":0.0702,"12.2-12.5":1.2594,"13.0-13.1":0.0289,"13.2":0.01652,"13.3":0.09497,"13.4-13.7":0.1982,"14.0-14.4":0.55744,"14.5-14.8":1.26353,"15.0-15.1":0.28491,"15.2-15.3":0.38814,"15.4":0.47073,"15.5":0.90842,"15.6":3.91033,"16.0":3.33638,"16.1":10.52115,"16.2":10.29818,"16.3":4.63294,"16.4":0.01652},P:{"4":0.21018,"20":1.04039,"5.0-5.4":0.03153,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01051,"10.1":0,"11.1-11.2":0.01051,"12.0":0.01051,"13.0":0.04204,"14.0":0.03153,"15.0":0.02102,"16.0":0.05254,"17.0":0.06305,"18.0":0.08407,"19.0":1.68143},I:{"0":0,"3":0,"4":0.0094,"2.1":0,"2.2":0.01645,"2.3":0.00705,"4.1":0.0094,"4.2-4.3":0.02115,"4.4":0,"4.4.3-4.4.4":0.06816},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03041,"9":0.03041,"10":0.01014,"11":0.09123,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.05972},H:{"0":0.15223},L:{"0":26.99079},R:{_:"0"},M:{"0":0.41805},Q:{"13.1":0.00459}}; 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 b6fec8c3bc687a..7e3f4ff307b2a9 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.00671,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01007,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00336,"103":0,"104":0,"105":0,"106":0,"107":0.01007,"108":0.19465,"109":0.15773,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00336,"48":0,"49":0.00336,"50":0,"51":0,"52":0,"53":0.00671,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00336,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00671,"80":0,"81":0.00671,"83":0.00336,"84":0.00336,"85":0,"86":0,"87":0.01007,"88":0.00336,"89":0,"90":0,"91":0,"92":0,"93":0.00671,"94":0.00336,"95":0,"96":0,"97":0,"98":0.0302,"99":0.00336,"100":0.00336,"101":0.00336,"102":0.00336,"103":0.05705,"104":0.00671,"105":0.02014,"106":0.02685,"107":0.09397,"108":2.97006,"109":2.75528,"110":0.01007,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00336,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.13088,"94":0.09061,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00336,"79":0,"80":0,"81":0,"83":0,"84":0.01678,"85":0.01342,"86":0,"87":0,"88":0,"89":0,"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.00336,"106":0.00671,"107":0.02014,"108":1.62766,"109":0.85914},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00336,"14":0.0537,"15":0.00336,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00671,"13.1":0.09732,"14.1":0.18458,"15.1":0.01342,"15.2-15.3":0.0302,"15.4":0.03692,"15.5":0.0839,"15.6":0.55374,"16.0":0.04698,"16.1":0.23492,"16.2":0.43628,"16.3":0.03356},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00412,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02883,"10.0-10.2":0.00412,"10.3":0.06178,"11.0-11.2":0,"11.3-11.4":0.01648,"12.0-12.1":0.02883,"12.2-12.5":0.36247,"13.0-13.1":0.00412,"13.2":0.02883,"13.3":0.00824,"13.4-13.7":0.04531,"14.0-14.4":0.33364,"14.5-14.8":0.90206,"15.0-15.1":0.13181,"15.2-15.3":0.24302,"15.4":0.42426,"15.5":1.24806,"15.6":4.53914,"16.0":4.82747,"16.1":16.24533,"16.2":9.29246,"16.3":0.57666},P:{"4":0.07217,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17526,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04124,"12.0":0.01031,"13.0":0.06186,"14.0":0.03093,"15.0":0.02062,"16.0":0.06186,"17.0":0.08248,"18.0":0.17526,"19.0":6.74251},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.19753},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01342,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.2724},Q:{"13.1":0},O:{"0":0.03986},H:{"0":0.08806},L:{"0":37.26101},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0277,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00693,"79":0,"80":0,"81":0,"82":0.00346,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00693,"102":0.01039,"103":0.00346,"104":0.00346,"105":0,"106":0,"107":0.00693,"108":0.00346,"109":0.26319,"110":0.13506,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01732,"50":0,"51":0,"52":0,"53":0.00346,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02424,"80":0.00346,"81":0.00346,"83":0.00346,"84":0.00346,"85":0,"86":0,"87":0.00346,"88":0,"89":0,"90":0,"91":0.00346,"92":0,"93":0.00346,"94":0,"95":0.00346,"96":0.00346,"97":0,"98":0.00346,"99":0,"100":0,"101":0,"102":0.00346,"103":0.05887,"104":0.00346,"105":0.01039,"106":0.00346,"107":0.04156,"108":0.22163,"109":3.92704,"110":1.9843,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00346,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01732,"94":0.17315,"95":0.07619,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00346,"106":0,"107":0.00693,"108":0.01732,"109":0.69606,"110":1.08046},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0277,"15":0.00693,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02424,"13.1":0.0658,"14.1":0.16969,"15.1":0.0277,"15.2-15.3":0.12121,"15.4":0.11082,"15.5":0.10389,"15.6":0.61641,"16.0":0.03117,"16.1":0.30128,"16.2":0.65104,"16.3":0.31513,"16.4":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.0127,"10.0-10.2":0,"10.3":0.02964,"11.0-11.2":0,"11.3-11.4":0.00847,"12.0-12.1":0.01694,"12.2-12.5":0.40645,"13.0-13.1":0,"13.2":0.00847,"13.3":0.01694,"13.4-13.7":0.08891,"14.0-14.4":0.19053,"14.5-14.8":0.87642,"15.0-15.1":0.11432,"15.2-15.3":0.24133,"15.4":0.28791,"15.5":0.97803,"15.6":2.96797,"16.0":4.76737,"16.1":10.92347,"16.2":13.12086,"16.3":5.195,"16.4":0.03811},P:{"4":0.05171,"20":2.42015,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.18617,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06206,"12.0":0.01034,"13.0":0.03103,"14.0":0.03103,"15.0":0.03103,"16.0":0.04137,"17.0":0.05171,"18.0":0.15514,"19.0":4.2301},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13467},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00693,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.08498},H:{"0":0.08045},L:{"0":37.30099},R:{_:"0"},M:{"0":0.28109},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js index 54d92c1a60d939..e45270885e7c58 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.01892,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00631,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00631,"98":0,"99":0,"100":0.00631,"101":0,"102":0.01261,"103":0,"104":0.02522,"105":0.00631,"106":0,"107":0.01892,"108":2.66071,"109":1.70866,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00631,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.01261,"76":0.03153,"77":0,"78":0,"79":0.10719,"80":0,"81":0,"83":0,"84":0,"85":0.01261,"86":0.00631,"87":0.03153,"88":0.01261,"89":0,"90":0,"91":0,"92":0.02522,"93":0,"94":0,"95":0,"96":0.00631,"97":0,"98":0,"99":0,"100":0.01261,"101":0,"102":0,"103":0.03783,"104":0.01261,"105":0.04414,"106":0.01892,"107":0.17024,"108":11.36792,"109":10.81308,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.03153,"92":0,"93":1.59517,"94":0.32156,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00631,"79":0,"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.00631,"105":0.00631,"106":0,"107":0.03153,"108":2.63549,"109":2.85617},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01261,"14":0.61159,"15":0.04414,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02522,"13.1":0.20807,"14.1":0.79443,"15.1":0.01892,"15.2-15.3":0.03783,"15.4":0.11349,"15.5":0.15132,"15.6":0.76291,"16.0":0.07566,"16.1":0.20176,"16.2":0.69986,"16.3":0.04414},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00583,"9.0-9.2":0.0175,"9.3":0.14197,"10.0-10.2":0,"10.3":0.70597,"11.0-11.2":0,"11.3-11.4":0.00583,"12.0-12.1":0.3948,"12.2-12.5":1.76978,"13.0-13.1":0.11474,"13.2":0.06807,"13.3":0.05445,"13.4-13.7":0.06807,"14.0-14.4":0.23532,"14.5-14.8":0.7682,"15.0-15.1":0.15947,"15.2-15.3":0.33256,"15.4":0.23532,"15.5":0.35396,"15.6":2.03233,"16.0":0.81293,"16.1":4.79396,"16.2":2.67022,"16.3":0.10113},P:{"4":0.03202,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01067,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.02135,"17.0":0.0427,"18.0":0.30956,"19.0":3.13829},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08675},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":3.38093},Q:{"13.1":0},O:{"0":0.01478},H:{"0":0.04198},L:{"0":35.35212},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04384,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04384,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01879,"102":0.00626,"103":0,"104":0.00626,"105":0,"106":0,"107":0,"108":0.06263,"109":2.49267,"110":1.40918,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02505,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.01879,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01879,"68":0.00626,"69":0.00626,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.04384,"77":0,"78":0,"79":0.10647,"80":0,"81":0,"83":0,"84":0.00626,"85":0.00626,"86":0.00626,"87":0.01879,"88":0,"89":0,"90":0,"91":0,"92":0.01253,"93":0,"94":0,"95":0,"96":0.00626,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01253,"103":0.0501,"104":0.00626,"105":0.11273,"106":0.00626,"107":0.10021,"108":0.36325,"109":11.36735,"110":9.41329,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00626,"47":0,"48":0,"49":0,"50":0,"51":0,"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.08142,"94":1.17744,"95":0.28184,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00626,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"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.00626,"105":0,"106":0,"107":0,"108":0.03132,"109":2.69309,"110":3.48849},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03132,"14":0.72025,"15":0.00626,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03758,"13.1":0.15031,"14.1":1.1336,"15.1":0.00626,"15.2-15.3":0.06263,"15.4":0.03132,"15.5":0.10021,"15.6":0.48851,"16.0":0.119,"16.1":0.06263,"16.2":0.76409,"16.3":0.48851,"16.4":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.02738,"9.3":0.07483,"10.0-10.2":0.0073,"10.3":0.49827,"11.0-11.2":0,"11.3-11.4":0.01095,"12.0-12.1":0.04745,"12.2-12.5":2.43475,"13.0-13.1":0.02738,"13.2":0.00365,"13.3":0.02738,"13.4-13.7":0.08761,"14.0-14.4":0.14784,"14.5-14.8":0.68991,"15.0-15.1":0.12229,"15.2-15.3":0.11681,"15.4":0.28107,"15.5":0.40883,"15.6":1.38712,"16.0":0.68078,"16.1":3.34915,"16.2":3.44589,"16.3":1.61526,"16.4":0.02373},P:{"4":0.20107,"20":1.50275,"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.01058,"13.0":0,"14.0":0,"15.0":0,"16.0":0.05291,"17.0":0,"18.0":0.84662,"19.0":2.23296},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02626},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01253,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02616},H:{"0":0.1309},L:{"0":35.84057},R:{_:"0"},M:{"0":2.50379},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js index 6856c7b559ad49..2efc8ee77b70dc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00342,"53":0.02739,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01712,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06848,"79":0.00342,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00342,"103":0.00342,"104":0.00342,"105":0.01712,"106":0.00342,"107":0.00685,"108":0.0993,"109":0.07533,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00342,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00685,"50":0,"51":0,"52":0,"53":0.01027,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00342,"69":0,"70":0,"71":0,"72":0.00342,"73":0,"74":0.00342,"75":0,"76":0,"77":0.02054,"78":0.00342,"79":0.22598,"80":0.00685,"81":0.00685,"83":0.00685,"84":0.00342,"85":0.00685,"86":0.00342,"87":0.04794,"88":0.01027,"89":0.00342,"90":0.00342,"91":0.00342,"92":0.03424,"93":0,"94":0.03082,"95":0.00342,"96":0.01027,"97":0.00685,"98":0.00685,"99":0.02054,"100":0.02054,"101":0.00685,"102":0.00685,"103":0.03766,"104":0.03082,"105":0.01712,"106":0.03424,"107":0.06506,"108":4.21152,"109":4.05744,"110":0.00342,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00685,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00342,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00685,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0137,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01027,"80":0,"81":0,"82":0.00342,"83":0,"84":0.00342,"85":0.0137,"86":0,"87":0,"88":0.00342,"89":0,"90":0,"91":0,"92":0.00342,"93":0.26022,"94":0.73274,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00342,"79":0,"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.00342,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.02397,"108":0.23626,"109":0.16435},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02397,"15":0.00685,_:"0","3.1":0,"3.2":0,"5.1":0.03424,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00342,"13.1":0.01712,"14.1":0.01712,"15.1":0.00685,"15.2-15.3":0.01027,"15.4":0.0137,"15.5":0.02397,"15.6":0.05478,"16.0":0.01712,"16.1":0.03424,"16.2":0.06848,"16.3":0.00342},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00125,"6.0-6.1":0,"7.0-7.1":0.01124,"8.1-8.4":0,"9.0-9.2":0.00125,"9.3":0.00999,"10.0-10.2":0,"10.3":0.10619,"11.0-11.2":0.0025,"11.3-11.4":0.00375,"12.0-12.1":0.00125,"12.2-12.5":0.49222,"13.0-13.1":0.005,"13.2":0.005,"13.3":0.02124,"13.4-13.7":0.04622,"14.0-14.4":0.24861,"14.5-14.8":0.40977,"15.0-15.1":0.10244,"15.2-15.3":0.0887,"15.4":0.20363,"15.5":0.53095,"15.6":1.08438,"16.0":1.94014,"16.1":3.74161,"16.2":2.33866,"16.3":0.29358},P:{"4":0.32769,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0512,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06144,"12.0":0.01024,"13.0":0.07168,"14.0":0.09216,"15.0":0.0512,"16.0":0.1024,"17.0":0.21505,"18.0":0.31745,"19.0":3.42029},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00774,"4.4":0,"4.4.3-4.4.4":0.03253},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01027,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.27619},Q:{"13.1":0},O:{"0":0.26962},H:{"0":0.6786},L:{"0":68.52557},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0.00327,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00327,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02618,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08837,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00327,"103":0,"104":0.00655,"105":0.01309,"106":0.01637,"107":0.00982,"108":0.01309,"109":0.18002,"110":0.05237,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00327,"39":0,"40":0,"41":0,"42":0,"43":0.00327,"44":0.00327,"45":0.00327,"46":0,"47":0,"48":0,"49":0.00655,"50":0.00327,"51":0,"52":0,"53":0.00655,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00327,"71":0.00982,"72":0,"73":0.00327,"74":0.00327,"75":0,"76":0,"77":0.01637,"78":0,"79":0.16038,"80":0.00327,"81":0.00327,"83":0.00982,"84":0.00327,"85":0.00655,"86":0.01309,"87":0.04582,"88":0.00982,"89":0.00327,"90":0.00327,"91":0.00655,"92":0.06546,"93":0,"94":0,"95":0.00327,"96":0.00327,"97":0.00655,"98":0.02291,"99":0.00655,"100":0.01964,"101":0.00982,"102":0.00982,"103":0.01637,"104":0.01309,"105":0.01964,"106":0.05237,"107":0.04582,"108":0.17674,"109":5.92086,"110":1.44012,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00327,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00327,"47":0,"48":0,"49":0,"50":0,"51":0,"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.04582,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00327,"75":0,"76":0,"77":0,"78":0,"79":0.02618,"80":0,"81":0,"82":0,"83":0,"84":0.00655,"85":0.01637,"86":0.00327,"87":0,"88":0,"89":0.00655,"90":0,"91":0,"92":0,"93":0.036,"94":0.4844,"95":0.23238,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00327,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00327,"103":0,"104":0,"105":0,"106":0.00327,"107":0.01309,"108":0.00655,"109":0.18983,"110":0.12765},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00982,"15":0.00982,_:"0","3.1":0,"3.2":0,"5.1":0.02618,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00982,"14.1":0.02291,"15.1":0.00327,"15.2-15.3":0.00655,"15.4":0.00982,"15.5":0.01309,"15.6":0.06546,"16.0":0.00982,"16.1":0.03273,"16.2":0.05237,"16.3":0.03928,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01076,"6.0-6.1":0.00134,"7.0-7.1":0.01748,"8.1-8.4":0.00807,"9.0-9.2":0.00269,"9.3":0.02421,"10.0-10.2":0,"10.3":0.08338,"11.0-11.2":0.0121,"11.3-11.4":0.00269,"12.0-12.1":0.00672,"12.2-12.5":0.41557,"13.0-13.1":0.03766,"13.2":0.00269,"13.3":0.01614,"13.4-13.7":0.04842,"14.0-14.4":0.14121,"14.5-14.8":0.34564,"15.0-15.1":0.08876,"15.2-15.3":0.10087,"15.4":0.17618,"15.5":0.3416,"15.6":0.8688,"16.0":1.96355,"16.1":2.84177,"16.2":3.11748,"16.3":1.73895,"16.4":0.01883},P:{"4":0.28451,"20":0.98563,"5.0-5.4":0,"6.2-6.4":0.02032,"7.2-7.4":0.08129,"8.2":0,"9.2":0.01016,"10.1":0,"11.1-11.2":0.03048,"12.0":0.01016,"13.0":0.06097,"14.0":0.07113,"15.0":0.07113,"16.0":0.1321,"17.0":0.10161,"18.0":0.20322,"19.0":2.774},I:{"0":0,"3":0,"4":0.00443,"2.1":0,"2.2":0,"2.3":0.01107,"4.1":0.00443,"4.2-4.3":0.01329,"4.4":0,"4.4.3-4.4.4":0.05315},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01309,"9":0.00327,"10":0.00327,"11":0.01637,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00673,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.15472},H:{"0":0.56681},L:{"0":68.68436},R:{_:"0"},M:{"0":0.30944},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js index 44e3cc45b09e48..418027a894fda0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.2503,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04302,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00782,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00782,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00391,"89":0,"90":0.01564,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00782,"98":0,"99":0.01564,"100":0,"101":0,"102":0.00782,"103":0.00391,"104":0.00391,"105":0.00782,"106":0.01564,"107":0.01956,"108":0.66878,"109":0.40283,"110":0.00391,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00391,"27":0,"28":0,"29":0,"30":0.01173,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00391,"39":0,"40":0.00391,"41":0,"42":0,"43":0.00391,"44":0,"45":0,"46":0,"47":0.00391,"48":0,"49":0.04693,"50":0,"51":0,"52":0,"53":0.01173,"54":0,"55":0.00391,"56":0,"57":0,"58":0,"59":0.00391,"60":0,"61":0,"62":0,"63":0.00391,"64":0,"65":0.00782,"66":0,"67":0,"68":0.00782,"69":0,"70":0.00782,"71":0.00391,"72":0,"73":0.00391,"74":0.00391,"75":0,"76":0.00782,"77":0.00391,"78":0.00391,"79":0.15253,"80":0.00391,"81":0.00782,"83":0.01173,"84":0.02347,"85":0.01173,"86":0.00782,"87":0.01956,"88":0.00782,"89":0.02347,"90":0.00782,"91":0.02347,"92":0.01956,"93":0.00782,"94":0.01564,"95":0.00782,"96":0.00782,"97":0.01173,"98":0.02347,"99":0.01564,"100":0.00782,"101":0.00782,"102":0.02738,"103":0.04302,"104":0.0352,"105":0.05084,"106":0.04302,"107":0.12124,"108":5.15079,"109":5.1547,"110":0.00391,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0352,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00391,"37":0,"38":0,"39":0,"40":0.00391,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01564,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00391,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00782,"86":0.00391,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.26986,"94":0.41848,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00391,"16":0,"17":0,"18":0.00391,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00782,"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.00391,"104":0,"105":0,"106":0.00391,"107":0.01173,"108":0.48105,"109":0.48105},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00782,"14":0.00782,"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.00391,"13.1":0.01173,"14.1":0.02738,"15.1":0.00782,"15.2-15.3":0.00391,"15.4":0.01173,"15.5":0.01564,"15.6":0.08604,"16.0":0.00782,"16.1":0.03129,"16.2":0.06649,"16.3":0.00391},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00317,"6.0-6.1":0.00317,"7.0-7.1":0.01162,"8.1-8.4":0.00211,"9.0-9.2":0,"9.3":0.14689,"10.0-10.2":0.00317,"10.3":0.093,"11.0-11.2":0.00211,"11.3-11.4":0.00423,"12.0-12.1":0.00423,"12.2-12.5":0.26314,"13.0-13.1":0.00317,"13.2":0.00106,"13.3":0.00951,"13.4-13.7":0.0465,"14.0-14.4":0.09405,"14.5-14.8":0.40792,"15.0-15.1":0.07186,"15.2-15.3":0.11625,"15.4":0.1004,"15.5":0.29062,"15.6":1.27343,"16.0":1.36749,"16.1":3.33841,"16.2":1.96246,"16.3":0.18494},P:{"4":0.55261,"5.0-5.4":0.01023,"6.2-6.4":0,"7.2-7.4":0.07163,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.07163,"12.0":0.01023,"13.0":0.05117,"14.0":0.05117,"15.0":0.02047,"16.0":0.05117,"17.0":0.0614,"18.0":0.13304,"19.0":3.29519},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02348,"4.2-4.3":0.02348,"4.4":0,"4.4.3-4.4.4":0.16042},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00391,"9":0,"10":0,"11":0.01564,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.40796},Q:{"13.1":0},O:{"0":0.01218},H:{"0":0.23635},L:{"0":68.06688},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00399,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00399,"41":0,"42":0,"43":0,"44":0,"45":0.21168,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05192,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00399,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00799,"79":0,"80":0,"81":0.01198,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00399,"89":0,"90":0.00399,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00799,"98":0,"99":0.01198,"100":0,"101":0,"102":0.00799,"103":0.00399,"104":0.00799,"105":0.01997,"106":0.01198,"107":0.01198,"108":0.03595,"109":0.87868,"110":0.47529,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00399,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00399,"39":0,"40":0.00399,"41":0.00399,"42":0,"43":0.00399,"44":0.00399,"45":0.00399,"46":0.00399,"47":0.00399,"48":0,"49":0.03195,"50":0,"51":0,"52":0,"53":0.00799,"54":0,"55":0.00399,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00399,"66":0,"67":0,"68":0.00799,"69":0.00399,"70":0.00399,"71":0.00399,"72":0.00399,"73":0.00399,"74":0.00399,"75":0,"76":0.00799,"77":0.00399,"78":0.00399,"79":0.09586,"80":0.00399,"81":0.00799,"83":0.01598,"84":0.01198,"85":0.01598,"86":0.00799,"87":0.01198,"88":0.00799,"89":0.00799,"90":0.00399,"91":0.01198,"92":0.01198,"93":0.00399,"94":0.01198,"95":0.01198,"96":0.01198,"97":0.01198,"98":0.01198,"99":0.00799,"100":0.00799,"101":0.00799,"102":0.03595,"103":0.04393,"104":0.01598,"105":0.03994,"106":0.02396,"107":0.04393,"108":0.28757,"109":7.34896,"110":3.2631,"111":0.00399,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.03195,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00399,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00399,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00799,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00799,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02396,"94":0.35946,"95":0.23565,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00399,"13":0,"14":0,"15":0.05592,"16":0,"17":0,"18":0.00399,"79":0,"80":0,"81":0,"83":0,"84":0.00399,"85":0.01198,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01997,"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.00399,"106":0.00399,"107":0.01198,"108":0.01997,"109":0.37544,"110":0.45931},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00399,"10":0,"11":0,"12":0,"13":0,"14":0.01198,"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.00399,"13.1":0.00799,"14.1":0.01598,"15.1":0.00399,"15.2-15.3":0.00399,"15.4":0.00799,"15.5":0.00799,"15.6":0.0639,"16.0":0.00799,"16.1":0.01997,"16.2":0.0679,"16.3":0.05192,"16.4":0},G:{"8":0.00213,"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.00747,"7.0-7.1":0.02347,"8.1-8.4":0.0192,"9.0-9.2":0.00213,"9.3":0.1515,"10.0-10.2":0,"10.3":0.07788,"11.0-11.2":0.02667,"11.3-11.4":0.0032,"12.0-12.1":0.00747,"12.2-12.5":0.25819,"13.0-13.1":0.00427,"13.2":0.00107,"13.3":0.00747,"13.4-13.7":0.03841,"14.0-14.4":0.10242,"14.5-14.8":0.33288,"15.0-15.1":0.04801,"15.2-15.3":0.06935,"15.4":0.08962,"15.5":0.30087,"15.6":0.85353,"16.0":1.18428,"16.1":2.37602,"16.2":2.42083,"16.3":1.46381,"16.4":0.00747},P:{"4":0.45696,"20":1.3201,"5.0-5.4":0.01015,"6.2-6.4":0,"7.2-7.4":0.07108,"8.2":0,"9.2":0.02031,"10.1":0,"11.1-11.2":0.07108,"12.0":0.02031,"13.0":0.05077,"14.0":0.03046,"15.0":0.02031,"16.0":0.05077,"17.0":0.05077,"18.0":0.08124,"19.0":2.24417},I:{"0":0,"3":0,"4":0.01011,"2.1":0,"2.2":0.01348,"2.3":0.00674,"4.1":0.02359,"4.2-4.3":0.02696,"4.4":0,"4.4.3-4.4.4":0.16511},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00399,"8":0.02796,"9":0.00799,"10":0.00399,"11":0.03195,"5.5":0},N:{"10":0.00601,"11":0.00601},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00601},O:{"0":0.01802},H:{"0":0.23313},L:{"0":66.94695},R:{_:"0"},M:{"0":0.48048},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BB.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BB.js index 8dc63661f22ebd..7c9577623cd27a 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.01434,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.03346,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00478,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01912,"88":0,"89":0,"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.00956,"103":0.03824,"104":0,"105":0,"106":0.01434,"107":0.00478,"108":0.62618,"109":0.25812,"110":0.00956,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00956,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00478,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01434,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00956,"77":0,"78":0,"79":0.12906,"80":0.02868,"81":0.01434,"83":0.03824,"84":0.00956,"85":0,"86":0.01434,"87":0.00478,"88":0,"89":0.00478,"90":0,"91":0.00478,"92":0.00478,"93":0.01912,"94":0.00478,"95":0.00478,"96":0.00956,"97":0.00478,"98":0.00478,"99":0.00478,"100":0.00478,"101":0,"102":0.00478,"103":0.15774,"104":0.01912,"105":0.0239,"106":0.03346,"107":0.2151,"108":6.91188,"109":5.33926,"110":0.0239,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0239,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.16252,"94":0.3585,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00478,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00956,"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.00956,"107":0.02868,"108":2.7724,"109":1.673},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00478,"14":0.01434,"15":0.00478,_:"0","3.1":0,"3.2":0,"5.1":0.00478,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00478,"13.1":0.0478,"14.1":0.08126,"15.1":0.00956,"15.2-15.3":0.00956,"15.4":0.01912,"15.5":0.10516,"15.6":0.61662,"16.0":0.04302,"16.1":0.32504,"16.2":0.82694,"16.3":0.04302},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.14325,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13804,"10.0-10.2":0,"10.3":0.05209,"11.0-11.2":0.03126,"11.3-11.4":0.01563,"12.0-12.1":0.00521,"12.2-12.5":0.49748,"13.0-13.1":0,"13.2":0,"13.3":0.00521,"13.4-13.7":0.02344,"14.0-14.4":0.13023,"14.5-14.8":0.33078,"15.0-15.1":0.07553,"15.2-15.3":0.33339,"15.4":0.18753,"15.5":0.35162,"15.6":2.8364,"16.0":3.39639,"16.1":7.45435,"16.2":6.82664,"16.3":0.35943},P:{"4":0.15337,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.15337,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06573,"12.0":0,"13.0":0.05477,"14.0":0.02191,"15.0":0.02191,"16.0":0.03286,"17.0":0.19718,"18.0":0.28482,"19.0":4.45854},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.39186},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00478,"11":0.00956,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.34452},Q:{"13.1":0},O:{"0":0.03654},H:{"0":0.15814},L:{"0":45.20774},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00508,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00508,"88":0,"89":0,"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.03047,"103":0.02032,"104":0,"105":0,"106":0.03555,"107":0.00508,"108":0.01524,"109":0.57901,"110":0.38093,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01524,"48":0,"49":0.00508,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01524,"77":0.00508,"78":0,"79":0.12698,"80":0.0254,"81":0.04063,"83":0.03555,"84":0.01016,"85":0,"86":0.00508,"87":0.00508,"88":0,"89":0.01016,"90":0,"91":0.01016,"92":0,"93":0.00508,"94":0,"95":0.01016,"96":0.00508,"97":0.00508,"98":0,"99":0.01016,"100":0.00508,"101":0.00508,"102":0.00508,"103":0.16253,"104":0.01524,"105":0.00508,"106":0.01016,"107":0.04063,"108":0.91422,"109":8.01974,"110":5.18566,"111":0.0254,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0254,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00508,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01524,"94":0.45711,"95":0.21332,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00508,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01016,"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.07111,"108":0.14221,"109":2.38205,"110":2.37189},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00508,"14":0.01524,"15":0.00508,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00508,"12.1":0.00508,"13.1":0.08126,"14.1":0.13205,"15.1":0.01524,"15.2-15.3":0.01016,"15.4":0.04063,"15.5":0.08634,"15.6":0.50282,"16.0":0.04063,"16.1":0.2184,"16.2":0.76185,"16.3":0.4114,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00473,"6.0-6.1":0,"7.0-7.1":0.02838,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.23884,"10.0-10.2":0,"10.3":0.09459,"11.0-11.2":0.01655,"11.3-11.4":0.01419,"12.0-12.1":0,"12.2-12.5":0.4564,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.02601,"14.0-14.4":0.10168,"14.5-14.8":0.29796,"15.0-15.1":0.0402,"15.2-15.3":0.37836,"15.4":0.18918,"15.5":0.26722,"15.6":1.49215,"16.0":2.50899,"16.1":4.42917,"16.2":8.60294,"16.3":3.06471,"16.4":0.01182},P:{"4":0.1085,"20":1.56239,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1736,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0434,"12.0":0,"13.0":0.1519,"14.0":0.05425,"15.0":0.03255,"16.0":0.03255,"17.0":0.1302,"18.0":0.07595,"19.0":3.03798},I:{"0":0,"3":0,"4":0.17676,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.06629,"4.4":0,"4.4.3-4.4.4":1.01639},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00508,"11":0.01016,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.08366},H:{"0":0.19567},L:{"0":43.50494},R:{_:"0"},M:{"0":0.36908},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js index 1b048f459d8012..9428c7a304dcfa 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.00827,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00827,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"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.00276,"79":0,"80":0.00276,"81":0.00276,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00276,"100":0.00276,"101":0,"102":0.01103,"103":0.00276,"104":0.00276,"105":0.00551,"106":0.00827,"107":0.01103,"108":0.46318,"109":0.30051,"110":0.0193,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00276,"50":0,"51":0,"52":0,"53":0,"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.00276,"66":0,"67":0.00276,"68":0,"69":0.00551,"70":0.00276,"71":0.00276,"72":0.00276,"73":0.00276,"74":0.01103,"75":0.00276,"76":0,"77":0.00276,"78":0.00551,"79":0.00551,"80":0.00551,"81":0.00827,"83":0.00827,"84":0.01103,"85":0.0193,"86":0.01654,"87":0.01103,"88":0.00276,"89":0.00276,"90":0.00276,"91":0.00276,"92":0.00551,"93":0.00276,"94":0.01379,"95":0.00827,"96":0.00276,"97":0.00551,"98":0.00551,"99":0.00551,"100":0.01103,"101":0.00551,"102":0.01103,"103":0.01654,"104":0.01654,"105":0.02206,"106":0.02206,"107":0.05514,"108":2.38205,"109":2.28555,"110":0.01379,"111":0.00551,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00551,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.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.00276,"60":0.00276,"62":0,"63":0.00827,"64":0.01103,"65":0.00276,"66":0.01379,"67":0.01379,"68":0,"69":0,"70":0,"71":0,"72":0.00276,"73":0.01379,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00276,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00276,"86":0.00276,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02757,"94":0.13509,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00276,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00551,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00551,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00276,"107":0.00276,"108":0.16542,"109":0.15991},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00276,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00276,"14.1":0.00551,"15.1":0.00276,"15.2-15.3":0.00276,"15.4":0.00276,"15.5":0.00276,"15.6":0.0193,"16.0":0.00551,"16.1":0.01103,"16.2":0.0193,"16.3":0.00276},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00185,"6.0-6.1":0,"7.0-7.1":0.06478,"8.1-8.4":0,"9.0-9.2":0.00123,"9.3":0.02591,"10.0-10.2":0.00216,"10.3":0.01882,"11.0-11.2":0.00494,"11.3-11.4":0.0037,"12.0-12.1":0.00709,"12.2-12.5":0.22056,"13.0-13.1":0.00339,"13.2":0.00339,"13.3":0.0074,"13.4-13.7":0.02776,"14.0-14.4":0.05984,"14.5-14.8":0.08668,"15.0-15.1":0.02869,"15.2-15.3":0.04473,"15.4":0.07002,"15.5":0.1129,"15.6":0.3097,"16.0":0.2548,"16.1":0.61293,"16.2":0.63175,"16.3":0.0765},P:{"4":0.21601,"5.0-5.4":0.01029,"6.2-6.4":0.02057,"7.2-7.4":0.06172,"8.2":0,"9.2":0,"10.1":0.01029,"11.1-11.2":0.01029,"12.0":0.01029,"13.0":0.03086,"14.0":0.02057,"15.0":0.01029,"16.0":0.03086,"17.0":0.072,"18.0":0.05143,"19.0":0.66861},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00405,"4.4":0,"4.4.3-4.4.4":0.19628},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.02206,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13037},Q:{"13.1":0},O:{"0":2.12944},H:{"0":1.94059},L:{"0":83.32353},S:{"2.5":0.01449}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00797,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00797,"53":0,"54":0,"55":0,"56":0.00266,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00266,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00266,"80":0.00266,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00531,"88":0,"89":0,"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.01062,"103":0.00266,"104":0.00266,"105":0.00797,"106":0.00797,"107":0.00797,"108":0.01328,"109":0.3956,"110":0.31595,"111":0.01859,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00266,"57":0,"58":0.00266,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00266,"68":0,"69":0.00266,"70":0.00266,"71":0.00266,"72":0.00266,"73":0.00266,"74":0.01062,"75":0.00266,"76":0,"77":0.00266,"78":0.00531,"79":0.00531,"80":0.00266,"81":0.00797,"83":0.00797,"84":0.01062,"85":0.01328,"86":0.01593,"87":0.01062,"88":0.00266,"89":0.00266,"90":0.00266,"91":0.00266,"92":0.00531,"93":0.00266,"94":0.00266,"95":0.00797,"96":0.00531,"97":0.00531,"98":0.00531,"99":0.00531,"100":0.00797,"101":0.00531,"102":0.00797,"103":0.01328,"104":0.00797,"105":0.01593,"106":0.01859,"107":0.03186,"108":0.077,"109":2.57004,"110":1.66734,"111":0.00797,"112":0.00531,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00266,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00266,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00266,"56":0,"57":0,"58":0.00266,"60":0.00266,"62":0,"63":0.00531,"64":0.00797,"65":0.00266,"66":0.00797,"67":0.17523,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00266,"74":0.01328,"75":0,"76":0,"77":0,"78":0,"79":0.00266,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00266,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00266,"94":0.06372,"95":0.08496,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00266,"13":0.00266,"14":0,"15":0,"16":0,"17":0,"18":0.00266,"79":0,"80":0,"81":0,"83":0,"84":0.00266,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00266,"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.00266,"107":0.00266,"108":0.00531,"109":0.11682,"110":0.17258},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00266,"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.00266,"14.1":0.00266,"15.1":0,"15.2-15.3":0.00266,"15.4":0.00266,"15.5":0.00266,"15.6":0.01859,"16.0":0.00531,"16.1":0.00797,"16.2":0.01593,"16.3":0.01593,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0006,"5.0-5.1":0.0021,"6.0-6.1":0.0003,"7.0-7.1":0.04292,"8.1-8.4":0.0018,"9.0-9.2":0.0027,"9.3":0.02131,"10.0-10.2":0.0045,"10.3":0.01891,"11.0-11.2":0.0048,"11.3-11.4":0.0036,"12.0-12.1":0.0048,"12.2-12.5":0.20952,"13.0-13.1":0.0039,"13.2":0.0033,"13.3":0.00901,"13.4-13.7":0.03062,"14.0-14.4":0.05403,"14.5-14.8":0.08585,"15.0-15.1":0.02612,"15.2-15.3":0.03842,"15.4":0.05163,"15.5":0.11076,"15.6":0.20982,"16.0":0.19631,"16.1":0.44546,"16.2":0.50399,"16.3":0.5214,"16.4":0.0015},P:{"4":0.22419,"20":0.19362,"5.0-5.4":0,"6.2-6.4":0.01019,"7.2-7.4":0.08152,"8.2":0,"9.2":0.01019,"10.1":0,"11.1-11.2":0.02038,"12.0":0.01019,"13.0":0.02038,"14.0":0.01019,"15.0":0.01019,"16.0":0.02038,"17.0":0.05095,"18.0":0.03057,"19.0":0.43819},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01054,"4.4":0,"4.4.3-4.4.4":0.16866},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00266,"9":0,"10":0,"11":0.01859,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00735,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":2.22554},H:{"0":1.98182},L:{"0":83.93026},R:{_:"0"},M:{"0":0.11018},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js index 3a6b93e47ccb9b..4bbde489245757 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.00645,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00645,"49":0,"50":0.00645,"51":0,"52":0.01935,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00645,"67":0,"68":0.00645,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03225,"79":0,"80":0.00645,"81":0,"82":0,"83":0.00645,"84":0,"85":0,"86":0,"87":0.1032,"88":0,"89":0,"90":0,"91":0.00645,"92":0,"93":0,"94":0,"95":0,"96":0.12255,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0903,"103":0.00645,"104":0.00645,"105":0.00645,"106":0.0129,"107":0.0258,"108":1.3158,"109":0.7482,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00645,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0258,"50":0,"51":0,"52":0,"53":0.00645,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00645,"61":0,"62":0,"63":0,"64":0.10965,"65":0.00645,"66":0.01935,"67":0.0129,"68":0.00645,"69":0,"70":0,"71":0,"72":0.00645,"73":0,"74":0.04515,"75":0.0387,"76":0.0387,"77":0.0387,"78":0.58695,"79":0.7998,"80":0.01935,"81":0.0129,"83":0.07095,"84":0.01935,"85":0.0258,"86":0.0129,"87":0.04515,"88":0.00645,"89":0.0129,"90":0.0129,"91":0.01935,"92":0.0258,"93":0.03225,"94":0.0129,"95":0.00645,"96":0.0129,"97":0.03225,"98":0.00645,"99":0.0387,"100":0.0129,"101":0.01935,"102":0.0387,"103":0.129,"104":0.03225,"105":0.129,"106":0.08385,"107":0.32895,"108":14.40285,"109":9.33315,"110":0.00645,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00645,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00645,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.38055,"94":0.3741,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00645,"16":0.00645,"17":0,"18":0.00645,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0129,"93":0,"94":0,"95":0,"96":0,"97":0.00645,"98":0,"99":0.0129,"100":0.00645,"101":0.00645,"102":0.00645,"103":0.0129,"104":0.01935,"105":0.0129,"106":0.01935,"107":0.08385,"108":3.72165,"109":2.80575},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00645,"12":0,"13":0.0129,"14":0.07095,"15":0.03225,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00645,"12.1":0.0387,"13.1":0.1419,"14.1":0.2193,"15.1":0.04515,"15.2-15.3":0.04515,"15.4":0.1161,"15.5":0.2322,"15.6":1.1739,"16.0":0.14835,"16.1":0.45795,"16.2":0.8256,"16.3":0.0516},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08714,"10.0-10.2":0.0029,"10.3":0.1249,"11.0-11.2":0.02324,"11.3-11.4":0.07262,"12.0-12.1":0.01452,"12.2-12.5":0.46474,"13.0-13.1":0.00581,"13.2":0.0029,"13.3":0.02033,"13.4-13.7":0.10747,"14.0-14.4":0.26432,"14.5-14.8":0.76972,"15.0-15.1":0.20042,"15.2-15.3":0.31079,"15.4":0.32822,"15.5":0.822,"15.6":3.6569,"16.0":4.33658,"16.1":9.97153,"16.2":5.63785,"16.3":0.40374},P:{"4":0.06191,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06191,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01032,"14.0":0.02064,"15.0":0.01032,"16.0":0.02064,"17.0":0.03096,"18.0":0.06191,"19.0":2.68277},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00899,"4.2-4.3":0.01797,"4.4":0,"4.4.3-4.4.4":0.09884},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00645,"9":0.00645,"10":0,"11":0.07095,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.2343},Q:{"13.1":0},O:{"0":0.01065},H:{"0":0.10083},L:{"0":25.7172},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00608,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00608,"49":0,"50":0.00608,"51":0,"52":0.01825,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00608,"67":0,"68":0.00608,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03041,"79":0,"80":0,"81":0,"82":0,"83":0.00608,"84":0,"85":0,"86":0,"87":0.10948,"88":0.00608,"89":0,"90":0,"91":0.00608,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.07907,"103":0.00608,"104":0,"105":0.00608,"106":0.01216,"107":0.01216,"108":0.20679,"109":1.19207,"110":0.86364,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00608,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03041,"50":0,"51":0,"52":0,"53":0.00608,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00608,"61":0,"62":0,"63":0,"64":0.09123,"65":0.00608,"66":0.01825,"67":0.00608,"68":0.00608,"69":0,"70":0,"71":0,"72":0.00608,"73":0,"74":0.04866,"75":0.04257,"76":0.04257,"77":0.04257,"78":0.63861,"79":0.86973,"80":0.02433,"81":0.01216,"83":0.06082,"84":0.02433,"85":0.02433,"86":0.01216,"87":0.03649,"88":0.00608,"89":0.01216,"90":0.00608,"91":0.01825,"92":0.02433,"93":0.01216,"94":0.00608,"95":0.00608,"96":0.00608,"97":0.01216,"98":0.01216,"99":0.04257,"100":0.00608,"101":0.02433,"102":0.03649,"103":0.1338,"104":0.02433,"105":0.09123,"106":0.06082,"107":0.08515,"108":1.22856,"109":12.38295,"110":7.11594,"111":0.00608,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00608,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.07907,"94":0.4379,"95":0.18854,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00608,"16":0.00608,"17":0.00608,"18":0.00608,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00608,"90":0,"91":0,"92":0.00608,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00608,"100":0,"101":0.00608,"102":0.00608,"103":0.00608,"104":0.00608,"105":0.00608,"106":0.00608,"107":0.03041,"108":0.1703,"109":2.60918,"110":2.64567},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00608,"14":0.06082,"15":0.01216,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03649,"13.1":0.14597,"14.1":0.18246,"15.1":0.03649,"15.2-15.3":0.03041,"15.4":0.08515,"15.5":0.1703,"15.6":0.79066,"16.0":0.09123,"16.1":0.27977,"16.2":0.91838,"16.3":0.6082,"16.4":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.00302,"8.1-8.4":0.00604,"9.0-9.2":0,"9.3":0.09066,"10.0-10.2":0,"10.3":0.12089,"11.0-11.2":0.02418,"11.3-11.4":0.07858,"12.0-12.1":0.03022,"12.2-12.5":0.48657,"13.0-13.1":0.00604,"13.2":0.00302,"13.3":0.01813,"13.4-13.7":0.136,"14.0-14.4":0.25688,"14.5-14.8":0.73136,"15.0-15.1":0.18435,"15.2-15.3":0.25084,"15.4":0.29315,"15.5":0.65883,"15.6":2.85896,"16.0":3.50268,"16.1":7.94827,"16.2":7.27433,"16.3":3.72934,"16.4":0.01511},P:{"4":0.07199,"20":1.15189,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08228,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01028,"14.0":0.02057,"15.0":0.01028,"16.0":0.02057,"17.0":0.03085,"18.0":0.05142,"19.0":1.75869},I:{"0":0,"3":0,"4":0.00794,"2.1":0,"2.2":0,"2.3":0.00794,"4.1":0.0119,"4.2-4.3":0.09524,"4.4":0,"4.4.3-4.4.4":0.12698},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01216,"9":0.01216,"10":0,"11":0.07298,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00392,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02351},H:{"0":0.10386},L:{"0":28.37111},R:{_:"0"},M:{"0":0.25859},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js index 924ddabae4fe5a..d877f9639ee0ef 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.00255,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00255,"48":0.00509,"49":0,"50":0,"51":0,"52":0.00255,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00764,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00764,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00255,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00509,"98":0,"99":0.00255,"100":0.00255,"101":0,"102":0.23942,"103":0.00255,"104":0.00255,"105":0.00255,"106":0.01019,"107":0.03311,"108":0.45846,"109":0.29291,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0433,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00255,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00509,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00255,"69":0.00255,"70":0.00255,"71":0,"72":0.00255,"73":0,"74":0.00509,"75":0.00255,"76":0,"77":0.00255,"78":0,"79":0.01274,"80":0.00255,"81":0.00509,"83":0,"84":0.00255,"85":0,"86":0.02802,"87":0.00509,"88":0.00764,"89":0,"90":0.01528,"91":0,"92":0,"93":0.00255,"94":0,"95":0.00509,"96":0.00255,"97":0.00255,"98":0.01019,"99":0,"100":0.00509,"101":0.00255,"102":0.01528,"103":0.01528,"104":0.00764,"105":0.01019,"106":0.00509,"107":0.04585,"108":1.19964,"109":1.25567,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00255,"29":0,"30":0.00255,"31":0,"32":0.00764,"33":0,"34":0,"35":0,"36":0,"37":0.00509,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01019,"47":0,"48":0,"49":0,"50":0,"51":0.00255,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00255,"58":0.00509,"60":0.04839,"62":0,"63":0.05349,"64":0.01019,"65":0.01019,"66":0.07896,"67":0.01019,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00255,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00255,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00255,"93":0.01274,"94":0.19103,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00255},B:{"12":0.00255,"13":0,"14":0.00255,"15":0,"16":0,"17":0,"18":0.01019,"79":0,"80":0,"81":0,"83":0,"84":0.00255,"85":0.00255,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00764,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00255,"101":0,"102":0,"103":0.00255,"104":0,"105":0.00509,"106":0.01019,"107":0.01274,"108":0.47629,"109":0.39733},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00255,"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.01783,"14.1":0.00255,"15.1":0.00255,"15.2-15.3":0,"15.4":0.00255,"15.5":0.01019,"15.6":0.01019,"16.0":0.00255,"16.1":0.01019,"16.2":0.01528,"16.3":0.00255},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01304,"8.1-8.4":0.00137,"9.0-9.2":0.00206,"9.3":0.01716,"10.0-10.2":0,"10.3":0.05421,"11.0-11.2":0.00961,"11.3-11.4":0.00206,"12.0-12.1":0.08989,"12.2-12.5":0.75072,"13.0-13.1":0.00206,"13.2":0.00206,"13.3":0.0151,"13.4-13.7":0.02608,"14.0-14.4":0.28547,"14.5-14.8":0.17018,"15.0-15.1":0.11528,"15.2-15.3":0.26763,"15.4":0.25459,"15.5":0.33693,"15.6":0.35066,"16.0":0.86601,"16.1":1.01903,"16.2":1.45821,"16.3":0.23949},P:{"4":0.02038,"5.0-5.4":0,"6.2-6.4":0.03058,"7.2-7.4":0.1325,"8.2":0,"9.2":0.03058,"10.1":0,"11.1-11.2":0.02038,"12.0":0,"13.0":0.01019,"14.0":0.02038,"15.0":0.01019,"16.0":0.04077,"17.0":0.06115,"18.0":0.12231,"19.0":0.68287},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00132,"4.2-4.3":0.00066,"4.4":0,"4.4.3-4.4.4":0.17349},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01528,"5.5":0},J:{"7":0,"10":0.00745},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13415},Q:{"13.1":0.04472},O:{"0":0.68568},H:{"0":4.37473},L:{"0":79.76348},S:{"2.5":0.01491}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00259,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00259,"53":0,"54":0,"55":0,"56":0.00259,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01811,"73":0,"74":0,"75":0.00259,"76":0,"77":0,"78":0.00517,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00259,"97":0,"98":0,"99":0.00259,"100":0,"101":0,"102":0.06209,"103":0.00259,"104":0.00259,"105":0.00259,"106":0.00517,"107":0.00776,"108":0.03622,"109":0.45531,"110":0.33631,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02846,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00259,"38":0,"39":0.00259,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00259,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00517,"75":0,"76":0,"77":0,"78":0,"79":0.01035,"80":0,"81":0.00517,"83":0.00259,"84":0,"85":0,"86":0.03104,"87":0.00776,"88":0.00259,"89":0.03104,"90":0.0207,"91":0.00259,"92":0.00259,"93":0.00259,"94":0.00259,"95":0.00776,"96":0.00259,"97":0.00259,"98":0.00259,"99":0.00259,"100":0,"101":0.00517,"102":0.01552,"103":0.00517,"104":0.00259,"105":0.01294,"106":0.01294,"107":0.01035,"108":0.05433,"109":1.57548,"110":0.94943,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00259,"29":0,"30":0.00259,"31":0,"32":0.01294,"33":0,"34":0,"35":0,"36":0,"37":0.00776,"38":0,"39":0,"40":0,"41":0,"42":0.00259,"43":0,"44":0,"45":0,"46":0.01811,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01552,"60":0.04139,"62":0,"63":0.04915,"64":0.00517,"65":0.00259,"66":0.05691,"67":0.19661,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00259,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00259,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.06209,"95":0.11642,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00259},B:{"12":0.00517,"13":0,"14":0.08537,"15":0,"16":0,"17":0.00259,"18":0.00776,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00259,"90":0,"91":0,"92":0.00776,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00259,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00259,"107":0.01035,"108":0.03881,"109":0.36994,"110":0.39322},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.02587,"14.1":0.00517,"15.1":0,"15.2-15.3":0,"15.4":0.00259,"15.5":0.00259,"15.6":0.00776,"16.0":0.00259,"16.1":0.00259,"16.2":0.01294,"16.3":0.04139,"16.4":0},G:{"8":0.00316,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00189,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10611,"10.0-10.2":0,"10.3":0.01832,"11.0-11.2":0.02716,"11.3-11.4":0.00126,"12.0-12.1":0.15411,"12.2-12.5":0.85579,"13.0-13.1":0.00568,"13.2":0.00189,"13.3":0.01705,"13.4-13.7":0.01768,"14.0-14.4":0.25137,"14.5-14.8":0.14147,"15.0-15.1":0.08211,"15.2-15.3":0.10674,"15.4":0.13074,"15.5":0.22674,"15.6":0.20779,"16.0":0.67516,"16.1":0.62084,"16.2":0.91895,"16.3":1.26569,"16.4":0.01326},P:{"4":0.03048,"20":0.30483,"5.0-5.4":0,"6.2-6.4":0.01016,"7.2-7.4":0.06097,"8.2":0,"9.2":0.04064,"10.1":0,"11.1-11.2":0.01016,"12.0":0,"13.0":0.02032,"14.0":0.01016,"15.0":0.01016,"16.0":0.02032,"17.0":0.06097,"18.0":0.14225,"19.0":0.45724},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00573,"4.2-4.3":0.01145,"4.4":0,"4.4.3-4.4.4":0.27834},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},N:{"10":0,"11":0},S:{"2.5":0.01483,_:"3.0-3.1"},J:{"7":0,"10":0.00741},O:{"0":0.60045},H:{"0":4.58987},L:{"0":80.02752},R:{_:"0"},M:{"0":0.1112},Q:{"13.1":0.02965}}; 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 a7e99e0b406acc..3217962bfa47c7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BG.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00396,"49":0,"50":0,"51":0,"52":0.05142,"53":0,"54":0,"55":0,"56":0.00396,"57":0,"58":0,"59":0,"60":0.00396,"61":0,"62":0.00396,"63":0,"64":0,"65":0,"66":0.00791,"67":0,"68":0.03164,"69":0,"70":0,"71":0,"72":0.00396,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00791,"79":0,"80":0.01187,"81":0.00396,"82":0,"83":0.00791,"84":0.00396,"85":0.00396,"86":0,"87":0,"88":0.00791,"89":0.00396,"90":0.00396,"91":0.00791,"92":0,"93":0.00396,"94":0.00396,"95":0.00396,"96":0.00396,"97":0.00396,"98":0.00396,"99":0.00791,"100":0.00396,"101":0.00396,"102":0.05933,"103":0.01582,"104":0.00791,"105":0.01187,"106":0.01582,"107":0.0356,"108":1.15486,"109":0.69608,"110":0.00396,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00396,"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,"48":0,"49":0.05933,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00396,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00396,"64":0,"65":0,"66":0,"67":0.00396,"68":0,"69":0,"70":0,"71":0.00396,"72":0,"73":0,"74":0.00396,"75":0.00396,"76":0.00396,"77":0.00396,"78":0.00396,"79":0.03164,"80":0.00396,"81":0.01978,"83":0.00791,"84":0.00396,"85":0.01187,"86":0.00791,"87":0.01187,"88":0.00396,"89":0.00791,"90":0.00396,"91":0.02373,"92":0.01582,"93":0.02373,"94":0.00791,"95":0.01187,"96":0.00791,"97":0.01187,"98":0.00791,"99":0.00791,"100":0.01187,"101":0.00791,"102":0.01187,"103":0.03955,"104":0.01582,"105":0.03164,"106":0.04351,"107":0.15425,"108":5.01099,"109":4.90816,"110":0.00396,"111":0.00396,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00791,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00396,"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,"64":0,"65":0,"66":0.00396,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00791,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00396,"83":0,"84":0,"85":0.00396,"86":0,"87":0.00396,"88":0,"89":0,"90":0.00396,"91":0,"92":0.00396,"93":0.17402,"94":0.38364,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00396,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"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.00396,"106":0.00396,"107":0.01187,"108":0.58139,"109":0.58534},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01187,"15":0.00396,_:"0","3.1":0,"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.01187,"14.1":0.02373,"15.1":0.00396,"15.2-15.3":0.00396,"15.4":0.01187,"15.5":0.01582,"15.6":0.0791,"16.0":0.01978,"16.1":0.05142,"16.2":0.09492,"16.3":0.00791},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00297,"6.0-6.1":0,"7.0-7.1":0.00445,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02227,"10.0-10.2":0.00297,"10.3":0.05344,"11.0-11.2":0.01633,"11.3-11.4":0.00594,"12.0-12.1":0.00742,"12.2-12.5":0.24493,"13.0-13.1":0.00297,"13.2":0.00297,"13.3":0.0193,"13.4-13.7":0.06383,"14.0-14.4":0.15587,"14.5-14.8":0.47947,"15.0-15.1":0.08164,"15.2-15.3":0.1618,"15.4":0.18259,"15.5":0.38595,"15.6":1.35381,"16.0":2.28752,"16.1":4.82738,"16.2":3.23607,"16.3":0.32361},P:{"4":0.08224,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03084,"12.0":0.01028,"13.0":0.04112,"14.0":0.04112,"15.0":0.02056,"16.0":0.06168,"17.0":0.06168,"18.0":0.10281,"19.0":2.55987},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01052,"4.2-4.3":0.02629,"4.4":0,"4.4.3-4.4.4":0.17879},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07515,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18135},Q:{"13.1":0},O:{"0":0.02418},H:{"0":0.24037},L:{"0":65.60098},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00434,"49":0,"50":0,"51":0.00434,"52":0.05646,"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.02172,"67":0,"68":0.0304,"69":0,"70":0,"71":0,"72":0.00434,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00869,"79":0,"80":0.01737,"81":0.00434,"82":0.00434,"83":0.00869,"84":0.00869,"85":0.00434,"86":0,"87":0,"88":0.00869,"89":0.00434,"90":0.00434,"91":0.00869,"92":0,"93":0.00434,"94":0,"95":0.00434,"96":0.00434,"97":0.00434,"98":0.00434,"99":0.00869,"100":0.00434,"101":0.00434,"102":0.07817,"103":0.01303,"104":0.00869,"105":0.00869,"106":0.01737,"107":0.02172,"108":0.0608,"109":1.43753,"110":0.87729,"111":0.00434,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00434,"34":0,"35":0,"36":0,"37":0,"38":0.00434,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05646,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00434,"59":0,"60":0,"61":0,"62":0,"63":0.00434,"64":0,"65":0,"66":0,"67":0.00434,"68":0,"69":0,"70":0.00434,"71":0.00434,"72":0,"73":0.00434,"74":0.00434,"75":0.00434,"76":0.00434,"77":0.00869,"78":0.00434,"79":0.0304,"80":0.00434,"81":0.02172,"83":0.00434,"84":0.00434,"85":0.00869,"86":0.00434,"87":0.01303,"88":0.00869,"89":0.00869,"90":0.00434,"91":0.00869,"92":0.01303,"93":0.0304,"94":0.00434,"95":0.01303,"96":0.00434,"97":0.01303,"98":0.00869,"99":0.00434,"100":0.01303,"101":0.00434,"102":0.01737,"103":0.03474,"104":0.01737,"105":0.0304,"106":0.03474,"107":0.0608,"108":0.3127,"109":7.89123,"110":4.02596,"111":0.00434,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00869,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"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.00434,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00434,"74":0.00434,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00869,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0304,"94":0.3735,"95":0.25624,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00434,"17":0,"18":0.00869,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00434,"104":0,"105":0,"106":0,"107":0.00869,"108":0.02172,"109":0.57328,"110":0.73831},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00434,"14":0.01303,"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.00434,"13.1":0.01737,"14.1":0.02172,"15.1":0.00434,"15.2-15.3":0.00434,"15.4":0.00869,"15.5":0.00869,"15.6":0.06949,"16.0":0.01303,"16.1":0.03474,"16.2":0.08686,"16.3":0.08252,"16.4":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.00561,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01822,"10.0-10.2":0.0014,"10.3":0.04624,"11.0-11.2":0.01541,"11.3-11.4":0.0042,"12.0-12.1":0.00981,"12.2-12.5":0.21721,"13.0-13.1":0.00981,"13.2":0.0028,"13.3":0.01541,"13.4-13.7":0.05746,"14.0-14.4":0.15135,"14.5-14.8":0.39238,"15.0-15.1":0.07287,"15.2-15.3":0.1023,"15.4":0.13873,"15.5":0.29008,"15.6":0.95713,"16.0":1.655,"16.1":3.34924,"16.2":3.43192,"16.3":2.22115,"16.4":0.01401},P:{"4":0.08204,"20":0.85113,"5.0-5.4":0.01025,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02051,"12.0":0.01025,"13.0":0.03076,"14.0":0.04102,"15.0":0.02051,"16.0":0.05127,"17.0":0.05127,"18.0":0.08204,"19.0":1.65098},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01029,"4.2-4.3":0.02572,"4.4":0,"4.4.3-4.4.4":0.18005},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00434,"9":0,"10":0,"11":0.08686,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02263},H:{"0":0.25172},L:{"0":63.3669},R:{_:"0"},M:{"0":0.17537},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js index 1a6ad70b02cec0..8da35ad371d931 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,"48":0,"49":0,"50":0,"51":0,"52":0.00312,"53":0.00312,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.04367,"102":0.00312,"103":0,"104":0.00312,"105":0,"106":0.00312,"107":0.00624,"108":0.16531,"109":0.09669,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00312,"48":0,"49":0.00312,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00312,"56":0.00312,"57":0,"58":0.00312,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00312,"66":0,"67":0,"68":0.00312,"69":0,"70":0.00312,"71":0,"72":0,"73":0,"74":0.00312,"75":0,"76":0.00312,"77":0.00312,"78":0.00312,"79":0.01871,"80":0.00312,"81":0.03431,"83":0,"84":0,"85":0.00312,"86":0.00312,"87":0.00936,"88":0.00624,"89":0.00312,"90":0.00312,"91":0.00312,"92":0.00936,"93":0.00936,"94":0.00312,"95":0.00624,"96":0.54271,"97":0.00936,"98":0.00624,"99":0.00312,"100":0.00312,"101":0.00936,"102":0.01871,"103":0.07798,"104":0.00936,"105":0.01248,"106":0.03431,"107":0.09045,"108":3.14395,"109":2.94746,"110":0.00312,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00312,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00312,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0156,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00312,"83":0,"84":0,"85":0.00312,"86":0,"87":0,"88":0,"89":0.00312,"90":0.00624,"91":0.00312,"92":0.0156,"93":0.07174,"94":0.05614,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00312,"15":0,"16":0,"17":0,"18":0.00312,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00312,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00624,"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.02183,"108":0.53959,"109":0.46785},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00312,"14":0.0156,"15":0.00312,_:"0","3.1":0,"3.2":0,"5.1":0.00312,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00312,"13.1":0.02183,"14.1":0.04367,"15.1":0.00936,"15.2-15.3":0.00624,"15.4":0.02183,"15.5":0.05302,"15.6":0.18714,"16.0":0.03119,"16.1":0.10605,"16.2":0.12788,"16.3":0.01871},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01047,"6.0-6.1":0,"7.0-7.1":0.01309,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10996,"10.0-10.2":0,"10.3":0.04189,"11.0-11.2":0.02618,"11.3-11.4":0.00262,"12.0-12.1":0.02618,"12.2-12.5":0.4765,"13.0-13.1":0.02095,"13.2":0.00785,"13.3":0.03142,"13.4-13.7":0.13614,"14.0-14.4":0.3325,"14.5-14.8":0.67548,"15.0-15.1":0.25658,"15.2-15.3":0.24611,"15.4":0.33774,"15.5":1.09438,"15.6":2.71501,"16.0":4.19426,"16.1":7.60569,"16.2":5.61067,"16.3":0.6493},P:{"4":0.09144,"5.0-5.4":0.01016,"6.2-6.4":0.02032,"7.2-7.4":0.08128,"8.2":0,"9.2":0.01016,"10.1":0,"11.1-11.2":0.28449,"12.0":0.02032,"13.0":0.04064,"14.0":0.0508,"15.0":0.02032,"16.0":0.09144,"17.0":0.16257,"18.0":0.09144,"19.0":2.70266},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00126,"4.2-4.3":0.00379,"4.4":0,"4.4.3-4.4.4":0.04678},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0156,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.34405},Q:{"13.1":0},O:{"0":4.47265},H:{"0":0.78174},L:{"0":53.48236},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00967,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.10639,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00322,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00322,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.04191,"102":0,"103":0,"104":0,"105":0.00322,"106":0.0129,"107":0.00322,"108":0.00967,"109":0.33852,"110":0.13541,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00322,"47":0.00967,"48":0,"49":0.00322,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00322,"57":0,"58":0.00322,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00645,"66":0,"67":0,"68":0,"69":0.00645,"70":0.00322,"71":0,"72":0,"73":0,"74":0.00322,"75":0.00322,"76":0.00645,"77":0.00322,"78":0.00645,"79":0.03224,"80":0.00322,"81":0.03224,"83":0.00322,"84":0.00322,"85":0.00322,"86":0.00967,"87":0.01612,"88":0.00967,"89":0,"90":0.00322,"91":0.00322,"92":0.0129,"93":0.00645,"94":0.00322,"95":0.00645,"96":0.16442,"97":0.00967,"98":0.00322,"99":0.00322,"100":0.00322,"101":0.00322,"102":0.01612,"103":0.05481,"104":0.00967,"105":0.01612,"106":0.01934,"107":0.03546,"108":0.16442,"109":4.03645,"110":2.51794,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00322,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00322,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00322,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00322,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00322,"74":0.00322,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00322,"86":0,"87":0,"88":0,"89":0.00322,"90":0.00322,"91":0.00322,"92":0.00645,"93":0.01934,"94":0.09994,"95":0.02257,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00645,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00322,"86":0,"87":0,"88":0,"89":0,"90":0.00322,"91":0,"92":0.00322,"93":0.00322,"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.00322,"107":0.00967,"108":0.03869,"109":0.39333,"110":0.61256},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00322,"14":0.01934,"15":0.00322,_:"0","3.1":0,"3.2":0,"5.1":0.00322,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00322,"13.1":0.01612,"14.1":0.04514,"15.1":0.0129,"15.2-15.3":0.00645,"15.4":0.01934,"15.5":0.04836,"15.6":0.19344,"16.0":0.01612,"16.1":0.07093,"16.2":0.12574,"16.3":0.11606,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00258,"6.0-6.1":0,"7.0-7.1":0.01809,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09561,"10.0-10.2":0,"10.3":0.03101,"11.0-11.2":0.03876,"11.3-11.4":0.01292,"12.0-12.1":0.02067,"12.2-12.5":0.50645,"13.0-13.1":0.01809,"13.2":0,"13.3":0.02067,"13.4-13.7":0.10594,"14.0-14.4":0.34108,"14.5-14.8":0.5633,"15.0-15.1":0.27131,"15.2-15.3":0.20413,"15.4":0.25064,"15.5":0.97156,"15.6":2.09041,"16.0":3.32037,"16.1":5.3746,"16.2":5.50897,"16.3":4.57616,"16.4":0.03101},P:{"4":0.09182,"20":1.00998,"5.0-5.4":0,"6.2-6.4":0.0102,"7.2-7.4":0.06121,"8.2":0,"9.2":0.0102,"10.1":0.0102,"11.1-11.2":0.19384,"12.0":0.04081,"13.0":0.05101,"14.0":0.03061,"15.0":0.0204,"16.0":0.08161,"17.0":0.11222,"18.0":0.10202,"19.0":1.82613},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00659,"4.2-4.3":0.00396,"4.4":0,"4.4.3-4.4.4":0.04879},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01934,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":4.17402},H:{"0":0.84038},L:{"0":53.26812},R:{_:"0"},M:{"0":0.38623},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js index 0e8d6bfa3207fe..558c9c309d1578 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.00262,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00262,"50":0.00262,"51":0,"52":0,"53":0.00262,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00262,"69":0.00262,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00262,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00262,"89":0.00262,"90":0,"91":0.00262,"92":0,"93":0,"94":0,"95":0.00262,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00262,"102":0.00785,"103":0,"104":0.00262,"105":0.00262,"106":0.00523,"107":0.00785,"108":0.28787,"109":0.37161,"110":0.00262,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00262,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00262,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00262,"77":0,"78":0,"79":0.00262,"80":0.02879,"81":0.01047,"83":0,"84":0,"85":0,"86":0,"87":0.00262,"88":0,"89":0,"90":0.00523,"91":0.00785,"92":0.12562,"93":0.00262,"94":0.00262,"95":0.00262,"96":0.02355,"97":0.00523,"98":0.00523,"99":0.00523,"100":0.00523,"101":0.00262,"102":0.00262,"103":0.02617,"104":0.02094,"105":0.02355,"106":0.02879,"107":0.04711,"108":1.59114,"109":1.59637,"110":0,"111":0.00262,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00785,"25":0,"26":0.00262,"27":0.00262,"28":0.00523,"29":0,"30":0.00523,"31":0.00523,"32":0.0157,"33":0.00262,"34":0,"35":0.00262,"36":0,"37":0.34806,"38":0.00262,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00262,"55":0,"56":0,"57":0.03664,"58":0.00523,"60":0.06804,"62":0,"63":0.26432,"64":0.0314,"65":0.0157,"66":0.08898,"67":0.0157,"68":0,"69":0,"70":0,"71":0,"72":0.00523,"73":0.00785,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00785,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00262,"88":0,"89":0,"90":0.00262,"91":0,"92":0.00523,"93":0.00523,"94":0.40302,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.00262,"12.1":0.00523},B:{"12":0.00523,"13":0.00523,"14":0.00523,"15":0.00262,"16":0,"17":0.07589,"18":0.02355,"79":0,"80":0,"81":0,"83":0,"84":0.00262,"85":0,"86":0,"87":0,"88":0,"89":0.00262,"90":0.00262,"91":0,"92":0.02094,"93":0,"94":0,"95":0,"96":0.00262,"97":0,"98":0.00523,"99":0,"100":0,"101":0,"102":0,"103":0.00262,"104":0.00785,"105":0.00262,"106":0.00262,"107":0.01309,"108":0.32189,"109":0.24862},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.00262,_:"0","3.1":0,"3.2":0,"5.1":0.05496,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00523,"13.1":0.01047,"14.1":0.00523,"15.1":0,"15.2-15.3":0,"15.4":0.00262,"15.5":0.00262,"15.6":0.0157,"16.0":0.00262,"16.1":0.00523,"16.2":0.00523,"16.3":0.00262},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00072,"6.0-6.1":0.00688,"7.0-7.1":0.00072,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03007,"10.0-10.2":0,"10.3":0.0163,"11.0-11.2":0.01884,"11.3-11.4":0.00072,"12.0-12.1":0.0355,"12.2-12.5":0.66262,"13.0-13.1":0.00181,"13.2":0,"13.3":0.08043,"13.4-13.7":0.04058,"14.0-14.4":0.11303,"14.5-14.8":0.12318,"15.0-15.1":0.20397,"15.2-15.3":0.22281,"15.4":0.0355,"15.5":0.17788,"15.6":0.26338,"16.0":0.27643,"16.1":0.58908,"16.2":0.40431,"16.3":0.02427},P:{"4":0.16323,"5.0-5.4":0.0204,"6.2-6.4":0,"7.2-7.4":0.17343,"8.2":0,"9.2":0.13263,"10.1":0,"11.1-11.2":0.0204,"12.0":0,"13.0":0.0204,"14.0":0.0102,"15.0":0.0102,"16.0":0.35707,"17.0":0.0102,"18.0":0.05101,"19.0":0.71414},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.00081,"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,"9":0,"10":0,"11":0.0157,"5.5":0},J:{"7":0,"10":0},N:{"10":0.01477,"11":0},R:{_:"0"},M:{"0":0.07383},Q:{"13.1":0},O:{"0":0.55373},H:{"0":13.60205},L:{"0":68.96674},S:{"2.5":0.65709}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0029,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0029,"46":0,"47":0.0029,"48":0,"49":0,"50":0,"51":0,"52":0.0029,"53":0,"54":0,"55":0,"56":0.0029,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0029,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0029,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01448,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0029,"103":0.0029,"104":0,"105":0.0029,"106":0.0029,"107":0.00869,"108":0.00869,"109":0.48057,"110":0.41978,"111":0.00579,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0029,"41":0,"42":0,"43":0.0029,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.0029,"52":0,"53":0,"54":0,"55":0.0029,"56":0,"57":0,"58":0,"59":0.0029,"60":0,"61":0,"62":0,"63":0.0029,"64":0.00869,"65":0,"66":0.0029,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00869,"75":0,"76":0.0029,"77":0,"78":0,"79":0.00579,"80":0.01158,"81":0.00869,"83":0,"84":0.0029,"85":0,"86":0,"87":0,"88":0.0029,"89":0,"90":0.0029,"91":0.02606,"92":0.0579,"93":0,"94":0,"95":0.0029,"96":0.00869,"97":0.02316,"98":0.0029,"99":0,"100":0.0029,"101":0.0029,"102":0.0029,"103":0.03764,"104":0.03185,"105":0.01448,"106":0.00579,"107":0.02606,"108":0.21134,"109":2.10177,"110":1.84991,"111":0.00579,"112":0.00869,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.02027,"25":0,"26":0.01158,"27":0.0029,"28":0.0029,"29":0,"30":0.0029,"31":0,"32":0.0029,"33":0,"34":0,"35":0,"36":0.0029,"37":0.37346,"38":0.0029,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01448,"47":0.0029,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00579,"55":0,"56":0,"57":0.00579,"58":0.0029,"60":0.07817,"62":0,"63":0.20555,"64":0.04632,"65":0.02606,"66":0.1187,"67":0.27792,"68":0,"69":0,"70":0,"71":0,"72":0.01448,"73":0.00579,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0029,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00579,"90":0,"91":0,"92":0.0029,"93":0,"94":0.08975,"95":0.17949,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.00869,"12.1":0.0029},B:{"12":0.00869,"13":0.0029,"14":0.0029,"15":0,"16":0,"17":0.00579,"18":0.01737,"79":0,"80":0,"81":0,"83":0,"84":0.0029,"85":0,"86":0,"87":0,"88":0,"89":0.0029,"90":0.00869,"91":0,"92":0.02316,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0029,"101":0,"102":0,"103":0.0029,"104":0,"105":0,"106":0.0029,"107":0.01448,"108":0.04053,"109":0.22292,"110":0.3474},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0029,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0579,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00869,"13.1":0.0029,"14.1":0.02027,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.0029,"15.6":0.00579,"16.0":0.0029,"16.1":0.0029,"16.2":0.00579,"16.3":0.01158,"16.4":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.00088,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02854,"10.0-10.2":0.00088,"10.3":0.11151,"11.0-11.2":0.00439,"11.3-11.4":0.01668,"12.0-12.1":0.20151,"12.2-12.5":1.04441,"13.0-13.1":0.02107,"13.2":0.00176,"13.3":0.03205,"13.4-13.7":0.01449,"14.0-14.4":0.16287,"14.5-14.8":0.11985,"15.0-15.1":0.19975,"15.2-15.3":0.20326,"15.4":0.0439,"15.5":0.11634,"15.6":0.21424,"16.0":0.27087,"16.1":0.40169,"16.2":0.28843,"16.3":0.57949,"16.4":0.00088},P:{"4":0.21211,"20":0.0606,"5.0-5.4":0.0404,"6.2-6.4":0.0404,"7.2-7.4":0.1111,"8.2":0,"9.2":0.0606,"10.1":0,"11.1-11.2":0.0202,"12.0":0.0101,"13.0":0.0202,"14.0":0,"15.0":0.0202,"16.0":0.97972,"17.0":0.0101,"18.0":0.0606,"19.0":0.41411},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00728,"4.4":0,"4.4.3-4.4.4":0.04298},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.0029,"11":0.01158,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.40499,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.32683},H:{"0":13.69527},L:{"0":66.7638},R:{_:"0"},M:{"0":0.03553},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BJ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BJ.js index 375c44244a3080..60cb0179a6bc61 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.00275,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00275,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00275,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0055,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00275,"82":0,"83":0,"84":0,"85":0.0055,"86":0,"87":0,"88":0,"89":0.00275,"90":0,"91":0.00275,"92":0,"93":0.00275,"94":0,"95":0,"96":0.00275,"97":0,"98":0,"99":0.00275,"100":0.0055,"101":0.00275,"102":0.01926,"103":0.00275,"104":0.0055,"105":0.0055,"106":0.00275,"107":0.01651,"108":0.28346,"109":0.17338,"110":0.00275,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00275,"29":0,"30":0,"31":0,"32":0,"33":0.00275,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00275,"48":0,"49":0.00275,"50":0.00275,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00275,"62":0,"63":0,"64":0.00275,"65":0,"66":0,"67":0,"68":0,"69":0.0055,"70":0.01101,"71":0,"72":0.00275,"73":0.00275,"74":0.04678,"75":0.00275,"76":0,"77":0,"78":0.01926,"79":0.00826,"80":0.01101,"81":0.00826,"83":0.0055,"84":0,"85":0.0055,"86":0.00826,"87":0.01926,"88":0.01376,"89":0.00275,"90":0.00275,"91":0.0055,"92":0.0055,"93":0.00275,"94":0.01651,"95":0.00826,"96":0.0055,"97":0.00275,"98":0.04403,"99":0.04128,"100":0.00826,"101":0.0055,"102":0.00826,"103":0.03027,"104":0.01101,"105":0.04128,"106":0.02477,"107":0.0688,"108":1.63744,"109":1.54112,"110":0.00826,"111":0.00826,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00275,"29":0,"30":0,"31":0,"32":0,"33":0.00275,"34":0,"35":0,"36":0,"37":0.00275,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02202,"47":0,"48":0,"49":0,"50":0.01651,"51":0,"52":0,"53":0,"54":0,"55":0.00275,"56":0.00275,"57":0.03027,"58":0.00275,"60":0.03578,"62":0,"63":0.05229,"64":0.02477,"65":0.00826,"66":0.04954,"67":0.00275,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00826,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00275,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01376,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01651,"94":0.28621,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00275},B:{"12":0.00275,"13":0.00275,"14":0.00275,"15":0.05779,"16":0,"17":0,"18":0.01101,"79":0,"80":0,"81":0,"83":0,"84":0.00275,"85":0.00275,"86":0,"87":0,"88":0.00275,"89":0.00275,"90":0,"91":0,"92":0.00826,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00826,"100":0,"101":0,"102":0,"103":0,"104":0.0055,"105":0.00275,"106":0.00275,"107":0.01651,"108":0.20915,"109":0.32198},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00275,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0055,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00275,"14.1":0.00275,"15.1":0.01101,"15.2-15.3":0.00826,"15.4":0.00275,"15.5":0.00826,"15.6":0.04403,"16.0":0.00826,"16.1":0.02752,"16.2":0.05779,"16.3":0.00275},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00297,"6.0-6.1":0.00397,"7.0-7.1":0.0585,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03867,"10.0-10.2":0.00099,"10.3":0.11997,"11.0-11.2":0,"11.3-11.4":0.00198,"12.0-12.1":0.02181,"12.2-12.5":0.97065,"13.0-13.1":0.02479,"13.2":0.01487,"13.3":0.0694,"13.4-13.7":0.16855,"14.0-14.4":0.32223,"14.5-14.8":0.52746,"15.0-15.1":0.25183,"15.2-15.3":0.25084,"15.4":0.43327,"15.5":0.4531,"15.6":0.73567,"16.0":1.10747,"16.1":1.94625,"16.2":1.41086,"16.3":0.12889},P:{"4":0.06198,"5.0-5.4":0,"6.2-6.4":0.2376,"7.2-7.4":0.02066,"8.2":0,"9.2":0.01033,"10.1":0,"11.1-11.2":0.01033,"12.0":0,"13.0":0,"14.0":0,"15.0":0.06198,"16.0":0.02066,"17.0":0.03099,"18.0":0.06198,"19.0":0.38223},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.00423,"4.4":0,"4.4.3-4.4.4":0.05146},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},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07248},Q:{"13.1":0.02174},O:{"0":0.59434},H:{"0":5.21507},L:{"0":75.77762},S:{"2.5":0.07973}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00265,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0053,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0053,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00265,"94":0,"95":0,"96":0.00265,"97":0,"98":0,"99":0,"100":0.00265,"101":0,"102":0.01324,"103":0.00265,"104":0.00265,"105":0.00265,"106":0.00265,"107":0.00794,"108":0.01854,"109":0.20919,"110":0.14299,"111":0.0053,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00265,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00265,"36":0,"37":0,"38":0.00265,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00265,"45":0,"46":0,"47":0.00265,"48":0,"49":0,"50":0.00265,"51":0,"52":0,"53":0,"54":0,"55":0.00265,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.02118,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01324,"71":0.00265,"72":0,"73":0,"74":0.05296,"75":0.00265,"76":0.00265,"77":0.00794,"78":0.02118,"79":0.00265,"80":0.01059,"81":0.01324,"83":0,"84":0.0053,"85":0.00265,"86":0.01324,"87":0.01324,"88":0.01324,"89":0.0053,"90":0.00265,"91":0.0053,"92":0.00265,"93":0.00265,"94":0.01324,"95":0.01324,"96":0.0053,"97":0.00265,"98":0.02648,"99":0.02383,"100":0.00794,"101":0.0053,"102":0.00794,"103":0.01854,"104":0.02118,"105":0.01854,"106":0.01854,"107":0.03707,"108":0.09003,"109":2.0575,"110":1.10422,"111":0.01059,"112":0.02648,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00265,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00265,"34":0,"35":0,"36":0,"37":0.0053,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01059,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00265,"56":0,"57":0.0053,"58":0.00265,"60":0.02913,"62":0,"63":0.16418,"64":0.01059,"65":0.0053,"66":0.04237,"67":0.1324,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00265,"75":0,"76":0,"77":0,"78":0,"79":0.0053,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01589,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00265,"92":0,"93":0,"94":0.06885,"95":0.08209,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0053},B:{"12":0.00265,"13":0,"14":0,"15":0.04766,"16":0,"17":0,"18":0.0053,"79":0,"80":0,"81":0,"83":0,"84":0.00265,"85":0.00265,"86":0,"87":0,"88":0,"89":0.00265,"90":0,"91":0,"92":0.00794,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00794,"100":0.00265,"101":0,"102":0,"103":0,"104":0.00265,"105":0.00265,"106":0.00265,"107":0.01059,"108":0.01589,"109":0.2039,"110":0.20125},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0053,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0053,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00265,"14.1":0.00265,"15.1":0.00265,"15.2-15.3":0.0053,"15.4":0,"15.5":0.00794,"15.6":0.04766,"16.0":0.02118,"16.1":0.01589,"16.2":0.05561,"16.3":0.04502,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00594,"5.0-5.1":0.00297,"6.0-6.1":0,"7.0-7.1":0.00792,"8.1-8.4":0.00297,"9.0-9.2":0,"9.3":0.04853,"10.0-10.2":0,"10.3":0.12084,"11.0-11.2":0,"11.3-11.4":0.00198,"12.0-12.1":0.01486,"12.2-12.5":0.99249,"13.0-13.1":0.05151,"13.2":0.0109,"13.3":0.07825,"13.4-13.7":0.05646,"14.0-14.4":0.36649,"14.5-14.8":0.82212,"15.0-15.1":0.21197,"15.2-15.3":0.25951,"15.4":0.28824,"15.5":0.4596,"15.6":0.56063,"16.0":0.87858,"16.1":1.57689,"16.2":1.40949,"16.3":0.90235,"16.4":0.00693},P:{"4":0.06186,"20":0.05155,"5.0-5.4":0,"6.2-6.4":0.38146,"7.2-7.4":0.01031,"8.2":0,"9.2":0.02062,"10.1":0.01031,"11.1-11.2":0.01031,"12.0":0.01031,"13.0":0,"14.0":0,"15.0":0.07217,"16.0":0.01031,"17.0":0.03093,"18.0":0.03093,"19.0":0.19588},I:{"0":0,"3":0,"4":0.00092,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00092,"4.2-4.3":0.00828,"4.4":0,"4.4.3-4.4.4":0.11312},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0053,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.07352,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.55875},H:{"0":4.94884},L:{"0":76.50999},R:{_:"0"},M:{"0":0.08822},Q:{"13.1":0.02206}}; 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 d92c86f273115e..bf0931a05e17bf 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.00326,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00652,"107":0,"108":0.04889,"109":0.01955,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00326,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00326,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00326,"78":0,"79":0,"80":0.00326,"81":0,"83":0.00326,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00652,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01304,"104":0,"105":0.00652,"106":0.00652,"107":0.0554,"108":1.00703,"109":0.87015,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0163,"94":0.0163,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00326,"16":0,"17":0,"18":0.00326,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00326,"98":0.00326,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00326,"107":0.0163,"108":0.31286,"109":0.28353},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01304,"15":0.00326,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00326,"13.1":0.06844,"14.1":0.1271,"15.1":0.02281,"15.2-15.3":0.03259,"15.4":0.13362,"15.5":0.3259,"15.6":3.45454,"16.0":0.17273,"16.1":0.78216,"16.2":2.12487,"16.3":0.14666},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.2413,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01787,"12.2-12.5":0.20555,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.02681,"14.0-14.4":0.01787,"14.5-14.8":0.20555,"15.0-15.1":0.17874,"15.2-15.3":0.42004,"15.4":0.73284,"15.5":3.01179,"15.6":14.08479,"16.0":9.75032,"16.1":33.55863,"16.2":20.85908,"16.3":1.47461},P:{"4":0.02094,"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.01047,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01047,"18.0":0.01047,"19.0":0.83747},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09451},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00978,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.03371},Q:{"13.1":0},O:{"0":0.02022},H:{"0":0},L:{"0":3.47552},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00308,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.04,"110":0.01846,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00308,"77":0.00308,"78":0,"79":0,"80":0,"81":0,"83":0.00308,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00308,"97":0,"98":0,"99":0,"100":0.00308,"101":0,"102":0,"103":0.00923,"104":0,"105":0.00308,"106":0.00308,"107":0.02154,"108":0.09846,"109":1.04926,"110":0.58463,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.03385,"95":0.00615,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00615,"108":0.00615,"109":0.17539,"110":0.31078},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00308,"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.00308,"13.1":0.11385,"14.1":0.08616,"15.1":0.02154,"15.2-15.3":0.04308,"15.4":0.11077,"15.5":0.24308,"15.6":1.79389,"16.0":0.08,"16.1":0.40616,"16.2":1.9939,"16.3":1.79697,"16.4":0.00615},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00904,"10.0-10.2":0,"10.3":0.00904,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00904,"12.2-12.5":0.15365,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01808,"14.0-14.4":0.02711,"14.5-14.8":0.10846,"15.0-15.1":0.16268,"15.2-15.3":0.39767,"15.4":0.65073,"15.5":2.36794,"15.6":10.70998,"16.0":8.57702,"16.1":24.08615,"16.2":25.39666,"16.3":13.76481,"16.4":0.06327},P:{"4":0.0629,"20":0.22015,"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.01048,"14.0":0,"15.0":0.01048,"16.0":0,"17.0":0,"18.0":0,"19.0":0.42982},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08616},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00308,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":3.10076},R:{_:"0"},M:{"0":0.04154},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js index f9428e78252711..a7506a33b9a5c5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00426,"45":0,"46":0,"47":0,"48":0.00426,"49":0,"50":0,"51":0,"52":0.00852,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00426,"71":0,"72":0.00426,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00852,"79":0,"80":0,"81":0,"82":0.00426,"83":0,"84":0.00426,"85":0,"86":0,"87":0,"88":0.00426,"89":0.00426,"90":0,"91":0,"92":0,"93":0.00426,"94":0,"95":0.00426,"96":0,"97":0,"98":0,"99":0.00426,"100":0,"101":0,"102":0.00426,"103":0,"104":0.01279,"105":0,"106":0.01279,"107":0.02131,"108":0.64782,"109":0.31113,"110":0.00852,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00426,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.02131,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.02557,"48":0,"49":0.08098,"50":0.00426,"51":0,"52":0,"53":0.00426,"54":0,"55":0.00852,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.01705,"63":0.00426,"64":0,"65":0.01279,"66":0,"67":0,"68":0.00426,"69":0.00426,"70":0.00426,"71":0.01279,"72":0.00426,"73":0.00426,"74":0,"75":0.00426,"76":0,"77":0,"78":0.00426,"79":0.0895,"80":0.00426,"81":0.00852,"83":0.00426,"84":0.00426,"85":0.00852,"86":0,"87":0.02983,"88":0.00852,"89":0.00426,"90":0,"91":0.01279,"92":0.05114,"93":0.00426,"94":0.00852,"95":0.01279,"96":0.00426,"97":0.01705,"98":0.01279,"99":0.00426,"100":0.01279,"101":0.00426,"102":0.01279,"103":0.0895,"104":0.01705,"105":0.02557,"106":0.02131,"107":0.08098,"108":6.08187,"109":5.1144,"110":0.01279,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01705,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01279,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00426,"56":0,"57":0,"58":0.00426,"60":0.01279,"62":0,"63":0.00852,"64":0.00852,"65":0.00852,"66":0.00426,"67":0.02131,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01705,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.23015,"94":0.20031,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00852,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00426,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00426,"103":0.00426,"104":0.00426,"105":0,"106":0,"107":0.01279,"108":0.68192,"109":0.55406},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00426,"13":0.01705,"14":0.05967,"15":0.01279,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01705,"13.1":0.05114,"14.1":0.10229,"15.1":0.0341,"15.2-15.3":0.02131,"15.4":0.06819,"15.5":0.08524,"15.6":0.72454,"16.0":0.10229,"16.1":0.27703,"16.2":0.41768,"16.3":0.02557},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.11998,"8.1-8.4":0.03574,"9.0-9.2":0.03063,"9.3":0.24506,"10.0-10.2":0,"10.3":0.42119,"11.0-11.2":0.01276,"11.3-11.4":0.00766,"12.0-12.1":0.08424,"12.2-12.5":0.7709,"13.0-13.1":0.01532,"13.2":0.03574,"13.3":0.02042,"13.4-13.7":0.10466,"14.0-14.4":0.16337,"14.5-14.8":0.56669,"15.0-15.1":0.27058,"15.2-15.3":0.22208,"15.4":0.43395,"15.5":0.48501,"15.6":2.09063,"16.0":4.40845,"16.1":7.52525,"16.2":5.02619,"16.3":0.32164},P:{"4":0.44605,"5.0-5.4":0.02124,"6.2-6.4":0,"7.2-7.4":0.0531,"8.2":0,"9.2":0,"10.1":0.02124,"11.1-11.2":0.04248,"12.0":0,"13.0":0.04248,"14.0":0.01062,"15.0":0.01062,"16.0":0.0531,"17.0":0.0531,"18.0":0.0531,"19.0":1.61429},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01557,"4.4":0,"4.4.3-4.4.4":0.03426},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01279,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.24673},Q:{"13.1":0},O:{"0":1.66402},H:{"0":1.98825},L:{"0":50.28847},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0.00451,"4":0.00451,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00451,"39":0.00451,"40":0.00451,"41":0.00451,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00451,"49":0,"50":0,"51":0,"52":0.00902,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00451,"66":0,"67":0,"68":0.00451,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00451,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00451,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00451,"96":0,"97":0,"98":0,"99":0.00451,"100":0.01352,"101":0.00451,"102":0,"103":0.00451,"104":0.00902,"105":0.00451,"106":0.01803,"107":0.00451,"108":0.02254,"109":0.60858,"110":0.3967,"111":0.00902,"112":0,"3.5":0,"3.6":0.00451},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00451,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00451,"32":0,"33":0,"34":0,"35":0,"36":0.00451,"37":0.00451,"38":0.03156,"39":0.00451,"40":0.00451,"41":0.00902,"42":0.00451,"43":0.01352,"44":0.01803,"45":0.01352,"46":0.00902,"47":0.02254,"48":0,"49":0.24794,"50":0.00451,"51":0.01352,"52":0,"53":0,"54":0,"55":0.00902,"56":0,"57":0,"58":0,"59":0,"60":0.00451,"61":0,"62":0.00902,"63":0,"64":0,"65":0.00451,"66":0,"67":0,"68":0.01352,"69":0.00451,"70":0.00451,"71":0.01803,"72":0,"73":0.01352,"74":0.00451,"75":0.00451,"76":0,"77":0,"78":0,"79":0.08565,"80":0,"81":0.00451,"83":0.00902,"84":0,"85":0.00902,"86":0,"87":0.01803,"88":0.01803,"89":0.00451,"90":0,"91":0.01352,"92":0.04508,"93":0,"94":0.00451,"95":0.01352,"96":0.00902,"97":0.02254,"98":0.01803,"99":0.00451,"100":0.00902,"101":0.00902,"102":0.00902,"103":0.1127,"104":0.00902,"105":0.00902,"106":0.01803,"107":0.03156,"108":0.22991,"109":7.40664,"110":4.40882,"111":0.00902,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00902,"29":0,"30":0.00451,"31":0.00451,"32":0.00451,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01803,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00451,"55":0.01803,"56":0,"57":0,"58":0,"60":0.00451,"62":0,"63":0.00451,"64":0.02705,"65":0.00451,"66":0.00451,"67":0.29302,"68":0,"69":0,"70":0.00451,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02705,"94":0.27499,"95":0.13975,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00451},B:{"12":0.00451,"13":0,"14":0.00451,"15":0,"16":0,"17":0.00451,"18":0.00451,"79":0,"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.00451,"103":0.00451,"104":0,"105":0,"106":0.00451,"107":0.00451,"108":0.07664,"109":0.64464,"110":0.72128},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00451,"9":0.01803,"10":0,"11":0,"12":0,"13":0.02254,"14":0.08114,"15":0.00902,_:"0","3.1":0,"3.2":0,"5.1":0.00451,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02705,"13.1":0.0541,"14.1":0.34712,"15.1":0.04057,"15.2-15.3":0.02254,"15.4":0.04508,"15.5":0.06311,"15.6":0.52293,"16.0":0.0541,"16.1":0.17581,"16.2":0.47785,"16.3":0.37416,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0024,"5.0-5.1":0.0048,"6.0-6.1":0.0072,"7.0-7.1":0.10798,"8.1-8.4":0.14878,"9.0-9.2":0.0264,"9.3":0.22317,"10.0-10.2":0,"10.3":0.47753,"11.0-11.2":0.10079,"11.3-11.4":0.0024,"12.0-12.1":0.15838,"12.2-12.5":0.6887,"13.0-13.1":0.0216,"13.2":0.0312,"13.3":0.0192,"13.4-13.7":0.04799,"14.0-14.4":0.24237,"14.5-14.8":0.37915,"15.0-15.1":0.19197,"15.2-15.3":0.23277,"15.4":0.29516,"15.5":0.46553,"15.6":1.53818,"16.0":3.14595,"16.1":4.97689,"16.2":5.04408,"16.3":3.57549,"16.4":0.0048},P:{"4":0.4746,"20":0.66443,"5.0-5.4":0,"6.2-6.4":0.02109,"7.2-7.4":0.08437,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02109,"12.0":0.01055,"13.0":0.05273,"14.0":0,"15.0":0.01055,"16.0":0.03164,"17.0":0.06328,"18.0":0.04219,"19.0":0.90701},I:{"0":0,"3":0.00557,"4":0.04459,"2.1":0.00557,"2.2":0.02508,"2.3":0.03344,"4.1":0.0418,"4.2-4.3":0.06967,"4.4":0,"4.4.3-4.4.4":0.16721},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00451,"7":0.00902,"8":0.08565,"9":0.02254,"10":0.01803,"11":0.04959,"5.5":0},N:{"10":0.02563,"11":0.01281},S:{"2.5":0.00549,_:"3.0-3.1"},J:{"7":0,"10":0.01098},O:{"0":1.63112},H:{"0":2.06939},L:{"0":49.01767},R:{_:"0"},M:{"0":0.19222},Q:{"13.1":0.00549}}; 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 2d051fcffbc492..903528f9dbe09d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00365,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01094,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00365,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00365,"69":0,"70":0,"71":0,"72":0.00365,"73":0.00365,"74":0,"75":0.00365,"76":0,"77":0,"78":0.00365,"79":0,"80":0,"81":0,"82":0,"83":0.00365,"84":0,"85":0,"86":0,"87":0,"88":0.00729,"89":0.00365,"90":0,"91":0.00365,"92":0,"93":0,"94":0.00365,"95":0,"96":0,"97":0,"98":0.00365,"99":0.00729,"100":0.01094,"101":0.00365,"102":0.01094,"103":0.00365,"104":0.00729,"105":0.00365,"106":0.00729,"107":0.01458,"108":0.50666,"109":0.2916,"110":0.00365,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00365,"39":0,"40":0,"41":0,"42":0.00365,"43":0.00365,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01094,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00365,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01458,"69":0,"70":0.00729,"71":0.00365,"72":0.00365,"73":0.00365,"74":0.00365,"75":0.00365,"76":0.00365,"77":0,"78":0.00365,"79":0.04739,"80":0.00729,"81":0.00729,"83":0.00729,"84":0.02916,"85":0.01458,"86":0.01458,"87":0.01823,"88":0.00729,"89":0.01094,"90":0.00365,"91":0.08019,"92":0.01458,"93":0.00365,"94":0.05832,"95":0.00729,"96":0.01094,"97":0.02552,"98":0.01458,"99":0.00729,"100":0.01823,"101":0.01094,"102":0.01458,"103":0.05103,"104":0.02552,"105":0.02552,"106":0.03645,"107":0.113,"108":4.39952,"109":4.75673,"110":0,"111":0.00365,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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,"62":0,"63":0.00365,"64":0,"65":0,"66":0,"67":0.00365,"68":0,"69":0,"70":0,"71":0,"72":0.00365,"73":0.00729,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00365,"80":0,"81":0.00365,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00365,"93":0.30983,"94":0.35721,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00365,"17":0,"18":0.01094,"79":0,"80":0,"81":0,"83":0,"84":0.00365,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00365,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00365,"104":0,"105":0.01094,"106":0.00365,"107":0.01094,"108":0.30618,"109":0.32076},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00365,"15":0.00365,_:"0","3.1":0,"3.2":0,"5.1":0.00365,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01094,"14.1":0.02187,"15.1":0,"15.2-15.3":0,"15.4":0.00365,"15.5":0.02187,"15.6":0.0401,"16.0":0.00365,"16.1":0.01823,"16.2":0.04374,"16.3":0.00365},G:{"8":0,"3.2":0.00109,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00382,"6.0-6.1":0,"7.0-7.1":0.01201,"8.1-8.4":0.00655,"9.0-9.2":0.00655,"9.3":0.01146,"10.0-10.2":0.00109,"10.3":0.00819,"11.0-11.2":0.00928,"11.3-11.4":0.00327,"12.0-12.1":0.00273,"12.2-12.5":0.16156,"13.0-13.1":0.00218,"13.2":0.00273,"13.3":0.006,"13.4-13.7":0.04366,"14.0-14.4":0.06823,"14.5-14.8":0.13099,"15.0-15.1":0.04039,"15.2-15.3":0.05676,"15.4":0.04639,"15.5":0.14682,"15.6":0.50324,"16.0":0.79961,"16.1":1.62707,"16.2":1.2319,"16.3":0.09443},P:{"4":0.4176,"5.0-5.4":0.01019,"6.2-6.4":0.02037,"7.2-7.4":0.42779,"8.2":0,"9.2":0.02037,"10.1":0,"11.1-11.2":0.08148,"12.0":0.03056,"13.0":0.0713,"14.0":0.05093,"15.0":0.05093,"16.0":0.16297,"17.0":0.20371,"18.0":0.16297,"19.0":1.98616},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00264,"4.2-4.3":0.01583,"4.4":0,"4.4.3-4.4.4":0.13985},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01823,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.1843},Q:{"13.1":0},O:{"0":0.23514},H:{"0":0.4392},L:{"0":75.4193},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01578,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00395,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00395,"69":0,"70":0,"71":0,"72":0.00789,"73":0.00395,"74":0,"75":0.00395,"76":0,"77":0.00395,"78":0.00395,"79":0.00395,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00395,"89":0,"90":0,"91":0.00395,"92":0,"93":0.00395,"94":0.00395,"95":0.00395,"96":0,"97":0,"98":0.00395,"99":0.00789,"100":0.00395,"101":0.00395,"102":0.01578,"103":0.00395,"104":0.01184,"105":0.00395,"106":0.01973,"107":0.00789,"108":0.02762,"109":0.5523,"110":0.33927,"111":0.00395,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00789,"39":0,"40":0,"41":0,"42":0,"43":0.00395,"44":0.00395,"45":0.00395,"46":0,"47":0.00395,"48":0,"49":0.00789,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00395,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01184,"69":0.00395,"70":0.00789,"71":0,"72":0.00395,"73":0,"74":0.00395,"75":0.00395,"76":0.00395,"77":0,"78":0.00789,"79":0.05918,"80":0.01184,"81":0.00789,"83":0.00789,"84":0.01184,"85":0.01578,"86":0.00789,"87":0.02762,"88":0.00789,"89":0.00789,"90":0.00395,"91":0.5168,"92":0.01973,"93":0.00395,"94":0.00789,"95":0.00789,"96":0.01578,"97":0.01578,"98":0.01184,"99":0.00789,"100":0.01973,"101":0.01578,"102":0.01578,"103":0.05129,"104":0.02762,"105":0.02367,"106":0.02762,"107":0.05918,"108":0.32744,"109":6.65522,"110":3.54656,"111":0.00395,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00789,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.03551,"68":0,"69":0,"70":0,"71":0,"72":0.00395,"73":0,"74":0.00789,"75":0,"76":0,"77":0,"78":0,"79":0.00395,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.05129,"94":0.41817,"95":0.19725,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00395,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01184,"79":0,"80":0,"81":0,"83":0,"84":0.00395,"85":0,"86":0.00395,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00395,"93":0,"94":0,"95":0,"96":0.00395,"97":0,"98":0,"99":0,"100":0,"101":0.00395,"102":0,"103":0.00395,"104":0,"105":0.00789,"106":0.00395,"107":0.00789,"108":0.00789,"109":0.3156,"110":0.41817},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00395,"10":0,"11":0,"12":0,"13":0,"14":0.00395,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00395,"6.1":0,"7.1":0,"9.1":0.00395,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00789,"14.1":0.01973,"15.1":0.00395,"15.2-15.3":0.00395,"15.4":0.00395,"15.5":0.01973,"15.6":0.03156,"16.0":0.00395,"16.1":0.01578,"16.2":0.0434,"16.3":0.05129,"16.4":0},G:{"8":0.00054,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00054,"5.0-5.1":0.00434,"6.0-6.1":0.01138,"7.0-7.1":0.01626,"8.1-8.4":0.01301,"9.0-9.2":0.00542,"9.3":0.0271,"10.0-10.2":0.00108,"10.3":0.0103,"11.0-11.2":0.0168,"11.3-11.4":0.00759,"12.0-12.1":0.00542,"12.2-12.5":0.17671,"13.0-13.1":0.00163,"13.2":0.00108,"13.3":0.00434,"13.4-13.7":0.02927,"14.0-14.4":0.06179,"14.5-14.8":0.13226,"15.0-15.1":0.02222,"15.2-15.3":0.10245,"15.4":0.04607,"15.5":0.12467,"15.6":0.37238,"16.0":0.61901,"16.1":1.17569,"16.2":1.23748,"16.3":0.76374,"16.4":0.00163},P:{"4":0.32715,"20":0.64408,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.39871,"8.2":0.01022,"9.2":0.02045,"10.1":0,"11.1-11.2":0.09201,"12.0":0.02045,"13.0":0.07156,"14.0":0.05112,"15.0":0.06134,"16.0":0.12268,"17.0":0.14313,"18.0":0.1329,"19.0":1.34949},I:{"0":0,"3":0,"4":0.00636,"2.1":0,"2.2":0,"2.3":0.00318,"4.1":0.00636,"4.2-4.3":0.01907,"4.4":0,"4.4.3-4.4.4":0.20026},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01282,"9":0.00427,"10":0.00427,"11":0.02992,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.21193},H:{"0":0.38981},L:{"0":73.58031},R:{_:"0"},M:{"0":0.15743},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js index ebbb85ae07bd36..e95e38c979b021 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00433,"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.00433,"69":0,"70":0,"71":0,"72":0.00433,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00866,"79":0.00433,"80":0.00433,"81":0.00433,"82":0.00433,"83":0.00433,"84":0,"85":0,"86":0,"87":0.00433,"88":0.00433,"89":0,"90":0,"91":0.00866,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00433,"100":0.00433,"101":0,"102":0.02598,"103":0.00433,"104":0.00433,"105":0.00433,"106":0.00866,"107":0.01299,"108":0.42434,"109":0.25547,"110":0.00433,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00433,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00866,"50":0,"51":0.00433,"52":0,"53":0,"54":0,"55":0.00433,"56":0,"57":0,"58":0,"59":0,"60":0.00433,"61":0,"62":0,"63":0.00433,"64":0,"65":0.00433,"66":0,"67":0,"68":0.00433,"69":0.00433,"70":0.00433,"71":0.00433,"72":0.00866,"73":0.00433,"74":0.01299,"75":0.00866,"76":0.00433,"77":0.00866,"78":0.00866,"79":0.05629,"80":0.01299,"81":0.00866,"83":0.01732,"84":0.03031,"85":0.05196,"86":0.03464,"87":0.03897,"88":0.01299,"89":0.01299,"90":0.05196,"91":0.27279,"92":0.04763,"93":0.0433,"94":0.0433,"95":0.00866,"96":0.00866,"97":0.00866,"98":0.00866,"99":0.00866,"100":0.02165,"101":0.00866,"102":0.01732,"103":0.04763,"104":0.02598,"105":0.03464,"106":0.0433,"107":0.11258,"108":5.87581,"109":5.96241,"110":0.01299,"111":0.00433,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00433,"71":0.00433,"72":0,"73":0.00433,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00433,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00433,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00433,"93":1.44189,"94":0.91363,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.03897,"16":0,"17":0,"18":0.00866,"79":0,"80":0.00433,"81":0.00433,"83":0.00433,"84":0.00433,"85":0.00433,"86":0.00433,"87":0,"88":0,"89":0.00433,"90":0.00433,"91":0,"92":0.00866,"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.00433,"107":0.05629,"108":0.74909,"109":0.83136},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00866,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.03464,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01299,"14.1":0.01732,"15.1":0.00433,"15.2-15.3":0.00433,"15.4":0.00866,"15.5":0.01299,"15.6":0.06062,"16.0":0.01299,"16.1":0.03897,"16.2":0.06495,"16.3":0.00433},G:{"8":0.0015,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.0045,"9.3":0.03302,"10.0-10.2":0.0075,"10.3":0.03752,"11.0-11.2":0.03002,"11.3-11.4":0.05253,"12.0-12.1":0.03452,"12.2-12.5":0.26565,"13.0-13.1":0.01351,"13.2":0.00901,"13.3":0.02401,"13.4-13.7":0.09606,"14.0-14.4":0.1741,"14.5-14.8":0.45626,"15.0-15.1":0.07654,"15.2-15.3":0.10356,"15.4":0.15609,"15.5":0.36771,"15.6":1.58942,"16.0":2.20327,"16.1":4.63018,"16.2":3.04076,"16.3":0.26115},P:{"4":0.14225,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.19305,"8.2":0,"9.2":0.01016,"10.1":0,"11.1-11.2":0.03048,"12.0":0.01016,"13.0":0.02032,"14.0":0.02032,"15.0":0.02032,"16.0":0.03048,"17.0":0.10161,"18.0":0.08129,"19.0":1.87972},I:{"0":0,"3":0,"4":0.01015,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00508,"4.2-4.3":0.02538,"4.4":0,"4.4.3-4.4.4":0.07105},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00469,"9":0.00938,"10":0,"11":0.04222,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14742},Q:{"13.1":0},O:{"0":0.07371},H:{"0":0.19862},L:{"0":62.17408},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00409,"48":0,"49":0,"50":0,"51":0,"52":0.00819,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00409,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00819,"79":0.00409,"80":0.00409,"81":0.00409,"82":0.00409,"83":0.00409,"84":0,"85":0,"86":0,"87":0.00409,"88":0.00409,"89":0,"90":0,"91":0.00409,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00409,"100":0,"101":0,"102":0.02866,"103":0.00409,"104":0.00819,"105":0.00409,"106":0.00819,"107":0.00819,"108":0.02047,"109":0.39712,"110":0.25383,"111":0.00409,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"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.00409,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00409,"48":0,"49":0.00819,"50":0,"51":0.00409,"52":0,"53":0,"54":0,"55":0.00409,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00409,"64":0,"65":0.00409,"66":0,"67":0,"68":0.00409,"69":0.00409,"70":0.00409,"71":0.00409,"72":0.00409,"73":0.00409,"74":0.00819,"75":0.00819,"76":0.00819,"77":0.00409,"78":0.00819,"79":0.05322,"80":0.00819,"81":0.02047,"83":0.01638,"84":0.02456,"85":0.03685,"86":0.03275,"87":0.03685,"88":0.00819,"89":0.01228,"90":0.04094,"91":0.2702,"92":0.03275,"93":0.03275,"94":0.03275,"95":0.00409,"96":0.00819,"97":0.00819,"98":0.00819,"99":0.00819,"100":0.01638,"101":0.00819,"102":0.01228,"103":0.04094,"104":0.01638,"105":0.02866,"106":0.02866,"107":0.05322,"108":0.2047,"109":6.37436,"110":4.11038,"111":0.01228,"112":0.00409,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00409,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00819,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00409,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00409,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.17604,"94":1.42062,"95":0.37255,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00409,"13":0,"14":0,"15":0.02866,"16":0,"17":0,"18":0.00819,"79":0,"80":0,"81":0,"83":0.00409,"84":0.00409,"85":0.00409,"86":0.00409,"87":0,"88":0,"89":0.00409,"90":0,"91":0,"92":0.00409,"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.02866,"108":0.01638,"109":0.58135,"110":0.8188},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00819,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.02047,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01228,"14.1":0.01638,"15.1":0.00409,"15.2-15.3":0.00409,"15.4":0.00409,"15.5":0.00819,"15.6":0.04503,"16.0":0.00819,"16.1":0.02456,"16.2":0.04913,"16.3":0.04913,"16.4":0},G:{"8":0.0015,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0015,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.003,"9.3":0.03148,"10.0-10.2":0.003,"10.3":0.04497,"11.0-11.2":0.02249,"11.3-11.4":0.02998,"12.0-12.1":0.01949,"12.2-12.5":0.21587,"13.0-13.1":0.0075,"13.2":0.006,"13.3":0.01799,"13.4-13.7":0.07945,"14.0-14.4":0.15291,"14.5-14.8":0.37777,"15.0-15.1":0.06596,"15.2-15.3":0.09294,"15.4":0.13192,"15.5":0.28933,"15.6":1.1558,"16.0":1.69997,"16.1":3.4824,"16.2":3.58584,"16.3":2.08524,"16.4":0.01199},P:{"4":0.1429,"20":0.88804,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.18373,"8.2":0,"9.2":0.01021,"10.1":0,"11.1-11.2":0.03062,"12.0":0.01021,"13.0":0.03062,"14.0":0.02041,"15.0":0.01021,"16.0":0.03062,"17.0":0.10207,"18.0":0.06124,"19.0":1.18405},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01645,"4.2-4.3":0.02467,"4.4":0,"4.4.3-4.4.4":0.05345},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00441,"9":0.00882,"10":0,"11":0.04409,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.07678},H:{"0":0.21807},L:{"0":64.09088},R:{_:"0"},M:{"0":0.15946},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js index 804315f3bccaa8..de6af3ef69c2a6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.02226,"49":0,"50":0,"51":0,"52":0.00445,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00445,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03562,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01781,"103":0,"104":0,"105":0,"106":0.00445,"107":0.00445,"108":0.37397,"109":0.20479,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0089,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00445,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00445,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00445,"72":0,"73":0,"74":0,"75":0.00445,"76":0.09349,"77":0.00445,"78":0,"79":0,"80":0,"81":0.00445,"83":0.01336,"84":0,"85":0,"86":0.00445,"87":0.0089,"88":0.00445,"89":0.00445,"90":0.01336,"91":0.01336,"92":0,"93":0.04452,"94":0.0089,"95":0.00445,"96":0.00445,"97":0.01336,"98":0.00445,"99":0.00445,"100":0.0089,"101":0.00445,"102":0.01781,"103":0.18253,"104":0.00445,"105":0.08904,"106":0.04897,"107":0.1113,"108":4.48762,"109":3.68626,"110":0.0089,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0089,"90":0,"91":0,"92":0,"93":0.06233,"94":0.07568,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00445,"13":0.00445,"14":0,"15":0.00445,"16":0.00445,"17":0.0089,"18":0.0089,"79":0,"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.00445,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00445,"103":0.00445,"104":0.00445,"105":0.0089,"106":0.00445,"107":0.10685,"108":1.82977,"109":1.70066},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00445,"14":0.03562,"15":0.01336,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02671,"13.1":0.1024,"14.1":0.17808,"15.1":0.04007,"15.2-15.3":0.05342,"15.4":0.09349,"15.5":0.19589,"15.6":1.24211,"16.0":0.1202,"16.1":0.45856,"16.2":0.97499,"16.3":0.05342},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00447,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00447,"9.3":0.1074,"10.0-10.2":0,"10.3":0.1074,"11.0-11.2":0.00895,"11.3-11.4":0.02685,"12.0-12.1":0.0179,"12.2-12.5":0.53698,"13.0-13.1":0.00447,"13.2":0,"13.3":0.02685,"13.4-13.7":0.0716,"14.0-14.4":0.35351,"14.5-14.8":0.79652,"15.0-15.1":0.27296,"15.2-15.3":0.54593,"15.4":0.72492,"15.5":1.2798,"15.6":6.80172,"16.0":5.11471,"16.1":15.85874,"16.2":9.0794,"16.3":0.63095},P:{"4":0.01041,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21852,"8.2":0,"9.2":0.02081,"10.1":0,"11.1-11.2":0.04162,"12.0":0.01041,"13.0":0.08325,"14.0":0.08325,"15.0":0.02081,"16.0":0.08325,"17.0":0.05203,"18.0":0.28095,"19.0":3.694},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.51972},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03562,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11096},Q:{"13.1":0},O:{"0":0.01664},H:{"0":0.05252},L:{"0":32.8031},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00465,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.02789,"49":0,"50":0,"51":0,"52":0.00465,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00465,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03719,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02325,"103":0,"104":0,"105":0,"106":0.00465,"107":0.00465,"108":0.06974,"109":0.46955,"110":0.2185,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00465,"44":0.00465,"45":0,"46":0.00465,"47":0,"48":0,"49":0.00465,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00465,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00465,"72":0,"73":0,"74":0,"75":0.0093,"76":0.06974,"77":0.00465,"78":0,"79":0.00465,"80":0.00465,"81":0,"83":0.0093,"84":0.00465,"85":0.00465,"86":0,"87":0.0093,"88":0.00465,"89":0.00465,"90":0.0093,"91":0.0093,"92":0,"93":0.05114,"94":0.01395,"95":0.00465,"96":0.00465,"97":0.0186,"98":0.0093,"99":0,"100":0.0093,"101":0.00465,"102":0.03719,"103":0.13947,"104":0.00465,"105":0.07438,"106":0.02325,"107":0.05114,"108":0.49744,"109":5.43468,"110":3.22641,"111":0.00465,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00465,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0093,"90":0,"91":0,"92":0,"93":0.01395,"94":0.06974,"95":0.04184,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00465,"13":0,"14":0,"15":0.0093,"16":0.0093,"17":0.0093,"18":0.0093,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00465,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00465,"104":0,"105":0.01395,"106":0,"107":0.06044,"108":0.07903,"109":1.63645,"110":2.03626},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00465,"10":0,"11":0,"12":0,"13":0.00465,"14":0.04649,"15":0.01395,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03254,"13.1":0.16272,"14.1":0.18596,"15.1":0.04184,"15.2-15.3":0.06509,"15.4":0.08833,"15.5":0.24175,"15.6":0.99024,"16.0":0.07903,"16.1":0.26499,"16.2":1.10646,"16.3":0.58113,"16.4":0.00465},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00417,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.02083,"9.0-9.2":0,"9.3":0.12082,"10.0-10.2":0,"10.3":0.11249,"11.0-11.2":0.02916,"11.3-11.4":0.02916,"12.0-12.1":0.03333,"12.2-12.5":0.53329,"13.0-13.1":0.01667,"13.2":0,"13.3":0.02083,"13.4-13.7":0.04583,"14.0-14.4":0.36664,"14.5-14.8":0.83744,"15.0-15.1":0.20415,"15.2-15.3":0.4208,"15.4":0.62912,"15.5":0.96659,"15.6":4.50799,"16.0":3.83304,"16.1":11.36164,"16.2":10.5992,"16.3":4.89546,"16.4":0.01667},P:{"4":0.03098,"20":1.43535,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.24783,"8.2":0,"9.2":0.02065,"10.1":0,"11.1-11.2":0.05163,"12.0":0.01033,"13.0":0.06196,"14.0":0.08261,"15.0":0.02065,"16.0":0.09294,"17.0":0.04131,"18.0":0.14457,"19.0":2.61255},I:{"0":0,"3":0,"4":0.03422,"2.1":0,"2.2":0.02053,"2.3":0.02053,"4.1":0.03422,"4.2-4.3":0.06844,"4.4":0,"4.4.3-4.4.4":0.34906},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0186,"9":0.00465,"10":0.00465,"11":0.04184,"5.5":0},N:{"10":0.0107,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00535},O:{"0":0.02676},H:{"0":0.07092},L:{"0":33.40748},R:{_:"0"},M:{"0":0.14983},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js index 3adf5b27cf1026..c1954232ea35e6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00218,"97":0,"98":0,"99":0,"100":0.00218,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00436,"108":0.07187,"109":0.03267,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00218,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00218,"67":0.00436,"68":0,"69":0.00218,"70":0,"71":0,"72":0,"73":0,"74":0.00436,"75":0.00218,"76":0,"77":0,"78":0,"79":0.00218,"80":0,"81":0.00436,"83":0,"84":0,"85":0,"86":0,"87":0.01089,"88":0,"89":0.00218,"90":0.00436,"91":0.00436,"92":0,"93":0.00218,"94":0,"95":0.00218,"96":0.00436,"97":0,"98":0,"99":0.00436,"100":0.01307,"101":0.00436,"102":0.00218,"103":0.0196,"104":0.01742,"105":0.02396,"106":0.00871,"107":0.07187,"108":1.99505,"109":1.38521,"110":0.00218,"111":0.00653,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00218,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.00436,"66":0.00653,"67":0.01089,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00871,"94":0.0392,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00218,"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.00436,"104":0.00436,"105":0.00218,"106":0.00218,"107":0.0196,"108":0.16771,"109":0.08276},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00436,"14":0.00653,"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.01525,"13.1":0.00436,"14.1":0.02396,"15.1":0.00218,"15.2-15.3":0.01307,"15.4":0.00653,"15.5":0.01089,"15.6":0.03267,"16.0":0.0196,"16.1":0.00871,"16.2":0.02178,"16.3":0.00218},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00455,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00911,"10.0-10.2":0,"10.3":0.00364,"11.0-11.2":0.00911,"11.3-11.4":0,"12.0-12.1":0.00911,"12.2-12.5":0.29684,"13.0-13.1":0.00273,"13.2":0.0428,"13.3":0.02276,"13.4-13.7":0.0601,"14.0-14.4":0.30867,"14.5-14.8":0.3369,"15.0-15.1":0.15206,"15.2-15.3":0.17756,"15.4":0.21762,"15.5":0.38516,"15.6":0.63465,"16.0":1.45322,"16.1":2.06511,"16.2":1.72912,"16.3":0.1211},P:{"4":0.29889,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11337,"8.2":0,"9.2":0.02061,"10.1":0.02061,"11.1-11.2":0.13399,"12.0":0,"13.0":0.03092,"14.0":0.04123,"15.0":0.03092,"16.0":0.1546,"17.0":0.03092,"18.0":0.13399,"19.0":0.65962},I:{"0":0,"3":0,"4":0,"2.1":0,"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.00218,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.01564},Q:{"13.1":0},O:{"0":2.62819},H:{"0":0.6887},L:{"0":81.42632},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00234,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00234,"38":0,"39":0,"40":0.00234,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00234,"93":0,"94":0,"95":0,"96":0.00468,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00234,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.08896,"110":0.0515,"111":0.00468,"112":0,"3.5":0,"3.6":0.00234},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00234,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00234,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00234,"39":0.00234,"40":0.00234,"41":0.00234,"42":0.00234,"43":0.01405,"44":0.00468,"45":0.00234,"46":0.00468,"47":0.00468,"48":0,"49":0.00468,"50":0,"51":0.00234,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00234,"75":0.00234,"76":0,"77":0,"78":0,"79":0.00234,"80":0.00234,"81":0.00936,"83":0,"84":0,"85":0,"86":0,"87":0.00936,"88":0,"89":0.00234,"90":0.00702,"91":0,"92":0,"93":0.00234,"94":0,"95":0,"96":0.01171,"97":0.01639,"98":0,"99":0.00234,"100":0.02341,"101":0.00234,"102":0.00234,"103":0.01639,"104":0.00936,"105":0.01639,"106":0.00234,"107":0.02107,"108":0.14046,"109":2.20288,"110":1.40928,"111":0.00234,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00234,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00234,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00234,"65":0,"66":0.00234,"67":0.05618,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00234,"94":0.01405,"95":0.01171,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00234,"13":0.00234,"14":0.00234,"15":0,"16":0,"17":0,"18":0.00234,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00234,"93":0,"94":0,"95":0,"96":0.00234,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00468,"104":0.00234,"105":0,"106":0,"107":0.01873,"108":0.00936,"109":0.103,"110":0.13812},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00234,"9":0.00702,"10":0,"11":0,"12":0,"13":0.00234,"14":0,"15":0.00234,_:"0","3.1":0,"3.2":0,"5.1":0.00234,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00468,"13.1":0.00936,"14.1":0.02575,"15.1":0,"15.2-15.3":0.00234,"15.4":0.00234,"15.5":0.01171,"15.6":0.0398,"16.0":0.01405,"16.1":0.00702,"16.2":0.03043,"16.3":0.01873,"16.4":0},G:{"8":0.0068,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00302,"5.0-5.1":0.00151,"6.0-6.1":0.00453,"7.0-7.1":0.03777,"8.1-8.4":0.03248,"9.0-9.2":0.00151,"9.3":0.04155,"10.0-10.2":0,"10.3":0.01133,"11.0-11.2":0.05439,"11.3-11.4":0.00076,"12.0-12.1":0.03022,"12.2-12.5":0.23871,"13.0-13.1":0.01058,"13.2":0.02795,"13.3":0.02342,"13.4-13.7":0.04532,"14.0-14.4":0.27421,"14.5-14.8":0.18583,"15.0-15.1":0.10047,"15.2-15.3":0.08007,"15.4":0.09443,"15.5":0.28856,"15.6":0.3981,"16.0":0.94954,"16.1":1.14217,"16.2":1.14746,"16.3":1.41261,"16.4":0},P:{"4":0.1651,"20":0.23734,"5.0-5.4":0.04128,"6.2-6.4":0,"7.2-7.4":0.06191,"8.2":0,"9.2":0.0516,"10.1":0,"11.1-11.2":0.07223,"12.0":0,"13.0":0.02064,"14.0":0.04128,"15.0":0.01032,"16.0":0.1651,"17.0":0.03096,"18.0":0.0516,"19.0":0.77393},I:{"0":0,"3":0,"4":0.02444,"2.1":0,"2.2":0.01629,"2.3":0.01222,"4.1":0.01222,"4.2-4.3":0.02852,"4.4":0,"4.4.3-4.4.4":0.07333},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00234,"7":0.00234,"8":0.02809,"9":0.00702,"10":0.00468,"11":0.01405,"5.5":0},N:{"10":0.02042,"11":0.01021},S:{"2.5":0.00766,_:"3.0-3.1"},J:{"7":0,"10":0.00766},O:{"0":2.32834},H:{"0":0.54383},L:{"0":82.56447},R:{_:"0"},M:{"0":0.03064},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BW.js index 8b5ebbc3c1a934..a84a47ffa9505e 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.01927,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00385,"33":0,"34":0.02698,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00385,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00385,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00385,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01927,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.04239,"89":0,"90":0,"91":0.02698,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00385,"100":0.00771,"101":0,"102":0.01156,"103":0.01156,"104":0,"105":0.00385,"106":0.00771,"107":0.02312,"108":0.42009,"109":0.22353,"110":0.01156,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00385,"39":0,"40":0.00385,"41":0,"42":0,"43":0.00385,"44":0,"45":0,"46":0.00385,"47":0,"48":0,"49":0.00771,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00385,"62":0,"63":0.02698,"64":0,"65":0.00385,"66":0,"67":0.00385,"68":0,"69":0,"70":0.00771,"71":0,"72":0,"73":0.00385,"74":0.00385,"75":0.00771,"76":0,"77":0.00771,"78":0.00385,"79":0.01156,"80":0.00771,"81":0.06937,"83":0.00385,"84":0,"85":0.01156,"86":0.00385,"87":0.00771,"88":0.00771,"89":0.01542,"90":0.00771,"91":0.00771,"92":0.01542,"93":0.00771,"94":0.00385,"95":0.02312,"96":0.01927,"97":0.00771,"98":0.03469,"99":0.03854,"100":0.01156,"101":0.00771,"102":0.08093,"103":0.08479,"104":0.04239,"105":0.04625,"106":0.03854,"107":0.20812,"108":4.15461,"109":4.08139,"110":0.00385,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00385,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00771,"62":0,"63":0.00771,"64":0.00385,"65":0,"66":0.03469,"67":0.05781,"68":0,"69":0,"70":0,"71":0,"72":0.00385,"73":0.00385,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00385,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00771,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03854,"94":0.30832,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00385,"13":0.00771,"14":0.00385,"15":0.00385,"16":0.00385,"17":0.00385,"18":0.01927,"79":0,"80":0.00771,"81":0,"83":0,"84":0.00771,"85":0,"86":0,"87":0,"88":0,"89":0.00385,"90":0.00771,"91":0,"92":0.02698,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00385,"101":0,"102":0,"103":0.00771,"104":0.00385,"105":0.00771,"106":0.01927,"107":0.06166,"108":0.85559,"109":0.94423},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01927,"15":0.01156,_:"0","3.1":0,"3.2":0,"5.1":0.00385,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01927,"14.1":0.01927,"15.1":0.00385,"15.2-15.3":0.02312,"15.4":0.04625,"15.5":0.02698,"15.6":0.08479,"16.0":0.01156,"16.1":0.04625,"16.2":0.05781,"16.3":0.00385},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00907,"5.0-5.1":0.00453,"6.0-6.1":0.00076,"7.0-7.1":0.11106,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02493,"10.0-10.2":0,"10.3":0.14355,"11.0-11.2":0.00227,"11.3-11.4":0.07026,"12.0-12.1":0.02871,"12.2-12.5":0.39137,"13.0-13.1":0.00076,"13.2":0.00302,"13.3":0.0136,"13.4-13.7":0.08084,"14.0-14.4":0.15866,"14.5-14.8":0.12693,"15.0-15.1":0.08311,"15.2-15.3":0.14355,"15.4":0.13373,"15.5":0.27426,"15.6":0.80766,"16.0":1.09477,"16.1":1.69693,"16.2":1.19072,"16.3":0.11862},P:{"4":0.33752,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.37843,"8.2":0.01023,"9.2":0,"10.1":0.02046,"11.1-11.2":0.02046,"12.0":0.03068,"13.0":0.05114,"14.0":0.11251,"15.0":0.01023,"16.0":0.09205,"17.0":0.06137,"18.0":0.11251,"19.0":1.47281},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00476,"4.4":0,"4.4.3-4.4.4":0.09148},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04239,"5.5":0},J:{"7":0,"10":0.00615},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.23969},Q:{"13.1":0},O:{"0":1.09399},H:{"0":0.94262},L:{"0":73.1835},S:{"2.5":0.06146}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01792,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.03135,"35":0,"36":0,"37":0,"38":0.00448,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00896,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00448,"61":0,"62":0,"63":0,"64":0,"65":0.00448,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00448,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00448,"90":0,"91":0.00448,"92":0.00896,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01344,"103":0.00448,"104":0.00448,"105":0.00448,"106":0.00448,"107":0.00896,"108":0.01792,"109":0.41207,"110":0.31801,"111":0.01344,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00448,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00448,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00448,"47":0,"48":0,"49":0.01344,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00896,"64":0,"65":0.00448,"66":0,"67":0.00448,"68":0,"69":0,"70":0.00448,"71":0,"72":0.00448,"73":0.00896,"74":0.00448,"75":0,"76":0.00448,"77":0.00896,"78":0.00896,"79":0.01344,"80":0.00448,"81":0.04927,"83":0.00448,"84":0,"85":0.00448,"86":0.00448,"87":0.00896,"88":0.01344,"89":0.00896,"90":0.00896,"91":0.01344,"92":0.01344,"93":0.00448,"94":0.00896,"95":0.01792,"96":0.01792,"97":0.00896,"98":0.01344,"99":0.0224,"100":0.01344,"101":0.01344,"102":0.02687,"103":0.04927,"104":0.10302,"105":0.0224,"106":0.03135,"107":0.10302,"108":0.22395,"109":7.51128,"110":4.13412,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00896,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01344,"62":0,"63":0.00896,"64":0,"65":0.00448,"66":0.06271,"67":0.17916,"68":0,"69":0,"70":0,"71":0,"72":0.00896,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00448,"79":0.00896,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01344,"94":0.18364,"95":0.22843,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00448,"13":0.00448,"14":0.00896,"15":0.00448,"16":0.00448,"17":0.00448,"18":0.0224,"79":0,"80":0.04031,"81":0,"83":0,"84":0.00896,"85":0,"86":0,"87":0,"88":0,"89":0.00448,"90":0.00448,"91":0,"92":0.09406,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00448,"101":0.00896,"102":0,"103":0,"104":0,"105":0.01344,"106":0.00896,"107":0.06719,"108":0.06271,"109":1.09736,"110":1.5363},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00896,"15":0.01344,_:"0","3.1":0,"3.2":0,"5.1":0.00448,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00448,"13.1":0.05823,"14.1":0.0224,"15.1":0.00448,"15.2-15.3":0.00896,"15.4":0.02687,"15.5":0.03135,"15.6":0.07614,"16.0":0.00896,"16.1":0.05375,"16.2":0.07614,"16.3":0.03583,"16.4":0},G:{"8":0,"3.2":0.0014,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00559,"6.0-6.1":0.0021,"7.0-7.1":0.08252,"8.1-8.4":0,"9.0-9.2":0.0014,"9.3":0.05664,"10.0-10.2":0,"10.3":0.08112,"11.0-11.2":0.0014,"11.3-11.4":0.0965,"12.0-12.1":0.00979,"12.2-12.5":0.31048,"13.0-13.1":0,"13.2":0.0049,"13.3":0.0021,"13.4-13.7":0.11119,"14.0-14.4":0.11818,"14.5-14.8":0.11119,"15.0-15.1":0.0958,"15.2-15.3":0.14196,"15.4":0.11259,"15.5":0.2993,"15.6":0.62307,"16.0":0.77201,"16.1":1.06711,"16.2":1.24613,"16.3":0.8804,"16.4":0.0007},P:{"4":0.32622,"20":0.35681,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.26506,"8.2":0,"9.2":0.01019,"10.1":0.01019,"11.1-11.2":0.04078,"12.0":0,"13.0":0.03058,"14.0":0.13253,"15.0":0.01019,"16.0":0.07136,"17.0":0.09175,"18.0":0.05097,"19.0":0.9277},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00614,"4.4":0,"4.4.3-4.4.4":0.10313},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04031,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.06625,_:"3.0-3.1"},J:{"7":0,"10":0.01104},O:{"0":1.08212},H:{"0":0.91471},L:{"0":68.93983},R:{_:"0"},M:{"0":0.1049},Q:{"13.1":0}}; 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 f7ea6991f5b752..054ac6cdd0a075 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BY.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.01002,"51":0,"52":0.11518,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00501,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00501,"69":0,"70":0,"71":0,"72":0.00501,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01502,"79":0.00501,"80":0.00501,"81":0,"82":0.00501,"83":0.00501,"84":0.00501,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01002,"92":0,"93":0,"94":0,"95":0.03506,"96":0.0651,"97":0,"98":0,"99":0.00501,"100":0,"101":0.00501,"102":0.02504,"103":0.00501,"104":0.01502,"105":0.02003,"106":0.01002,"107":0.0651,"108":0.79126,"109":0.43069,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01502,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03506,"50":0,"51":0.00501,"52":0,"53":0.02003,"54":0,"55":0.00501,"56":0.00501,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00501,"65":0.03506,"66":0,"67":0.00501,"68":0,"69":0.00501,"70":0.00501,"71":0,"72":0.00501,"73":0.00501,"74":0,"75":0.00501,"76":0,"77":0.01002,"78":0.00501,"79":0.01502,"80":0.01002,"81":0.02504,"83":0.02504,"84":0.03506,"85":0.03506,"86":0.05008,"87":0.03506,"88":0.03005,"89":0.01002,"90":0.01002,"91":0.00501,"92":0.03506,"93":0.04006,"94":0.1252,"95":0.02003,"96":0.01002,"97":0.04006,"98":0.01002,"99":0.03005,"100":0.03506,"101":0.02504,"102":0.03506,"103":0.05509,"104":0.07512,"105":0.0601,"106":0.05509,"107":0.23037,"108":7.71733,"109":4.93288,"110":0.01502,"111":0.00501,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.03005,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00501,"54":0,"55":0,"56":0.00501,"57":0,"58":0,"60":0.00501,"62":0,"63":0.00501,"64":0.00501,"65":0.00501,"66":0.01002,"67":0,"68":0,"69":0.01002,"70":0.00501,"71":0,"72":0.00501,"73":0.02504,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02003,"80":0.00501,"81":0.00501,"82":0.01002,"83":0.01002,"84":0.01002,"85":0.0651,"86":0.01502,"87":0.02003,"88":0.03005,"89":0.00501,"90":0.00501,"91":0.00501,"92":0.02003,"93":0.38061,"94":2.504,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01002},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01002,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00501,"86":0,"87":0.00501,"88":0,"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,"104":0,"105":0,"106":0,"107":0.02003,"108":0.46574,"109":0.46074},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03005,"15":0.00501,_:"0","3.1":0,"3.2":0,"5.1":0.01002,"6.1":0,"7.1":0,"9.1":0.00501,"10.1":0,"11.1":0,"12.1":0.01502,"13.1":0.01502,"14.1":0.03506,"15.1":0.01002,"15.2-15.3":0.01002,"15.4":0.04507,"15.5":0.10517,"15.6":0.66106,"16.0":0.04006,"16.1":0.23037,"16.2":0.55088,"16.3":0.05509},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00239,"8.1-8.4":0,"9.0-9.2":0.00958,"9.3":0.02394,"10.0-10.2":0.07182,"10.3":0.03591,"11.0-11.2":0.04309,"11.3-11.4":0.00479,"12.0-12.1":0.01436,"12.2-12.5":0.30643,"13.0-13.1":0.00718,"13.2":0.00718,"13.3":0.05027,"13.4-13.7":0.07661,"14.0-14.4":0.30164,"14.5-14.8":0.59132,"15.0-15.1":0.2394,"15.2-15.3":0.28967,"15.4":0.33277,"15.5":0.7996,"15.6":2.48258,"16.0":3.6317,"16.1":7.21791,"16.2":4.867,"16.3":0.45725},P:{"4":0.05093,"5.0-5.4":0,"6.2-6.4":0.22408,"7.2-7.4":0.02037,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01019,"12.0":0,"13.0":0.02037,"14.0":0.03056,"15.0":0,"16.0":0.03056,"17.0":0.03056,"18.0":0.04074,"19.0":0.80464},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00394,"4.2-4.3":0.01312,"4.4":0,"4.4.3-4.4.4":0.06296},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01002,"9":0,"10":0,"11":0.05008,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09984},Q:{"13.1":0},O:{"0":0.09984},H:{"0":0.98303},L:{"0":46.74058},S:{"2.5":0.00499}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.08736,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0046,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0046,"69":0,"70":0,"71":0,"72":0.0046,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0092,"79":0.0046,"80":0.0046,"81":0.0046,"82":0.0046,"83":0.0046,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01379,"92":0,"93":0,"94":0,"95":0.01839,"96":0.01839,"97":0.0046,"98":0,"99":0.0092,"100":0,"101":0.01379,"102":0.02759,"103":0.0046,"104":0.0092,"105":0.01379,"106":0.0092,"107":0.01379,"108":0.02759,"109":0.86442,"110":0.42302,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0092,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02759,"50":0,"51":0.0046,"52":0,"53":0.02759,"54":0,"55":0.0046,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.0046,"62":0,"63":0,"64":0,"65":0.03219,"66":0,"67":0.0046,"68":0,"69":0.0046,"70":0.0046,"71":0.0046,"72":0,"73":0,"74":0.0046,"75":0.0046,"76":0.0046,"77":0.01379,"78":0.0046,"79":0.02759,"80":0.0046,"81":0.03219,"83":0.02299,"84":0.03219,"85":0.04598,"86":0.03219,"87":0.02759,"88":0.02299,"89":0.01839,"90":0.0092,"91":0.01379,"92":0.03219,"93":0.03219,"94":0.0092,"95":0.0092,"96":0.0092,"97":0.01379,"98":0.0092,"99":0.02299,"100":0.03678,"101":0.03219,"102":0.07817,"103":0.02759,"104":0.02759,"105":0.03219,"106":0.06437,"107":0.09196,"108":0.26209,"109":6.35903,"110":3.30136,"111":0.01379,"112":0.0046,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02759,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.0046,"54":0,"55":0,"56":0.0046,"57":0,"58":0,"60":0.0046,"62":0,"63":0,"64":0.0046,"65":0,"66":0.01379,"67":0.03678,"68":0,"69":0.0046,"70":0,"71":0,"72":0.0046,"73":0.0046,"74":0.0092,"75":0.0046,"76":0,"77":0,"78":0,"79":0.01839,"80":0.0046,"81":0.0092,"82":0.01379,"83":0.01839,"84":0.0092,"85":0.07357,"86":0.01839,"87":0.0092,"88":0,"89":0.02759,"90":0.0046,"91":0.0046,"92":0.01839,"93":0.05518,"94":1.00696,"95":1.23686,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0092},B:{"12":0,"13":0,"14":0,"15":0.0046,"16":0,"17":0,"18":0.01379,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.0046,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0046,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0046,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01379,"108":0.0092,"109":0.37244,"110":0.44601},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02759,"15":0.0046,_:"0","3.1":0,"3.2":0,"5.1":0.0092,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01379,"13.1":0.02299,"14.1":0.03219,"15.1":0.0092,"15.2-15.3":0.01839,"15.4":0.04138,"15.5":0.09196,"15.6":0.44141,"16.0":0.08736,"16.1":0.16553,"16.2":0.51038,"16.3":0.43681,"16.4":0.0046},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00541,"9.3":0.03788,"10.0-10.2":0.01082,"10.3":0.02976,"11.0-11.2":0.0514,"11.3-11.4":0.00271,"12.0-12.1":0.02435,"12.2-12.5":0.26514,"13.0-13.1":0.00812,"13.2":0.01082,"13.3":0.04329,"13.4-13.7":0.11093,"14.0-14.4":0.27596,"14.5-14.8":0.63038,"15.0-15.1":0.2435,"15.2-15.3":0.28408,"15.4":0.25973,"15.5":0.6872,"15.6":2.13194,"16.0":3.17897,"16.1":6.32548,"16.2":5.74109,"16.3":4.28552,"16.4":0.01894},P:{"4":0.0908,"20":0.26231,"5.0-5.4":0.01009,"6.2-6.4":0.2724,"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.02018,"15.0":0.01009,"16.0":0.02018,"17.0":0.02018,"18.0":0.03027,"19.0":0.61543},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.002,"4.2-4.3":0.01596,"4.4":0,"4.4.3-4.4.4":0.07583},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0092,"9":0,"10":0,"11":0.11495,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.0054,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.22148},H:{"0":1.08934},L:{"0":47.63517},R:{_:"0"},M:{"0":0.09724},Q:{"13.1":0}}; 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 ec013916d182f3..89a1e6befbe61a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BZ.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.0087,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00435,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0087,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00435,"67":0,"68":0.00435,"69":0,"70":0,"71":0,"72":0.00435,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00435,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01739,"92":0,"93":0.0087,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00435,"102":0.07826,"103":0,"104":0.01304,"105":0.05218,"106":0.05652,"107":0.06522,"108":0.51741,"109":0.28697,"110":0.0087,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.1,"41":0,"42":0,"43":0.00435,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00435,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0087,"71":0,"72":0.01739,"73":0.0087,"74":0,"75":0.0087,"76":0.06087,"77":0.00435,"78":0,"79":0.0087,"80":0.00435,"81":0,"83":0.00435,"84":0.00435,"85":0.02609,"86":0,"87":0,"88":0.0087,"89":0.0087,"90":0.0087,"91":0.0087,"92":0.0087,"93":0.07392,"94":0,"95":0.00435,"96":0.00435,"97":0.0087,"98":0.00435,"99":0.00435,"100":0.01739,"101":0.00435,"102":0.01304,"103":0.23914,"104":0.04348,"105":0.02174,"106":0.04783,"107":0.10435,"108":6.2046,"109":3.20448,"110":0.0087,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00435,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0087,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00435,"93":0.1,"94":0.89569,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00435,"102":0,"103":0,"104":0,"105":0,"106":0.01304,"107":0.03913,"108":0.90004,"109":0.96526},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00435,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04783,"15":0.0087,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00435,"13.1":0.04348,"14.1":0.06522,"15.1":0.05652,"15.2-15.3":0.02609,"15.4":0.20001,"15.5":0.23044,"15.6":0.73916,"16.0":0.06087,"16.1":0.27827,"16.2":0.70003,"16.3":0.05218},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00991,"6.0-6.1":0,"7.0-7.1":0.0066,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1618,"10.0-10.2":0,"10.3":0.12878,"11.0-11.2":0.01321,"11.3-11.4":0.15849,"12.0-12.1":0.02972,"12.2-12.5":0.51841,"13.0-13.1":0.0033,"13.2":0,"13.3":0.01321,"13.4-13.7":0.01651,"14.0-14.4":0.18491,"14.5-14.8":0.55473,"15.0-15.1":0.26416,"15.2-15.3":1.06653,"15.4":0.80568,"15.5":1.20852,"15.6":4.00528,"16.0":3.50008,"16.1":9.65163,"16.2":7.32044,"16.3":0.77266},P:{"4":0.0642,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09631,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0107,"12.0":0.0107,"13.0":0.0107,"14.0":0.0214,"15.0":0.0214,"16.0":0.09631,"17.0":0.0428,"18.0":0.0749,"19.0":2.55744},I:{"0":0,"3":0,"4":0.4569,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.09138,"4.4":0,"4.4.3-4.4.4":0.54828},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01304,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.26564},Q:{"13.1":0},O:{"0":0.03391},H:{"0":0.13377},L:{"0":46.22219},S:{"2.5":0.00565}}; +module.exports={C:{"2":0.00678,"3":0.01357,"4":0.00678,"5":0,"6":0.00678,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00678,"13":0,"14":0.00678,"15":0.00678,"16":0.00678,"17":0.00678,"18":0,"19":0,"20":0,"21":0.01357,"22":0,"23":0.00678,"24":0,"25":0.00678,"26":0.00678,"27":0,"28":0.00678,"29":0.00678,"30":0,"31":0.00678,"32":0.00678,"33":0.00678,"34":0.00678,"35":0.00678,"36":0.00678,"37":0.00678,"38":0.01357,"39":0.01357,"40":0.02714,"41":0.00678,"42":0,"43":0.00678,"44":0,"45":0,"46":0.00678,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00678,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00678,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00678,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00678,"89":0,"90":0,"91":0.00678,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.05427,"103":0,"104":0.00678,"105":0,"106":0.02714,"107":0.02714,"108":0.06106,"109":0.39347,"110":0.19674,"111":0,"112":0,"3.5":0.00678,"3.6":0.02035},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00678,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00678,"20":0.00678,"21":0.00678,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00678,"29":0,"30":0.00678,"31":0.00678,"32":0.00678,"33":0.00678,"34":0.00678,"35":0.00678,"36":0.00678,"37":0.01357,"38":0.01357,"39":0.01357,"40":0.09498,"41":0.02714,"42":0.02035,"43":0.0407,"44":0.06784,"45":0.0407,"46":0.02714,"47":0.02714,"48":0,"49":0,"50":0,"51":0.00678,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00678,"71":0,"72":0.00678,"73":0,"74":0,"75":0.01357,"76":0.02714,"77":0,"78":0,"79":0.01357,"80":0.00678,"81":0.00678,"83":0,"84":0.01357,"85":0.02035,"86":0,"87":0,"88":0,"89":0,"90":0.00678,"91":0.00678,"92":0.00678,"93":0.06106,"94":0.00678,"95":0.00678,"96":0,"97":0.00678,"98":0,"99":0,"100":0.01357,"101":0,"102":0.01357,"103":0.08141,"104":0.03392,"105":0.01357,"106":0.02035,"107":0.03392,"108":29.26618,"109":3.9008,"110":2.53043,"111":0.00678,"112":0.01357,"113":0},F:{"9":0,"11":0,"12":0.00678,"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.00678,"29":0,"30":0.00678,"31":0.02035,"32":0.00678,"33":0,"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,"64":0,"65":0,"66":0,"67":0.00678,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01357,"94":0.31206,"95":0.53594,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0.00678,"11.6":0,"12.1":0.01357},B:{"12":0.02035,"13":0.00678,"14":0.00678,"15":0,"16":0,"17":0,"18":0.00678,"79":0,"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.00678,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.01357,"107":0.01357,"108":0.03392,"109":0.67162,"110":0.92941},E:{"4":0.00678,"5":0.00678,"6":0.00678,"7":0,"8":0.00678,"9":0.01357,"10":0,"11":0,"12":0,"13":0.00678,"14":0.02714,"15":0.00678,_:"0","3.1":0,"3.2":0,"5.1":0.02035,"6.1":0,"7.1":0.00678,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00678,"13.1":0.02714,"14.1":0.06106,"15.1":0.04749,"15.2-15.3":0.02035,"15.4":0.16282,"15.5":0.06106,"15.6":0.44096,"16.0":0.06106,"16.1":0.45453,"16.2":0.57664,"16.3":0.59021,"16.4":0.00678},G:{"8":0.01183,"3.2":0.00473,"4.0-4.1":0,"4.2-4.3":0.01183,"5.0-5.1":0.02603,"6.0-6.1":0.01893,"7.0-7.1":0.07572,"8.1-8.4":0.20114,"9.0-9.2":0.01893,"9.3":0.05916,"10.0-10.2":0,"10.3":0.21771,"11.0-11.2":0.08282,"11.3-11.4":0.08282,"12.0-12.1":0.04023,"12.2-12.5":0.24137,"13.0-13.1":0.00473,"13.2":0.00473,"13.3":0.01183,"13.4-13.7":0.0213,"14.0-14.4":0.08282,"14.5-14.8":0.2887,"15.0-15.1":0.14198,"15.2-15.3":0.66495,"15.4":0.39045,"15.5":0.60343,"15.6":1.84814,"16.0":1.58547,"16.1":4.62626,"16.2":6.29455,"16.3":4.21215,"16.4":0.03313},P:{"4":0.0829,"20":0.5285,"5.0-5.4":0,"6.2-6.4":0.01036,"7.2-7.4":0.06218,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01036,"12.0":0,"13.0":0,"14.0":0.01036,"15.0":0.01036,"16.0":0.03109,"17.0":0.0829,"18.0":0.03109,"19.0":0.72539},I:{"0":0,"3":0.00848,"4":0.16113,"2.1":0.02827,"2.2":0.0424,"2.3":0.09894,"4.1":0.15547,"4.2-4.3":0.25724,"4.4":0,"4.4.3-4.4.4":0.68692},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0137,"7":0.03426,"8":0.33571,"9":0.05481,"10":0.06166,"11":0.16443,"5.5":0},N:{"10":0.0402,"11":0.0402},S:{"2.5":0.00322,_:"3.0-3.1"},J:{"7":0,"10":0.0193},O:{"0":0.12864},H:{"0":0.09134},L:{"0":29.09429},R:{_:"0"},M:{"0":0.10613},Q:{"13.1":0.00322}}; 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 88d2ac67c5cbab..5f3300190c0dc5 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.00571,"39":0,"40":0,"41":0,"42":0,"43":0.01142,"44":0.03426,"45":0.01142,"46":0,"47":0.00571,"48":0.00571,"49":0,"50":0,"51":0,"52":0.02284,"53":0,"54":0,"55":0.02284,"56":0,"57":0.01142,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00571,"67":0,"68":0.00571,"69":0,"70":0,"71":0,"72":0.00571,"73":0,"74":0,"75":0,"76":0,"77":0.00571,"78":0.03997,"79":0.00571,"80":0.00571,"81":0.00571,"82":0.00571,"83":0.00571,"84":0,"85":0,"86":0,"87":0.01142,"88":0.00571,"89":0,"90":0,"91":0.00571,"92":0,"93":0,"94":0,"95":0.00571,"96":0,"97":0,"98":0,"99":0.00571,"100":0,"101":0.00571,"102":0.04568,"103":0.01142,"104":0.01142,"105":0.01713,"106":0.01713,"107":0.05139,"108":1.35898,"109":0.65094,"110":0.00571,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00571,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00571,"48":0.09136,"49":0.0571,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02284,"61":0,"62":0,"63":0,"64":0,"65":0.00571,"66":0.01713,"67":0.00571,"68":0.00571,"69":0.00571,"70":0.00571,"71":0.00571,"72":0.00571,"73":0.00571,"74":0.01142,"75":0.00571,"76":0.01142,"77":0.00571,"78":0.00571,"79":0.05139,"80":0.02855,"81":0.01142,"83":0.29692,"84":0.03997,"85":0.05139,"86":0.06281,"87":0.06281,"88":0.03426,"89":0.00571,"90":0.01142,"91":0.01713,"92":0.01713,"93":0.07423,"94":0.01713,"95":0.00571,"96":0.07994,"97":0.02284,"98":0.02284,"99":0.01713,"100":0.02284,"101":0.04568,"102":0.03426,"103":0.29692,"104":0.06281,"105":0.14846,"106":0.1142,"107":0.32547,"108":8.70775,"109":7.22315,"110":0.01142,"111":0.00571,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00571,"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.00571,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00571,"93":0.20556,"94":0.29692,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00571,"13":0.00571,"14":0,"15":0,"16":0,"17":0.00571,"18":0.01142,"79":0,"80":0,"81":0,"83":0.00571,"84":0.00571,"85":0.00571,"86":0.00571,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00571,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00571,"101":0.00571,"102":0,"103":0.00571,"104":0.00571,"105":0.00571,"106":0.01142,"107":0.07994,"108":2.2269,"109":2.09557},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00571,"9":0.01713,"10":0,"11":0,"12":0.00571,"13":0.01713,"14":0.13133,"15":0.02284,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01713,"10.1":0,"11.1":0.00571,"12.1":0.05139,"13.1":0.21127,"14.1":0.33689,"15.1":0.03997,"15.2-15.3":0.05139,"15.4":0.10849,"15.5":0.20556,"15.6":1.57596,"16.0":0.1713,"16.1":0.48535,"16.2":1.07919,"16.3":0.06852},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00403,"7.0-7.1":0.01612,"8.1-8.4":0.02015,"9.0-9.2":0.02015,"9.3":0.24183,"10.0-10.2":0.01209,"10.3":0.2378,"11.0-11.2":0.13704,"11.3-11.4":0.07255,"12.0-12.1":0.04434,"12.2-12.5":1.08422,"13.0-13.1":0.02418,"13.2":0.02015,"13.3":0.06449,"13.4-13.7":0.21362,"14.0-14.4":0.46351,"14.5-14.8":1.35024,"15.0-15.1":0.33857,"15.2-15.3":0.38693,"15.4":0.45948,"15.5":1.06004,"15.6":5.65891,"16.0":3.82097,"16.1":13.6112,"16.2":8.29086,"16.3":0.57637},P:{"4":0.11612,"5.0-5.4":0.02111,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01056,"11.1-11.2":0.02111,"12.0":0.01056,"13.0":0.02111,"14.0":0.01056,"15.0":0.01056,"16.0":0.04223,"17.0":0.04223,"18.0":0.05278,"19.0":2.73416},I:{"0":0,"3":0,"4":0.01485,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00742,"4.2-4.3":0.03712,"4.4":0,"4.4.3-4.4.4":0.23758},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01246,"9":0.01246,"10":0,"11":0.11212,"5.5":0},J:{"7":0,"10":0.00429},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.4719},Q:{"13.1":0.00429},O:{"0":0.08151},H:{"0":0.15028},L:{"0":24.55658},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01135,"39":0,"40":0,"41":0,"42":0,"43":0.01135,"44":0.03973,"45":0.01135,"46":0,"47":0.00568,"48":0.00568,"49":0,"50":0,"51":0,"52":0.0227,"53":0,"54":0,"55":0.02838,"56":0,"57":0.01135,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00568,"67":0,"68":0.00568,"69":0,"70":0,"71":0,"72":0.00568,"73":0,"74":0,"75":0,"76":0,"77":0.00568,"78":0.03973,"79":0.00568,"80":0.00568,"81":0.00568,"82":0.00568,"83":0.00568,"84":0,"85":0,"86":0,"87":0.01703,"88":0.00568,"89":0,"90":0,"91":0.01135,"92":0,"93":0,"94":0,"95":0.00568,"96":0,"97":0,"98":0,"99":0.00568,"100":0.00568,"101":0,"102":0.04541,"103":0.01135,"104":0.01135,"105":0.01703,"106":0.01135,"107":0.01703,"108":0.12487,"109":1.19764,"110":0.72085,"111":0.00568,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00568,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01135,"48":0.11352,"49":0.06244,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02838,"61":0,"62":0,"63":0,"64":0,"65":0.00568,"66":0.01135,"67":0.00568,"68":0.00568,"69":0.00568,"70":0.00568,"71":0.00568,"72":0.01135,"73":0.00568,"74":0.01135,"75":0.00568,"76":0.01135,"77":0.00568,"78":0.01135,"79":0.03973,"80":0.0227,"81":0.02838,"83":0.23839,"84":0.05676,"85":0.06244,"86":0.07946,"87":0.07946,"88":0.03406,"89":0.01135,"90":0.01135,"91":0.01135,"92":0.00568,"93":0.07946,"94":0.01135,"95":0.00568,"96":0.01703,"97":0.01135,"98":0.01703,"99":0.01703,"100":0.0227,"101":0.02838,"102":0.03406,"103":0.27812,"104":0.05108,"105":0.13055,"106":0.07946,"107":0.1419,"108":0.89113,"109":9.35405,"110":5.7952,"111":0.01135,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00568,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01135,"68":0,"69":0,"70":0,"71":0.00568,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03406,"94":0.3065,"95":0.14758,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00568,"13":0.00568,"14":0,"15":0,"16":0,"17":0.00568,"18":0.01135,"79":0,"80":0,"81":0,"83":0.00568,"84":0.00568,"85":0.00568,"86":0.00568,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00568,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00568,"101":0,"102":0,"103":0.00568,"104":0.00568,"105":0.00568,"106":0.01135,"107":0.03973,"108":0.09649,"109":1.83902,"110":2.29878},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00568,"9":0.01703,"10":0,"11":0,"12":0.00568,"13":0.0227,"14":0.09649,"15":0.01703,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.02838,"10.1":0,"11.1":0.00568,"12.1":0.05108,"13.1":0.20434,"14.1":0.31218,"15.1":0.03973,"15.2-15.3":0.05108,"15.4":0.10217,"15.5":0.17028,"15.6":1.03303,"16.0":0.10784,"16.1":0.29515,"16.2":1.19764,"16.3":0.80032,"16.4":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.00412,"7.0-7.1":0.00824,"8.1-8.4":0.01648,"9.0-9.2":0.0206,"9.3":0.23485,"10.0-10.2":0.01648,"10.3":0.22249,"11.0-11.2":0.1442,"11.3-11.4":0.0618,"12.0-12.1":0.0412,"12.2-12.5":1.02179,"13.0-13.1":0.02472,"13.2":0.02472,"13.3":0.0618,"13.4-13.7":0.21013,"14.0-14.4":0.42849,"14.5-14.8":1.17836,"15.0-15.1":0.34609,"15.2-15.3":0.46146,"15.4":0.40789,"15.5":0.86523,"15.6":4.72992,"16.0":3.0489,"16.1":9.91718,"16.2":10.62996,"16.3":5.11721,"16.4":0.02884},P:{"4":0.12609,"20":1.20838,"5.0-5.4":0.02102,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01051,"11.1-11.2":0.01051,"12.0":0.01051,"13.0":0.02102,"14.0":0.01051,"15.0":0.01051,"16.0":0.04203,"17.0":0.03152,"18.0":0.04203,"19.0":1.46056},I:{"0":0,"3":0,"4":0.01143,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01143,"4.2-4.3":0.06287,"4.4":0,"4.4.3-4.4.4":0.18861},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01243,"9":0.01243,"10":0,"11":0.10568,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00432},O:{"0":0.07783},H:{"0":0.13919},L:{"0":24.16256},R:{_:"0"},M:{"0":0.4497},Q:{"13.1":0.00432}}; 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 d1934b8fd6b88e..3e2c54b00379ab 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.00147,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00147,"98":0,"99":0,"100":0,"101":0,"102":0.0044,"103":0,"104":0,"105":0,"106":0.00147,"107":0.00293,"108":0.03956,"109":0.02344,"110":0.00293,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00293,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00147,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00733,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00147,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00147,"80":0,"81":0.00586,"83":0.00293,"84":0,"85":0.00147,"86":0.00147,"87":0.00147,"88":0.00147,"89":0,"90":0,"91":0.00147,"92":0.00147,"93":0,"94":0,"95":0.00147,"96":0.00147,"97":0,"98":0.00293,"99":0.00147,"100":0.00147,"101":0.00147,"102":0.0044,"103":0.00293,"104":0.00147,"105":0.00147,"106":0.00586,"107":0.00733,"108":0.17434,"109":0.17287,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0.00147,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00147,"24":0.01172,"25":0,"26":0.0044,"27":0.00733,"28":0.01905,"29":0,"30":0.01172,"31":0.0044,"32":0.00586,"33":0.00586,"34":0.00147,"35":0.00147,"36":0,"37":0.0044,"38":0.01905,"39":0,"40":0,"41":0.00147,"42":0.05714,"43":0,"44":0,"45":0.0044,"46":0.00733,"47":0.00293,"48":0,"49":0,"50":0.02637,"51":0.00733,"52":0,"53":0,"54":0.0044,"55":0.04542,"56":0.00586,"57":0.00733,"58":0.01758,"60":0.23147,"62":0.00293,"63":0.3516,"64":0.08204,"65":0.03077,"66":0.25931,"67":0.01465,"68":0,"69":0,"70":0,"71":0,"72":0.00293,"73":0.07911,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00147,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00147,"93":0.00293,"94":0.04102,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00586},B:{"12":0.00293,"13":0.00147,"14":0.00147,"15":0.00293,"16":0,"17":0.00147,"18":0.00586,"79":0,"80":0,"81":0,"83":0,"84":0.00147,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00147,"91":0,"92":0.00293,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00147,"103":0.00147,"104":0,"105":0.00147,"106":0,"107":0.00293,"108":0.063,"109":0.05128},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.00147,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00293,"14.1":0.00293,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00293,"16.0":0.00147,"16.1":0.01465,"16.2":0.0044,"16.3":0},G:{"8":0,"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.00485,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03149,"10.0-10.2":0,"10.3":0.193,"11.0-11.2":0.00969,"11.3-11.4":0.00727,"12.0-12.1":0.03472,"12.2-12.5":1.89855,"13.0-13.1":0.03553,"13.2":0.04119,"13.3":0.03634,"13.4-13.7":0.17039,"14.0-14.4":0.33513,"14.5-14.8":0.51522,"15.0-15.1":0.31979,"15.2-15.3":0.2996,"15.4":0.28749,"15.5":0.52006,"15.6":0.48615,"16.0":0.49664,"16.1":0.75425,"16.2":0.80917,"16.3":0.11871},P:{"4":0.306,"5.0-5.4":0.12832,"6.2-6.4":0.03948,"7.2-7.4":0.09871,"8.2":0,"9.2":0.04935,"10.1":0,"11.1-11.2":0.02961,"12.0":0,"13.0":0.00987,"14.0":0.02961,"15.0":0.00987,"16.0":0.04935,"17.0":0.03948,"18.0":0.05923,"19.0":0.28626},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00211,"4.2-4.3":0.00919,"4.4":0,"4.4.3-4.4.4":0.04749},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00586,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06828},Q:{"13.1":0.01707},O:{"0":0.46089},H:{"0":30.0348},L:{"0":53.17797},S:{"2.5":0.19631}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00319,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00319,"109":0.04466,"110":0.02871,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0016,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00319,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.0016,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.0016,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.0016,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0016,"80":0,"81":0.00479,"83":0.00319,"84":0,"85":0.0016,"86":0,"87":0.0016,"88":0,"89":0,"90":0,"91":0.00957,"92":0.0016,"93":0,"94":0.0016,"95":0.0016,"96":0.0016,"97":0,"98":0.0016,"99":0,"100":0,"101":0,"102":0.00319,"103":0.00319,"104":0.0016,"105":0.0016,"106":0.0016,"107":0.00479,"108":0.01595,"109":0.27753,"110":0.13558,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.0016,"21":0,"22":0,"23":0,"24":0.01595,"25":0,"26":0.00479,"27":0.00798,"28":0.01595,"29":0.0016,"30":0.01436,"31":0.01117,"32":0.00479,"33":0.00479,"34":0,"35":0.0016,"36":0,"37":0.00957,"38":0.01436,"39":0,"40":0,"41":0,"42":0.04147,"43":0,"44":0,"45":0.0016,"46":0.00319,"47":0.00479,"48":0,"49":0,"50":0.02393,"51":0.00798,"52":0,"53":0,"54":0.00479,"55":0.00638,"56":0.00638,"57":0.00798,"58":0.02233,"60":0.22171,"62":0.00319,"63":0.36047,"64":0.07497,"65":0.03669,"66":0.29986,"67":0.24723,"68":0,"69":0,"70":0,"71":0,"72":0.0016,"73":0.07018,"74":0.0016,"75":0,"76":0,"77":0,"78":0,"79":0.0016,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01595,"95":0.0319,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00479},B:{"12":0.00319,"13":0.00479,"14":0.0016,"15":0.00319,"16":0,"17":0.0016,"18":0.00319,"79":0,"80":0,"81":0,"83":0,"84":0.0016,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0016,"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.0016,"108":0.00798,"109":0.05583,"110":0.0638},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.0016,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00319,"14.1":0.00319,"15.1":0,"15.2-15.3":0,"15.4":0.0016,"15.5":0,"15.6":0.0016,"16.0":0,"16.1":0.01436,"16.2":0.00319,"16.3":0.0016,"16.4":0},G:{"8":0.00087,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00785,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02703,"10.0-10.2":0,"10.3":0.1779,"11.0-11.2":0.00349,"11.3-11.4":0.0157,"12.0-12.1":0.1282,"12.2-12.5":2.09124,"13.0-13.1":0.02006,"13.2":0.02442,"13.3":0.03227,"13.4-13.7":0.20407,"14.0-14.4":0.40377,"14.5-14.8":0.56162,"15.0-15.1":0.33837,"15.2-15.3":0.27122,"15.4":0.25203,"15.5":0.40464,"15.6":0.4779,"16.0":0.53197,"16.1":0.72818,"16.2":0.64359,"16.3":0.6497,"16.4":0.00087},P:{"4":0.16744,"20":0.06279,"5.0-5.4":0.11512,"6.2-6.4":0.05233,"7.2-7.4":0.07326,"8.2":0,"9.2":0.05233,"10.1":0,"11.1-11.2":0.13605,"12.0":0,"13.0":0,"14.0":0.01047,"15.0":0,"16.0":0.0314,"17.0":0.02093,"18.0":0.0314,"19.0":0.31395},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00242,"4.2-4.3":0.00887,"4.4":0,"4.4.3-4.4.4":0.08828},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00319,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.1681,_:"3.0-3.1"},J:{"7":0,"10":0.01681},O:{"0":0.39504},H:{"0":25.23263},L:{"0":58.01337},R:{_:"0"},M:{"0":0.04203},Q:{"13.1":0.00841}}; 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 0ae78d5076325c..b527c8f92211ea 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,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00205,"92":0,"93":0.00616,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01437,"103":0,"104":0,"105":0.00205,"106":0.00411,"107":0.00616,"108":0.07186,"109":0.06364,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00205,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01232,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00411,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00205,"77":0,"78":0,"79":0.00205,"80":0.00205,"81":0,"83":0,"84":0.00411,"85":0,"86":0.00411,"87":0.00205,"88":0.00205,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00205,"97":0,"98":0,"99":0.00411,"100":0,"101":0.00205,"102":0,"103":0.01848,"104":0.00205,"105":0.00205,"106":0.00411,"107":0.01232,"108":1.14352,"109":1.05935,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00205,"39":0,"40":0,"41":0,"42":0.00205,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00205,"58":0,"60":0.01642,"62":0,"63":0.02669,"64":0.00205,"65":0.00205,"66":0.00411,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00411,"74":0,"75":0,"76":0,"77":0.00411,"78":0,"79":0.01848,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00205,"90":0,"91":0,"92":0,"93":0.00205,"94":0.01848,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00411,"13":0.01027,"14":0.00205,"15":0.00205,"16":0,"17":0.00205,"18":0.01232,"79":0,"80":0,"81":0,"83":0,"84":0.00205,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01232,"91":0,"92":0.00205,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00411,"102":0,"103":0.00205,"104":0,"105":0,"106":0.00205,"107":0.00821,"108":0.16424,"109":0.08623},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00205,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00205,"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.00205,"16.0":0,"16.1":0,"16.2":0.00205,"16.3":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.00321,"8.1-8.4":0,"9.0-9.2":0.01108,"9.3":0.03821,"10.0-10.2":0,"10.3":0.00467,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00321,"12.2-12.5":0.16189,"13.0-13.1":0.00321,"13.2":0,"13.3":0.00146,"13.4-13.7":0.16831,"14.0-14.4":0.26515,"14.5-14.8":0.18581,"15.0-15.1":0.0843,"15.2-15.3":0.07642,"15.4":0.19368,"15.5":0.11609,"15.6":0.41478,"16.0":0.2351,"16.1":0.58776,"16.2":0.19368,"16.3":0.07788},P:{"4":0.06018,"5.0-5.4":0.04012,"6.2-6.4":0,"7.2-7.4":0.09027,"8.2":0,"9.2":0.02006,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.12036,"14.0":0.03009,"15.0":0.02006,"16.0":0.05015,"17.0":0.37112,"18.0":0.02006,"19.0":0.18054},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00348,"4.2-4.3":0.00046,"4.4":0,"4.4.3-4.4.4":0.04301},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01642,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.01589},Q:{"13.1":0},O:{"0":0.24636},H:{"0":10.14196},L:{"0":78.01508},S:{"2.5":1.30331}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00198,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00198,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00395,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00395,"103":0.00198,"104":0,"105":0.00198,"106":0.00593,"107":0.00395,"108":0.00198,"109":0.07703,"110":0.07703,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00198,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00198,"32":0,"33":0,"34":0.00593,"35":0,"36":0,"37":0.00198,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00395,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00198,"60":0,"61":0,"62":0,"63":0,"64":0.00198,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00198,"75":0,"76":0,"77":0,"78":0,"79":0.00198,"80":0,"81":0.00198,"83":0.00198,"84":0.0079,"85":0,"86":0.01778,"87":0.00198,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00198,"94":0.00198,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00988,"103":0.00395,"104":0,"105":0,"106":0,"107":0.00395,"108":0.0158,"109":0.66953,"110":1.3509,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00198,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00198,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00198,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00198,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.0079,"58":0.00593,"60":0.00593,"62":0,"63":0.01383,"64":0.00395,"65":0.00198,"66":0.02765,"67":0.01778,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00593,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00395,"95":0.01185,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00198},B:{"12":0.00198,"13":0.00198,"14":0,"15":0,"16":0,"17":0,"18":0.00198,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00198,"91":0,"92":0.00395,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00198,"102":0,"103":0,"104":0,"105":0,"106":0.00198,"107":0.00198,"108":0.00988,"109":0.0869,"110":0.07308},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.00198,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00198,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0.00198,"15.5":0,"15.6":0.00395,"16.0":0,"16.1":0,"16.2":0.00198,"16.3":0,"16.4":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.00224,"7.0-7.1":0.00224,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.00224,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.25427,"13.0-13.1":0.01058,"13.2":0,"13.3":0.01475,"13.4-13.7":0.02758,"14.0-14.4":0.29435,"14.5-14.8":0.31134,"15.0-15.1":0.04649,"15.2-15.3":0.02982,"15.4":0.38349,"15.5":0.07631,"15.6":0.34726,"16.0":0.23728,"16.1":0.30493,"16.2":0.21804,"16.3":0.22862,"16.4":0.00224},P:{"4":0.02019,"20":0.05047,"5.0-5.4":0.03028,"6.2-6.4":0.02019,"7.2-7.4":0.09084,"8.2":0,"9.2":0.04037,"10.1":0,"11.1-11.2":0.10093,"12.0":0,"13.0":0,"14.0":0.03028,"15.0":0,"16.0":0.02019,"17.0":1.15064,"18.0":0.07065,"19.0":0.33308},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00706,"4.2-4.3":0.00181,"4.4":0,"4.4.3-4.4.4":0.03694},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01185,"5.5":0},N:{"10":0,"11":0},S:{"2.5":1.74945,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.08828},H:{"0":9.65649},L:{"0":77.69128},R:{_:"0"},M:{"0":0.04013},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CG.js index 93ebd3b5515d2b..d6636e6a2d8d0a 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:{"47":0.01136,"60":0.02271,"68":0.01136,"78":0.00379,"91":0.01136,"96":0.02271,"102":0.12112,"106":0.00379,"107":0.0265,"108":2.08554,"109":1.4648,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 97 98 99 100 101 103 104 105 110 111 3.5 3.6"},D:{"11":0.01514,"34":0.00379,"38":0.00379,"42":0.00757,"47":0.00757,"49":0.06056,"55":0.00379,"56":0.00757,"63":0.10598,"65":0.01136,"68":0.00379,"69":0.04921,"75":0.04542,"77":0.01514,"78":0.03028,"79":0.05299,"81":0.04164,"83":0.01136,"84":0.02271,"85":0.00757,"86":0.28009,"87":0.00379,"89":0.03407,"90":0.00757,"92":0.00757,"95":0.00757,"97":0.13248,"98":0.01136,"99":0.05299,"100":0.00379,"101":0.00379,"102":0.04542,"103":0.03407,"104":0.02271,"105":0.01514,"106":0.11355,"107":0.05299,"108":6.56319,"109":9.20512,"110":0.01514,_:"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 43 44 45 46 48 50 51 52 53 54 57 58 59 60 61 62 64 66 67 70 71 72 73 74 76 80 88 91 93 94 96 111 112"},F:{"79":0.02271,"85":0.00757,"92":0.01136,"93":0.02271,"94":1.88115,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01136,"13":0.02271,"14":0.00379,"15":0.16654,"16":0.08706,"17":0.00757,"18":0.08706,"84":0.01136,"90":0.00379,"92":0.02271,"98":0.00379,"99":0.00379,"105":0.04164,"106":0.00757,"107":0.03028,"108":1.97577,"109":1.79788,_:"79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 100 101 102 103 104"},E:{"4":0,"11":0.00379,_:"0 5 6 7 8 9 10 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.3","12.1":0.01514,"13.1":0.10977,"14.1":0.01893,"15.6":0.03785,"16.0":0.00757,"16.1":0.02271,"16.2":0.02271},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01123,"6.0-6.1":0,"7.0-7.1":0.16712,"8.1-8.4":0,"9.0-9.2":0.0014,"9.3":0.2879,"10.0-10.2":0.0014,"10.3":0.42974,"11.0-11.2":0.04354,"11.3-11.4":0.08567,"12.0-12.1":0.02949,"12.2-12.5":5.27482,"13.0-13.1":0.0014,"13.2":0,"13.3":0.00562,"13.4-13.7":0.2879,"14.0-14.4":0.14044,"14.5-14.8":0.2893,"15.0-15.1":0.5154,"15.2-15.3":0.27385,"15.4":0.11656,"15.5":0.27526,"15.6":0.72747,"16.0":0.56596,"16.1":0.59124,"16.2":1.12069,"16.3":0.17976},P:{"4":0.14812,"5.0-5.4":0.12832,"6.2-6.4":0.03948,"7.2-7.4":0.18231,"8.2":0,"9.2":0.03418,"10.1":0,"11.1-11.2":0.02961,"12.0":0,"13.0":0.00987,"14.0":0.02279,"15.0":0.01139,"16.0":0.01139,"17.0":0.13673,"18.0":0.04558,"19.0":0.36461},I:{"0":0,"3":0,"4":0.00016,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00126,"4.2-4.3":0.00138,"4.4":0,"4.4.3-4.4.4":0.05313},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0265,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04351},Q:{"13.1":0.03729},O:{"0":0.42262},H:{"0":0.84729},L:{"0":57.73038},S:{"2.5":0.48477}}; +module.exports={C:{"47":0.00408,"48":0.00816,"60":0.02447,"63":0.01223,"89":0.01631,"95":0.04894,"102":0.10603,"105":0.00816,"107":0.00408,"108":0.01631,"109":1.48439,"110":0.95833,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 52 53 54 55 56 57 58 59 61 62 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 101 103 104 106 111 112 3.5 3.6"},D:{"11":0.01223,"47":0.00816,"49":0.02039,"60":0.00816,"63":0.28546,"65":0.0367,"69":0.02855,"73":0.00408,"75":0.02447,"78":0.01631,"79":0.1305,"81":0.0734,"83":0.00816,"84":0.02855,"86":0.34255,"87":0.00408,"89":0.02447,"91":0.00408,"95":0.10195,"97":0.0734,"98":0.00408,"99":0.12234,"101":0.00408,"102":0.06933,"103":0.05301,"104":0.00816,"105":0.02447,"106":0.10195,"107":0.06117,"108":0.23652,"109":8.156,"110":9.53844,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 61 62 64 66 67 68 70 71 72 74 76 77 80 85 88 90 92 93 94 96 100 111 112 113"},F:{"40":0.00408,"58":0.00408,"79":0.01631,"85":0.00816,"94":0.58315,"95":1.28049,_:"9 11 12 15 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 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00816,"14":0.03262,"15":0.02447,"16":0.00408,"17":0.00408,"18":0.02039,"84":0.00408,"90":0.00408,"92":0.05301,"105":0.02447,"107":0.00408,"108":0.02447,"109":1.2968,"110":2.45088,_:"13 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 106"},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.4","13.1":0.32216,"15.6":0.04486,"16.2":0.00408,"16.3":0.02447},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00134,"7.0-7.1":0.04952,"8.1-8.4":0,"9.0-9.2":0.00535,"9.3":0.19271,"10.0-10.2":0.00268,"10.3":0.39612,"11.0-11.2":0.02007,"11.3-11.4":0.07227,"12.0-12.1":0.04818,"12.2-12.5":5.1242,"13.0-13.1":0.00268,"13.2":0,"13.3":0.05755,"13.4-13.7":0.20877,"14.0-14.4":0.27301,"14.5-14.8":0.25828,"15.0-15.1":0.41754,"15.2-15.3":0.31851,"15.4":0.33323,"15.5":0.30245,"15.6":0.76548,"16.0":0.25025,"16.1":0.34527,"16.2":0.58883,"16.3":0.83775,"16.4":0.00669},P:{"4":0.16318,"20":0.09325,"5.0-5.4":0.11512,"6.2-6.4":0.05233,"7.2-7.4":0.1049,"8.2":0,"9.2":0.05233,"10.1":0,"11.1-11.2":0.03497,"12.0":0,"13.0":0,"14.0":0.01166,"15.0":0,"16.0":0.0314,"17.0":0.03497,"18.0":0.01166,"19.0":0.27974},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01752,"4.2-4.3":0.00284,"4.4":0,"4.4.3-4.4.4":0.1277},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02855,_:"6 7 8 9 10 5.5"},N:{"10":0,"11":0},S:{"2.5":0.42638,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.28426},H:{"0":1.53059},L:{"0":56.68904},R:{_:"0"},M:{"0":0.03553},Q:{"13.1":0.02961}}; 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 aba82aaeaad396..25caf6e70289be 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.00591,"49":0,"50":0,"51":0,"52":0.01182,"53":0,"54":0,"55":0.01182,"56":0,"57":0.00591,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00591,"69":0,"70":0,"71":0.00591,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05318,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00591,"89":0,"90":0,"91":0.02364,"92":0,"93":0,"94":0,"95":0.00591,"96":0,"97":0.00591,"98":0.00591,"99":0.00591,"100":0.00591,"101":0.00591,"102":0.21863,"103":0.00591,"104":0.02364,"105":0.02364,"106":0.02364,"107":0.065,"108":2.40496,"109":1.42998,"110":0.00591,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00591,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01773,"50":0,"51":0.00591,"52":0.14182,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00591,"66":0.04136,"67":0.00591,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00591,"78":0,"79":0.08273,"80":0.00591,"81":0.00591,"83":0.00591,"84":0.01773,"85":0.02955,"86":0.01773,"87":0.05909,"88":0.02955,"89":0.01182,"90":0.00591,"91":0.02364,"92":0.07682,"93":0.01182,"94":0.01182,"95":0.00591,"96":0.04727,"97":0.01182,"98":0.01773,"99":0.01773,"100":0.02955,"101":0.02955,"102":0.25409,"103":0.30727,"104":0.04136,"105":0.08273,"106":0.07091,"107":0.30727,"108":7.69943,"109":5.80855,"110":0.00591,"111":0.00591,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00591,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00591,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00591,"93":0.37227,"94":0.56136,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00591,"17":0,"18":0.00591,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00591,"91":0.00591,"92":0.00591,"93":0,"94":0,"95":0,"96":0.00591,"97":0.01182,"98":0.01773,"99":0.01182,"100":0.01182,"101":0.00591,"102":0.00591,"103":0.01182,"104":0.01182,"105":0.01773,"106":0.02955,"107":0.11818,"108":4.91038,"109":3.02541},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02364,"14":0.10636,"15":0.02364,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01182,"12.1":0.08864,"13.1":0.24818,"14.1":0.37818,"15.1":0.05909,"15.2-15.3":0.07091,"15.4":0.14773,"15.5":0.24818,"15.6":1.34725,"16.0":0.21272,"16.1":0.5909,"16.2":1.21135,"16.3":0.08273},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00775,"8.1-8.4":0.00387,"9.0-9.2":0.25559,"9.3":0.16265,"10.0-10.2":0,"10.3":0.1278,"11.0-11.2":0.00775,"11.3-11.4":0.09682,"12.0-12.1":0.02324,"12.2-12.5":0.49957,"13.0-13.1":0.01162,"13.2":0.00387,"13.3":0.03485,"13.4-13.7":0.11618,"14.0-14.4":0.42986,"14.5-14.8":1.0611,"15.0-15.1":0.25172,"15.2-15.3":0.42986,"15.4":0.53055,"15.5":1.28184,"15.6":4.90274,"16.0":5.47589,"16.1":12.59764,"16.2":8.11702,"16.3":0.61187},P:{"4":0.11332,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0103,"10.1":0,"11.1-11.2":0.0103,"12.0":0,"13.0":0.0103,"14.0":0.0206,"15.0":0.0103,"16.0":0.0309,"17.0":0.05151,"18.0":0.11332,"19.0":3.02862},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02652,"4.2-4.3":0.00295,"4.4":0,"4.4.3-4.4.4":0.05599},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00591,"10":0,"11":0.09454,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.62183},Q:{"13.1":0},O:{"0":0.045},H:{"0":0.20527},L:{"0":21.11336},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00553,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00553,"49":0,"50":0.00553,"51":0,"52":0.01658,"53":0,"54":0,"55":0.01105,"56":0,"57":0.00553,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00553,"67":0,"68":0,"69":0,"70":0,"71":0.00553,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04422,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00553,"89":0.00553,"90":0,"91":0.02211,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01105,"99":0.00553,"100":0.00553,"101":0.00553,"102":0.17686,"103":0.00553,"104":0.00553,"105":0.01658,"106":0.01658,"107":0.02764,"108":0.32609,"109":2.34345,"110":1.64705,"111":0.01658,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00553,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01658,"50":0,"51":0.00553,"52":0.28188,"53":0.00553,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01658,"61":0,"62":0,"63":0,"64":0,"65":0.01105,"66":0.04422,"67":0.01105,"68":0.01105,"69":0,"70":0,"71":0,"72":0.00553,"73":0,"74":0.00553,"75":0,"76":0,"77":0.00553,"78":0.01105,"79":0.10501,"80":0.01105,"81":0.01105,"83":0.01105,"84":0.03316,"85":0.03316,"86":0.01658,"87":0.05527,"88":0.00553,"89":0.01105,"90":0.00553,"91":0.00553,"92":0.03316,"93":0.00553,"94":0.00553,"95":0.00553,"96":0.00553,"97":0.00553,"98":0.01105,"99":0.02211,"100":0.02764,"101":0.03316,"102":0.38136,"103":0.29293,"104":0.03316,"105":0.03869,"106":0.04422,"107":0.08843,"108":0.46427,"109":6.51633,"110":4.2779,"111":0.00553,"112":0.00553,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00553,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00553,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0608,"94":0.57481,"95":0.35373,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00553,"16":0.00553,"17":0,"18":0.00553,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00553,"91":0,"92":0.00553,"93":0,"94":0,"95":0,"96":0.00553,"97":0.00553,"98":0,"99":0.01105,"100":0.00553,"101":0.00553,"102":0,"103":0.00553,"104":0.00553,"105":0.00553,"106":0.01105,"107":0.02764,"108":0.22661,"109":2.31029,"110":2.84641},E:{"4":0,"5":0,"6":0,"7":0.00553,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02211,"14":0.10501,"15":0.02764,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00553,"12.1":0.08843,"13.1":0.25977,"14.1":0.39242,"15.1":0.04974,"15.2-15.3":0.0608,"15.4":0.12712,"15.5":0.21555,"15.6":0.99486,"16.0":0.14923,"16.1":0.38136,"16.2":1.17725,"16.3":0.96723,"16.4":0.00553},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.0082,"9.0-9.2":0.46334,"9.3":0.19272,"10.0-10.2":0,"10.3":0.12711,"11.0-11.2":0.0164,"11.3-11.4":0.12301,"12.0-12.1":0.0246,"12.2-12.5":0.56995,"13.0-13.1":0.0082,"13.2":0.0041,"13.3":0.0328,"13.4-13.7":0.16401,"14.0-14.4":0.38543,"14.5-14.8":0.95948,"15.0-15.1":0.25422,"15.2-15.3":0.40594,"15.4":0.45924,"15.5":1.07019,"15.6":3.84614,"16.0":4.70311,"16.1":9.84496,"16.2":10.04178,"16.3":5.62159,"16.4":0.0205},P:{"4":0.09314,"20":1.34538,"5.0-5.4":0.0207,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0207,"10.1":0,"11.1-11.2":0,"12.0":0.01035,"13.0":0.0207,"14.0":0.0207,"15.0":0.01035,"16.0":0.0207,"17.0":0.05175,"18.0":0.08279,"19.0":2.16295},I:{"0":0,"3":0,"4":0.00555,"2.1":0,"2.2":0,"2.3":0.01665,"4.1":0.0111,"4.2-4.3":0.01388,"4.4":0,"4.4.3-4.4.4":0.06939},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00599,"9":0.01796,"10":0,"11":0.11975,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00447},O:{"0":0.05815},H:{"0":0.21597},L:{"0":23.17659},R:{_:"0"},M:{"0":0.74252},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CI.js index 11471836e4d994..ed8cd60c42c9d9 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.00764,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00255,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00255,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00255,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00255,"100":0.01527,"101":0,"102":0.01018,"103":0.00255,"104":0.00255,"105":0.00255,"106":0.02036,"107":0.04072,"108":0.27995,"109":0.18579,"110":0.00255,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00255,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00255,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00255,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00764,"65":0,"66":0,"67":0,"68":0,"69":0.00509,"70":0.00509,"71":0.00255,"72":0,"73":0.00255,"74":0.00509,"75":0,"76":0.00255,"77":0.00255,"78":0.01018,"79":0.01273,"80":0.00509,"81":0.01273,"83":0.00509,"84":0.00255,"85":0.00764,"86":0.00509,"87":0.01273,"88":0.00509,"89":0.00255,"90":0.00255,"91":0.00764,"92":0.00764,"93":0.00509,"94":0.00509,"95":0.02036,"96":0.00764,"97":0.00509,"98":0.00509,"99":0.00509,"100":0.01273,"101":0.01273,"102":0.00764,"103":0.04072,"104":0.02291,"105":0.06617,"106":0.03054,"107":0.06108,"108":1.61608,"109":1.63644,"110":0.00255,"111":0.00255,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00255,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00255,"57":0,"58":0,"60":0.01018,"62":0,"63":0.03054,"64":0.00509,"65":0.00255,"66":0.01273,"67":0.00255,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00255,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00255,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01018,"94":0.11453,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00255,"13":0,"14":0,"15":0.00509,"16":0,"17":0,"18":0.00764,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00255,"86":0,"87":0,"88":0,"89":0.00255,"90":0,"91":0,"92":0.00764,"93":0,"94":0,"95":0,"96":0,"97":0.00255,"98":0.00255,"99":0,"100":0,"101":0,"102":0,"103":0.00255,"104":0.00255,"105":0.00509,"106":0.00255,"107":0.01018,"108":0.29777,"109":0.32067},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01782,"15":0.00255,_:"0","3.1":0,"3.2":0,"5.1":0.00255,"6.1":0,"7.1":0.00255,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01018,"14.1":0.01018,"15.1":0.00255,"15.2-15.3":0.00255,"15.4":0.00255,"15.5":0.00509,"15.6":0.02545,"16.0":0.00509,"16.1":0.03563,"16.2":0.03563,"16.3":0.00509},G:{"8":0.00494,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0074,"6.0-6.1":0.01234,"7.0-7.1":0.01234,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05924,"10.0-10.2":0,"10.3":0.41961,"11.0-11.2":0.06664,"11.3-11.4":0.00987,"12.0-12.1":0.33816,"12.2-12.5":6.44478,"13.0-13.1":0.02468,"13.2":0.02221,"13.3":0.1555,"13.4-13.7":0.31101,"14.0-14.4":0.90587,"14.5-14.8":1.06878,"15.0-15.1":0.60227,"15.2-15.3":0.78493,"15.4":0.51588,"15.5":0.87625,"15.6":1.3946,"16.0":2.60408,"16.1":2.78673,"16.2":2.70034,"16.3":0.39987},P:{"4":0.12263,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.22482,"8.2":0,"9.2":0.0511,"10.1":0,"11.1-11.2":0.04088,"12.0":0,"13.0":0.02044,"14.0":0.04088,"15.0":0.11241,"16.0":0.07153,"17.0":0.06132,"18.0":0.20438,"19.0":0.85841},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00157,"4.2-4.3":0.00472,"4.4":0,"4.4.3-4.4.4":0.09915},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00764,"5.5":0},J:{"7":0,"10":0.01491},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.48458},Q:{"13.1":0.01491},O:{"0":0.1491},H:{"0":1.39041},L:{"0":66.92597},S:{"2.5":0.02237}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00261,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00261,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00261,"68":0,"69":0,"70":0,"71":0,"72":0.00261,"73":0,"74":0,"75":0.00261,"76":0,"77":0,"78":0.00261,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.04961,"101":0,"102":0.01044,"103":0,"104":0.0235,"105":0.00261,"106":0.00261,"107":0.02089,"108":0.02089,"109":0.28721,"110":0.16188,"111":0.00261,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00261,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00261,"57":0,"58":0.00261,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00261,"65":0,"66":0,"67":0,"68":0,"69":0.00522,"70":0.00261,"71":0.00261,"72":0.00261,"73":0,"74":0.01044,"75":0.00261,"76":0.00261,"77":0.00261,"78":0.00522,"79":0.01828,"80":0.00522,"81":0.01044,"83":0.01044,"84":0.00261,"85":0.01044,"86":0.00261,"87":0.01828,"88":0.00522,"89":0.00783,"90":0.00261,"91":0.00783,"92":0.01044,"93":0.00261,"94":0.00522,"95":0.04178,"96":0.00783,"97":0.00261,"98":0.00522,"99":0.00261,"100":0.01306,"101":0.00783,"102":0.00522,"103":0.02872,"104":0.02872,"105":0.13838,"106":0.01828,"107":0.03655,"108":0.10705,"109":2.16452,"110":1.0679,"111":0.00261,"112":0.00261,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00261,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00261,"57":0,"58":0,"60":0.00783,"62":0,"63":0.02089,"64":0.00261,"65":0.00261,"66":0.01044,"67":0.03133,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00261,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00522,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.047,"95":0.07311,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00261,"13":0,"14":0,"15":0.00522,"16":0,"17":0,"18":0.01044,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00261,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00522,"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.00261,"106":0.00261,"107":0.00522,"108":0.0235,"109":0.25327,"110":0.31854},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02611,"15":0.00261,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0.00261,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01044,"14.1":0.01306,"15.1":0,"15.2-15.3":0,"15.4":0.00261,"15.5":0.00522,"15.6":0.01828,"16.0":0.00522,"16.1":0.00783,"16.2":0.02611,"16.3":0.02089,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00797,"6.0-6.1":0,"7.0-7.1":0.01593,"8.1-8.4":0.01062,"9.0-9.2":0,"9.3":0.04779,"10.0-10.2":0,"10.3":0.36642,"11.0-11.2":0.06107,"11.3-11.4":0.02921,"12.0-12.1":0.41156,"12.2-12.5":6.52128,"13.0-13.1":0.01328,"13.2":0.01593,"13.3":0.1248,"13.4-13.7":0.23101,"14.0-14.4":0.89747,"14.5-14.8":1.10724,"15.0-15.1":0.6585,"15.2-15.3":0.6346,"15.4":0.65319,"15.5":0.72223,"15.6":1.13113,"16.0":2.18261,"16.1":2.50389,"16.2":2.77207,"16.3":2.56231,"16.4":0.02921},P:{"4":0.10273,"20":0.19518,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17463,"8.2":0,"9.2":0.03082,"10.1":0,"11.1-11.2":0.02055,"12.0":0,"13.0":0.03082,"14.0":0.08218,"15.0":0.09245,"16.0":0.12327,"17.0":0.03082,"18.0":0.14382,"19.0":0.65744},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00396,"4.2-4.3":0.00712,"4.4":0,"4.4.3-4.4.4":0.06808},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00261,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.03695,_:"3.0-3.1"},J:{"7":0,"10":0.02956},O:{"0":0.15517},H:{"0":1.2312},L:{"0":65.7265},R:{_:"0"},M:{"0":0.64284},Q:{"13.1":0.00739}}; 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 58f87e03f1317c..36e31141c2195a 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.02164,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00361,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00361,"108":0.34257,"109":0.09015,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"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.02524,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.00361,"88":0,"89":0,"90":0,"91":0,"92":0.00361,"93":0,"94":0.00361,"95":0,"96":0,"97":0,"98":0,"99":0.00361,"100":0,"101":0,"102":0,"103":0.02164,"104":0,"105":0.05048,"106":0.03245,"107":0.07573,"108":4.88974,"109":5.52079,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01442,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00361,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01442,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00361,"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.00361,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00721,"107":0.00361,"108":0.36781,"109":0.34978},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00361,"14":0.05048,"15":0.00361,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00721,"13.1":0.01082,"14.1":0.10097,"15.1":0.01442,"15.2-15.3":0.01082,"15.4":0.02885,"15.5":0.0613,"15.6":0.33536,"16.0":0.01442,"16.1":0.03967,"16.2":0.11179,"16.3":0.00361},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.0138,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.0069,"11.3-11.4":0,"12.0-12.1":0.0276,"12.2-12.5":0.29323,"13.0-13.1":0,"13.2":0.0069,"13.3":0.02415,"13.4-13.7":0.13799,"14.0-14.4":0.53472,"14.5-14.8":1.15224,"15.0-15.1":0.51057,"15.2-15.3":0.95215,"15.4":0.39673,"15.5":1.62832,"15.6":5.50936,"16.0":3.40842,"16.1":13.04377,"16.2":5.28168,"16.3":0.43468},P:{"4":0.01008,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03024,"8.2":0.02016,"9.2":0.02016,"10.1":0,"11.1-11.2":0.04032,"12.0":0,"13.0":0.04032,"14.0":0.02016,"15.0":0.0504,"16.0":0.33262,"17.0":0.08063,"18.0":0.42333,"19.0":4.4752},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00721},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.01082,"11":0.06491,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.20461},Q:{"13.1":0},O:{"0":0.63301},H:{"0":0.15739},L:{"0":44.91985},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00901,"52":0,"53":0,"54":0,"55":0,"56":0.00451,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01352,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00451,"79":0,"80":0.00451,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00451,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00901,"98":0.00451,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00901,"108":0.04958,"109":0.40563,"110":0.31098,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02254,"50":0,"51":0,"52":0,"53":0.07662,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00451,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01352,"80":0,"81":0,"83":0.00901,"84":0,"85":0,"86":0,"87":0.00451,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00451,"102":0,"103":0.01803,"104":0,"105":0.02704,"106":0.06761,"107":0.07211,"108":0.34704,"109":11.04666,"110":5.30474,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00451,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00901,"95":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.01352,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00451,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00451,"106":0,"107":0,"108":0,"109":0.44169,"110":0.55436},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02704,"14":0.01803,"15":0.01803,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00451,"12.1":0.00451,"13.1":0.04056,"14.1":0.03155,"15.1":0.01803,"15.2-15.3":0.00451,"15.4":0.01352,"15.5":0.04958,"15.6":0.47324,"16.0":0.04958,"16.1":0.02254,"16.2":0.14873,"16.3":0.23436,"16.4":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.01645,"12.2-12.5":0.25004,"13.0-13.1":0.04935,"13.2":0.03948,"13.3":0.02303,"13.4-13.7":0.11515,"14.0-14.4":0.95081,"14.5-14.8":1.21072,"15.0-15.1":0.46718,"15.2-15.3":0.33558,"15.4":0.35861,"15.5":1.26994,"15.6":3.61571,"16.0":3.52688,"16.1":7.6361,"16.2":8.04735,"16.3":4.00064,"16.4":0},P:{"4":0,"20":1.60163,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06082,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01014,"12.0":0,"13.0":0.04055,"14.0":0.09123,"15.0":0.04055,"16.0":0.13178,"17.0":0.03041,"18.0":0.24329,"19.0":3.06134},I:{"0":0,"3":0,"4":0,"2.1":0,"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.02704,"11":0.06761,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.21423},H:{"0":0.052},L:{"0":39.39982},R:{_:"0"},M:{"0":0.27465},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js index 41de6482fea3ff..6b2ddb6195ccba 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.00409,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00409,"74":0,"75":0,"76":0,"77":0,"78":0.00409,"79":0.00409,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02456,"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.01638,"105":0.00409,"106":0.00819,"107":0.00819,"108":0.38074,"109":0.20879,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01228,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00409,"49":0.01638,"50":0,"51":0,"52":0,"53":0.00409,"54":0,"55":0,"56":0.00409,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00409,"64":0,"65":0.00409,"66":0,"67":0.00409,"68":0.00409,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00409,"75":0,"76":0.00409,"77":0,"78":0.00409,"79":0.04913,"80":0,"81":0.00819,"83":0.00819,"84":0.01228,"85":0.00819,"86":0.00819,"87":0.02456,"88":0.00409,"89":0.00409,"90":0.00409,"91":0.01228,"92":0.02047,"93":0.00409,"94":0.00409,"95":0.00409,"96":0.01228,"97":0.01228,"98":0.00819,"99":0.00819,"100":0.01228,"101":0.02866,"102":0.01638,"103":0.05322,"104":0.01638,"105":0.05322,"106":0.04094,"107":0.09826,"108":5.44911,"109":5.22804,"110":0.00409,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00409,"73":0.00409,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00409,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":1.40424,"94":0.85155,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00409,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00409,"104":0,"105":0.00409,"106":0.00409,"107":0.02456,"108":0.63457,"109":0.63866},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00409,"14":0.00819,"15":0.00409,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00409,"13.1":0.02456,"14.1":0.05322,"15.1":0.00819,"15.2-15.3":0.01228,"15.4":0.01638,"15.5":0.03275,"15.6":0.12282,"16.0":0.02047,"16.1":0.08188,"16.2":0.12691,"16.3":0.00819},G:{"8":0.00153,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00613,"6.0-6.1":0,"7.0-7.1":0.00153,"8.1-8.4":0.00153,"9.0-9.2":0,"9.3":0.05979,"10.0-10.2":0,"10.3":0.02146,"11.0-11.2":0.00307,"11.3-11.4":0.00613,"12.0-12.1":0.00766,"12.2-12.5":0.30199,"13.0-13.1":0.0046,"13.2":0.00307,"13.3":0.02146,"13.4-13.7":0.06898,"14.0-14.4":0.19928,"14.5-14.8":0.55646,"15.0-15.1":0.08431,"15.2-15.3":0.15176,"15.4":0.18089,"15.5":0.45835,"15.6":1.98518,"16.0":1.98825,"16.1":4.88707,"16.2":3.18549,"16.3":0.25754},P:{"4":0.14282,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06121,"8.2":0,"9.2":0.0102,"10.1":0,"11.1-11.2":0.04081,"12.0":0.0102,"13.0":0.05101,"14.0":0.05101,"15.0":0.0204,"16.0":0.07141,"17.0":0.05101,"18.0":0.11221,"19.0":1.622},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00306,"4.4":0,"4.4.3-4.4.4":0.06741},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01008,"9":0.00504,"10":0.00504,"11":0.04535,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.1949},Q:{"13.1":0},O:{"0":0.02953},H:{"0":0.20129},L:{"0":65.29074},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00405,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00405,"74":0,"75":0,"76":0,"77":0,"78":0.00809,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00405,"92":0,"93":0,"94":0.00405,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00809,"103":0,"104":0.00809,"105":0.00809,"106":0.00809,"107":0.00809,"108":0.02023,"109":0.35596,"110":0.23866,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00809,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00405,"49":0.01618,"50":0,"51":0,"52":0,"53":0.00405,"54":0,"55":0,"56":0.00405,"57":0,"58":0.00405,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00809,"68":0.00405,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00405,"75":0,"76":0.00405,"77":0,"78":0,"79":0.04854,"80":0,"81":0.00405,"83":0.00809,"84":0.01214,"85":0.02023,"86":0.01214,"87":0.02832,"88":0.00405,"89":0.00405,"90":0.00405,"91":0.01214,"92":0.01618,"93":0.00405,"94":0,"95":0.00405,"96":0.01214,"97":0.00809,"98":0.00809,"99":0.00809,"100":0.01618,"101":0.00809,"102":0.01618,"103":0.04854,"104":0.01214,"105":0.03236,"106":0.05259,"107":0.05259,"108":0.27506,"109":6.16054,"110":3.99242,"111":0.00405,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00405,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00809,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.21439,"94":1.51688,"95":0.39641,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00405,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01618,"108":0.02023,"109":0.51776,"110":0.68361},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00405,"14":0.01214,"15":0.00405,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00405,"13.1":0.02023,"14.1":0.05259,"15.1":0.00809,"15.2-15.3":0.00809,"15.4":0.01214,"15.5":0.02832,"15.6":0.08899,"16.0":0.01618,"16.1":0.05259,"16.2":0.12135,"16.3":0.08899,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00624,"6.0-6.1":0,"7.0-7.1":0.00156,"8.1-8.4":0.00156,"9.0-9.2":0,"9.3":0.0546,"10.0-10.2":0,"10.3":0.01716,"11.0-11.2":0.00936,"11.3-11.4":0.00624,"12.0-12.1":0.01092,"12.2-12.5":0.29325,"13.0-13.1":0.00468,"13.2":0.00312,"13.3":0.02496,"13.4-13.7":0.07799,"14.0-14.4":0.19654,"14.5-14.8":0.4976,"15.0-15.1":0.07331,"15.2-15.3":0.14039,"15.4":0.14663,"15.5":0.45704,"15.6":1.59262,"16.0":1.59262,"16.1":3.76239,"16.2":3.74523,"16.3":1.9935,"16.4":0.00936},P:{"4":0.14377,"20":0.55453,"5.0-5.4":0.01027,"6.2-6.4":0,"7.2-7.4":0.05135,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05135,"12.0":0.01027,"13.0":0.03081,"14.0":0.04108,"15.0":0.02054,"16.0":0.06161,"17.0":0.04108,"18.0":0.07188,"19.0":1.22202},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01459,"4.2-4.3":0.00972,"4.4":0,"4.4.3-4.4.4":0.05591},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00917,"9":0.00458,"10":0.00458,"11":0.05043,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01787},H:{"0":0.19732},L:{"0":65.4796},R:{_:"0"},M:{"0":0.18461},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js index f3ea3d98494c56..748c333beb2c29 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.00207,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00207,"35":0,"36":0.0062,"37":0,"38":0.00413,"39":0,"40":0,"41":0,"42":0,"43":0.00207,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00207,"50":0.00207,"51":0.00207,"52":0.01034,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00207,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00413,"79":0.00413,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00207,"88":0,"89":0.00207,"90":0,"91":0.00207,"92":0,"93":0.00207,"94":0,"95":0.00207,"96":0.00207,"97":0.00207,"98":0.00207,"99":0.00207,"100":0.00207,"101":0.00413,"102":0.02067,"103":0.00207,"104":0.01034,"105":0.00207,"106":0.00413,"107":0.01447,"108":0.2253,"109":0.11782,"110":0.00207,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00207,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00207,"47":0,"48":0,"49":0.00413,"50":0,"51":0,"52":0,"53":0,"54":0.01034,"55":0.00207,"56":0.03514,"57":0.00207,"58":0.00207,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0124,"69":0.00207,"70":0.00207,"71":0,"72":0.00413,"73":0,"74":0.00207,"75":0,"76":0.00413,"77":0.00207,"78":0,"79":0.00413,"80":0.00413,"81":0.0062,"83":0.00207,"84":0.0062,"85":0.01654,"86":0.00207,"87":0.00207,"88":0.00207,"89":0.00207,"90":0.00207,"91":0.00207,"92":0.00207,"93":0.00413,"94":0.0062,"95":0.00827,"96":0.00207,"97":0.02274,"98":0.00207,"99":0.00207,"100":0.00413,"101":0.00207,"102":0.00413,"103":0.01447,"104":0.00827,"105":0.01034,"106":0.0186,"107":0.0248,"108":0.68624,"109":0.55189,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00827,"38":0.00207,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00207,"47":0,"48":0,"49":0,"50":0.00207,"51":0.00207,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00207,"60":0.02894,"62":0,"63":0.02894,"64":0.0124,"65":0.01447,"66":0.02687,"67":0.00827,"68":0,"69":0,"70":0.00413,"71":0,"72":0.00207,"73":0.0124,"74":0,"75":0.00207,"76":0,"77":0,"78":0,"79":0.00207,"80":0,"81":0,"82":0,"83":0,"84":0.00207,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00207,"91":0,"92":0.01654,"93":0.02067,"94":0.09095,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00413},B:{"12":0.00413,"13":0.00207,"14":0.00827,"15":0.01034,"16":0.00207,"17":0.00207,"18":0.01034,"79":0,"80":0,"81":0,"83":0,"84":0.00207,"85":0,"86":0,"87":0,"88":0,"89":0.00207,"90":0.00207,"91":0,"92":0.0062,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00207,"99":0,"100":0,"101":0,"102":0,"103":0.00207,"104":0.00207,"105":0.00413,"106":0.00413,"107":0.01034,"108":0.11989,"109":0.09302},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00207,"11":0,"12":0,"13":0,"14":0.00207,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00413,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00207,"13.1":0.00413,"14.1":0.00207,"15.1":0,"15.2-15.3":0,"15.4":0.00207,"15.5":0.00207,"15.6":0.00413,"16.0":0.00207,"16.1":0.0062,"16.2":0.00413,"16.3":0},G:{"8":0.00128,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00128,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00256,"8.1-8.4":0,"9.0-9.2":0.00128,"9.3":0.14615,"10.0-10.2":0.02436,"10.3":0.37691,"11.0-11.2":0.06282,"11.3-11.4":0.04487,"12.0-12.1":0.38332,"12.2-12.5":3.31403,"13.0-13.1":0.08461,"13.2":0.11025,"13.3":0.23205,"13.4-13.7":0.31281,"14.0-14.4":0.7846,"14.5-14.8":0.90511,"15.0-15.1":0.4423,"15.2-15.3":0.48717,"15.4":0.54486,"15.5":0.69101,"15.6":0.61665,"16.0":0.66793,"16.1":0.75896,"16.2":0.92306,"16.3":0.06026},P:{"4":0.26185,"5.0-5.4":0.02014,"6.2-6.4":0.03021,"7.2-7.4":0.17121,"8.2":0,"9.2":0.08057,"10.1":0,"11.1-11.2":0.05035,"12.0":0,"13.0":0.01007,"14.0":0.03021,"15.0":0.02014,"16.0":0.06043,"17.0":0.0705,"18.0":0.33234,"19.0":0.28199},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00401,"4.2-4.3":0.00701,"4.4":0,"4.4.3-4.4.4":0.14825},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06201,"5.5":0},J:{"7":0,"10":0.0476},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.38872},Q:{"13.1":0.01587},O:{"0":0.59498},H:{"0":4.03311},L:{"0":76.81942},S:{"2.5":0.25386}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00212,"35":0,"36":0.00212,"37":0,"38":0.00424,"39":0,"40":0,"41":0,"42":0.00212,"43":0,"44":0,"45":0,"46":0,"47":0.00212,"48":0,"49":0,"50":0.00212,"51":0.00212,"52":0.01484,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00424,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00212,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00212,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00212,"98":0.00212,"99":0.00212,"100":0,"101":0.00424,"102":0.01272,"103":0.00212,"104":0.00212,"105":0.00212,"106":0.00424,"107":0.00424,"108":0.053,"109":0.18444,"110":0.12508,"111":0.00636,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00212,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00212,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00212,"47":0,"48":0,"49":0.00212,"50":0,"51":0,"52":0,"53":0,"54":0.00636,"55":0.00212,"56":0.01908,"57":0.00212,"58":0.00212,"59":0,"60":0,"61":0.00212,"62":0.00212,"63":0.00212,"64":0.00212,"65":0,"66":0,"67":0.00212,"68":0.01272,"69":0.00424,"70":0,"71":0,"72":0.00212,"73":0,"74":0.00424,"75":0,"76":0.00424,"77":0.00212,"78":0,"79":0.00848,"80":0.00424,"81":0.00424,"83":0,"84":0,"85":0.0212,"86":0.00212,"87":0.00424,"88":0.00212,"89":0.00212,"90":0.00212,"91":0.00212,"92":0.00212,"93":0.00636,"94":0.00424,"95":0.00424,"96":0.00212,"97":0.00636,"98":0.00212,"99":0.00212,"100":0.00424,"101":0,"102":0.00424,"103":0.00848,"104":0.00424,"105":0.00636,"106":0.0212,"107":0.01484,"108":0.04664,"109":0.8056,"110":0.3604,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00212,"33":0,"34":0,"35":0,"36":0,"37":0.00636,"38":0,"39":0,"40":0,"41":0,"42":0.00212,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00212,"51":0.00212,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00212,"58":0.00424,"60":0.0212,"62":0,"63":0.01908,"64":0.00848,"65":0.00848,"66":0.02332,"67":0.05088,"68":0,"69":0,"70":0.00424,"71":0,"72":0.00212,"73":0,"74":0.0106,"75":0.00212,"76":0.00212,"77":0,"78":0,"79":0.00424,"80":0,"81":0,"82":0,"83":0,"84":0.00212,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00636,"93":0,"94":0.06784,"95":0.06148,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00212},B:{"12":0.00212,"13":0.00212,"14":0.00212,"15":0.01272,"16":0,"17":0.00212,"18":0.00636,"79":0,"80":0,"81":0,"83":0,"84":0.00424,"85":0,"86":0,"87":0,"88":0,"89":0.00212,"90":0.00424,"91":0,"92":0.00636,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00212,"101":0,"102":0,"103":0.00212,"104":0.00212,"105":0.00424,"106":0,"107":0.00424,"108":0.01272,"109":0.10176,"110":0.11872},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00212,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00424,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00212,"14.1":0.00212,"15.1":0,"15.2-15.3":0,"15.4":0.00212,"15.5":0,"15.6":0.00424,"16.0":0.00212,"16.1":0.00424,"16.2":0.00212,"16.3":0.00424,"16.4":0},G:{"8":0.00139,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03747,"8.1-8.4":0,"9.0-9.2":0.00139,"9.3":0.03608,"10.0-10.2":0.03192,"10.3":0.40657,"11.0-11.2":0.04163,"11.3-11.4":0.04024,"12.0-12.1":0.30944,"12.2-12.5":3.53427,"13.0-13.1":0.07354,"13.2":0.11934,"13.3":0.26365,"13.4-13.7":0.35939,"14.0-14.4":0.85477,"14.5-14.8":0.94775,"15.0-15.1":0.53423,"15.2-15.3":0.57031,"15.4":0.39686,"15.5":0.55782,"15.6":0.72434,"16.0":0.57448,"16.1":0.73821,"16.2":0.83951,"16.3":0.60917,"16.4":0},P:{"4":0.23386,"20":0.05084,"5.0-5.4":0.05084,"6.2-6.4":0.02034,"7.2-7.4":0.15252,"8.2":0,"9.2":0.17285,"10.1":0,"11.1-11.2":0.0305,"12.0":0,"13.0":0.01017,"14.0":0.01017,"15.0":0.02034,"16.0":0.05084,"17.0":0.06101,"18.0":0.08134,"19.0":0.3152},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00442,"4.2-4.3":0.00442,"4.4":0,"4.4.3-4.4.4":0.09416},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00212,"9":0,"10":0,"11":0.10812,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.30732,_:"3.0-3.1"},J:{"7":0,"10":0.05516},O:{"0":0.53584},H:{"0":3.82712},L:{"0":76.62652},R:{_:"0"},M:{"0":0.38612},Q:{"13.1":0.01576}}; 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 f7c18f96f3b1fc..34bc11a989406f 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.00824,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.33768,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00824,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00412,"64":0,"65":0,"66":0,"67":0,"68":0.01235,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00824,"79":0,"80":0,"81":0,"82":0.00412,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00824,"90":0.01235,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02059,"103":0.00412,"104":0.00412,"105":0.00412,"106":0.04118,"107":0.00824,"108":0.24708,"109":0.11942,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00824,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00824,"40":0.00824,"41":0.02059,"42":0.00824,"43":0.00824,"44":0.00824,"45":0.01235,"46":0.00824,"47":0.01647,"48":0.04942,"49":0.03294,"50":0.00824,"51":0.00824,"52":0.00824,"53":0.02059,"54":0.00824,"55":0.03294,"56":0.01235,"57":0.03294,"58":0.07412,"59":0.01235,"60":0.00824,"61":0.00412,"62":0.01235,"63":0.01647,"64":0,"65":0.00824,"66":0.00412,"67":0.00824,"68":0.00412,"69":0.59711,"70":0.19355,"71":0.00412,"72":0.19766,"73":0.02059,"74":0.26355,"75":0.03294,"76":0.00412,"77":0.00824,"78":0.1153,"79":0.10707,"80":0.02883,"81":0.02471,"83":0.08648,"84":0.01647,"85":0.06177,"86":0.13178,"87":0.03294,"88":0.01235,"89":0.01647,"90":0.0453,"91":0.14825,"92":0.1153,"93":0.01235,"94":0.01647,"95":0.01647,"96":0.0453,"97":0.08648,"98":0.94302,"99":0.15648,"100":0.0453,"101":0.04942,"102":0.04118,"103":0.12354,"104":0.04942,"105":0.05765,"106":0.0453,"107":0.14825,"108":0.78242,"109":0.53122,"110":0.00412,"111":0.00412,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02059,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02059,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00412,"17":0.00824,"18":0.03294,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00412,"87":0.00412,"88":0,"89":0.00412,"90":0,"91":0,"92":0.01647,"93":0,"94":0,"95":0.00412,"96":0,"97":0.00412,"98":0,"99":0.00412,"100":0.00412,"101":0.02883,"102":0.00412,"103":0.00824,"104":0.00824,"105":0.01235,"106":0.02471,"107":0.09883,"108":1.47013,"109":0.97185},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00412,"10":0,"11":0,"12":0,"13":0.00824,"14":0.02883,"15":0.00824,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00412,"10.1":0,"11.1":0,"12.1":0.00412,"13.1":0.03294,"14.1":0.03294,"15.1":0.00824,"15.2-15.3":0.00824,"15.4":0.02059,"15.5":0.02883,"15.6":0.1153,"16.0":0.01647,"16.1":0.06177,"16.2":0.0906,"16.3":0.00824},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.03701,"5.0-5.1":0.0242,"6.0-6.1":0.03274,"7.0-7.1":0.02135,"8.1-8.4":0.02562,"9.0-9.2":0.10106,"9.3":0.05409,"10.0-10.2":0.04412,"10.3":1.49165,"11.0-11.2":0.27328,"11.3-11.4":0.07117,"12.0-12.1":0.11387,"12.2-12.5":0.39426,"13.0-13.1":0.03985,"13.2":0.03558,"13.3":0.14518,"13.4-13.7":0.65615,"14.0-14.4":0.93228,"14.5-14.8":0.86681,"15.0-15.1":0.47824,"15.2-15.3":0.46258,"15.4":0.72732,"15.5":0.54229,"15.6":1.05326,"16.0":0.91805,"16.1":2.37838,"16.2":1.58559,"16.3":0.15799},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01062,"10.1":0,"11.1-11.2":0,"12.0":0.01062,"13.0":0,"14.0":0.09555,"15.0":0,"16.0":0,"17.0":0.01062,"18.0":0.01062,"19.0":0.29726},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04146,"4.2-4.3":0.12437,"4.4":0,"4.4.3-4.4.4":0.62183},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.13378,"9":0.57973,"10":0.04459,"11":4.72706,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15293},Q:{"13.1":3.58214},O:{"0":9.51119},H:{"0":0.04455},L:{"0":48.94501},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00651,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.14968,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00325,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00651,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00651,"79":0,"80":0,"81":0,"82":0.00325,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00325,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00976,"103":0,"104":0,"105":0.00325,"106":0.00651,"107":0.00325,"108":0.00976,"109":0.14643,"110":0.10087,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00325,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00651,"40":0.00651,"41":0.01302,"42":0.00651,"43":0.00651,"44":0.00651,"45":0.00976,"46":0.00651,"47":0.01302,"48":0.03254,"49":0.02278,"50":0.00651,"51":0.00651,"52":0.00651,"53":0.01302,"54":0.00651,"55":0.02278,"56":0.00976,"57":0.02278,"58":0.00651,"59":0.00651,"60":0.00651,"61":0,"62":0.00976,"63":0.00976,"64":0,"65":0.00651,"66":0,"67":0.00325,"68":0.00325,"69":0.33516,"70":0.06833,"71":0.00325,"72":0.0846,"73":0.01302,"74":0.15619,"75":0.01952,"76":0.00325,"77":0.00651,"78":0.06833,"79":0.06508,"80":0.01627,"81":0.01302,"83":0.05532,"84":0.00976,"85":0.03254,"86":0.0846,"87":0.02278,"88":0.00651,"89":0.00976,"90":0.05532,"91":0.14643,"92":0.06833,"93":0.00651,"94":0.00976,"95":0.00976,"96":0.02603,"97":0.05206,"98":0.54016,"99":0.13341,"100":0.03905,"101":0.03905,"102":0.03254,"103":0.0781,"104":0.03254,"105":0.03905,"106":0.02603,"107":0.05857,"108":0.10413,"109":0.5727,"110":0.29611,"111":0,"112":0.00325,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01952,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00651,"95":0.00651,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00325},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00325,"17":0.00325,"18":0.01952,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00976,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00325,"101":0.00651,"102":0.00325,"103":0.00651,"104":0.00325,"105":0.00325,"106":0.01302,"107":0.03579,"108":0.19849,"109":0.64755,"110":0.75493},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00325,"10":0,"11":0,"12":0,"13":0.00651,"14":0.01627,"15":0.00325,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00651,"10.1":0,"11.1":0,"12.1":0.00325,"13.1":0.01627,"14.1":0.01627,"15.1":0.00325,"15.2-15.3":0.00325,"15.4":0.00976,"15.5":0.01627,"15.6":0.05857,"16.0":0.00651,"16.1":0.02929,"16.2":0.05206,"16.3":0.0423,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.03727,"5.0-5.1":0.02019,"6.0-6.1":0.03572,"7.0-7.1":0.00932,"8.1-8.4":0.01864,"9.0-9.2":0.08386,"9.3":0.04504,"10.0-10.2":0.03261,"10.3":1.03589,"11.0-11.2":0.205,"11.3-11.4":0.06212,"12.0-12.1":0.09318,"12.2-12.5":0.30906,"13.0-13.1":0.03417,"13.2":0.02795,"13.3":0.18015,"13.4-13.7":0.53736,"14.0-14.4":1.00483,"14.5-14.8":0.96289,"15.0-15.1":0.5358,"15.2-15.3":0.5063,"15.4":0.85729,"15.5":0.62899,"15.6":1.07627,"16.0":0.96289,"16.1":2.37151,"16.2":1.88385,"16.3":1.41638,"16.4":0.00466},P:{"4":0,"20":0.06198,"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.01033,"13.0":0,"14.0":0.06198,"15.0":0,"16.0":0,"17.0":0.01033,"18.0":0.01033,"19.0":0.17561},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02161,"4.2-4.3":0.10803,"4.4":0,"4.4.3-4.4.4":0.58338},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.04993,"9":0.62408,"10":0.02496,"11":2.72099,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":7.65671},H:{"0":0.03832},L:{"0":58.66557},R:{_:"0"},M:{"0":0.12817},Q:{"13.1":3.01546}}; 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 30577fed6f835f..da99eb43f3e53b 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.00351,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00351,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00351,"74":0,"75":0,"76":0,"77":0,"78":0.00351,"79":0,"80":0,"81":0.00351,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00701,"103":0,"104":0.01753,"105":0.00351,"106":0.00351,"107":0.00701,"108":0.2068,"109":0.12618,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00701,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00351,"48":0,"49":0.01402,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00701,"69":0.00351,"70":0.00351,"71":0,"72":0,"73":0,"74":0.00351,"75":0,"76":0.00351,"77":0,"78":0.00351,"79":0.05608,"80":0.00351,"81":0.00701,"83":0.00701,"84":0.00701,"85":0.00701,"86":0.00701,"87":0.01402,"88":0.01052,"89":0.00701,"90":0.00351,"91":0.01753,"92":0.01402,"93":0.00351,"94":0.00351,"95":0.00701,"96":0.01402,"97":0.01402,"98":0.01753,"99":0.01402,"100":0.01753,"101":0.01052,"102":0.01402,"103":0.04907,"104":0.04557,"105":0.03505,"106":0.03505,"107":0.10515,"108":4.17446,"109":4.54248,"110":0.00351,"111":0.00351,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00351,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00351,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00351,"93":0.4206,"94":0.35751,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00351,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00351,"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.00351,"106":0.00351,"107":0.02103,"108":0.39256,"109":0.44163},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00701,"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.01753,"14.1":0.02454,"15.1":0.00351,"15.2-15.3":0.00351,"15.4":0.00701,"15.5":0.01753,"15.6":0.09464,"16.0":0.01402,"16.1":0.04557,"16.2":0.08062,"16.3":0.00701},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00245,"6.0-6.1":0,"7.0-7.1":0.0135,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06627,"10.0-10.2":0,"10.3":0.04786,"11.0-11.2":0.00368,"11.3-11.4":0.00491,"12.0-12.1":0.00368,"12.2-12.5":0.27733,"13.0-13.1":0.00245,"13.2":0.00245,"13.3":0.0135,"13.4-13.7":0.04172,"14.0-14.4":0.10676,"14.5-14.8":0.32519,"15.0-15.1":0.06258,"15.2-15.3":0.14603,"15.4":0.13621,"15.5":0.34605,"15.6":1.26028,"16.0":1.90943,"16.1":3.81151,"16.2":2.65186,"16.3":0.19143},P:{"4":0.20236,"5.0-5.4":0.01012,"6.2-6.4":0,"7.2-7.4":0.08094,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02024,"12.0":0,"13.0":0.03035,"14.0":0.02024,"15.0":0.01012,"16.0":0.04047,"17.0":0.06071,"18.0":0.07083,"19.0":0.94098},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00576,"4.2-4.3":0.0144,"4.4":0,"4.4.3-4.4.4":0.07489},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01402,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14289},Q:{"13.1":0},O:{"0":0.02598},H:{"0":0.14758},L:{"0":73.81758},S:{"2.5":0.0065}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00377,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00377,"74":0,"75":0,"76":0,"77":0,"78":0.00377,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00753,"97":0,"98":0,"99":0.00753,"100":0,"101":0,"102":0.00753,"103":0.00377,"104":0.01506,"105":0.00377,"106":0.00377,"107":0.00753,"108":0.0113,"109":0.21084,"110":0.14307,"111":0.00377,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00377,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00377,"48":0,"49":0.0113,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00377,"63":0,"64":0,"65":0.00377,"66":0,"67":0,"68":0.0113,"69":0.00377,"70":0.00377,"71":0,"72":0,"73":0,"74":0.00377,"75":0.00377,"76":0.00377,"77":0.00377,"78":0.00377,"79":0.05648,"80":0.00753,"81":0.00753,"83":0.00753,"84":0.00753,"85":0.00753,"86":0.00753,"87":0.01506,"88":0.0113,"89":0.0113,"90":0.00377,"91":0.01883,"92":0.01506,"93":0.00377,"94":0.00377,"95":0.00753,"96":0.0113,"97":0.01506,"98":0.01883,"99":0.01506,"100":0.01883,"101":0.0113,"102":0.01883,"103":0.05648,"104":0.04895,"105":0.04142,"106":0.03012,"107":0.06401,"108":0.18072,"109":6.024,"110":4.03232,"111":0.00377,"112":0.00377,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00377,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.06777,"94":0.5384,"95":0.17696,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00377,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00377,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00377,"105":0.00377,"106":0.00377,"107":0.0113,"108":0.01506,"109":0.40286,"110":0.55346},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00753,"15":0.00377,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00377,"13.1":0.01506,"14.1":0.02636,"15.1":0.00377,"15.2-15.3":0.00377,"15.4":0.00753,"15.5":0.01883,"15.6":0.07907,"16.0":0.0113,"16.1":0.03012,"16.2":0.07907,"16.3":0.06401,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00362,"6.0-6.1":0,"7.0-7.1":0.01085,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04461,"10.0-10.2":0,"10.3":0.05426,"11.0-11.2":0.00362,"11.3-11.4":0.00482,"12.0-12.1":0.00241,"12.2-12.5":0.29058,"13.0-13.1":0.00241,"13.2":0.00723,"13.3":0.01326,"13.4-13.7":0.03617,"14.0-14.4":0.09887,"14.5-14.8":0.29179,"15.0-15.1":0.05788,"15.2-15.3":0.13745,"15.4":0.12419,"15.5":0.30023,"15.6":0.90189,"16.0":1.389,"16.1":2.78041,"16.2":2.93233,"16.3":1.65667,"16.4":0.00723},P:{"4":0.17398,"20":0.34796,"5.0-5.4":0.02047,"6.2-6.4":0,"7.2-7.4":0.08187,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02047,"12.0":0,"13.0":0.02047,"14.0":0.02047,"15.0":0.01023,"16.0":0.04094,"17.0":0.05117,"18.0":0.05117,"19.0":0.64474},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01153,"4.2-4.3":0.01538,"4.4":0,"4.4.3-4.4.4":0.08074},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00377,"9":0,"10":0,"11":0.01506,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02494},H:{"0":0.12396},L:{"0":72.40977},R:{_:"0"},M:{"0":0.13094},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js index 809bdfd15edd16..3c41a4beb8298e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00373,"52":0,"53":0,"54":0,"55":0,"56":0.00373,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01492,"74":0,"75":0,"76":0,"77":0,"78":0.00373,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00746,"89":0,"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.01119,"103":0.00373,"104":0.0261,"105":0.00746,"106":0.01865,"107":0.00746,"108":0.44002,"109":0.26849,"110":0.00746,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00373,"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.00373,"68":0.00746,"69":0,"70":0,"71":0,"72":0,"73":0.00373,"74":0,"75":0,"76":0,"77":0.00373,"78":0.00373,"79":0.01119,"80":0.00373,"81":0.00373,"83":0.00373,"84":0,"85":0,"86":0.01119,"87":0.01492,"88":0.00373,"89":0,"90":0.00373,"91":0.00373,"92":0.0261,"93":0.00373,"94":0,"95":0.00373,"96":0.01865,"97":0.01492,"98":0.00746,"99":0.00373,"100":0.00373,"101":0.00373,"102":0.00746,"103":0.09695,"104":0.01119,"105":0.01865,"106":0.02983,"107":0.09695,"108":4.31445,"109":4.11682,"110":0.00746,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00373,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00373,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00373,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.49223,"94":0.38409,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01492,"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.00746,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00373,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.01492,"106":0.00373,"107":0.02237,"108":0.62647,"109":0.69359},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00746,"14":0.01865,"15":0.00373,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00746,"13.1":0.03729,"14.1":0.05966,"15.1":0.01865,"15.2-15.3":0.00746,"15.4":0.0261,"15.5":0.07085,"15.6":0.35426,"16.0":0.06339,"16.1":0.1156,"16.2":0.26103,"16.3":0.02237},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00822,"6.0-6.1":0.01233,"7.0-7.1":0.02261,"8.1-8.4":0,"9.0-9.2":0.00411,"9.3":0.07605,"10.0-10.2":0,"10.3":0.02877,"11.0-11.2":0.00206,"11.3-11.4":0.08427,"12.0-12.1":0.00617,"12.2-12.5":0.45217,"13.0-13.1":0.00206,"13.2":0.00206,"13.3":0.01028,"13.4-13.7":0.04933,"14.0-14.4":0.21375,"14.5-14.8":0.483,"15.0-15.1":0.09249,"15.2-15.3":0.12332,"15.4":0.13771,"15.5":0.42751,"15.6":2.18275,"16.0":2.36362,"16.1":7.23885,"16.2":5.06843,"16.3":0.40901},P:{"4":0.14203,"5.0-5.4":0,"6.2-6.4":0.01014,"7.2-7.4":0.12174,"8.2":0,"9.2":0.02029,"10.1":0,"11.1-11.2":0.03043,"12.0":0.01014,"13.0":0.06087,"14.0":0.03043,"15.0":0.02029,"16.0":0.06087,"17.0":0.14203,"18.0":0.08116,"19.0":2.5565},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00652,"4.4":0,"4.4.3-4.4.4":0.18908},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01492,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.28847},Q:{"13.1":0},O:{"0":0.0439},H:{"0":0.23154},L:{"0":60.43103},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00392,"52":0.00392,"53":0,"54":0,"55":0,"56":0.00392,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01566,"74":0,"75":0,"76":0,"77":0,"78":0.00392,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00392,"89":0,"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.01175,"103":0,"104":0.01958,"105":0,"106":0.01958,"107":0.00392,"108":0.01958,"109":0.47384,"110":0.31328,"111":0.00392,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00392,"44":0,"45":0,"46":0,"47":0.00392,"48":0,"49":0.00392,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00392,"66":0,"67":0.00392,"68":0.00783,"69":0,"70":0,"71":0,"72":0,"73":0.00392,"74":0,"75":0,"76":0.00392,"77":0,"78":0.00392,"79":0.01175,"80":0.00392,"81":0.00392,"83":0.00392,"84":0,"85":0,"86":0.01566,"87":0.01958,"88":0.00392,"89":0,"90":0,"91":0.00392,"92":0.01958,"93":0.00783,"94":0,"95":0.00392,"96":0.01175,"97":0.00783,"98":0.00783,"99":0.00392,"100":0.00783,"101":0.00392,"102":0.00783,"103":0.06266,"104":0.01566,"105":0.01566,"106":0.01958,"107":0.04308,"108":0.26629,"109":5.41583,"110":3.64971,"111":0.01175,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00392,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00392,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00783,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.09398,"94":0.56782,"95":0.1723,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01175,"18":0.00392,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00392,"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.00392,"106":0,"107":0.01175,"108":0.0235,"109":0.63439,"110":0.90851},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00783,"14":0.01958,"15":0.00392,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00783,"13.1":0.05874,"14.1":0.05874,"15.1":0.03524,"15.2-15.3":0.00783,"15.4":0.03524,"15.5":0.05874,"15.6":0.35244,"16.0":0.04699,"16.1":0.0979,"16.2":0.28195,"16.3":0.23496,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01033,"6.0-6.1":0.01654,"7.0-7.1":0.0248,"8.1-8.4":0.00413,"9.0-9.2":0,"9.3":0.04341,"10.0-10.2":0,"10.3":0.0248,"11.0-11.2":0.0124,"11.3-11.4":0.04341,"12.0-12.1":0.00827,"12.2-12.5":0.36172,"13.0-13.1":0,"13.2":0,"13.3":0.01447,"13.4-13.7":0.03307,"14.0-14.4":0.18189,"14.5-14.8":0.4568,"15.0-15.1":0.07441,"15.2-15.3":0.13642,"15.4":0.15709,"15.5":0.36172,"15.6":1.80859,"16.0":1.86027,"16.1":5.03719,"16.2":5.8247,"16.3":3.16452,"16.4":0.0124},P:{"4":0.10185,"20":1.09993,"5.0-5.4":0,"6.2-6.4":0.01018,"7.2-7.4":0.10185,"8.2":0,"9.2":0.02037,"10.1":0,"11.1-11.2":0.04074,"12.0":0,"13.0":0.04074,"14.0":0.04074,"15.0":0.02037,"16.0":0.05092,"17.0":0.10185,"18.0":0.08148,"19.0":1.53786},I:{"0":0,"3":0,"4":0.01178,"2.1":0,"2.2":0,"2.3":0.01178,"4.1":0.00589,"4.2-4.3":0.02945,"4.4":0,"4.4.3-4.4.4":0.15901},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00914,"9":0,"10":0,"11":0.01827,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.03042},H:{"0":0.21312},L:{"0":58.57974},R:{_:"0"},M:{"0":0.3407},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js index 9a58b9ff1a6b9f..f0e7d0c754141c 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.00246,"34":0.00246,"35":0,"36":0,"37":0.00246,"38":0,"39":0,"40":0.00246,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00246,"47":0.00246,"48":0.00246,"49":0.00246,"50":0.00737,"51":0,"52":0.01229,"53":0.00246,"54":0.02704,"55":0,"56":0.00246,"57":0.01229,"58":0.00246,"59":0.00737,"60":0.00492,"61":0.00246,"62":0.00246,"63":0.00246,"64":0.00492,"65":0.00246,"66":0.00492,"67":0.00492,"68":0.02458,"69":0.00246,"70":0.00246,"71":0.00737,"72":0.02458,"73":0,"74":0.00246,"75":0.00246,"76":0,"77":0.00246,"78":0.00492,"79":0,"80":0.00492,"81":0.00492,"82":0.00246,"83":0.00246,"84":0.00737,"85":0.00492,"86":0.00492,"87":0.00246,"88":0.00492,"89":0.00737,"90":0.00737,"91":0.01966,"92":0.00492,"93":0.00983,"94":0.01475,"95":0.00983,"96":0.01229,"97":0.02704,"98":0.01229,"99":0.05162,"100":0.03195,"101":0.03195,"102":0.04424,"103":0.01229,"104":0.03687,"105":0.01966,"106":0.06391,"107":0.09832,"108":0.97091,"109":0.45965,"110":0.00737,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00246,"50":0.00492,"51":0.00983,"52":0,"53":0,"54":0.00246,"55":0,"56":0,"57":0,"58":0.00246,"59":0,"60":0.00246,"61":0,"62":0.00246,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00246,"69":0.00246,"70":0,"71":0.00246,"72":0.00246,"73":0,"74":0.22614,"75":0.00737,"76":0.00492,"77":0.00492,"78":0.00246,"79":0.00492,"80":0.00492,"81":0.00737,"83":0.00246,"84":0,"85":0,"86":0.00492,"87":0.00737,"88":0.06391,"89":0.01475,"90":0.02212,"91":0.00737,"92":0.00737,"93":0.00246,"94":0.02212,"95":0.00983,"96":0.00983,"97":0.01229,"98":0.00737,"99":0.00737,"100":0.00983,"101":0.00983,"102":0.00983,"103":0.0295,"104":0.01229,"105":0.02212,"106":0.01721,"107":0.04916,"108":0.82097,"109":0.51126,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.00246,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00246,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00246,"52":0,"53":0,"54":0,"55":0.00492,"56":0,"57":0,"58":0.00246,"60":0.01229,"62":0,"63":0,"64":0.00246,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00246,"71":0,"72":0.00492,"73":0.00492,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00737,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00246,"86":0.00492,"87":0,"88":0,"89":0,"90":0.00246,"91":0.00246,"92":0.00492,"93":0.03933,"94":0.15977,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00246,"13":0.00492,"14":0.00492,"15":0.00246,"16":0.01229,"17":0.00246,"18":0.01229,"79":0,"80":0,"81":0,"83":0,"84":0.00492,"85":0.00246,"86":0,"87":0,"88":0,"89":0.00492,"90":0.00983,"91":0,"92":0.01966,"93":0,"94":0,"95":0,"96":0.00246,"97":0,"98":0,"99":0.00246,"100":0.00983,"101":0.00246,"102":0.00246,"103":0.00492,"104":0.00246,"105":0.00492,"106":0.00492,"107":0.01721,"108":0.21876,"109":0.11307},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.00492,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00492,"14.1":0.00246,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00737,"15.6":0.03441,"16.0":0,"16.1":0.00983,"16.2":0.00983,"16.3":0},G:{"8":0.00529,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00088,"7.0-7.1":0.05991,"8.1-8.4":0.05374,"9.0-9.2":0.00441,"9.3":0.02291,"10.0-10.2":0.00176,"10.3":0.04493,"11.0-11.2":0.02643,"11.3-11.4":0.00352,"12.0-12.1":0.02379,"12.2-12.5":1.13302,"13.0-13.1":0.04758,"13.2":0.02907,"13.3":0.17533,"13.4-13.7":0.16564,"14.0-14.4":0.63964,"14.5-14.8":0.63787,"15.0-15.1":0.32775,"15.2-15.3":0.41673,"15.4":0.24757,"15.5":0.38413,"15.6":0.61761,"16.0":0.60704,"16.1":1.24667,"16.2":1.02906,"16.3":0.09868},P:{"4":0.22639,"5.0-5.4":0.02058,"6.2-6.4":0.01029,"7.2-7.4":0.23668,"8.2":0,"9.2":0.05145,"10.1":0,"11.1-11.2":0.08233,"12.0":0.01029,"13.0":0.08233,"14.0":0.13378,"15.0":0.09262,"16.0":0.13378,"17.0":0.23668,"18.0":0.12349,"19.0":0.8747},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00812,"4.2-4.3":0.03897,"4.4":0,"4.4.3-4.4.4":0.19648},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01229,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.61844},Q:{"13.1":0.00754},O:{"0":0.15084},H:{"0":1.0282},L:{"0":81.46503},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00222,"34":0.00222,"35":0.00222,"36":0,"37":0.00444,"38":0,"39":0,"40":0.00222,"41":0,"42":0.01555,"43":0,"44":0,"45":0.00222,"46":0.00222,"47":0.00222,"48":0.00222,"49":0.00222,"50":0.00889,"51":0,"52":0.01778,"53":0,"54":0.02889,"55":0,"56":0.00222,"57":0.00889,"58":0.00222,"59":0.00444,"60":0.00222,"61":0.00222,"62":0.00444,"63":0.00222,"64":0.00444,"65":0.00444,"66":0.00222,"67":0.00444,"68":0.01111,"69":0.00444,"70":0.00222,"71":0.00444,"72":0.01778,"73":0.00222,"74":0,"75":0.00222,"76":0,"77":0.00222,"78":0.00444,"79":0,"80":0.00222,"81":0.00444,"82":0.00444,"83":0.00444,"84":0.00667,"85":0.00444,"86":0.00222,"87":0.00222,"88":0.00667,"89":0.00889,"90":0.00444,"91":0.01778,"92":0.00444,"93":0.00667,"94":0.01333,"95":0.01111,"96":0.01333,"97":0.01778,"98":0.01333,"99":0.02666,"100":0.02222,"101":0.01778,"102":0.05555,"103":0.01333,"104":0.03555,"105":0.01333,"106":0.02666,"107":0.04666,"108":0.08888,"109":0.83547,"110":0.47329,"111":0.00889,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00222,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00222,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00222,"50":0,"51":0.01111,"52":0,"53":0,"54":0.00222,"55":0,"56":0,"57":0,"58":0.00222,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00444,"68":0,"69":0.01555,"70":0.00222,"71":0.00444,"72":0.00222,"73":0,"74":0.03777,"75":0.00444,"76":0.02,"77":0.00444,"78":0,"79":0.00444,"80":0.00444,"81":0.00667,"83":0.00222,"84":0,"85":0.00222,"86":0.00444,"87":0.00444,"88":0.02889,"89":0.00667,"90":0.01778,"91":0.00444,"92":0.00222,"93":0,"94":0.00222,"95":0.00667,"96":0.00444,"97":0.00667,"98":0.00222,"99":0.00222,"100":0.00889,"101":0.00444,"102":0.01111,"103":0.01111,"104":0.00667,"105":0.01111,"106":0.01333,"107":0.02,"108":0.05777,"109":0.62438,"110":0.32663,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00222,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00222,"56":0,"57":0,"58":0,"60":0.00222,"62":0,"63":0.00222,"64":0.00222,"65":0,"66":0,"67":0.01111,"68":0,"69":0.00222,"70":0,"71":0,"72":0,"73":0.00444,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00444,"80":0,"81":0,"82":0.00222,"83":0,"84":0,"85":0,"86":0.00222,"87":0,"88":0,"89":0,"90":0.00222,"91":0.00222,"92":0.00222,"93":0.00444,"94":0.06666,"95":0.08888,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00222,"13":0.00222,"14":0.00222,"15":0.00222,"16":0.00222,"17":0.00222,"18":0.01333,"79":0,"80":0,"81":0.00222,"83":0,"84":0.00444,"85":0.00222,"86":0,"87":0,"88":0,"89":0.00222,"90":0.00889,"91":0,"92":0.01555,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00667,"101":0,"102":0,"103":0.00222,"104":0,"105":0.00222,"106":0.00444,"107":0.00889,"108":0.01778,"109":0.13332,"110":0.10221},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00222,"14":0.00222,"15":0,_:"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,"13.1":0.00222,"14.1":0.00222,"15.1":0,"15.2-15.3":0,"15.4":0.02444,"15.5":0.03555,"15.6":0.02,"16.0":0,"16.1":0.00889,"16.2":0.01333,"16.3":0.02222,"16.4":0},G:{"8":0.00265,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.06443,"8.1-8.4":0.04148,"9.0-9.2":0,"9.3":0.03354,"10.0-10.2":0.0053,"10.3":0.09003,"11.0-11.2":0.01765,"11.3-11.4":0.00177,"12.0-12.1":0.01324,"12.2-12.5":1.32218,"13.0-13.1":0.03795,"13.2":0.03089,"13.3":0.09621,"13.4-13.7":0.173,"14.0-14.4":0.63373,"14.5-14.8":0.71669,"15.0-15.1":0.31157,"15.2-15.3":0.37247,"15.4":0.18623,"15.5":0.34599,"15.6":0.55606,"16.0":0.42454,"16.1":0.85703,"16.2":0.97089,"16.3":0.83408,"16.4":0.00265},P:{"4":0.28472,"20":0.15253,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.24404,"8.2":0,"9.2":0.03051,"10.1":0,"11.1-11.2":0.08135,"12.0":0.01017,"13.0":0.06101,"14.0":0.10168,"15.0":0.05084,"16.0":0.1627,"17.0":0.18303,"18.0":0.08135,"19.0":0.73213},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00424,"4.2-4.3":0.02968,"4.4":0,"4.4.3-4.4.4":0.1894},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00667,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.10111},H:{"0":0.69955},L:{"0":83.02923},R:{_:"0"},M:{"0":0.70002},Q:{"13.1":0.00778}}; 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 303a5a540f0dda..ac6532dc101875 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,"51":0,"52":0.00796,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00796,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00796,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00398,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00398,"96":0,"97":0,"98":0.00398,"99":0,"100":0,"101":0,"102":0.00398,"103":0,"104":0.00398,"105":0,"106":0.00398,"107":0.02387,"108":0.24266,"109":0.21481,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00398,"41":0,"42":0,"43":0.00398,"44":0,"45":0,"46":0.00398,"47":0,"48":0,"49":0.01591,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00398,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00398,"65":0.00398,"66":0,"67":0,"68":0.00398,"69":0,"70":0.00796,"71":0.01591,"72":0,"73":0,"74":0.00398,"75":0,"76":0.10343,"77":0,"78":0.00398,"79":0.04376,"80":0.00796,"81":0.15912,"83":0.00398,"84":0.00398,"85":0,"86":0,"87":0.00796,"88":0.01193,"89":0.00398,"90":0.01989,"91":0.01989,"92":0.01193,"93":0.12332,"94":0.02387,"95":0,"96":0.01193,"97":0.01989,"98":0.00398,"99":0.02387,"100":0.01193,"101":0.00398,"102":0.00398,"103":0.18299,"104":0.01989,"105":0.0358,"106":0.05569,"107":0.54101,"108":5.72832,"109":4.26044,"110":0.00398,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00398,"78":0,"79":0.03182,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.08354,"94":0.33813,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00398,"13":0,"14":0,"15":0.01989,"16":0,"17":0,"18":0.00796,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01193,"93":0,"94":0,"95":0,"96":0.04376,"97":0,"98":0,"99":0,"100":0.01193,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00398,"107":0.02387,"108":0.89505,"109":0.79958},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00796,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.06365,"15":0.00398,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00796,"13.1":0.03182,"14.1":0.03182,"15.1":0,"15.2-15.3":0,"15.4":0.01193,"15.5":0.01591,"15.6":0.1273,"16.0":0.01591,"16.1":0.05171,"16.2":0.21879,"16.3":0.00796},G:{"8":0.01319,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00989,"7.0-7.1":0.01484,"8.1-8.4":0,"9.0-9.2":0.0066,"9.3":0.02639,"10.0-10.2":0.0033,"10.3":0.31828,"11.0-11.2":0.04947,"11.3-11.4":0.02474,"12.0-12.1":0.03463,"12.2-12.5":1.05212,"13.0-13.1":0.00165,"13.2":0.51122,"13.3":0.01484,"13.4-13.7":0.04617,"14.0-14.4":0.93834,"14.5-14.8":0.45845,"15.0-15.1":0.14842,"15.2-15.3":0.2754,"15.4":0.16821,"15.5":0.74539,"15.6":1.35226,"16.0":1.53696,"16.1":4.99512,"16.2":2.03829,"16.3":0.14347},P:{"4":0.6163,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17462,"8.2":0,"9.2":0.01027,"10.1":0.03081,"11.1-11.2":0.05136,"12.0":0,"13.0":0.06163,"14.0":0.03081,"15.0":0.11299,"16.0":0.13353,"17.0":0.11299,"18.0":0.10272,"19.0":1.63319},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00975,"4.2-4.3":0.00975,"4.4":0,"4.4.3-4.4.4":0.19167},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01193,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.3011},Q:{"13.1":0},O:{"0":0.15055},H:{"0":0.23945},L:{"0":64.50185},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00837,"53":0,"54":0,"55":0,"56":0.00419,"57":0,"58":0,"59":0,"60":0,"61":0.00837,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00837,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00419,"86":0,"87":0,"88":0,"89":0.00837,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00419,"99":0,"100":0,"101":0,"102":0.00837,"103":0,"104":0,"105":0,"106":0.00419,"107":0.04185,"108":0.00419,"109":0.38502,"110":0.15485,"111":0.00419,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.10463,"41":0,"42":0.00419,"43":0,"44":0,"45":0,"46":0,"47":0.00419,"48":0,"49":0.02093,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00419,"56":0.00419,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00419,"65":0.37665,"66":0,"67":0,"68":0,"69":0,"70":0.00837,"71":0.02093,"72":0.00419,"73":0,"74":0,"75":0.00419,"76":0.01674,"77":0,"78":0.00837,"79":0.10463,"80":0,"81":0.20507,"83":0,"84":0.00837,"85":0,"86":0,"87":0.02511,"88":0.00419,"89":0,"90":0.01674,"91":0.14648,"92":0.00419,"93":0.02093,"94":0.00837,"95":0.00837,"96":0.00419,"97":0.02093,"98":0.00419,"99":0.01674,"100":0.00419,"101":0.00837,"102":0.00837,"103":0.12974,"104":0.01256,"105":0.03767,"106":0.01256,"107":0.07952,"108":0.33899,"109":6.09755,"110":4.44866,"111":0.00419,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00837,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02093,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00419,"94":0.17159,"95":0.24273,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00419,"16":0.00419,"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.00837,"93":0,"94":0,"95":0,"96":0.01256,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00419,"106":0,"107":0.0293,"108":0.12555,"109":0.82445,"110":1.14251},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0837,"15":0.00419,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01256,"13.1":0.05022,"14.1":0.03767,"15.1":0,"15.2-15.3":0.00419,"15.4":0.00419,"15.5":0.00837,"15.6":0.15485,"16.0":0.01256,"16.1":0.02093,"16.2":0.21344,"16.3":0.10044,"16.4":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.01722,"8.1-8.4":0.00172,"9.0-9.2":0,"9.3":0.33411,"10.0-10.2":0,"10.3":0.16878,"11.0-11.2":0.02756,"11.3-11.4":0.28761,"12.0-12.1":0.01894,"12.2-12.5":1.39674,"13.0-13.1":0.00344,"13.2":0.24284,"13.3":0.03444,"13.4-13.7":0.05511,"14.0-14.4":1.78941,"14.5-14.8":0.434,"15.0-15.1":0.19117,"15.2-15.3":0.30828,"15.4":0.42539,"15.5":0.51667,"15.6":1.87207,"16.0":0.89901,"16.1":2.54719,"16.2":2.10285,"16.3":1.83419,"16.4":0.00344},P:{"4":0.2782,"20":0.46367,"5.0-5.4":0.02061,"6.2-6.4":0,"7.2-7.4":0.16486,"8.2":0,"9.2":0.02061,"10.1":0.0103,"11.1-11.2":0.03091,"12.0":0,"13.0":0.0103,"14.0":0.04122,"15.0":0.06182,"16.0":0.08243,"17.0":0.03091,"18.0":0.10304,"19.0":1.03038},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00213,"4.2-4.3":0.00426,"4.4":0,"4.4.3-4.4.4":0.31612},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01256,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00582,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.08141},H:{"0":0.19819},L:{"0":63.60003},R:{_:"0"},M:{"0":0.06978},Q:{"13.1":0.00582}}; 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 3f06cbc20b0eb4..42991e3d1445b4 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.32212,"69":0,"70":0,"71":0,"72":0,"73":0.65157,"74":0,"75":0,"76":0,"77":0,"78":0.32212,"79":0,"80":1.13476,"81":0.16106,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.65157,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.97369,"84":12.98745,"85":22.08014,"86":9.25374,"87":2.26951,"88":0,"89":0,"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.49051,"109":2.26951,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.16106,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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},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},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.35246,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.40796,"13.0-13.1":0,"13.2":0.70305,"13.3":2.111,"13.4-13.7":7.03792,"14.0-14.4":4.92505,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":2.111,"16.3":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.44739,"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},J:{"7":0,"10":0},N:{"10":0.22236,"11":0},R:{_:"0"},M:{"0":0.89211},Q:{"13.1":0},O:{"0":0.22236},H:{"0":1.05764},L:{"0":22.26533},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":13.26969,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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":6.6302,"108":0,"109":13.26969,"110":46.43,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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":6.6302,"95":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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},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},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0},P:{"4":0,"20":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},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":13.7702},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js index 3c043b5f887cc7..91f62740de456e 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.00497,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03479,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00497,"79":0,"80":0,"81":0,"82":0,"83":0.00497,"84":0,"85":0,"86":0,"87":0,"88":0.00497,"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,"101":0,"102":0.00994,"103":0.01988,"104":0.00497,"105":0.00497,"106":0.00497,"107":0.00994,"108":0.62622,"109":0.32305,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00994,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00497,"48":0,"49":0.00994,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00497,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00497,"66":0,"67":0,"68":0,"69":0.00497,"70":0.88963,"71":0,"72":0,"73":0,"74":0.00994,"75":0,"76":0,"77":0.00994,"78":0.00994,"79":0.0994,"80":0.00497,"81":0.00497,"83":0.00994,"84":0.02485,"85":0.01491,"86":0.01491,"87":0.02485,"88":0.00497,"89":0.00994,"90":0,"91":0.00497,"92":0.01491,"93":0.06461,"94":0,"95":0.01988,"96":0.00994,"97":0.00497,"98":0.01988,"99":0.00497,"100":0.01491,"101":0.00994,"102":0.01491,"103":0.05964,"104":0.03479,"105":0.07455,"106":0.04473,"107":0.31311,"108":8.67265,"109":6.85363,"110":0.01491,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00497,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00497,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00497,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00497,"64":0,"65":0,"66":0,"67":0.00497,"68":0,"69":0,"70":0,"71":0.00497,"72":0,"73":0.01988,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00497,"90":0,"91":0,"92":0,"93":0.43239,"94":0.87472,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00497,"14":0,"15":0,"16":0,"17":0.00497,"18":0.00497,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00497,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00497,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00497,"101":0,"102":0,"103":0,"104":0.00497,"105":0,"106":0,"107":0.01988,"108":1.29717,"109":1.28226},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00497,"14":0.05467,"15":0.00497,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00497,"10.1":0,"11.1":0,"12.1":0.00497,"13.1":0.26838,"14.1":0.08946,"15.1":0.04473,"15.2-15.3":0.02485,"15.4":0.01988,"15.5":0.04473,"15.6":0.3976,"16.0":0.0497,"16.1":0.15904,"16.2":0.26838,"16.3":0.02485},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00882,"6.0-6.1":0.00353,"7.0-7.1":0.00706,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07409,"10.0-10.2":0.00176,"10.3":0.06527,"11.0-11.2":0.00882,"11.3-11.4":0.01588,"12.0-12.1":0.01058,"12.2-12.5":0.44101,"13.0-13.1":0.00353,"13.2":0.00353,"13.3":0.04939,"13.4-13.7":0.07585,"14.0-14.4":0.33341,"14.5-14.8":0.53627,"15.0-15.1":0.15347,"15.2-15.3":0.25932,"15.4":0.2505,"15.5":0.42867,"15.6":2.00574,"16.0":2.29151,"16.1":5.42801,"16.2":3.6516,"16.3":0.35105},P:{"4":0.15328,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.02044,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.01022,"12.0":0,"13.0":0.02044,"14.0":0.03066,"15.0":0.01022,"16.0":0.04087,"17.0":0.06131,"18.0":0.10219,"19.0":3.74005},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04017,"4.4":0,"4.4.3-4.4.4":0.10444},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.11928,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.19114},Q:{"13.1":0},O:{"0":0.26659},H:{"0":0.35239},L:{"0":51.08572},S:{"2.5":0.00503}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00476,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04288,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00476,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00476,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00476,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00953,"103":0.00476,"104":0.00476,"105":0.00476,"106":0.00476,"107":0.00953,"108":0.01906,"109":0.79559,"110":0.34777,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00953,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00476,"45":0.00476,"46":0,"47":0.00476,"48":0,"49":0.00953,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00476,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00476,"69":0.00476,"70":0.77177,"71":0.00476,"72":0,"73":0,"74":0,"75":0,"76":0.00476,"77":0.00476,"78":0.00476,"79":0.08575,"80":0.00476,"81":0.01429,"83":0.00953,"84":0.01429,"85":0.00953,"86":0.01906,"87":0.01906,"88":0.00476,"89":0,"90":0,"91":0.00953,"92":0.02858,"93":0.0524,"94":0,"95":0.00953,"96":0.00476,"97":0.00476,"98":0.01429,"99":0.00953,"100":0.01429,"101":0.00476,"102":0.00953,"103":0.07146,"104":0.01429,"105":0.05717,"106":0.04288,"107":0.02858,"108":1.02426,"109":9.94247,"110":3.84931,"111":0.00476,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00476,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00476,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00476,"62":0,"63":0.00476,"64":0,"65":0,"66":0,"67":0.02382,"68":0,"69":0,"70":0,"71":0.00476,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00476,"90":0,"91":0,"92":0,"93":0.04764,"94":0.5431,"95":0.20485,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00476,"79":0,"80":0,"81":0,"83":0,"84":0.00476,"85":0.00476,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00476,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00476,"104":0,"105":0,"106":0,"107":0.00953,"108":0.02382,"109":1.03379,"110":1.23864},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00476,"10":0,"11":0,"12":0,"13":0.00476,"14":0.04288,"15":0.00476,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00476,"13.1":0.20485,"14.1":0.0667,"15.1":0.02858,"15.2-15.3":0.01429,"15.4":0.01906,"15.5":0.04288,"15.6":0.23344,"16.0":0.02382,"16.1":0.07622,"16.2":0.33824,"16.3":0.21438,"16.4":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.00652,"7.0-7.1":0.01955,"8.1-8.4":0.00435,"9.0-9.2":0.00435,"9.3":0.06301,"10.0-10.2":0.00435,"10.3":0.06953,"11.0-11.2":0.01955,"11.3-11.4":0.01304,"12.0-12.1":0.01521,"12.2-12.5":0.34981,"13.0-13.1":0.00217,"13.2":0,"13.3":0.03259,"13.4-13.7":0.07822,"14.0-14.4":0.20206,"14.5-14.8":0.74524,"15.0-15.1":0.13471,"15.2-15.3":0.28463,"15.4":0.21075,"15.5":0.49755,"15.6":1.87289,"16.0":2.15534,"16.1":5.4796,"16.2":5.3601,"16.3":3.0744,"16.4":0.01086},P:{"4":0.14198,"20":1.39955,"5.0-5.4":0.01014,"6.2-6.4":0,"7.2-7.4":0.03043,"8.2":0,"9.2":0.01014,"10.1":0,"11.1-11.2":0.01014,"12.0":0,"13.0":0.01014,"14.0":0.02028,"15.0":0.01014,"16.0":0.05071,"17.0":0.06085,"18.0":0.07099,"19.0":2.51514},I:{"0":0,"3":0,"4":0.00876,"2.1":0,"2.2":0.02629,"2.3":0.00876,"4.1":0.00876,"4.2-4.3":0.01753,"4.4":0,"4.4.3-4.4.4":0.08325},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01429,"9":0,"10":0.00476,"11":0.06193,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.01047,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.21468},H:{"0":0.36683},L:{"0":48.9476},R:{_:"0"},M:{"0":0.17279},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js index ad59914948d11c..bad778cd373981 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.10195,"53":0,"54":0,"55":0,"56":0.01133,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00566,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02266,"79":0,"80":0.00566,"81":0,"82":0,"83":0.00566,"84":0,"85":0,"86":0,"87":0,"88":0.01133,"89":0.00566,"90":0,"91":0.03398,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00566,"98":0,"99":0.00566,"100":0.01699,"101":0.00566,"102":0.15293,"103":0.08496,"104":0.01133,"105":0.01699,"106":0.02266,"107":0.07363,"108":2.03904,"109":1.24042,"110":0.00566,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01133,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01699,"50":0,"51":0,"52":0,"53":0.00566,"54":0,"55":0,"56":0.00566,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00566,"67":0,"68":0,"69":0.00566,"70":0,"71":0.00566,"72":0.00566,"73":0,"74":0.01133,"75":0,"76":0,"77":0.00566,"78":0.00566,"79":0.0623,"80":0.01133,"81":0.02266,"83":0.01699,"84":0.01699,"85":0.03398,"86":0.03398,"87":0.02832,"88":0.01133,"89":0.03398,"90":0.01133,"91":0.00566,"92":0.01699,"93":0.01133,"94":0.03965,"95":0.03965,"96":0.02266,"97":0.01133,"98":0.01133,"99":0.01699,"100":0.32285,"101":0.02832,"102":0.17558,"103":0.09629,"104":0.0623,"105":0.0793,"106":0.09062,"107":0.16426,"108":8.8415,"109":8.5583,"110":0.00566,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00566,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00566,"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.02266,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00566,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02266,"86":0,"87":0,"88":0,"89":0.05664,"90":0,"91":0.00566,"92":0.01133,"93":0.70234,"94":1.34803,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00566,"16":0,"17":0.00566,"18":0.00566,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00566,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00566,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00566,"103":0,"104":0.03398,"105":0.00566,"106":0.02266,"107":0.07363,"108":2.17498,"109":2.124},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00566,"9":0,"10":0.00566,"11":0,"12":0,"13":0.00566,"14":0.03398,"15":0.00566,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00566,"10.1":0,"11.1":0,"12.1":0.00566,"13.1":0.05664,"14.1":0.09062,"15.1":0.02266,"15.2-15.3":0.01133,"15.4":0.05664,"15.5":0.09629,"15.6":0.45312,"16.0":0.06797,"16.1":0.24922,"16.2":0.41347,"16.3":0.03398},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00189,"9.3":0.03964,"10.0-10.2":0.00189,"10.3":0.07173,"11.0-11.2":0.00755,"11.3-11.4":0.00755,"12.0-12.1":0.00944,"12.2-12.5":0.25483,"13.0-13.1":0.00378,"13.2":0.00566,"13.3":0.00944,"13.4-13.7":0.04342,"14.0-14.4":0.12647,"14.5-14.8":0.34355,"15.0-15.1":0.08683,"15.2-15.3":0.14912,"15.4":0.20764,"15.5":0.4115,"15.6":1.62335,"16.0":3.02208,"16.1":6.13477,"16.2":4.4982,"16.3":0.49456},P:{"4":0.12451,"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.01038,"12.0":0,"13.0":0.01038,"14.0":0.01038,"15.0":0.01038,"16.0":0.03113,"17.0":0.0415,"18.0":0.07263,"19.0":2.06484},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01716,"4.2-4.3":0.06294,"4.4":0,"4.4.3-4.4.4":0.20025},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.04661,"9":0,"10":0.0233,"11":0.13399,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.30352},Q:{"13.1":0},O:{"0":0.1691},H:{"0":0.46387},L:{"0":44.8559},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.10532,"53":0,"54":0,"55":0,"56":0.01109,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00554,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02217,"79":0.00554,"80":0.00554,"81":0.00554,"82":0.00554,"83":0.00554,"84":0,"85":0,"86":0.00554,"87":0,"88":0.01109,"89":0.00554,"90":0,"91":0.02772,"92":0,"93":0,"94":0.00554,"95":0.00554,"96":0,"97":0.00554,"98":0,"99":0.00554,"100":0.00554,"101":0.01109,"102":0.16629,"103":0.17738,"104":0.01109,"105":0.01109,"106":0.01109,"107":0.08315,"108":0.09977,"109":1.94005,"110":1.28043,"111":0.00554,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01109,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00554,"49":0.02217,"50":0,"51":0,"52":0,"53":0.00554,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00554,"67":0,"68":0.00554,"69":0,"70":0,"71":0.00554,"72":0,"73":0,"74":0.00554,"75":0.00554,"76":0,"77":0.00554,"78":0.00554,"79":0.04989,"80":0.00554,"81":0.02217,"83":0.02217,"84":0.03326,"85":0.03326,"86":0.03326,"87":0.03326,"88":0.00554,"89":0.03326,"90":0.01109,"91":0.00554,"92":0.01109,"93":0.01663,"94":0.01109,"95":0.0388,"96":0.01663,"97":0.00554,"98":0.00554,"99":0.01663,"100":0.03326,"101":0.02217,"102":0.14966,"103":0.11086,"104":0.08315,"105":0.07206,"106":0.0776,"107":0.06652,"108":0.3603,"109":9.94414,"110":6.29685,"111":0.00554,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00554,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01109,"68":0,"69":0,"70":0,"71":0.00554,"72":0,"73":0.00554,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02217,"86":0,"87":0,"88":0,"89":0.11086,"90":0,"91":0,"92":0.00554,"93":0.10532,"94":1.09751,"95":0.72613,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00554},B:{"12":0,"13":0,"14":0,"15":0.01109,"16":0,"17":0.00554,"18":0.01109,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00554,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00554,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.06652,"105":0.00554,"106":0.01663,"107":0.02772,"108":0.08869,"109":1.80702,"110":2.2948},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00554,"14":0.0388,"15":0.00554,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00554,"13.1":0.04434,"14.1":0.08869,"15.1":0.01663,"15.2-15.3":0.01663,"15.4":0.04434,"15.5":0.05543,"15.6":0.30487,"16.0":0.04434,"16.1":0.14412,"16.2":0.37138,"16.3":0.28824,"16.4":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.00182,"8.1-8.4":0.00182,"9.0-9.2":0.00182,"9.3":0.04544,"10.0-10.2":0.00182,"10.3":0.07997,"11.0-11.2":0.01272,"11.3-11.4":0.00909,"12.0-12.1":0.02363,"12.2-12.5":0.24173,"13.0-13.1":0.00364,"13.2":0.00545,"13.3":0.01818,"13.4-13.7":0.0727,"14.0-14.4":0.12905,"14.5-14.8":0.30716,"15.0-15.1":0.07815,"15.2-15.3":0.11087,"15.4":0.18357,"15.5":0.35078,"15.6":1.1087,"16.0":2.08653,"16.1":4.5711,"16.2":4.54202,"16.3":2.91715,"16.4":0.03453},P:{"4":0.10321,"20":0.81533,"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.01032,"12.0":0,"13.0":0.02064,"14.0":0.01032,"15.0":0.01032,"16.0":0.03096,"17.0":0.03096,"18.0":0.0516,"19.0":1.63065},I:{"0":0,"3":0,"4":0.04485,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01495,"4.2-4.3":0.03738,"4.4":0,"4.4.3-4.4.4":0.23173},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01707,"9":0,"10":0.06258,"11":0.13653,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.19611},H:{"0":0.46838},L:{"0":46.31506},R:{_:"0"},M:{"0":0.30753},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js index 28aee86247ffef..b5303b8ad10887 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00533,"49":0,"50":0,"51":0,"52":0.05328,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01066,"60":0.00533,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00533,"67":0,"68":0.01066,"69":0,"70":0.00533,"71":0,"72":0.00533,"73":0,"74":0,"75":0,"76":0,"77":0.00533,"78":0.04262,"79":0.00533,"80":0.00533,"81":0.00533,"82":0.00533,"83":0.00533,"84":0.00533,"85":0,"86":0.03197,"87":0.00533,"88":0.01066,"89":0.00533,"90":0.00533,"91":0.02664,"92":0.00533,"93":0.00533,"94":0.01066,"95":0.00533,"96":0.00533,"97":0.00533,"98":0.00533,"99":0.01066,"100":0.01066,"101":0.01066,"102":0.20246,"103":0.01066,"104":0.01598,"105":0.02664,"106":0.0373,"107":0.12254,"108":3.12221,"109":1.79021,"110":0.00533,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.02131,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01066,"50":0,"51":0,"52":0.01066,"53":0,"54":0,"55":0,"56":0.00533,"57":0,"58":0,"59":0,"60":0.00533,"61":0,"62":0,"63":0.01066,"64":0,"65":0,"66":0.04262,"67":0.00533,"68":0.00533,"69":0.00533,"70":0.00533,"71":0.01598,"72":0.01598,"73":0.00533,"74":0.01066,"75":0.64469,"76":0.00533,"77":0.00533,"78":0.01066,"79":0.05328,"80":0.03197,"81":0.02131,"83":0.02664,"84":0.04795,"85":0.06394,"86":0.05328,"87":0.04262,"88":0.01598,"89":0.02131,"90":0.01598,"91":0.09058,"92":0.02131,"93":0.04795,"94":0.00533,"95":0.01066,"96":0.02131,"97":0.02131,"98":0.01066,"99":0.04795,"100":0.07459,"101":0.02131,"102":0.02664,"103":0.06394,"104":0.0373,"105":0.06926,"106":0.12254,"107":0.16517,"108":5.33866,"109":4.70462,"110":0.01066,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00533,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00533,"69":0,"70":0,"71":0,"72":0,"73":0.01598,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00533,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01066,"93":0.94838,"94":1.04962,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00533,"18":0.01066,"79":0,"80":0,"81":0,"83":0.00533,"84":0.00533,"85":0.00533,"86":0.00533,"87":0.00533,"88":0,"89":0.00533,"90":0.00533,"91":0,"92":0.00533,"93":0,"94":0,"95":0,"96":0.00533,"97":0.01066,"98":0.00533,"99":0.00533,"100":0.00533,"101":0.00533,"102":0.00533,"103":0.01066,"104":0.01066,"105":0.01066,"106":0.01598,"107":0.06926,"108":2.2271,"109":1.998},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01066,"14":0.05861,"15":0.01598,_:"0","3.1":0,"3.2":0,"5.1":0.00533,"6.1":0,"7.1":0,"9.1":0.02131,"10.1":0,"11.1":0.01066,"12.1":0.01598,"13.1":0.08525,"14.1":0.14386,"15.1":0.03197,"15.2-15.3":0.02664,"15.4":0.07992,"15.5":0.13853,"15.6":0.83117,"16.0":0.10656,"16.1":0.47952,"16.2":0.83117,"16.3":0.06926},G:{"8":0.00291,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01165,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.02038,"9.3":0.09028,"10.0-10.2":0.00291,"10.3":0.08736,"11.0-11.2":0.02038,"11.3-11.4":0.07571,"12.0-12.1":0.01747,"12.2-12.5":0.41643,"13.0-13.1":0.01165,"13.2":0.00874,"13.3":0.03786,"13.4-13.7":0.11648,"14.0-14.4":0.25335,"14.5-14.8":0.6494,"15.0-15.1":0.15725,"15.2-15.3":0.2155,"15.4":0.28539,"15.5":0.62028,"15.6":2.83058,"16.0":4.05075,"16.1":10.12542,"16.2":6.98034,"16.3":0.63193},P:{"4":0.09288,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01032,"10.1":0,"11.1-11.2":0.01032,"12.0":0.01032,"13.0":0.04128,"14.0":0.03096,"15.0":0.02064,"16.0":0.0516,"17.0":0.07224,"18.0":0.1032,"19.0":4.12816},I:{"0":0,"3":0,"4":0.02308,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01731,"4.2-4.3":0.05193,"4.4":0,"4.4.3-4.4.4":0.14424},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01151,"9":0.00575,"10":0.00575,"11":0.12084,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.90637},Q:{"13.1":0},O:{"0":0.13082},H:{"0":0.46443},L:{"0":34.93638},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00531,"49":0,"50":0,"51":0,"52":0.0478,"53":0,"54":0,"55":0,"56":0.00531,"57":0,"58":0,"59":0.01062,"60":0.00531,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01062,"69":0.00531,"70":0.00531,"71":0,"72":0.00531,"73":0,"74":0,"75":0,"76":0.00531,"77":0.00531,"78":0.03187,"79":0.00531,"80":0.00531,"81":0.00531,"82":0.00531,"83":0.00531,"84":0.00531,"85":0,"86":0.03718,"87":0.00531,"88":0.00531,"89":0.00531,"90":0.00531,"91":0.02124,"92":0.00531,"93":0.00531,"94":0.00531,"95":0.02124,"96":0.01593,"97":0.00531,"98":0.00531,"99":0.01062,"100":0.00531,"101":0.00531,"102":0.20182,"103":0.01062,"104":0.01062,"105":0.02124,"106":0.02124,"107":0.03718,"108":0.10622,"109":2.94229,"110":1.96507,"111":0.00531,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.02124,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01062,"50":0,"51":0,"52":0.01593,"53":0,"54":0,"55":0,"56":0.00531,"57":0,"58":0,"59":0,"60":0.00531,"61":0,"62":0,"63":0.01593,"64":0,"65":0,"66":0.0478,"67":0.00531,"68":0.00531,"69":0.00531,"70":0.00531,"71":0.01593,"72":0.01593,"73":0,"74":0.00531,"75":0.71167,"76":0.00531,"77":0.00531,"78":0.01062,"79":0.0478,"80":0.03718,"81":0.03187,"83":0.03187,"84":0.05311,"85":0.07435,"86":0.06373,"87":0.0478,"88":0.01062,"89":0.02124,"90":0.01062,"91":0.0956,"92":0.01593,"93":0.03718,"94":0.00531,"95":0.01062,"96":0.01062,"97":0.01062,"98":0.01062,"99":0.05842,"100":0.08498,"101":0.03187,"102":0.02656,"103":0.05311,"104":0.03187,"105":0.05842,"106":0.0956,"107":0.09029,"108":0.36646,"109":5.94832,"110":3.80268,"111":0.00531,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00531,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01593,"68":0,"69":0.00531,"70":0.00531,"71":0.00531,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00531,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.13278,"94":1.13655,"95":0.56297,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00531,"15":0,"16":0,"17":0.00531,"18":0.01062,"79":0,"80":0,"81":0,"83":0,"84":0.00531,"85":0.00531,"86":0.00531,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00531,"93":0,"94":0,"95":0,"96":0.00531,"97":0.01593,"98":0,"99":0.00531,"100":0,"101":0.00531,"102":0.00531,"103":0.01062,"104":0.00531,"105":0.01062,"106":0.01062,"107":0.03718,"108":0.11153,"109":1.87478,"110":2.23593},E:{"4":0,"5":0,"6":0,"7":0.00531,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01062,"14":0.05311,"15":0.01062,_:"0","3.1":0,"3.2":0,"5.1":0.00531,"6.1":0,"7.1":0,"9.1":0.01062,"10.1":0,"11.1":0.01062,"12.1":0.01593,"13.1":0.07967,"14.1":0.13278,"15.1":0.02656,"15.2-15.3":0.02124,"15.4":0.06373,"15.5":0.12215,"15.6":0.57359,"16.0":0.07967,"16.1":0.31335,"16.2":0.76478,"16.3":0.63732,"16.4":0},G:{"8":0.00545,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00545,"6.0-6.1":0,"7.0-7.1":0.00273,"8.1-8.4":0,"9.0-9.2":0.03543,"9.3":0.09539,"10.0-10.2":0.00545,"10.3":0.08994,"11.0-11.2":0.01908,"11.3-11.4":0.07904,"12.0-12.1":0.01635,"12.2-12.5":0.39245,"13.0-13.1":0.0109,"13.2":0.00818,"13.3":0.02998,"13.4-13.7":0.13354,"14.0-14.4":0.26163,"14.5-14.8":0.55325,"15.0-15.1":0.15262,"15.2-15.3":0.19623,"15.4":0.25891,"15.5":0.52872,"15.6":1.98406,"16.0":2.91069,"16.1":6.609,"16.2":6.81068,"16.3":4.76121,"16.4":0.0218},P:{"4":0.07273,"20":1.63133,"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.04156,"14.0":0.03117,"15.0":0.01039,"16.0":0.05195,"17.0":0.07273,"18.0":0.07273,"19.0":2.40024},I:{"0":0,"3":0,"4":0.02587,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01035,"4.2-4.3":0.03622,"4.4":0,"4.4.3-4.4.4":0.13971},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01155,"9":0.00577,"10":0.00577,"11":0.10968,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.14067},H:{"0":0.48388},L:{"0":37.12595},R:{_:"0"},M:{"0":0.8956},Q:{"13.1":0.00469}}; 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 48747036d39ed3..c3a8c0d1d3e055 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.00474,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01423,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00474,"92":0.00474,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01423,"102":0.01423,"103":0,"104":0.00949,"105":0.00949,"106":0.01423,"107":0.50276,"108":0.87271,"109":0.5407,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00474,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00474,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00474,"66":0,"67":0.00474,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00474,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00474,"81":0.01897,"83":0,"84":0,"85":0,"86":0,"87":0.01897,"88":0,"89":0,"90":0.00949,"91":0.00474,"92":0.01897,"93":0,"94":0.00949,"95":0,"96":0.00474,"97":0.01897,"98":0.01897,"99":0.00474,"100":0.0332,"101":0.00949,"102":0.00474,"103":0.0332,"104":0.00949,"105":0.00949,"106":0.02846,"107":0.03794,"108":6.27499,"109":6.64969,"110":0.00474,"111":0.00474,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00474,"67":0.02372,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.21344,"91":0,"92":0,"93":0.02846,"94":0.13755,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00474,"14":0.00949,"15":0.01423,"16":0.00474,"17":0,"18":0.0332,"79":0,"80":0,"81":0.00949,"83":0,"84":0.01423,"85":0,"86":0,"87":0,"88":0,"89":0.00949,"90":0.01423,"91":0,"92":0.00949,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00949,"100":0.00949,"101":0.00474,"102":0.00949,"103":0.00949,"104":0,"105":0.0332,"106":0.00474,"107":0.01423,"108":0.56916,"109":0.69722},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01897,"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.00949,"13.1":0.01423,"14.1":0.01897,"15.1":0,"15.2-15.3":0,"15.4":0.00474,"15.5":0.00474,"15.6":0.04743,"16.0":0.00949,"16.1":0.04743,"16.2":0.05217,"16.3":0.00474},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00133,"9.0-9.2":0,"9.3":0.01591,"10.0-10.2":0,"10.3":2.75744,"11.0-11.2":0.00133,"11.3-11.4":0.00133,"12.0-12.1":0.0053,"12.2-12.5":0.18957,"13.0-13.1":0.0053,"13.2":0,"13.3":0.14583,"13.4-13.7":0.51967,"14.0-14.4":0.20283,"14.5-14.8":0.8617,"15.0-15.1":0.11931,"15.2-15.3":0.17764,"15.4":0.12594,"15.5":0.67478,"15.6":1.21036,"16.0":0.85772,"16.1":1.89309,"16.2":2.38757,"16.3":0.4388},P:{"4":0.05142,"5.0-5.4":0.02057,"6.2-6.4":0.03085,"7.2-7.4":0.42162,"8.2":0.01028,"9.2":0.01028,"10.1":0.01028,"11.1-11.2":0.44219,"12.0":0.04113,"13.0":0.28794,"14.0":1.35743,"15.0":0.01028,"16.0":0.10284,"17.0":0.07198,"18.0":0.17482,"19.0":1.86132},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1764},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0332,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13143},Q:{"13.1":0},O:{"0":1.32476},H:{"0":0.53751},L:{"0":59.58224},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00443,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00443,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00443,"100":0,"101":0,"102":0.00443,"103":0,"104":0,"105":0.00443,"106":0,"107":0.02656,"108":0.00885,"109":0.70389,"110":0.54009,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00443,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00443,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.01771,"75":0,"76":0,"77":0,"78":0,"79":0.00443,"80":0,"81":0.02656,"83":0.00885,"84":0,"85":0,"86":0,"87":0.00443,"88":0,"89":0.00443,"90":0,"91":0,"92":0,"93":0.01328,"94":0.00885,"95":0,"96":0.01328,"97":0.00443,"98":0.00443,"99":0.02214,"100":0.00443,"101":0.00443,"102":0.00443,"103":0.01328,"104":0.00443,"105":0.01771,"106":0.01771,"107":0.06641,"108":0.17265,"109":7.54804,"110":4.49783,"111":0,"112":0.00443,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00443,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00443,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01328,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0487,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00885,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.30104,"91":0,"92":0,"93":0.00443,"94":0.10625,"95":0.07526,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.00443,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00443,"15":0,"16":0,"17":0.00443,"18":0.01328,"79":0,"80":0,"81":0.00443,"83":0,"84":0.00443,"85":0,"86":0,"87":0,"88":0,"89":0.00443,"90":0.00443,"91":0,"92":0.00885,"93":0,"94":0,"95":0,"96":0.00443,"97":0,"98":0,"99":0,"100":0.00443,"101":0,"102":0,"103":0.00443,"104":0,"105":0.00443,"106":0,"107":0.00443,"108":0.03542,"109":0.50025,"110":0.87655},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00443,"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.00443,"14.1":0.01328,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00443,"15.6":0.03099,"16.0":0,"16.1":0.01771,"16.2":0.01771,"16.3":0.01328,"16.4":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.03216,"10.0-10.2":0,"10.3":2.14206,"11.0-11.2":0.00419,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.17617,"13.0-13.1":0.0014,"13.2":0,"13.3":0.00419,"13.4-13.7":0.06572,"14.0-14.4":0.73546,"14.5-14.8":0.12444,"15.0-15.1":0.44463,"15.2-15.3":0.13143,"15.4":0.12444,"15.5":0.96197,"15.6":0.783,"16.0":0.75363,"16.1":1.64429,"16.2":1.9491,"16.3":3.01314,"16.4":0.00699},P:{"4":0.06154,"20":0.91279,"5.0-5.4":0.02051,"6.2-6.4":0.02051,"7.2-7.4":0.53331,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.21538,"12.0":0,"13.0":0.0923,"14.0":2.42043,"15.0":0.05128,"16.0":0.10256,"17.0":0.03077,"18.0":0.1641,"19.0":1.97942},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03048,"4.4":0,"4.4.3-4.4.4":0.02822},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00443,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.04458},O:{"0":1.44898},H:{"0":0.87057},L:{"0":57.53448},R:{_:"0"},M:{"0":0.15604},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js index d41a36d1556910..3be77f9c9f42ae 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.00666,"48":0,"49":0,"50":0,"51":0,"52":0.01333,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01999,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.02665,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00666,"98":0,"99":0,"100":0,"101":0.00666,"102":0.01999,"103":0.02665,"104":0.00666,"105":0.01999,"106":0.01333,"107":0.01999,"108":0.91949,"109":0.5397,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00666,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03332,"50":0,"51":0,"52":0.01999,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00666,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01333,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01999,"77":0,"78":0.00666,"79":0.03332,"80":0.00666,"81":0.00666,"83":0.00666,"84":0.00666,"85":0.01999,"86":0.00666,"87":0.04664,"88":0.00666,"89":0.01999,"90":0.01999,"91":0.01999,"92":0.02665,"93":0.08662,"94":0.01999,"95":0.00666,"96":0.01333,"97":0.01999,"98":0.01999,"99":0.03332,"100":0.03998,"101":0.01333,"102":0.01999,"103":0.25986,"104":0.05997,"105":0.11327,"106":0.08662,"107":0.60633,"108":15.39153,"109":12.63971,"110":0.00666,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00666,"74":0,"75":0.00666,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01333,"90":0,"91":0,"92":0.00666,"93":0.58634,"94":0.44642,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.01999,"93":0,"94":0,"95":0,"96":0,"97":0.00666,"98":0,"99":0,"100":0.00666,"101":0.00666,"102":0.03332,"103":0.00666,"104":0.01333,"105":0.01333,"106":0.01333,"107":0.08662,"108":2.75182,"109":2.78513},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00666,"13":0.00666,"14":0.1799,"15":0.03998,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02665,"13.1":0.13992,"14.1":0.43976,"15.1":0.07329,"15.2-15.3":0.0533,"15.4":0.14659,"15.5":0.25986,"15.6":1.50584,"16.0":0.19989,"16.1":0.63299,"16.2":0.99945,"16.3":0.09328},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02986,"8.1-8.4":0,"9.0-9.2":0.01866,"9.3":0.06345,"10.0-10.2":0,"10.3":0.13437,"11.0-11.2":0.00373,"11.3-11.4":0.02613,"12.0-12.1":0.0112,"12.2-12.5":0.53,"13.0-13.1":0,"13.2":0.00373,"13.3":0.01493,"13.4-13.7":0.07465,"14.0-14.4":0.26127,"14.5-14.8":1.06374,"15.0-15.1":0.23141,"15.2-15.3":0.31352,"15.4":0.36578,"15.5":0.95923,"15.6":5.04995,"16.0":4.90812,"16.1":13.52251,"16.2":7.3715,"16.3":0.61958},P:{"4":0.04108,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01027,"12.0":0,"13.0":0,"14.0":0.01027,"15.0":0,"16.0":0.02054,"17.0":0.01027,"18.0":0.02054,"19.0":1.46876},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00633,"4.2-4.3":0.019,"4.4":0,"4.4.3-4.4.4":0.10136},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0546,"8":0.04095,"9":0,"10":0.00683,"11":0.17746,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.24694},Q:{"13.1":0},O:{"0":0.01001},H:{"0":0.11057},L:{"0":17.32174},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0135,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02025,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.03376,"88":0,"89":0,"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.027,"103":0.02025,"104":0,"105":0.00675,"106":0.0135,"107":0.00675,"108":0.05401,"109":0.90463,"110":0.60084,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.027,"50":0,"51":0,"52":0.03376,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0135,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0135,"77":0,"78":0.00675,"79":0.027,"80":0.00675,"81":0,"83":0.00675,"84":0.00675,"85":0.02025,"86":0.0135,"87":0.04726,"88":0,"89":0.02025,"90":0.027,"91":0.02025,"92":0.03376,"93":0.05401,"94":0.027,"95":0.00675,"96":0.0135,"97":0.02025,"98":0.0135,"99":0.02025,"100":0.03376,"101":0.3173,"102":0.02025,"103":0.22278,"104":0.04726,"105":0.08101,"106":0.04726,"107":0.20253,"108":1.27594,"109":17.55935,"110":10.51131,"111":0.0135,"112":0.00675,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0135,"90":0,"91":0,"92":0,"93":0.09451,"94":0.6751,"95":0.20253,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00675,"93":0,"94":0,"95":0,"96":0,"97":0.00675,"98":0.00675,"99":0,"100":0.00675,"101":0.00675,"102":0.02025,"103":0.00675,"104":0.00675,"105":0.0135,"106":0.0135,"107":0.04051,"108":0.12827,"109":2.75441,"110":3.13922},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00675,"13":0.00675,"14":0.12827,"15":0.027,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02025,"13.1":0.12827,"14.1":0.38481,"15.1":0.06076,"15.2-15.3":0.04051,"15.4":0.13502,"15.5":0.18903,"15.6":0.94514,"16.0":0.12152,"16.1":0.3443,"16.2":1.0059,"16.3":1.0194,"16.4":0.00675},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.05706,"9.3":0.07489,"10.0-10.2":0,"10.3":0.11768,"11.0-11.2":0,"11.3-11.4":0.02496,"12.0-12.1":0.00713,"12.2-12.5":0.49212,"13.0-13.1":0.00357,"13.2":0.00357,"13.3":0.0107,"13.4-13.7":0.05349,"14.0-14.4":0.23536,"14.5-14.8":0.97355,"15.0-15.1":0.18187,"15.2-15.3":0.26389,"15.4":0.27459,"15.5":0.71322,"15.6":3.25943,"16.0":3.60891,"16.1":9.09361,"16.2":7.78484,"16.3":6.85052,"16.4":0.01426},P:{"4":0.03091,"20":0.59756,"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.0103,"15.0":0.0103,"16.0":0.0103,"17.0":0.0103,"18.0":0.02061,"19.0":0.87573},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00733,"4.2-4.3":0.01099,"4.4":0,"4.4.3-4.4.4":0.12092},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00696,"8":0.02089,"9":0.00696,"10":0.00696,"11":0.18101,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02274},H:{"0":0.13534},L:{"0":17.58912},R:{_:"0"},M:{"0":0.27617},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DM.js index 5fc56707b84d92..55220f31199314 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.00536,"35":0,"36":0,"37":0.00536,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00536,"103":0.01607,"104":0,"105":0.00536,"106":0,"107":0,"108":0.31071,"109":0.19285,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00536,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02143,"70":0,"71":0.00536,"72":0,"73":0,"74":0.00536,"75":0.00536,"76":1.09283,"77":0.10178,"78":0,"79":0.04286,"80":0.00536,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.04286,"88":0.01607,"89":0,"90":0,"91":0.00536,"92":0,"93":0.19285,"94":0.00536,"95":0,"96":0,"97":0,"98":0.01071,"99":0.00536,"100":0,"101":0.00536,"102":0.01071,"103":0.10178,"104":0.01607,"105":0.1125,"106":0.05357,"107":0.13393,"108":8.7212,"109":5.91413,"110":0.05357,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02679,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00536,"93":0.21428,"94":0.12321,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.075,"17":0.01071,"18":0.01071,"79":0,"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.01607,"105":0.36963,"106":0,"107":0.08571,"108":1.76781,"109":1.41961},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00536,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00536,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.03214,"14.1":0.16071,"15.1":0.02679,"15.2-15.3":0.00536,"15.4":0.05357,"15.5":0.09643,"15.6":0.48213,"16.0":0.06428,"16.1":0.15535,"16.2":0.43392,"16.3":0.01071},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00917,"6.0-6.1":0,"7.0-7.1":0.01682,"8.1-8.4":0.00764,"9.0-9.2":0,"9.3":0.30729,"10.0-10.2":0,"10.3":0.00917,"11.0-11.2":0.00306,"11.3-11.4":0.01376,"12.0-12.1":0.03516,"12.2-12.5":0.26448,"13.0-13.1":0.00764,"13.2":0,"13.3":0,"13.4-13.7":0.01682,"14.0-14.4":0.09937,"14.5-14.8":0.159,"15.0-15.1":0.09479,"15.2-15.3":0.14218,"15.4":0.14829,"15.5":0.70325,"15.6":1.42027,"16.0":2.1648,"16.1":3.87248,"16.2":3.86636,"16.3":0.28436},P:{"4":0.18052,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04248,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03186,"12.0":0.01062,"13.0":0.05309,"14.0":0.01062,"15.0":0,"16.0":0.07433,"17.0":0.93446,"18.0":0.06371,"19.0":3.11131},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.12025,"4.4":0,"4.4.3-4.4.4":1.08222},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00536,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.24608},Q:{"13.1":0},O:{"0":1.55541},H:{"0":0.09231},L:{"0":52.52508},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00527,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.02637,"109":0.40075,"110":0.30583,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00527,"51":0,"52":0,"53":0.00527,"54":0,"55":0,"56":0,"57":0,"58":0.01055,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00527,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00527,"76":0.76459,"77":0.08437,"78":0,"79":0.06328,"80":0,"81":0.06328,"83":0,"84":0.01582,"85":0.05273,"86":0,"87":0,"88":0.02109,"89":0.00527,"90":0.01582,"91":0,"92":0.01582,"93":0.02637,"94":0,"95":0.00527,"96":0.01055,"97":0.01055,"98":0,"99":0.00527,"100":0.05273,"101":0.00527,"102":0.00527,"103":0.10546,"104":0.00527,"105":0.06328,"106":0.02637,"107":0.04218,"108":0.6064,"109":9.2172,"110":5.22027,"111":0.01055,"112":0.01055,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00527,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.08964,"64":0,"65":0,"66":0,"67":0.04746,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00527,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01582,"94":0.18983,"95":0.10546,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00527,"13":0,"14":0.00527,"15":0,"16":0.01582,"17":0.01582,"18":0.01582,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00527,"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.058,"104":0.00527,"105":0.53785,"106":0,"107":0.01582,"108":0.16874,"109":1.46589,"110":1.95101},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01055,"14":0.01582,"15":0.00527,_:"0","3.1":0,"3.2":0,"5.1":0.01055,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00527,"13.1":0.01582,"14.1":0.0791,"15.1":0.01582,"15.2-15.3":0,"15.4":0,"15.5":0.03691,"15.6":0.51148,"16.0":0.03164,"16.1":0.14237,"16.2":0.66967,"16.3":0.17401,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00372,"6.0-6.1":0,"7.0-7.1":0.00929,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00929,"10.0-10.2":0.00372,"10.3":0.00557,"11.0-11.2":0.01672,"11.3-11.4":0.0223,"12.0-12.1":0,"12.2-12.5":0.61131,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.05203,"14.0-14.4":0.06503,"14.5-14.8":0.20625,"15.0-15.1":0.11149,"15.2-15.3":0.17466,"15.4":0.08919,"15.5":1.47162,"15.6":1.09814,"16.0":1.56452,"16.1":2.37651,"16.2":5.37177,"16.3":2.74813,"16.4":0.04831},P:{"4":0.02113,"20":0.94039,"5.0-5.4":0.01057,"6.2-6.4":0,"7.2-7.4":0.13736,"8.2":0,"9.2":0.01057,"10.1":0,"11.1-11.2":0.01057,"12.0":0,"13.0":0.01057,"14.0":0,"15.0":0,"16.0":0.0317,"17.0":0.20076,"18.0":0.02113,"19.0":2.55703},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.10516,"4.4":0,"4.4.3-4.4.4":0.81125},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00527,"11":0.00527,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00473},O:{"0":0.27417},H:{"0":0.46095},L:{"0":51.97387},R:{_:"0"},M:{"0":0.09927},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js index 9b9c828685ecc7..464e7fd17f36b3 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.00799,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02398,"74":0,"75":0,"76":0,"77":0,"78":0.00799,"79":0.004,"80":0.004,"81":0.004,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.004,"100":0,"101":0,"102":0.00799,"103":0,"104":0.10792,"105":0,"106":0.004,"107":0.01199,"108":0.2638,"109":0.1399,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.004,"48":0.00799,"49":0.01999,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.004,"64":0.004,"65":0.00799,"66":0,"67":0,"68":0.004,"69":0.004,"70":0.004,"71":0,"72":0.004,"73":0,"74":0.004,"75":0.01599,"76":0.01599,"77":0.004,"78":0.00799,"79":0.02398,"80":0.004,"81":0.01999,"83":0.01599,"84":0.02798,"85":0.04397,"86":0.01999,"87":0.03997,"88":0.00799,"89":0.01199,"90":0.00799,"91":0.01599,"92":0.00799,"93":0.02398,"94":0.04796,"95":0.004,"96":0.01199,"97":0.01199,"98":0.00799,"99":0.01199,"100":0.01599,"101":0.00799,"102":0.01599,"103":0.11591,"104":0.03597,"105":0.06395,"106":0.06395,"107":0.15988,"108":5.05221,"109":4.5286,"110":0.004,"111":0.004,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.004,"70":0,"71":0,"72":0,"73":0.004,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00799,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.004,"91":0,"92":0.004,"93":0.33175,"94":0.36772,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.02398,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.004,"86":0.004,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01199,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.004,"100":0,"101":0,"102":0,"103":0.004,"104":0.004,"105":0.00799,"106":0.004,"107":0.02398,"108":0.70347,"109":0.63952},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.004,"14":0.04397,"15":0.00799,_:"0","3.1":0,"3.2":0,"5.1":0.01999,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.004,"13.1":0.07195,"14.1":0.05596,"15.1":0.00799,"15.2-15.3":0.00799,"15.4":0.02398,"15.5":0.07195,"15.6":0.30377,"16.0":0.04397,"16.1":0.11591,"16.2":0.46765,"16.3":0.01599},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00314,"6.0-6.1":0,"7.0-7.1":0.05334,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05962,"10.0-10.2":0,"10.3":0.03765,"11.0-11.2":0.00314,"11.3-11.4":0.01255,"12.0-12.1":0.01569,"12.2-12.5":0.65265,"13.0-13.1":0.02196,"13.2":0.00628,"13.3":0.05962,"13.4-13.7":0.20395,"14.0-14.4":0.62755,"14.5-14.8":1.41198,"15.0-15.1":0.30436,"15.2-15.3":0.37025,"15.4":0.52714,"15.5":1.06055,"15.6":3.9504,"16.0":4.07591,"16.1":8.34321,"16.2":5.5475,"16.3":0.54283},P:{"4":0.12432,"5.0-5.4":0.01036,"6.2-6.4":0.01036,"7.2-7.4":0.09324,"8.2":0,"9.2":0.01036,"10.1":0,"11.1-11.2":0.06216,"12.0":0.01036,"13.0":0.02072,"14.0":0.03108,"15.0":0.02072,"16.0":0.08288,"17.0":0.0518,"18.0":0.1036,"19.0":1.28464},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01599,"4.2-4.3":0.06396,"4.4":0,"4.4.3-4.4.4":0.43173},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00492,"7":0.00492,"8":0.01476,"9":0.00492,"10":0.00492,"11":0.02952,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.32416},Q:{"13.1":0},O:{"0":0.06003},H:{"0":0.2046},L:{"0":52.92747},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00404,"48":0,"49":0,"50":0,"51":0,"52":0.00404,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02425,"74":0,"75":0,"76":0,"77":0,"78":0.00404,"79":0,"80":0.00404,"81":0.01213,"82":0.00404,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00404,"100":0,"101":0,"102":0.00808,"103":0,"104":0.10509,"105":0.00404,"106":0.00404,"107":0.00404,"108":0.01213,"109":0.24656,"110":0.14147,"111":0.00404,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00808,"48":0.00808,"49":0.02829,"50":0,"51":0.00404,"52":0,"53":0,"54":0,"55":0,"56":0.00404,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00404,"64":0.00404,"65":0.00404,"66":0,"67":0,"68":0.00404,"69":0,"70":0.00404,"71":0,"72":0.00404,"73":0.00404,"74":0.00404,"75":0.00404,"76":0.06467,"77":0.00404,"78":0,"79":0.02829,"80":0.00404,"81":0.01617,"83":0.01213,"84":0.02021,"85":0.02829,"86":0.01617,"87":0.02829,"88":0.01213,"89":0.02021,"90":0.00808,"91":0.02021,"92":0.00404,"93":0.02425,"94":0.00808,"95":0.00808,"96":0.01213,"97":0.01213,"98":0.01213,"99":0.01617,"100":0.01213,"101":0.00808,"102":0.01213,"103":0.12126,"104":0.05255,"105":0.03638,"106":0.03234,"107":0.06871,"108":0.24656,"109":5.88515,"110":3.86415,"111":0.00404,"112":0.00404,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00404,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00808,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00404,"91":0,"92":0,"93":0.05659,"94":0.49717,"95":0.19402,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00404,"18":0.02425,"79":0,"80":0,"81":0,"83":0,"84":0.00404,"85":0.00404,"86":0,"87":0.00404,"88":0,"89":0,"90":0,"91":0,"92":0.01213,"93":0,"94":0,"95":0,"96":0,"97":0.00404,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00404,"104":0.00404,"105":0.00404,"106":0.00404,"107":0.01617,"108":0.02829,"109":0.62247,"110":0.84882},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00404,"14":0.0485,"15":0.00808,_:"0","3.1":0,"3.2":0,"5.1":0.00808,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00404,"13.1":0.05659,"14.1":0.05255,"15.1":0.00808,"15.2-15.3":0.00808,"15.4":0.02021,"15.5":0.06063,"15.6":0.21827,"16.0":0.03638,"16.1":0.08488,"16.2":0.24656,"16.3":0.18593,"16.4":0.00808},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04682,"8.1-8.4":0.00624,"9.0-9.2":0,"9.3":0.04994,"10.0-10.2":0,"10.3":0.05618,"11.0-11.2":0.00312,"11.3-11.4":0.00624,"12.0-12.1":0.01561,"12.2-12.5":0.67415,"13.0-13.1":0.01248,"13.2":0.00624,"13.3":0.04057,"13.4-13.7":0.16542,"14.0-14.4":0.58676,"14.5-14.8":1.11109,"15.0-15.1":0.28089,"15.2-15.3":0.34956,"15.4":0.51497,"15.5":0.85829,"15.6":3.04926,"16.0":3.07735,"16.1":6.24833,"16.2":6.66655,"16.3":3.83576,"16.4":0.02497},P:{"4":0.1342,"20":0.48519,"5.0-5.4":0.01032,"6.2-6.4":0.01032,"7.2-7.4":0.10323,"8.2":0,"9.2":0.02065,"10.1":0,"11.1-11.2":0.08259,"12.0":0,"13.0":0.08259,"14.0":0.03097,"15.0":0.02065,"16.0":0.07226,"17.0":0.04129,"18.0":0.07226,"19.0":0.91877},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01105,"4.2-4.3":0.09942,"4.4":0,"4.4.3-4.4.4":0.3314},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00472,"7":0,"8":0.01415,"9":0.00472,"10":0.00943,"11":0.02358,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.0715},H:{"0":0.16922},L:{"0":52.66392},R:{_:"0"},M:{"0":0.35152},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js index 954fe89e8f3892..fce444819842cb 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.0036,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.01438,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0036,"35":0,"36":0,"37":0,"38":0.0036,"39":0,"40":0.0036,"41":0.0036,"42":0,"43":0.0036,"44":0,"45":0,"46":0,"47":0.0036,"48":0.00719,"49":0,"50":0,"51":0,"52":0.06113,"53":0,"54":0,"55":0,"56":0.0036,"57":0,"58":0,"59":0,"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.00719,"73":0,"74":0,"75":0.0036,"76":0,"77":0,"78":0.0036,"79":0,"80":0.0036,"81":0.0036,"82":0.0036,"83":0.0036,"84":0,"85":0,"86":0,"87":0,"88":0.0036,"89":0.0036,"90":0,"91":0.0036,"92":0,"93":0,"94":0,"95":0.0036,"96":0.0036,"97":0.0036,"98":0,"99":0.00719,"100":0.00719,"101":0.0036,"102":0.01798,"103":0.00719,"104":0.00719,"105":0.00719,"106":0.01079,"107":0.03236,"108":0.59694,"109":0.33083,"110":0.0036,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.0036,"28":0,"29":0.0036,"30":0,"31":0.0036,"32":0.01438,"33":0.00719,"34":0,"35":0,"36":0,"37":0,"38":0.0036,"39":0,"40":0.00719,"41":0,"42":0,"43":0.04315,"44":0,"45":0,"46":0,"47":0.0036,"48":0,"49":0.03596,"50":0.0036,"51":0,"52":0,"53":0.0036,"54":0,"55":0,"56":0.01079,"57":0,"58":0.00719,"59":0,"60":0.0036,"61":0.0036,"62":0.0036,"63":0.01079,"64":0.00719,"65":0.0036,"66":0.0036,"67":0.01798,"68":0.00719,"69":0.01079,"70":0.00719,"71":0.00719,"72":0.00719,"73":0.0036,"74":0.01438,"75":0.0036,"76":0.00719,"77":0.00719,"78":0.0036,"79":0.02517,"80":0.00719,"81":0.02517,"83":0.01438,"84":0.01079,"85":0.02158,"86":0.01798,"87":0.02158,"88":0.00719,"89":0.01079,"90":0.00719,"91":0.01079,"92":0.01079,"93":0.0036,"94":0.00719,"95":0.02877,"96":0.01438,"97":0.01438,"98":0.03956,"99":0.01438,"100":0.01798,"101":0.01079,"102":0.03596,"103":0.04315,"104":0.02877,"105":0.05754,"106":0.04675,"107":0.13305,"108":4.25407,"109":3.74703,"110":0.0036,"111":0.0036,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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.0036,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0036,"62":0,"63":0.0036,"64":0.0036,"65":0.0036,"66":0.0036,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0036,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01438,"80":0,"81":0,"82":0,"83":0,"84":0.0036,"85":0.01798,"86":0.00719,"87":0.0036,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.1798,"94":0.38837,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0036,"13":0,"14":0,"15":0.0036,"16":0.00719,"17":0.0036,"18":0.00719,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.0036,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00719,"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.0036,"107":0.02877,"108":0.32364,"109":0.28408},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01079,"15":0.0036,_:"0","3.1":0,"3.2":0,"5.1":0.0036,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00719,"14.1":0.01079,"15.1":0.0036,"15.2-15.3":0.0036,"15.4":0.0036,"15.5":0.01079,"15.6":0.03956,"16.0":0.0036,"16.1":0.02158,"16.2":0.03956,"16.3":0.00719},G:{"8":0,"3.2":0.00122,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00729,"6.0-6.1":0.00365,"7.0-7.1":0.07959,"8.1-8.4":0.00182,"9.0-9.2":0.00243,"9.3":0.10693,"10.0-10.2":0.00304,"10.3":0.04557,"11.0-11.2":0.01154,"11.3-11.4":0.00729,"12.0-12.1":0.00729,"12.2-12.5":0.26854,"13.0-13.1":0.00486,"13.2":0.00304,"13.3":0.02309,"13.4-13.7":0.07473,"14.0-14.4":0.10754,"14.5-14.8":0.19016,"15.0-15.1":0.08202,"15.2-15.3":0.12212,"15.4":0.15067,"15.5":0.31046,"15.6":0.54741,"16.0":0.80197,"16.1":1.25824,"16.2":1.07719,"16.3":0.11361},P:{"4":0.11401,"5.0-5.4":0,"6.2-6.4":0.01036,"7.2-7.4":0.11401,"8.2":0,"9.2":0.02073,"10.1":0.01036,"11.1-11.2":0.06219,"12.0":0.01036,"13.0":0.05182,"14.0":0.05182,"15.0":0.02073,"16.0":0.09328,"17.0":0.09328,"18.0":0.12438,"19.0":1.01576},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00652,"4.2-4.3":0.02608,"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.01153,"9":0.00384,"10":0.00384,"11":0.08841,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14089},Q:{"13.1":0.01281},O:{"0":0.37143},H:{"0":0.51535},L:{"0":78.4321},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0.00317,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.01587,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00317,"35":0,"36":0,"37":0,"38":0.00317,"39":0,"40":0.00317,"41":0,"42":0,"43":0.00317,"44":0,"45":0,"46":0,"47":0.00635,"48":0.00635,"49":0,"50":0,"51":0,"52":0.0476,"53":0,"54":0,"55":0,"56":0.00317,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00317,"65":0,"66":0,"67":0,"68":0.00317,"69":0,"70":0,"71":0,"72":0.00317,"73":0,"74":0,"75":0.00317,"76":0,"77":0,"78":0.00317,"79":0,"80":0,"81":0.00317,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00317,"92":0,"93":0,"94":0.00317,"95":0.00317,"96":0,"97":0,"98":0,"99":0.00317,"100":0.00317,"101":0.00317,"102":0.01587,"103":0.00317,"104":0.00635,"105":0.00317,"106":0.00635,"107":0.01269,"108":0.02538,"109":0.3998,"110":0.31095,"111":0.00635,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00317,"27":0,"28":0.00317,"29":0,"30":0,"31":0.00317,"32":0.00952,"33":0.00952,"34":0,"35":0,"36":0,"37":0,"38":0.00317,"39":0,"40":0.00635,"41":0,"42":0,"43":0.05077,"44":0.00317,"45":0,"46":0.00317,"47":0.00317,"48":0.00317,"49":0.04125,"50":0.00317,"51":0,"52":0,"53":0,"54":0,"55":0.00317,"56":0.00635,"57":0,"58":0.00635,"59":0,"60":0.00635,"61":0.00317,"62":0.00317,"63":0.00952,"64":0.00635,"65":0.00317,"66":0.00317,"67":0.01269,"68":0.00952,"69":0.00635,"70":0.00635,"71":0.01269,"72":0.00635,"73":0.00317,"74":0.00952,"75":0.00317,"76":0.00635,"77":0.00635,"78":0.00317,"79":0.02221,"80":0.00952,"81":0.02221,"83":0.00952,"84":0.00635,"85":0.02221,"86":0.01269,"87":0.01269,"88":0.00635,"89":0.00635,"90":0.00635,"91":0.00952,"92":0.00952,"93":0.00317,"94":0.00317,"95":0.01904,"96":0.00635,"97":0.00952,"98":0.03173,"99":0.01269,"100":0.01269,"101":0.00952,"102":0.02856,"103":0.03173,"104":0.01269,"105":0.03173,"106":0.02538,"107":0.06029,"108":0.16817,"109":4.70556,"110":1.31045,"111":0.00317,"112":0.00317,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00317,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00317,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00317,"62":0,"63":0.00317,"64":0.00317,"65":0.00317,"66":0,"67":0.01904,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01269,"80":0,"81":0,"82":0,"83":0,"84":0.00317,"85":0.01587,"86":0.00317,"87":0.00317,"88":0,"89":0,"90":0,"91":0.00317,"92":0,"93":0.01269,"94":0.19038,"95":0.18086,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00317,"13":0.01269,"14":0,"15":0.00317,"16":0.00317,"17":0,"18":0.00635,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00635,"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.00317,"107":0.00952,"108":0.00952,"109":0.20307,"110":0.26019},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.00317,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00317,"14.1":0.00635,"15.1":0.00317,"15.2-15.3":0.00317,"15.4":0.00317,"15.5":0.00635,"15.6":0.02538,"16.0":0.00317,"16.1":0.01904,"16.2":0.02221,"16.3":0.02856,"16.4":0},G:{"8":0.00055,"3.2":0.00109,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01038,"6.0-6.1":0.00328,"7.0-7.1":0.04645,"8.1-8.4":0.00164,"9.0-9.2":0.00109,"9.3":0.08306,"10.0-10.2":0.00164,"10.3":0.04207,"11.0-11.2":0.01366,"11.3-11.4":0.00437,"12.0-12.1":0.0082,"12.2-12.5":0.2131,"13.0-13.1":0.00437,"13.2":0.0082,"13.3":0.01421,"13.4-13.7":0.03989,"14.0-14.4":0.10491,"14.5-14.8":0.18032,"15.0-15.1":0.07595,"15.2-15.3":0.10491,"15.4":0.1377,"15.5":0.21638,"15.6":0.38031,"16.0":0.61363,"16.1":0.89067,"16.2":0.86061,"16.3":0.77155,"16.4":0.00437},P:{"4":0.12422,"20":0.2588,"5.0-5.4":0.01035,"6.2-6.4":0,"7.2-7.4":0.09317,"8.2":0,"9.2":0.0207,"10.1":0.01035,"11.1-11.2":0.04141,"12.0":0.01035,"13.0":0.05176,"14.0":0.03106,"15.0":0.0207,"16.0":0.08282,"17.0":0.07246,"18.0":0.09317,"19.0":0.66253},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00499,"4.2-4.3":0.02991,"4.4":0,"4.4.3-4.4.4":0.12712},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01363,"9":0.00341,"10":0.00341,"11":0.06816,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.32087},H:{"0":0.43305},L:{"0":82.49636},R:{_:"0"},M:{"0":0.10923},Q:{"13.1":0}}; 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 29d02ee54ab551..6565ea9e7b65da 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,"50":0,"51":0.00503,"52":0.01005,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00503,"67":0,"68":0.01005,"69":0,"70":0,"71":0,"72":0.00503,"73":0.01508,"74":0,"75":0,"76":0,"77":0,"78":0.02011,"79":0,"80":0,"81":0,"82":0.00503,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02011,"89":0.00503,"90":0,"91":0.00503,"92":0.00503,"93":0,"94":0,"95":0.00503,"96":0.01005,"97":0.00503,"98":0.00503,"99":0.01508,"100":0.01005,"101":0.00503,"102":0.02514,"103":0.01005,"104":0.06032,"105":0.01508,"106":0.02514,"107":0.05027,"108":1.17129,"109":0.65351,"110":0.00503,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01005,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01508,"48":0,"49":0.01508,"50":0,"51":0,"52":0,"53":0.00503,"54":0,"55":0.00503,"56":0.00503,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00503,"65":0.00503,"66":0.00503,"67":0.00503,"68":0.00503,"69":0,"70":0,"71":0,"72":0.00503,"73":0,"74":0.02011,"75":0.00503,"76":0.00503,"77":0.00503,"78":0.00503,"79":0.09049,"80":0.00503,"81":0.00503,"83":0.01005,"84":0.00503,"85":0.01005,"86":0.00503,"87":0.03016,"88":0.00503,"89":0.00503,"90":0.00503,"91":0.12065,"92":0.02011,"93":0.01005,"94":0.00503,"95":0.00503,"96":0.02011,"97":0.04524,"98":0.03016,"99":0.02011,"100":0.03016,"101":0.02514,"102":0.04022,"103":0.10557,"104":0.07038,"105":0.0553,"106":0.07038,"107":0.13573,"108":8.6766,"109":8.76709,"110":0.01005,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01005,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00503,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.52281,"94":0.60827,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00503,"79":0,"80":0,"81":0,"83":0,"84":0.00503,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00503,"93":0.00503,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00503,"104":0.01005,"105":0.00503,"106":0.00503,"107":0.02011,"108":0.84956,"109":0.88978},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02011,"15":0.00503,_:"0","3.1":0,"3.2":0,"5.1":0.01508,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00503,"13.1":0.02514,"14.1":0.04524,"15.1":0.00503,"15.2-15.3":0.01508,"15.4":0.01508,"15.5":0.02514,"15.6":0.11059,"16.0":0.01508,"16.1":0.09049,"16.2":0.1307,"16.3":0.01005},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01836,"6.0-6.1":0.02639,"7.0-7.1":0.00459,"8.1-8.4":0,"9.0-9.2":0.00229,"9.3":0.03327,"10.0-10.2":0,"10.3":0.02524,"11.0-11.2":0.00344,"11.3-11.4":0.00688,"12.0-12.1":0.00803,"12.2-12.5":0.3132,"13.0-13.1":0.00459,"13.2":0.00229,"13.3":0.02983,"13.4-13.7":0.04704,"14.0-14.4":0.10096,"14.5-14.8":0.29141,"15.0-15.1":0.08834,"15.2-15.3":0.07113,"15.4":0.11817,"15.5":0.27534,"15.6":1.11859,"16.0":1.90332,"16.1":3.20661,"16.2":2.66396,"16.3":0.21339},P:{"4":0.19279,"5.0-5.4":0.01015,"6.2-6.4":0,"7.2-7.4":0.1522,"8.2":0,"9.2":0.01015,"10.1":0,"11.1-11.2":0.03044,"12.0":0.01015,"13.0":0.04059,"14.0":0.02029,"15.0":0.02029,"16.0":0.05073,"17.0":0.14205,"18.0":0.08117,"19.0":1.50171},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01505,"4.4":0,"4.4.3-4.4.4":0.16554},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03519,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.20887},Q:{"13.1":0},O:{"0":0.02984},H:{"0":0.12241},L:{"0":60.31568},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01005,"53":0,"54":0,"55":0,"56":0.01005,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00503,"67":0,"68":0,"69":0,"70":0,"71":0.00503,"72":0.00503,"73":0.01508,"74":0,"75":0,"76":0,"77":0,"78":0.01508,"79":0,"80":0,"81":0,"82":0.00503,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0201,"89":0.00503,"90":0,"91":0.00503,"92":0.00503,"93":0,"94":0.00503,"95":0.00503,"96":0.00503,"97":0.00503,"98":0,"99":0.01005,"100":0.01005,"101":0.00503,"102":0.0402,"103":0.00503,"104":0.03518,"105":0.01005,"106":0.0201,"107":0.02513,"108":0.05025,"109":1.005,"110":0.61305,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00503,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01508,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0201,"48":0,"49":0.01508,"50":0,"51":0,"52":0,"53":0.00503,"54":0,"55":0.00503,"56":0.00503,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00503,"65":0.00503,"66":0.00503,"67":0,"68":0.01005,"69":0,"70":0,"71":0,"72":0.00503,"73":0,"74":0.01508,"75":0.00503,"76":0.00503,"77":0,"78":0.00503,"79":0.11558,"80":0.00503,"81":0.01005,"83":0.01508,"84":0.01005,"85":0.01005,"86":0.01005,"87":0.02513,"88":0.00503,"89":0.00503,"90":0.00503,"91":0.15075,"92":0.01508,"93":0.01005,"94":0.00503,"95":0.01005,"96":0.02513,"97":0.0402,"98":0.03015,"99":0.0201,"100":0.02513,"101":0.03015,"102":0.0402,"103":0.09548,"104":0.04523,"105":0.05025,"106":0.04523,"107":0.07538,"108":0.34673,"109":10.1103,"110":6.90938,"111":0.01508,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01005,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00503,"68":0,"69":0.00503,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.09045,"94":0.69848,"95":0.38693,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00503,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00503,"93":0,"94":0,"95":0,"96":0.00503,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00503,"104":0.01005,"105":0,"106":0.00503,"107":0.0201,"108":0.03015,"109":0.74873,"110":1.01003},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01508,"15":0.01005,_:"0","3.1":0,"3.2":0,"5.1":0.01005,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00503,"13.1":0.03015,"14.1":0.03518,"15.1":0.00503,"15.2-15.3":0.01508,"15.4":0.01005,"15.5":0.02513,"15.6":0.10553,"16.0":0.0201,"16.1":0.0603,"16.2":0.12563,"16.3":0.1005,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02219,"6.0-6.1":0.02569,"7.0-7.1":0.00584,"8.1-8.4":0,"9.0-9.2":0.00234,"9.3":0.03153,"10.0-10.2":0,"10.3":0.02686,"11.0-11.2":0.0035,"11.3-11.4":0.00117,"12.0-12.1":0.00467,"12.2-12.5":0.31767,"13.0-13.1":0.00234,"13.2":0,"13.3":0.01518,"13.4-13.7":0.03387,"14.0-14.4":0.08759,"14.5-14.8":0.23125,"15.0-15.1":0.07241,"15.2-15.3":0.07591,"15.4":0.11446,"15.5":0.21723,"15.6":0.79535,"16.0":1.33375,"16.1":2.43743,"16.2":3.02021,"16.3":1.86398,"16.4":0.00934},P:{"4":0.20453,"20":0.52155,"5.0-5.4":0.01023,"6.2-6.4":0,"7.2-7.4":0.14317,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02045,"12.0":0.01023,"13.0":0.04091,"14.0":0.02045,"15.0":0.01023,"16.0":0.05113,"17.0":0.14317,"18.0":0.06136,"19.0":0.97151},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03716,"4.4":0,"4.4.3-4.4.4":0.17344},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03518,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.03483},H:{"0":0.12717},L:{"0":60.35563},R:{_:"0"},M:{"0":0.16915},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js index 316275efb8a4d1..50a38fea8abccc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02059,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00686,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01372,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.11665,"88":0.02059,"89":0,"90":0,"91":0.00686,"92":0.01372,"93":0.00686,"94":0,"95":0,"96":0.00686,"97":0.02745,"98":0.00686,"99":0.01372,"100":0,"101":0,"102":0.50779,"103":0.00686,"104":0.03431,"105":0.01372,"106":0.02059,"107":0.0549,"108":2.6899,"109":1.76353,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00686,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02059,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00686,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00686,"75":0,"76":0.00686,"77":0.00686,"78":0.03431,"79":0.03431,"80":0,"81":0.02059,"83":0.02059,"84":0.00686,"85":0.01372,"86":0.02745,"87":0.0549,"88":0.02059,"89":0.00686,"90":0.02745,"91":0.00686,"92":0.01372,"93":0.19214,"94":0.00686,"95":0.06862,"96":0.03431,"97":0.02059,"98":0.00686,"99":0.02059,"100":0.02059,"101":0.02745,"102":0.0549,"103":0.13038,"104":0.06176,"105":0.21272,"106":0.11665,"107":0.42544,"108":15.24736,"109":14.122,"110":0.00686,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02059,"73":0.02059,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00686,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00686,"90":0,"91":0,"92":0,"93":0.6862,"94":2.71735,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00686,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.01372,"86":0.00686,"87":0,"88":0,"89":0,"90":0,"91":0.00686,"92":0.00686,"93":0,"94":0,"95":0,"96":0.00686,"97":0,"98":0.02745,"99":0,"100":0,"101":0,"102":0.00686,"103":0,"104":0.00686,"105":0.00686,"106":0.00686,"107":0.03431,"108":1.90764,"109":2.18898},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02059,"14":0.0549,"15":0.01372,_:"0","3.1":0,"3.2":0,"5.1":0.00686,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01372,"13.1":0.08921,"14.1":0.15096,"15.1":0.03431,"15.2-15.3":0.02745,"15.4":0.06176,"15.5":0.10979,"15.6":0.42544,"16.0":0.11665,"16.1":0.3431,"16.2":0.52837,"16.3":0.04117},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01359,"6.0-6.1":0,"7.0-7.1":0.00388,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01942,"10.0-10.2":0.03496,"10.3":0.18644,"11.0-11.2":0.00388,"11.3-11.4":0.00388,"12.0-12.1":0.00777,"12.2-12.5":0.20392,"13.0-13.1":0.00583,"13.2":0.00583,"13.3":0.01165,"13.4-13.7":0.13012,"14.0-14.4":0.23694,"14.5-14.8":0.44086,"15.0-15.1":0.09711,"15.2-15.3":0.26801,"15.4":0.28161,"15.5":0.59428,"15.6":1.73819,"16.0":3.12291,"16.1":6.67114,"16.2":4.01628,"16.3":0.37483},P:{"4":0.04126,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02063,"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.02063,"15.0":0.02063,"16.0":0.04126,"17.0":0.06189,"18.0":0.08252,"19.0":1.99072},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02787,"4.4":0,"4.4.3-4.4.4":0.06271},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00772,"9":0,"10":0.00772,"11":0.04632,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.35459},Q:{"13.1":0},O:{"0":0.05021},H:{"0":0.27035},L:{"0":29.84376},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02121,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02828,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00707,"79":0,"80":0,"81":0.02121,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.15556,"88":0.00707,"89":0,"90":0,"91":0,"92":0.02121,"93":0.00707,"94":0,"95":0,"96":0,"97":0.00707,"98":0,"99":0,"100":0.00707,"101":0,"102":0.96873,"103":0.00707,"104":0.02121,"105":0.00707,"106":0.01414,"107":0.01414,"108":0.16263,"109":2.61627,"110":1.92331,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00707,"33":0,"34":0,"35":0,"36":0,"37":0,"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.02121,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00707,"73":0,"74":0.00707,"75":0,"76":0.00707,"77":0,"78":0.03536,"79":0.02828,"80":0.00707,"81":0.01414,"83":0.00707,"84":0,"85":0.01414,"86":0.00707,"87":0.02121,"88":0.00707,"89":0.00707,"90":0.00707,"91":0.00707,"92":0.01414,"93":0.05657,"94":0.00707,"95":0.07778,"96":0.10607,"97":0.02121,"98":0.00707,"99":0.00707,"100":0.02121,"101":0.00707,"102":0.07778,"103":0.14142,"104":0.02121,"105":0.19799,"106":0.13435,"107":0.14142,"108":0.93337,"109":18.09469,"110":12.38839,"111":0.00707,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00707,"86":0,"87":0,"88":0,"89":0.00707,"90":0,"91":0,"92":0,"93":0.09899,"94":1.5839,"95":1.81018,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00707,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00707,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00707,"93":0,"94":0,"95":0,"96":0,"97":0.00707,"98":0,"99":0,"100":0,"101":0,"102":0.00707,"103":0.00707,"104":0,"105":0,"106":0.00707,"107":0.01414,"108":0.06364,"109":1.56976,"110":2.75769},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01414,"14":0.0495,"15":0.00707,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.05657,"13.1":0.07071,"14.1":0.13435,"15.1":0.02828,"15.2-15.3":0.02828,"15.4":0.06364,"15.5":0.09899,"15.6":0.30405,"16.0":0.09899,"16.1":0.21213,"16.2":0.49497,"16.3":0.38891,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0076,"6.0-6.1":0,"7.0-7.1":0.0038,"8.1-8.4":0.0038,"9.0-9.2":0,"9.3":0.01141,"10.0-10.2":0.03232,"10.3":0.192,"11.0-11.2":0.01141,"11.3-11.4":0.0076,"12.0-12.1":0.0076,"12.2-12.5":0.20721,"13.0-13.1":0.0038,"13.2":0.0019,"13.3":0.0095,"13.4-13.7":0.15398,"14.0-14.4":0.14067,"14.5-14.8":0.44293,"15.0-15.1":0.08554,"15.2-15.3":0.20151,"15.4":0.1996,"15.5":0.98472,"15.6":1.31359,"16.0":2.45799,"16.1":4.83043,"16.2":4.41791,"16.3":2.46179,"16.4":0.01711},P:{"4":0.01038,"20":0.63338,"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.01038,"12.0":0,"13.0":0.02077,"14.0":0.03115,"15.0":0.01038,"16.0":0.04153,"17.0":0.03115,"18.0":0.05192,"19.0":1.23561},I:{"0":0,"3":0,"4":0.00878,"2.1":0,"2.2":0,"2.3":0.01756,"4.1":0.00878,"4.2-4.3":0.02634,"4.4":0,"4.4.3-4.4.4":0.06146},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01414,"9":0,"10":0,"11":0.04243,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.0205},H:{"0":0.26621},L:{"0":27.90952},R:{_:"0"},M:{"0":0.26654},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js index 5ea80edf03f808..2e151f952fc197 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.00254,"52":0.01522,"53":0,"54":0,"55":0.00254,"56":0.00254,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00254,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00254,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00254,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00254,"100":0,"101":0.00254,"102":0.00761,"103":0.00254,"104":0.00254,"105":0.00254,"106":0.00507,"107":0.01014,"108":0.27642,"109":0.16738,"110":0.00254,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00254,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00254,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00507,"41":0,"42":0,"43":0.04311,"44":0,"45":0,"46":0.00254,"47":0,"48":0.00254,"49":0.00761,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00254,"61":0,"62":0,"63":0.00254,"64":0.00254,"65":0,"66":0,"67":0,"68":0.00254,"69":0.00507,"70":0.00254,"71":0.00254,"72":0.00254,"73":0.00254,"74":0.00507,"75":0.00254,"76":0.00507,"77":0.00254,"78":0.00254,"79":0.02029,"80":0.00761,"81":0.01775,"83":0.00507,"84":0.00761,"85":0.01014,"86":0.01268,"87":0.00761,"88":0.00507,"89":0.00761,"90":0.01522,"91":0.02029,"92":0.0279,"93":0.01775,"94":0.01775,"95":0.01014,"96":0.00507,"97":0.00507,"98":0.01775,"99":0.00507,"100":0.01268,"101":0.00761,"102":0.01775,"103":0.02282,"104":0.01522,"105":0.02536,"106":0.01775,"107":0.04818,"108":2.21646,"109":2.03894,"110":0.00254,"111":0.00254,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00761,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00254,"71":0,"72":0.00254,"73":0.01014,"74":0,"75":0,"76":0.00254,"77":0,"78":0.00254,"79":0.00761,"80":0.00254,"81":0.00507,"82":0.00507,"83":0.00507,"84":0.00254,"85":0.00254,"86":0.00254,"87":0,"88":0.00254,"89":0.00254,"90":0.00254,"91":0.00254,"92":0.00761,"93":0.02536,"94":0.01268,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00254,"15":0,"16":0,"17":0,"18":0.00254,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00507,"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.00254,"106":0.00254,"107":0.00761,"108":0.25106,"109":0.24853},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00507,"15":0.00254,_:"0","3.1":0,"3.2":0,"5.1":0.06086,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00507,"14.1":0.00761,"15.1":0.00254,"15.2-15.3":0.00254,"15.4":0.00507,"15.5":0.00761,"15.6":0.03043,"16.0":0.00507,"16.1":0.01268,"16.2":0.02029,"16.3":0.00254},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00094,"6.0-6.1":0.00094,"7.0-7.1":0.01223,"8.1-8.4":0,"9.0-9.2":0.00094,"9.3":0.02917,"10.0-10.2":0,"10.3":0.03481,"11.0-11.2":0.00282,"11.3-11.4":0.00376,"12.0-12.1":0.01411,"12.2-12.5":0.59744,"13.0-13.1":0.00753,"13.2":0.00282,"13.3":0.05833,"13.4-13.7":0.08374,"14.0-14.4":0.23239,"14.5-14.8":0.32647,"15.0-15.1":0.0922,"15.2-15.3":0.11949,"15.4":0.1543,"15.5":0.30766,"15.6":0.91074,"16.0":1.26544,"16.1":2.14889,"16.2":1.87604,"16.3":0.22392},P:{"4":0.24658,"5.0-5.4":0,"6.2-6.4":0.01027,"7.2-7.4":0.09247,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.05137,"12.0":0.01027,"13.0":0.06164,"14.0":0.06164,"15.0":0.03082,"16.0":0.10274,"17.0":0.13356,"18.0":0.09247,"19.0":1.70548},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01078,"4.2-4.3":0.02155,"4.4":0,"4.4.3-4.4.4":0.25505},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00575,"9":0.00287,"10":0.00287,"11":0.03162,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17167},Q:{"13.1":0},O:{"0":0.41798},H:{"0":0.45932},L:{"0":80.07046},S:{"2.5":0.00746}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"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,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00111,"103":0,"104":0,"105":0.00111,"106":0.00111,"107":0.00111,"108":0.00333,"109":0.06105,"110":0.02331,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00111,"41":0,"42":0,"43":0.00999,"44":0,"45":0,"46":0.00111,"47":0,"48":0,"49":0.00222,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00111,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00111,"70":0.00111,"71":0.00111,"72":0.00111,"73":0,"74":0.00111,"75":0.00111,"76":0.00111,"77":0.00111,"78":0.00111,"79":0.00666,"80":0.00222,"81":0.00555,"83":0.00111,"84":0.00111,"85":0.00222,"86":0.00222,"87":0.00111,"88":0.00111,"89":0.00222,"90":0.00222,"91":0.00333,"92":0.00777,"93":0.00333,"94":0.00333,"95":0.00333,"96":0.00111,"97":0.00111,"98":0.00444,"99":0.00111,"100":0.00444,"101":0.00222,"102":0.00333,"103":0.00444,"104":0.00222,"105":0.00333,"106":0.00333,"107":0.00555,"108":0.01776,"109":0.57054,"110":0.17427,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00222,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00111,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00111,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00111,"80":0,"81":0.00111,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00111,"90":0,"91":0,"92":0,"93":0.00222,"94":0.00333,"95":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00111,"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.00111,"108":0.00222,"109":0.04107,"110":0.03441},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00111,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00666,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00111,"14.1":0.00111,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00111,"15.6":0.00333,"16.0":0.00111,"16.1":0.00111,"16.2":0.00333,"16.3":0.00222,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00104,"5.0-5.1":0,"6.0-6.1":0.00157,"7.0-7.1":0.00888,"8.1-8.4":0,"9.0-9.2":0.00157,"9.3":0.01358,"10.0-10.2":0.00052,"10.3":0.01671,"11.0-11.2":0.00261,"11.3-11.4":0.00261,"12.0-12.1":0.00679,"12.2-12.5":0.30867,"13.0-13.1":0.00313,"13.2":0.00313,"13.3":0.01358,"13.4-13.7":0.03813,"14.0-14.4":0.10759,"14.5-14.8":0.17757,"15.0-15.1":0.04074,"15.2-15.3":0.06528,"15.4":0.07782,"15.5":0.16608,"15.6":0.37134,"16.0":0.56093,"16.1":0.87064,"16.2":0.93697,"16.3":0.72597,"16.4":0.00209},P:{"4":0.32212,"20":0.20782,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.2286,"8.2":0,"9.2":0.03117,"10.1":0.01039,"11.1-11.2":0.13508,"12.0":0.03117,"13.0":0.10391,"14.0":0.14547,"15.0":0.05195,"16.0":0.19743,"17.0":0.2286,"18.0":0.14547,"19.0":2.16131},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01555,"4.4":0,"4.4.3-4.4.4":0.15545},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00111,"9":0,"10":0,"11":0.00444,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.16891},H:{"0":0.37033},L:{"0":88.91226},R:{_:"0"},M:{"0":0.0889},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ER.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ER.js index ff686e6e2b707f..d251b128d1c546 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.00147,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00147,"42":0,"43":0.00294,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00294,"56":0,"57":0.00147,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00735,"85":0,"86":0.00147,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00147,"98":0,"99":0,"100":0,"101":0,"102":0.00441,"103":0.00441,"104":0.00294,"105":0,"106":0.00147,"107":0.01322,"108":0.10136,"109":0.06464,"110":0.00294,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00294,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00147,"41":0,"42":0,"43":0.00294,"44":0,"45":0,"46":0.00147,"47":0,"48":0,"49":0,"50":0.00147,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00294,"57":0,"58":0.00147,"59":0,"60":0,"61":0,"62":0.00147,"63":0,"64":0.00294,"65":0,"66":0,"67":0,"68":0.00294,"69":0,"70":0.00441,"71":0,"72":0,"73":0,"74":0.00147,"75":0.00147,"76":0,"77":0,"78":0.00735,"79":0.03232,"80":0.00147,"81":0.00881,"83":0,"84":0,"85":0.00294,"86":0.00147,"87":0.00147,"88":0.00588,"89":0.00441,"90":0.00147,"91":0.00147,"92":0.00147,"93":0,"94":0,"95":0.00294,"96":0.00147,"97":0,"98":0.01175,"99":0.00735,"100":0.00294,"101":0,"102":0.01469,"103":0.00588,"104":0.00147,"105":0.00441,"106":0.0235,"107":0.01175,"108":0.39957,"109":0.31584,"110":0.00881,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0.00147,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00588,"28":0.00588,"29":0,"30":0.00147,"31":0,"32":0.01175,"33":0.00441,"34":0,"35":0.00147,"36":0,"37":0,"38":0.01322,"39":0,"40":0,"41":0,"42":0.00294,"43":0,"44":0,"45":0,"46":0.00147,"47":0,"48":0,"49":0,"50":0.00441,"51":0.00441,"52":0,"53":0,"54":0,"55":0,"56":0.00294,"57":0,"58":0.00147,"60":0.02497,"62":0,"63":0.01469,"64":0.00735,"65":0.00441,"66":0.01028,"67":0.01322,"68":0,"69":0,"70":0.00147,"71":0.00147,"72":0.00294,"73":0.00735,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00147,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00147,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00588,"94":0.09108,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01175},B:{"12":0.00588,"13":0,"14":0,"15":0,"16":0.00147,"17":0.00881,"18":0.00294,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00147,"91":0,"92":0.01028,"93":0,"94":0,"95":0,"96":0.00147,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00294,"104":0,"105":0,"106":0.00147,"107":0.00441,"108":0.0852,"109":0.07786},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},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02281,"8.1-8.4":0,"9.0-9.2":0.00107,"9.3":0.14276,"10.0-10.2":0.00321,"10.3":0.0524,"11.0-11.2":0.00553,"11.3-11.4":0.00107,"12.0-12.1":0.16771,"12.2-12.5":0.50742,"13.0-13.1":0.00267,"13.2":0.01426,"13.3":0.02959,"13.4-13.7":0.0164,"14.0-14.4":0.05685,"14.5-14.8":0.05311,"15.0-15.1":0.00374,"15.2-15.3":0.09731,"15.4":0.07325,"15.5":0.14383,"15.6":0.05579,"16.0":0.03725,"16.1":0.05792,"16.2":0.09179,"16.3":0.01961},P:{"4":0.61783,"5.0-5.4":0.19244,"6.2-6.4":0.05064,"7.2-7.4":0.62795,"8.2":0,"9.2":0.02026,"10.1":0,"11.1-11.2":0.02026,"12.0":0.02026,"13.0":0.02026,"14.0":0.02026,"15.0":0.01013,"16.0":0.25321,"17.0":0.04051,"18.0":0.09115,"19.0":0.38488},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0007,"4.2-4.3":0.04541,"4.4":0,"4.4.3-4.4.4":0.32033},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00588,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06825},Q:{"13.1":0.02559},O:{"0":1.11756},H:{"0":7.43047},L:{"0":83.00661},S:{"2.5":0.00853}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00156,"39":0,"40":0,"41":0,"42":0,"43":0.00156,"44":0.00156,"45":0,"46":0,"47":0.00156,"48":0.00156,"49":0,"50":0,"51":0,"52":0.00156,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00156,"78":0.00156,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00156,"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.00468,"103":0.00624,"104":0.00156,"105":0,"106":0.02027,"107":0.01247,"108":0.00312,"109":0.1216,"110":0.03118,"111":0.01403,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00312,"38":0.00156,"39":0,"40":0.00468,"41":0,"42":0,"43":0.00156,"44":0,"45":0,"46":0.00935,"47":0,"48":0,"49":0,"50":0.00156,"51":0,"52":0,"53":0.01559,"54":0,"55":0,"56":0,"57":0,"58":0.00156,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00312,"65":0,"66":0,"67":0,"68":0.00156,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00156,"75":0,"76":0,"77":0,"78":0,"79":0.14966,"80":0.00624,"81":0.01247,"83":0.00156,"84":0,"85":0.00156,"86":0.00156,"87":0,"88":0,"89":0.00312,"90":0,"91":0,"92":0.00312,"93":0,"94":0.00312,"95":0.00468,"96":0.00156,"97":0,"98":0.01715,"99":0.00156,"100":0.00156,"101":0.00156,"102":0.00312,"103":0.00312,"104":0.00156,"105":0.00624,"106":0.0078,"107":0.00624,"108":0.01403,"109":0.49264,"110":0.26659,"111":0.02962,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00156,"28":0.02027,"29":0.00156,"30":0.00156,"31":0,"32":0.00468,"33":0.00156,"34":0,"35":0,"36":0,"37":0,"38":0.00468,"39":0,"40":0,"41":0,"42":0.00156,"43":0,"44":0,"45":0,"46":0.00312,"47":0,"48":0,"49":0,"50":0.00312,"51":0.00312,"52":0,"53":0,"54":0.00312,"55":0,"56":0,"57":0,"58":0,"60":0.01871,"62":0,"63":0.00312,"64":0.00156,"65":0.00156,"66":0.00624,"67":0.07327,"68":0,"69":0,"70":0.00468,"71":0.00156,"72":0.00624,"73":0,"74":0.00156,"75":0,"76":0,"77":0,"78":0,"79":0.00156,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.06704,"95":0.03118,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0265},B:{"12":0.00312,"13":0,"14":0.00156,"15":0,"16":0.00156,"17":0.00156,"18":0.00156,"79":0,"80":0,"81":0,"83":0,"84":0.02339,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00156,"91":0,"92":0.00312,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00156,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00156,"106":0,"107":0.00156,"108":0.00468,"109":0.09042,"110":0.08107},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.00156,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":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.04429,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04296,"10.0-10.2":0,"10.3":0.0141,"11.0-11.2":0.00253,"11.3-11.4":0.01476,"12.0-12.1":0.0411,"12.2-12.5":0.44344,"13.0-13.1":0,"13.2":0.01277,"13.3":0.02367,"13.4-13.7":0.07954,"14.0-14.4":0.01343,"14.5-14.8":0.16679,"15.0-15.1":0.06424,"15.2-15.3":0.0814,"15.4":0.00705,"15.5":0.01091,"15.6":0.01543,"16.0":0.01929,"16.1":0.03019,"16.2":0.0661,"16.3":0.06225,"16.4":0},P:{"4":0.87233,"20":0.06086,"5.0-5.4":0.14201,"6.2-6.4":0.01014,"7.2-7.4":0.5376,"8.2":0,"9.2":0.01014,"10.1":0,"11.1-11.2":0.06086,"12.0":0,"13.0":0.03043,"14.0":0.02029,"15.0":0.01014,"16.0":0.08115,"17.0":0.10143,"18.0":0.03043,"19.0":0.44631},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00343,"4.2-4.3":0.05018,"4.4":0,"4.4.3-4.4.4":0.31886},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00312,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.01688,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.67132},H:{"0":8.40695},L:{"0":80.75603},R:{_:"0"},M:{"0":0.15194},Q:{"13.1":0}}; 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 cd1691a1746d46..3ad94cc41b17e5 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,"49":0,"50":0,"51":0,"52":0.02413,"53":0,"54":0,"55":0,"56":0.00402,"57":0,"58":0,"59":0.00402,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00402,"68":0.00402,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02011,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00804,"89":0.00402,"90":0,"91":0.00804,"92":0,"93":0,"94":0.00402,"95":0.00402,"96":0,"97":0.00402,"98":0.00402,"99":0.00402,"100":0.00402,"101":0.00402,"102":0.03218,"103":0.00402,"104":0.00804,"105":0.02815,"106":0.00804,"107":0.01609,"108":0.60732,"109":0.38611,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00402,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02815,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00402,"61":0,"62":0,"63":0.00402,"64":0.00402,"65":0.00402,"66":0.02011,"67":0.00402,"68":0.00402,"69":0,"70":0.00402,"71":0,"72":0,"73":0.00402,"74":0.00402,"75":0.00804,"76":0.00402,"77":0.00402,"78":0.00402,"79":0.04826,"80":0.00402,"81":0.01207,"83":0.00804,"84":0.00804,"85":0.00804,"86":0.01207,"87":0.02413,"88":0.00804,"89":0.00804,"90":0.01609,"91":0.02011,"92":0.02413,"93":0.01609,"94":0.02413,"95":0.01207,"96":0.01207,"97":0.01207,"98":0.06033,"99":0.01207,"100":0.02011,"101":0.01609,"102":0.02011,"103":0.09653,"104":0.01609,"105":0.04424,"106":0.04022,"107":0.10055,"108":4.88673,"109":4.98326,"110":0.00402,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00402,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00402,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00804,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.06435,"93":0.366,"94":0.28556,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00402,"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.00402,"91":0,"92":0.00402,"93":0,"94":0,"95":0.00402,"96":0,"97":0,"98":0,"99":0,"100":0.00402,"101":0,"102":0,"103":0.00402,"104":0.00402,"105":0.00402,"106":0.00402,"107":0.02413,"108":0.68374,"109":0.71592},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00804,"14":0.04022,"15":0.00804,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00402,"10.1":0,"11.1":0.00402,"12.1":0.01207,"13.1":0.05631,"14.1":0.09653,"15.1":0.01609,"15.2-15.3":0.01207,"15.4":0.04022,"15.5":0.08446,"15.6":0.34589,"16.0":0.04022,"16.1":0.15686,"16.2":0.28958,"16.3":0.02011},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00566,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08676,"10.0-10.2":0,"10.3":0.10374,"11.0-11.2":0.00943,"11.3-11.4":0.04527,"12.0-12.1":0.0132,"12.2-12.5":0.42439,"13.0-13.1":0.01132,"13.2":0.00566,"13.3":0.02641,"13.4-13.7":0.0811,"14.0-14.4":0.24143,"14.5-14.8":0.57151,"15.0-15.1":0.13203,"15.2-15.3":0.19616,"15.4":0.26218,"15.5":0.5998,"15.6":1.99367,"16.0":2.45389,"16.1":6.43746,"16.2":3.90812,"16.3":0.29424},P:{"4":0.12314,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0.02052,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03078,"12.0":0.01026,"13.0":0.04105,"14.0":0.03078,"15.0":0.02052,"16.0":0.05131,"17.0":0.05131,"18.0":0.10261,"19.0":2.11386},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02435,"4.2-4.3":0.01826,"4.4":0,"4.4.3-4.4.4":0.12174},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.0641,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},H:{"0":0.19243},L:{"0":61.51521},S:{"2.5":0},R:{_:"0"},M:{"0":0.26303},Q:{"13.1":0},O:{"0":0.02989}}; +module.exports={C:{"52":0.05446,"59":0.01167,"60":0.00389,"67":0.01167,"68":0.00778,"78":0.04279,"83":0.00389,"88":0.01556,"89":0.00389,"91":0.01556,"93":0.01167,"94":0.01945,"95":0.00389,"97":0.00389,"99":0.00389,"100":0.00778,"101":0.00778,"102":0.08947,"103":0.00778,"104":0.01167,"105":0.01945,"106":0.01167,"107":0.01945,"108":0.04668,"109":1.42374,"110":0.94527,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 66 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 90 92 96 98 111 112 3.5 3.6"},D:{"38":0.00778,"49":0.07391,"60":0.01167,"64":0.00389,"65":0.00778,"66":0.04668,"67":0.00389,"68":0.00778,"69":0.00389,"70":0.00778,"71":0.00778,"72":0.00778,"73":0.00389,"74":0.01167,"75":0.02334,"76":0.01167,"77":0.00778,"78":0.01167,"79":0.10892,"80":0.01556,"81":0.01945,"83":0.02334,"84":0.02334,"85":0.02723,"86":0.02723,"87":0.08947,"88":0.01945,"89":0.02334,"90":0.03112,"91":0.04279,"92":0.0389,"93":0.03112,"94":0.05835,"95":0.0389,"96":0.03112,"97":0.02723,"98":0.09336,"99":0.03112,"100":0.04668,"101":0.02334,"102":0.04279,"103":0.24118,"104":0.03112,"105":0.08169,"106":0.05446,"107":0.13615,"108":0.8169,"109":14.12848,"110":8.99368,"111":0.00778,"112":0.00389,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 113"},F:{"28":0.00778,"46":0.00389,"89":0.00778,"92":0.01945,"93":0.12448,"94":0.99584,"95":0.46291,_:"9 11 12 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00778,"18":0.00778,"90":0.00778,"92":0.00778,"97":0.00778,"100":0.00778,"101":0.00778,"103":0.00389,"104":0.00389,"105":0.00778,"106":0.00778,"107":0.03112,"108":0.08947,"109":1.40429,"110":1.9839,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 98 99 102"},E:{"4":0,"13":0.01556,"14":0.10503,"15":0.02723,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 16.4","9.1":0.02334,"11.1":0.01167,"12.1":0.03112,"13.1":0.12837,"14.1":0.23729,"15.1":0.0389,"15.2-15.3":0.03501,"15.4":0.08558,"15.5":0.17116,"15.6":0.61851,"16.0":0.07002,"16.1":0.24507,"16.2":0.71965,"16.3":0.49014},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00124,"6.0-6.1":0,"7.0-7.1":0.00373,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05965,"10.0-10.2":0,"10.3":0.06586,"11.0-11.2":0.00746,"11.3-11.4":0.03355,"12.0-12.1":0.00994,"12.2-12.5":0.28207,"13.0-13.1":0.00994,"13.2":0.00373,"13.3":0.01615,"13.4-13.7":0.05965,"14.0-14.4":0.14663,"14.5-14.8":0.35042,"15.0-15.1":0.08201,"15.2-15.3":0.11805,"15.4":0.15657,"15.5":0.32308,"15.6":0.97669,"16.0":1.23889,"16.1":3.14754,"16.2":3.03819,"16.3":1.64646,"16.4":0.0087},P:{"4":0.12421,"20":0.9005,"5.0-5.4":0.03048,"6.2-6.4":0.04064,"7.2-7.4":0.26414,"8.2":0.01016,"9.2":0.02068,"10.1":0.03048,"11.1-11.2":0.03105,"12.0":0.01035,"13.0":0.0414,"14.0":0.0207,"15.0":0.0207,"16.0":0.05175,"17.0":0.0414,"18.0":0.0828,"19.0":1.44907},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01091,"4.2-4.3":0.00655,"4.4":0,"4.4.3-4.4.4":0.04364},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00409,"11":0.1554,_:"6 7 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02444},H:{"0":0.20246},L:{"0":47.2477},R:{_:"0"},M:{"0":0.27495},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ET.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ET.js index 73bb7e57c2946e..5b37dcd7e9e659 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.0073,"35":0,"36":0,"37":0.00365,"38":0,"39":0,"40":0,"41":0.01095,"42":0,"43":0.00365,"44":0,"45":0,"46":0,"47":0.00365,"48":0,"49":0,"50":0,"51":0,"52":0.04379,"53":0,"54":0,"55":0,"56":0.00365,"57":0,"58":0,"59":0,"60":0.00365,"61":0,"62":0,"63":0.00365,"64":0.00365,"65":0,"66":0,"67":0,"68":0.00365,"69":0,"70":0,"71":0,"72":0.00365,"73":0,"74":0,"75":0,"76":0,"77":0.03649,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0146,"85":0,"86":0,"87":0,"88":0.01095,"89":0.01095,"90":0.00365,"91":0.0073,"92":0,"93":0,"94":0,"95":0.00365,"96":0,"97":0.0073,"98":0,"99":0.0073,"100":0.00365,"101":0,"102":0.02189,"103":0.0073,"104":0.00365,"105":0.00365,"106":0.0073,"107":0.02919,"108":0.70426,"109":0.5583,"110":0.05109,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00365,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00365,"34":0,"35":0.00365,"36":0,"37":0,"38":0.00365,"39":0,"40":0.0073,"41":0,"42":0,"43":0.01825,"44":0,"45":0.00365,"46":0.00365,"47":0,"48":0.00365,"49":0.00365,"50":0.00365,"51":0,"52":0,"53":0,"54":0,"55":0.00365,"56":0.0146,"57":0,"58":0.0146,"59":0,"60":0,"61":0,"62":0,"63":0.00365,"64":0.00365,"65":0.00365,"66":0,"67":0,"68":0.00365,"69":0.02189,"70":0.04014,"71":0.00365,"72":0.02554,"73":0.00365,"74":0.0073,"75":0.00365,"76":0.0073,"77":0.0073,"78":0.00365,"79":0.21164,"80":0.0073,"81":0.04014,"83":0.0073,"84":0.0073,"85":0.00365,"86":0.01095,"87":0.01095,"88":0.0073,"89":0.0073,"90":0.0146,"91":0.01825,"92":0.02554,"93":0.0146,"94":0.00365,"95":0.01825,"96":0.0146,"97":0.0146,"98":0.22989,"99":0.0146,"100":0.0146,"101":0.01095,"102":0.01825,"103":0.05109,"104":0.02554,"105":0.05109,"106":0.03649,"107":0.08028,"108":3.41546,"109":3.40087,"110":0.02554,"111":0.0073,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0.00365,"20":0.00365,"21":0.00365,"22":0,"23":0,"24":0.00365,"25":0,"26":0,"27":0.0146,"28":0.0146,"29":0.00365,"30":0.0073,"31":0,"32":0.01095,"33":0.00365,"34":0,"35":0,"36":0,"37":0.0073,"38":0.00365,"39":0,"40":0,"41":0,"42":0.00365,"43":0,"44":0,"45":0,"46":0,"47":0.0073,"48":0,"49":0,"50":0.0073,"51":0,"52":0,"53":0,"54":0.00365,"55":0,"56":0,"57":0,"58":0.00365,"60":0.03284,"62":0,"63":0.02919,"64":0.01825,"65":0.0073,"66":0.02554,"67":0.02554,"68":0,"69":0,"70":0.00365,"71":0,"72":0.00365,"73":0.02189,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01095,"80":0.00365,"81":0,"82":0,"83":0,"84":0,"85":0.00365,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0073,"93":0.01825,"94":0.60209,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02189},B:{"12":0.01095,"13":0.00365,"14":0.00365,"15":0.00365,"16":0.0073,"17":0.01095,"18":0.05109,"79":0,"80":0,"81":0,"83":0,"84":0.00365,"85":0.0073,"86":0,"87":0,"88":0,"89":0.00365,"90":0,"91":0,"92":0.01095,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00365,"104":0.0073,"105":0.00365,"106":0.00365,"107":0.02189,"108":0.63128,"109":0.58019},E:{"4":0,"5":0,"6":0,"7":0.01825,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00365,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00365,"14.1":0.0073,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00365,"15.6":0.01825,"16.0":0.00365,"16.1":0.00365,"16.2":0.00365,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00069,"4.2-4.3":0,"5.0-5.1":0.01029,"6.0-6.1":0.00583,"7.0-7.1":0.2851,"8.1-8.4":0.00961,"9.0-9.2":0.04151,"9.3":0.26623,"10.0-10.2":0.00446,"10.3":0.14512,"11.0-11.2":0.04563,"11.3-11.4":0.03191,"12.0-12.1":0.07445,"12.2-12.5":0.68926,"13.0-13.1":0.01612,"13.2":0.00892,"13.3":0.02264,"13.4-13.7":0.03156,"14.0-14.4":0.14753,"14.5-14.8":0.176,"15.0-15.1":0.07342,"15.2-15.3":0.07685,"15.4":0.0669,"15.5":0.09401,"15.6":0.21237,"16.0":0.14856,"16.1":0.27653,"16.2":0.20654,"16.3":0.02196},P:{"4":0.64664,"5.0-5.4":0.01043,"6.2-6.4":0.01043,"7.2-7.4":0.26074,"8.2":0.01043,"9.2":0.03129,"10.1":0,"11.1-11.2":0.02086,"12.0":0.01043,"13.0":0.12516,"14.0":0.03129,"15.0":0.01043,"16.0":0.16687,"17.0":0.11473,"18.0":0.07301,"19.0":0.75093},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00326,"4.2-4.3":0.07093,"4.4":0,"4.4.3-4.4.4":0.32353},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02919,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08891},Q:{"13.1":0.03176},O:{"0":1.07332},H:{"0":4.43738},L:{"0":72.49483},S:{"2.5":0.21593}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01518,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0038,"48":0,"49":0,"50":0,"51":0,"52":0.08351,"53":0,"54":0,"55":0,"56":0.00759,"57":0,"58":0,"59":0,"60":0.0038,"61":0,"62":0,"63":0.0038,"64":0.0038,"65":0,"66":0,"67":0,"68":0.0038,"69":0,"70":0,"71":0,"72":0.01139,"73":0,"74":0,"75":0,"76":0,"77":0.04555,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00759,"85":0,"86":0,"87":0,"88":0.01898,"89":0.01518,"90":0.0038,"91":0.00759,"92":0,"93":0,"94":0,"95":0.0038,"96":0,"97":0.00759,"98":0.01139,"99":0.00759,"100":0,"101":0,"102":0.01518,"103":0.00759,"104":0.0038,"105":0.0038,"106":0.01139,"107":0.02657,"108":0.01898,"109":0.763,"110":0.55042,"111":0.08731,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01139,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.0038,"32":0,"33":0.0038,"34":0,"35":0,"36":0,"37":0,"38":0.00759,"39":0,"40":0.01518,"41":0,"42":0.0038,"43":0.03416,"44":0,"45":0,"46":0.0038,"47":0,"48":0,"49":0,"50":0.0038,"51":0,"52":0,"53":0.0038,"54":0,"55":0.0038,"56":0.01898,"57":0.0038,"58":0.01518,"59":0,"60":0,"61":0,"62":0,"63":0.0038,"64":0.0038,"65":0.02278,"66":0.0038,"67":0.0038,"68":0,"69":0.00759,"70":0.03037,"71":0.01139,"72":0.01518,"73":0.01518,"74":0.02278,"75":0.00759,"76":0.00759,"77":0.00759,"78":0.0038,"79":0.2847,"80":0.01139,"81":0.05314,"83":0.01898,"84":0.0038,"85":0.0038,"86":0.01139,"87":0.01898,"88":0.00759,"89":0.00759,"90":0.01518,"91":0.01898,"92":0.02278,"93":0.03416,"94":0.00759,"95":0.02278,"96":0.02278,"97":0.01518,"98":0.16323,"99":0.00759,"100":0.01518,"101":0.00759,"102":0.02278,"103":0.04555,"104":0.03037,"105":0.04555,"106":0.03037,"107":0.04935,"108":0.16323,"109":4.82472,"110":2.40287,"111":0.01518,"112":0.00759,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0038,"25":0,"26":0.0038,"27":0.01518,"28":0.01898,"29":0,"30":0.00759,"31":0,"32":0.01139,"33":0.0038,"34":0,"35":0,"36":0,"37":0.0038,"38":0.0038,"39":0,"40":0,"41":0,"42":0.00759,"43":0,"44":0,"45":0,"46":0.0038,"47":0.0038,"48":0,"49":0,"50":0.00759,"51":0,"52":0,"53":0,"54":0.0038,"55":0,"56":0,"57":0.0038,"58":0.0038,"60":0.03796,"62":0,"63":0.01898,"64":0.00759,"65":0.0038,"66":0.01139,"67":0.186,"68":0,"69":0,"70":0.00759,"71":0,"72":0,"73":0.01518,"74":0.0038,"75":0,"76":0,"77":0,"78":0,"79":0.01139,"80":0,"81":0,"82":0,"83":0.0038,"84":0,"85":0.0038,"86":0.0038,"87":0,"88":0,"89":0,"90":0,"91":0.0038,"92":0.01139,"93":0.0038,"94":0.25813,"95":0.45172,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01898},B:{"12":0.00759,"13":0.0038,"14":0.0038,"15":0.0038,"16":0.0038,"17":0.0038,"18":0.06453,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01139,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01518,"103":0.0038,"104":0.0038,"105":0.0038,"106":0,"107":0.00759,"108":0.03416,"109":0.53144,"110":0.5732},E:{"4":0,"5":0,"6":0,"7":0.01518,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0038,"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.0038,"13.1":0.0038,"14.1":0.00759,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.0038,"15.6":0.08731,"16.0":0,"16.1":0,"16.2":0.0038,"16.3":0.0038,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01333,"6.0-6.1":0.01,"7.0-7.1":0.37128,"8.1-8.4":0.02066,"9.0-9.2":0.09399,"9.3":0.36928,"10.0-10.2":0.001,"10.3":0.12698,"11.0-11.2":0.04199,"11.3-11.4":0.03699,"12.0-12.1":0.04433,"12.2-12.5":0.6689,"13.0-13.1":0.01866,"13.2":0.00767,"13.3":0.04099,"13.4-13.7":0.03066,"14.0-14.4":0.12598,"14.5-14.8":0.15631,"15.0-15.1":0.07632,"15.2-15.3":0.09165,"15.4":0.06699,"15.5":0.09332,"15.6":0.14631,"16.0":0.08199,"16.1":0.15298,"16.2":0.16464,"16.3":0.09132,"16.4":0},P:{"4":0.72532,"20":0.07253,"5.0-5.4":0.01036,"6.2-6.4":0.03108,"7.2-7.4":0.27976,"8.2":0.01036,"9.2":0.03108,"10.1":0,"11.1-11.2":0.01036,"12.0":0.01036,"13.0":0.08289,"14.0":0.03108,"15.0":0.01036,"16.0":0.10362,"17.0":0.09325,"18.0":0.04145,"19.0":0.43519},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00669,"4.2-4.3":0.08192,"4.4":0,"4.4.3-4.4.4":0.45184},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02278,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.33502,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.91199},H:{"0":4.27007},L:{"0":70.97862},R:{_:"0"},M:{"0":0.07445},Q:{"13.1":0.01861}}; 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 82a50a0f3ad5b7..e7132a510a932f 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,"47":0.00606,"48":0,"49":0,"50":0,"51":0,"52":0.01212,"53":0,"54":0,"55":0.01819,"56":0,"57":0,"58":0,"59":0.00606,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01212,"69":0.00606,"70":0.00606,"71":0.00606,"72":0.00606,"73":0.00606,"74":0.00606,"75":0.01212,"76":0.00606,"77":0.00606,"78":0.07881,"79":0.01819,"80":0.01819,"81":0.01819,"82":0.01819,"83":0.01819,"84":0.00606,"85":0,"86":0,"87":0,"88":0.00606,"89":0,"90":0,"91":0.03031,"92":0,"93":0,"94":0,"95":0.00606,"96":0.00606,"97":0.00606,"98":0.00606,"99":0,"100":0.03637,"101":0.00606,"102":0.15761,"103":0.01212,"104":0.01212,"105":0.02425,"106":0.01819,"107":0.05456,"108":1.68524,"109":0.94567,"110":0.00606,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00606,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00606,"39":0,"40":0,"41":0,"42":0.01212,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00606,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00606,"57":0,"58":0,"59":0,"60":0.01819,"61":0.01819,"62":0,"63":0.00606,"64":0,"65":0,"66":0.03031,"67":0,"68":0.04243,"69":0.03031,"70":0.03031,"71":0.03637,"72":0.04243,"73":0.01212,"74":0.04243,"75":0.03031,"76":0.03031,"77":0.02425,"78":0.0485,"79":0.11518,"80":0.05456,"81":0.06062,"83":0.06668,"84":0.12124,"85":0.13336,"86":0.2546,"87":0.11518,"88":0.06062,"89":0.06062,"90":0.06062,"91":0.01819,"92":0.00606,"93":0.06668,"94":0.01819,"95":0.01212,"96":0.01819,"97":0.01819,"98":0.01212,"99":1.70342,"100":1.10328,"101":0.27885,"102":0.26673,"103":0.21823,"104":0.1758,"105":0.12124,"106":0.09093,"107":0.32735,"108":10.43876,"109":8.28069,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00606,"54":0.01212,"55":0.01212,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00606,"68":0.00606,"69":0.00606,"70":0,"71":0,"72":0.00606,"73":0.01212,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00606,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01212,"93":0.50315,"94":0.5577,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00606,"18":0.00606,"79":0.00606,"80":0.01819,"81":0.01819,"83":0.01819,"84":0.01819,"85":0.01212,"86":0.01819,"87":0.01212,"88":0.01212,"89":0.01212,"90":0.01212,"91":0,"92":0.00606,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00606,"100":0,"101":0,"102":0.01819,"103":0.00606,"104":0.00606,"105":0.00606,"106":0.01212,"107":0.04243,"108":1.91559,"109":1.53975},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01819,"14":0.05456,"15":0.02425,_:"0","3.1":0,"3.2":0,"5.1":0.00606,"6.1":0,"7.1":0,"9.1":0.23036,"10.1":0,"11.1":0.00606,"12.1":0.01212,"13.1":0.06668,"14.1":0.10305,"15.1":0.02425,"15.2-15.3":0.02425,"15.4":0.06668,"15.5":0.08487,"15.6":0.58801,"16.0":0.11518,"16.1":0.28491,"16.2":0.61226,"16.3":0.0485},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00722,"9.0-9.2":0.01684,"9.3":0.05774,"10.0-10.2":0.01444,"10.3":0.08421,"11.0-11.2":0.05293,"11.3-11.4":0.08661,"12.0-12.1":0.04571,"12.2-12.5":0.41142,"13.0-13.1":0.02887,"13.2":0.02406,"13.3":0.02647,"13.4-13.7":0.13473,"14.0-14.4":0.39458,"14.5-14.8":0.77231,"15.0-15.1":0.23097,"15.2-15.3":0.31518,"15.4":0.34165,"15.5":0.78194,"15.6":2.81737,"16.0":3.46939,"16.1":7.87228,"16.2":4.62665,"16.3":0.33443},P:{"4":0.06221,"5.0-5.4":0.01037,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01037,"12.0":0.01037,"13.0":0.03111,"14.0":0.03111,"15.0":0.02074,"16.0":0.09332,"17.0":0.07258,"18.0":0.15553,"19.0":1.75234},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01908,"4.2-4.3":0.00763,"4.4":0,"4.4.3-4.4.4":0.05723},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01984,"9":0.00661,"10":0.00661,"11":0.11242,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.62614},Q:{"13.1":0},O:{"0":0.11026},H:{"0":0.37655},L:{"0":35.86739},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00621,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01863,"53":0,"54":0,"55":0.01242,"56":0,"57":0,"58":0,"59":0.00621,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02484,"69":0.01242,"70":0.01242,"71":0.01242,"72":0.01242,"73":0.01242,"74":0.01863,"75":0.01863,"76":0.01242,"77":0.01242,"78":0.04967,"79":0.03105,"80":0.01863,"81":0.01863,"82":0.02484,"83":0.02484,"84":0.00621,"85":0,"86":0,"87":0,"88":0.00621,"89":0,"90":0,"91":0.01242,"92":0,"93":0,"94":0,"95":0.00621,"96":0.00621,"97":0,"98":0,"99":0,"100":0.03105,"101":0.00621,"102":0.25457,"103":0.01242,"104":0.01242,"105":0.02484,"106":0.01242,"107":0.02484,"108":0.07451,"109":1.57709,"110":1.13004,"111":0.00621,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00621,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00621,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00621,"39":0,"40":0,"41":0,"42":0.01242,"43":0,"44":0,"45":0,"46":0,"47":0.00621,"48":0,"49":0.00621,"50":0,"51":0.00621,"52":0,"53":0,"54":0,"55":0.00621,"56":0.00621,"57":0.00621,"58":0.00621,"59":0.00621,"60":0.01242,"61":0.00621,"62":0,"63":0.00621,"64":0,"65":0,"66":0.04346,"67":0,"68":0.07451,"69":0.04967,"70":0.05588,"71":0.06209,"72":0.08072,"73":0.02484,"74":0.07451,"75":0.04967,"76":0.05588,"77":0.05588,"78":0.08072,"79":0.12418,"80":0.10555,"81":0.08693,"83":0.10555,"84":0.15523,"85":0.14902,"86":0.37254,"87":0.15523,"88":0.10555,"89":0.09934,"90":0.11797,"91":0.03725,"92":0.01863,"93":0.04967,"94":0.01863,"95":0.00621,"96":0.02484,"97":0.00621,"98":0.01863,"99":0.16764,"100":1.12383,"101":0.39117,"102":0.29803,"103":0.2732,"104":0.21732,"105":0.08072,"106":0.08072,"107":0.15523,"108":0.99965,"109":11.32522,"110":7.69295,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00621,"44":0,"45":0,"46":0.00621,"47":0.00621,"48":0.00621,"49":0.00621,"50":0,"51":0.00621,"52":0,"53":0.01863,"54":0.01863,"55":0.02484,"56":0.00621,"57":0,"58":0,"60":0.00621,"62":0,"63":0.00621,"64":0,"65":0.00621,"66":0.00621,"67":0.01242,"68":0.00621,"69":0,"70":0.00621,"71":0,"72":0.00621,"73":0.00621,"74":0.00621,"75":0.00621,"76":0.00621,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00621,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.06209,"94":0.67678,"95":0.27941,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00621},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00621,"18":0.01242,"79":0.01242,"80":0.03725,"81":0.03105,"83":0.03105,"84":0.03725,"85":0.01863,"86":0.03105,"87":0.02484,"88":0.01863,"89":0.02484,"90":0.02484,"91":0,"92":0.00621,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00621,"100":0,"101":0,"102":0.01863,"103":0,"104":0.00621,"105":0.00621,"106":0.01242,"107":0.02484,"108":0.08072,"109":1.45291,"110":2.04897},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01242,"14":0.04346,"15":0.01242,_:"0","3.1":0,"3.2":0,"5.1":0.00621,"6.1":0,"7.1":0,"9.1":0.44705,"10.1":0,"11.1":0.00621,"12.1":0.00621,"13.1":0.06209,"14.1":0.11176,"15.1":0.01863,"15.2-15.3":0.01863,"15.4":0.05588,"15.5":0.0683,"15.6":0.42221,"16.0":0.0683,"16.1":0.14902,"16.2":0.49672,"16.3":0.49672,"16.4":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.00879,"9.0-9.2":0.01978,"9.3":0.05494,"10.0-10.2":0.01978,"10.3":0.08351,"11.0-11.2":0.08131,"11.3-11.4":0.0901,"12.0-12.1":0.07472,"12.2-12.5":0.46588,"13.0-13.1":0.04395,"13.2":0.04395,"13.3":0.04175,"13.4-13.7":0.1846,"14.0-14.4":0.41095,"14.5-14.8":0.6307,"15.0-15.1":0.24393,"15.2-15.3":0.23294,"15.4":0.29887,"15.5":0.5428,"15.6":1.85475,"16.0":2.4415,"16.1":5.50711,"16.2":4.66763,"16.3":2.99748,"16.4":0.00659},P:{"4":0.05186,"20":0.51858,"5.0-5.4":0.01037,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01037,"12.0":0.02074,"13.0":0.03111,"14.0":0.05186,"15.0":0.02074,"16.0":0.06223,"17.0":0.06223,"18.0":0.12446,"19.0":1.23422},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01748,"4.2-4.3":0.01049,"4.4":0,"4.4.3-4.4.4":0.07341},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02856,"9":0.00714,"10":0.00714,"11":0.09996,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.1706},H:{"0":0.41633},L:{"0":36.20614},R:{_:"0"},M:{"0":0.69754},Q:{"13.1":0}}; 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 565c5c7b0ca098..fe15f1d429a777 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00275,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00275,"66":0.00275,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00275,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00275,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00551,"96":0,"97":0,"98":0,"99":0.00275,"100":0,"101":0,"102":0.00551,"103":0,"104":0.00275,"105":0,"106":0.01102,"107":0.01102,"108":0.26989,"109":0.12668,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00275,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00275,"56":0.00275,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00275,"64":0,"65":0,"66":0.00275,"67":0,"68":0.01652,"69":0.01377,"70":0,"71":0,"72":0.00275,"73":0.00275,"74":0.01102,"75":0.00275,"76":0.00551,"77":0,"78":0,"79":0.02203,"80":0,"81":0.00826,"83":0.00275,"84":0,"85":0.00275,"86":0.00275,"87":0.00551,"88":0.01102,"89":0,"90":0.00551,"91":0.00551,"92":0.00826,"93":0.00826,"94":0.00275,"95":0.00275,"96":0.00275,"97":0.00275,"98":0.00275,"99":0.00826,"100":0.00551,"101":0.03856,"102":0.00551,"103":0.0358,"104":0.01102,"105":0.01102,"106":0.02754,"107":0.06334,"108":2.59427,"109":1.90577,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00275,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00826,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00275,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00275,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01102,"94":0.06885,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00275,"16":0.00275,"17":0.00551,"18":0.00275,"79":0,"80":0,"81":0,"83":0,"84":0.00275,"85":0.00275,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00551,"93":0,"94":0,"95":0,"96":0.00275,"97":0,"98":0,"99":0,"100":0.00551,"101":0.00551,"102":0,"103":0.00275,"104":0.00275,"105":0.00275,"106":0.00551,"107":0.01102,"108":0.39107,"109":0.35251},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00551,"14":0.00551,"15":0.00275,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00275,"12.1":0.03029,"13.1":0.00826,"14.1":0.02203,"15.1":0.00551,"15.2-15.3":0.00275,"15.4":0.00551,"15.5":0.01652,"15.6":0.09914,"16.0":0.00275,"16.1":0.02479,"16.2":0.04131,"16.3":0.00275},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00875,"6.0-6.1":0,"7.0-7.1":0.21485,"8.1-8.4":0,"9.0-9.2":0.00194,"9.3":0.08166,"10.0-10.2":0.01264,"10.3":0.10208,"11.0-11.2":0.00097,"11.3-11.4":0.00681,"12.0-12.1":0.08069,"12.2-12.5":0.61149,"13.0-13.1":0.00389,"13.2":0.00389,"13.3":0.14777,"13.4-13.7":0.04278,"14.0-14.4":0.22554,"14.5-14.8":0.29165,"15.0-15.1":0.16624,"15.2-15.3":0.37817,"15.4":0.26346,"15.5":0.52983,"15.6":0.7894,"16.0":0.89925,"16.1":2.30013,"16.2":1.53602,"16.3":0.09138},P:{"4":0.30988,"5.0-5.4":0,"6.2-6.4":0.02066,"7.2-7.4":1.23952,"8.2":0,"9.2":0.02066,"10.1":0,"11.1-11.2":0.32021,"12.0":0.03099,"13.0":0.22724,"14.0":0.1756,"15.0":0.3512,"16.0":0.847,"17.0":0.45449,"18.0":0.78503,"19.0":11.16598},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07131},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00344,"11":0.01033,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07246},Q:{"13.1":0.02174},O:{"0":1.01444},H:{"0":0.28126},L:{"0":62.56681},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00323,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00323,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00323,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00323,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00323,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00323,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00968,"103":0,"104":0,"105":0.00323,"106":0.00968,"107":0.00323,"108":0.00968,"109":0.24856,"110":0.17431,"111":0.00323,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00646,"50":0,"51":0,"52":0.00323,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00968,"69":0.0807,"70":0,"71":0,"72":0.00323,"73":0.00323,"74":0.0226,"75":0,"76":0.00646,"77":0.00646,"78":0.00323,"79":0.02582,"80":0,"81":0.01291,"83":0.00323,"84":0,"85":0.00646,"86":0.00323,"87":0.00646,"88":0.01614,"89":0.00646,"90":0,"91":0.00646,"92":0.01937,"93":0.00323,"94":0.00323,"95":0.01291,"96":0.00646,"97":0.00323,"98":0.00323,"99":0.00323,"100":0.00323,"101":0.01291,"102":0.00646,"103":0.03228,"104":0.00968,"105":0.0226,"106":0.01614,"107":0.03228,"108":0.12912,"109":3.85423,"110":2.08529,"111":0.00323,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00323,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00323,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00968,"65":0,"66":0,"67":0.18077,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01614,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.03874,"95":0.05165,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00646,"13":0,"14":0,"15":0,"16":0,"17":0.00323,"18":0.00646,"79":0,"80":0,"81":0,"83":0,"84":0.00323,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00323,"91":0,"92":0.00968,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00646,"101":0,"102":0,"103":0.00323,"104":0.00323,"105":0.00646,"106":0,"107":0.01937,"108":0.03228,"109":0.47129,"110":0.64237},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00323,"15":0.00323,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00323,"13.1":0.02582,"14.1":0.01291,"15.1":0.00323,"15.2-15.3":0.00323,"15.4":0.0226,"15.5":0.01614,"15.6":0.07747,"16.0":0.01291,"16.1":0.02905,"16.2":0.06456,"16.3":0.04519,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00608,"6.0-6.1":0,"7.0-7.1":0.16829,"8.1-8.4":0.00203,"9.0-9.2":0,"9.3":0.15105,"10.0-10.2":0,"10.3":0.17741,"11.0-11.2":0.00304,"11.3-11.4":0.00203,"12.0-12.1":0.04968,"12.2-12.5":0.54541,"13.0-13.1":0.00406,"13.2":0.00507,"13.3":0.147,"13.4-13.7":0.04968,"14.0-14.4":0.40754,"14.5-14.8":0.28487,"15.0-15.1":0.0811,"15.2-15.3":0.18856,"15.4":0.12165,"15.5":0.49574,"15.6":0.65794,"16.0":0.74918,"16.1":1.81568,"16.2":1.65246,"16.3":1.23783,"16.4":0.00203},P:{"4":0.21612,"20":2.81983,"5.0-5.4":0,"6.2-6.4":0.01029,"7.2-7.4":0.90564,"8.2":0,"9.2":0.03087,"10.1":0.01029,"11.1-11.2":0.13379,"12.0":0.02058,"13.0":0.16466,"14.0":0.16466,"15.0":0.19554,"16.0":0.61748,"17.0":0.48369,"18.0":0.42195,"19.0":4.51791},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01305,"4.4":0,"4.4.3-4.4.4":0.12182},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00538,"11":0.01076,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.08352},H:{"0":0.795},L:{"0":65.41168},R:{_:"0"},M:{"0":0.05418},Q:{"13.1":0.00677}}; 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 ead4c48235c008..67392c93f17d9b 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.14939,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00506,"89":0.00506,"90":0.01266,"91":0,"92":0,"93":0,"94":0.00506,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.02532,"101":0,"102":0,"103":0.09622,"104":0,"105":0,"106":0.02026,"107":0.01266,"108":0.46082,"109":0.3722,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00506,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00506,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.15698,"80":0,"81":0.0076,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0076,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.03798,"104":0.09622,"105":0.02026,"106":0.00506,"107":0.01772,"108":1.58756,"109":0.47602,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01266,"94":0.03798,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.04558,"79":0,"80":0,"81":0,"83":0,"84":0.00506,"85":0.01772,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02785,"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.00506,"106":0,"107":0.01772,"108":1.07357,"109":0.87607},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.1823,"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.00506,"14.1":0.0076,"15.1":0.0076,"15.2-15.3":0,"15.4":0.0076,"15.5":0.05317,"15.6":0.39752,"16.0":0.02785,"16.1":0.02785,"16.2":0.06583,"16.3":0.00506},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0202,"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.14143,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.0202,"14.5-14.8":0.36368,"15.0-15.1":0.91257,"15.2-15.3":0.12123,"15.4":0.0202,"15.5":0.10102,"15.6":23.96244,"16.0":1.11461,"16.1":2.1282,"16.2":3.12158,"16.3":0.48491},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.10113,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":4.6518,"15.0":0,"16.0":0,"17.0":0.02023,"18.0":0.10113,"19.0":15.715},I:{"0":0,"3":0,"4":0,"2.1":0,"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.03798,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.3958},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":34.53304},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.02817,"99":0,"100":0,"101":0,"102":0,"103":0.09859,"104":0.01408,"105":0.01408,"106":0,"107":0.02817,"108":0.91898,"109":1.00701,"110":1.11968,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.05282,"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.00704,"104":0,"105":0.01408,"106":0,"107":0,"108":0.04577,"109":2.25344,"110":1.38023,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.20774,"95":0.0669,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.1338,"79":0,"80":0.03873,"81":0,"83":0,"84":0.02817,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.04577,"92":0.02817,"93":0.00704,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00704,"101":0,"102":0.00704,"103":0.10563,"104":0.02113,"105":0,"106":0,"107":0,"108":0.05986,"109":1.54572,"110":1.16545},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.26055,"14":0.01408,"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.01408,"15.1":0,"15.2-15.3":0,"15.4":0.01408,"15.5":0,"15.6":0.15845,"16.0":0,"16.1":0.01408,"16.2":0.12676,"16.3":0.50702,"16.4":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.08236,"7.0-7.1":0,"8.1-8.4":0.05412,"9.0-9.2":0,"9.3":0.02824,"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.38119,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.05412,"14.5-14.8":0.46355,"15.0-15.1":0.1906,"15.2-15.3":0.27295,"15.4":0.24472,"15.5":0.13648,"15.6":4.73431,"16.0":1.22358,"16.1":4.81431,"16.2":2.99306,"16.3":6.50144,"16.4":0},P:{"4":0,"20":4.38028,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02047,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":7.55291,"15.0":0,"16.0":0,"17.0":0,"18.0":0.04094,"19.0":7.48127},I:{"0":0,"3":0,"4":0,"2.1":0,"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.08098,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":38.2088},R:{_:"0"},M:{"0":0.97833},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js index 6991c3c62f97de..29e379a354f9b2 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.03512,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00585,"103":0,"104":0,"105":0.02341,"106":0.00585,"107":0.01756,"108":1.57446,"109":0.75504,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.70821,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00585,"70":0.00585,"71":0,"72":0,"73":0,"74":0.01756,"75":0,"76":0,"77":0,"78":0,"79":0.02927,"80":0.00585,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00585,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.43898,"94":0,"95":0.02341,"96":0.05853,"97":0.00585,"98":0,"99":0,"100":0,"101":0,"102":0,"103":1.38716,"104":0.00585,"105":0.04097,"106":0.01171,"107":0.04682,"108":8.65073,"109":7.19919,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01171,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00585,"91":0,"92":0,"93":0.01171,"94":0.47995,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01756,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.01171,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00585,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00585,"104":0.01756,"105":0,"106":0.01171,"107":0.02927,"108":4.21416,"109":3.40645},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02927,"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.06438,"13.1":0.04097,"14.1":0.04097,"15.1":0.01171,"15.2-15.3":0,"15.4":0.00585,"15.5":0.06438,"15.6":0.11121,"16.0":0,"16.1":0.04682,"16.2":0.05853,"16.3":0.01756},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02978,"8.1-8.4":0,"9.0-9.2":0.01489,"9.3":0.02234,"10.0-10.2":0,"10.3":0.02234,"11.0-11.2":0,"11.3-11.4":0.00745,"12.0-12.1":0.02234,"12.2-12.5":0.49733,"13.0-13.1":0.01489,"13.2":0,"13.3":0.00745,"13.4-13.7":0.05212,"14.0-14.4":0.2308,"14.5-14.8":0.85469,"15.0-15.1":0.14146,"15.2-15.3":0.05212,"15.4":2.06227,"15.5":1.03188,"15.6":1.12717,"16.0":1.86274,"16.1":2.90802,"16.2":2.52237,"16.3":0.23675},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12806,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02134,"12.0":0,"13.0":0,"14.0":0.2241,"15.0":0,"16.0":0.06403,"17.0":0.02134,"18.0":0.60828,"19.0":1.33395},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.98322},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01756,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02074},Q:{"13.1":0},O:{"0":0.12026},H:{"0":0.9776},L:{"0":48.54136},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00604,"71":0.01208,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00604,"89":0,"90":0.00604,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00604,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.08455,"103":0,"104":0,"105":0.01812,"106":0,"107":0.01812,"108":0.02416,"109":2.32502,"110":0.54351,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.18117,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04227,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01208,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.05435,"64":0,"65":0.00604,"66":0,"67":0,"68":0.00604,"69":0,"70":0.00604,"71":0,"72":0,"73":0,"74":0,"75":0.01208,"76":0.02416,"77":0,"78":0,"79":0.00604,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.09059,"90":0,"91":0,"92":0.00604,"93":0.00604,"94":0.00604,"95":0,"96":0.03623,"97":0.00604,"98":0,"99":0,"100":0.01812,"101":0.00604,"102":0,"103":0.70052,"104":0.01208,"105":0.11474,"106":0.00604,"107":0,"108":0.39857,"109":11.63715,"110":6.94485,"111":0,"112":0.01812,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.04831,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00604,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.09662,"95":0.02416,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.01208,"17":0,"18":0.15701,"79":0,"80":0,"81":0,"83":0,"84":0.00604,"85":0,"86":0.01208,"87":0,"88":0,"89":0.00604,"90":0.00604,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00604,"98":0.01208,"99":0,"100":0.02416,"101":0.01812,"102":0,"103":0,"104":0.00604,"105":0,"106":0,"107":0.04227,"108":0.07851,"109":3.7623,"110":4.80704},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03623,"15":0.00604,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.05435,"13.1":0.05435,"14.1":0.05435,"15.1":0.00604,"15.2-15.3":0,"15.4":0.06643,"15.5":0.02416,"15.6":0.15701,"16.0":0,"16.1":0.03623,"16.2":0.1389,"16.3":0.1087,"16.4":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.03538,"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.00884,"11.0-11.2":0,"11.3-11.4":0.04422,"12.0-12.1":0.00884,"12.2-12.5":0.10466,"13.0-13.1":0,"13.2":0.00884,"13.3":0.09582,"13.4-13.7":0.08697,"14.0-14.4":0.27124,"14.5-14.8":0.54985,"15.0-15.1":0.2963,"15.2-15.3":0.17395,"15.4":2.02546,"15.5":0.79456,"15.6":0.70759,"16.0":1.22206,"16.1":2.71388,"16.2":3.54382,"16.3":1.22206,"16.4":0},P:{"4":0,"20":0.66143,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11368,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.09301,"12.0":0,"13.0":0,"14.0":0.09301,"15.0":0,"16.0":0.01033,"17.0":0.02067,"18.0":0.19636,"19.0":0.84745},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.47352},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01208,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.305},H:{"0":0.18},L:{"0":46.87594},R:{_:"0"},M:{"0":0.13864},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js index 5c48f26b3e1944..2167a09888b041 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.00369,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.02585,"103":0,"104":0,"105":0,"106":0.02585,"107":0.00369,"108":0.25482,"109":0.14033,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00369,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00369,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.04432,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.01108,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00369,"100":0,"101":0.00369,"102":0,"103":0.01477,"104":0.00369,"105":0.00369,"106":0.01847,"107":0.07755,"108":1.93144,"109":1.67662,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.1034,"94":0.0517,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00369,"106":0,"107":0.01477,"108":0.4247,"109":0.421},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.11079,"15":0.01847,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00369,"13.1":0.02216,"14.1":0.09233,"15.1":0.02954,"15.2-15.3":0.04432,"15.4":0.25851,"15.5":0.46901,"15.6":3.98475,"16.0":0.17357,"16.1":0.78292,"16.2":1.82065,"16.3":0.1034},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02581,"10.0-10.2":0,"10.3":0.01721,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.33553,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01721,"14.0-14.4":0.45598,"14.5-14.8":0.72269,"15.0-15.1":0.2495,"15.2-15.3":0.55922,"15.4":0.83454,"15.5":2.77031,"15.6":16.1659,"16.0":10.24672,"16.1":30.55088,"16.2":15.89919,"16.3":0.80872},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.01037,"17.0":0.01037,"18.0":0,"19.0":0.88117},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01434,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02151},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00369,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06938},Q:{"13.1":0},O:{"0":0},H:{"0":0.00597},L:{"0":5.54443},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03177,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.04942,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00353,"109":0.23651,"110":0.13414,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00706,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00353,"66":0.00706,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01412,"80":0,"81":0,"83":0,"84":0.00353,"85":0,"86":0,"87":0.00706,"88":0,"89":0,"90":0,"91":0.00353,"92":0.00353,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00353,"100":0,"101":0.01059,"102":0,"103":0.01059,"104":0.00353,"105":0.03177,"106":0.00353,"107":0.00706,"108":0.29299,"109":1.92032,"110":1.18608,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01412,"94":0.10943,"95":0.02471,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00353,"108":0.00706,"109":0.39889,"110":0.44478},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.09178,"15":0.0353,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00353,"13.1":0.01412,"14.1":0.0706,"15.1":0.0353,"15.2-15.3":0.08825,"15.4":0.16238,"15.5":0.353,"15.6":2.30509,"16.0":0.09884,"16.1":0.49773,"16.2":2.07917,"16.3":1.24609,"16.4":0.00353},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04379,"10.0-10.2":0,"10.3":0.03503,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.21893,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.02627,"14.0-14.4":0.33278,"14.5-14.8":0.70059,"15.0-15.1":0.26272,"15.2-15.3":0.31526,"15.4":1.26981,"15.5":2.23312,"15.6":11.60347,"16.0":7.85533,"16.1":23.60103,"16.2":21.36791,"16.3":11.06052,"16.4":0.02627},P:{"4":0.02008,"20":0.35139,"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.01004,"17.0":0.01004,"18.0":0.01004,"19.0":0.76301},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02059},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01412,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.0245},L:{"0":5.07987},R:{_:"0"},M:{"0":0.07764},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js index bd8405085ae306..1978fe5534abda 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00505,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0101,"48":0.0101,"49":0,"50":0,"51":0,"52":0.03534,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.02525,"60":0.00505,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0101,"69":0,"70":0.00505,"71":0,"72":0.00505,"73":0,"74":0,"75":0.00505,"76":0.00505,"77":0.00505,"78":0.08078,"79":0.0101,"80":0.01515,"81":0.0101,"82":0.0101,"83":0.0101,"84":0,"85":0,"86":0,"87":0,"88":0.01515,"89":0.00505,"90":0.0101,"91":0.05554,"92":0.00505,"93":0.01515,"94":0.0202,"95":0.00505,"96":0.00505,"97":0.00505,"98":0.00505,"99":0.00505,"100":0.0101,"101":0.00505,"102":0.15652,"103":0.82299,"104":0.01515,"105":0.0202,"106":0.0202,"107":0.05049,"108":1.7722,"109":1.05019,"110":0.00505,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00505,"49":0.04039,"50":0,"51":0.0101,"52":0.00505,"53":0,"54":0,"55":0,"56":0.25245,"57":0,"58":0,"59":0,"60":0.08583,"61":0,"62":0,"63":0.00505,"64":0,"65":0.00505,"66":0.10603,"67":0.00505,"68":0.0101,"69":0.00505,"70":0.0101,"71":0.01515,"72":0.0101,"73":0.00505,"74":0.0101,"75":0.00505,"76":0.0101,"77":0.0101,"78":0.01515,"79":0.02525,"80":0.02525,"81":0.0202,"83":0.06059,"84":0.10098,"85":0.11613,"86":0.13632,"87":0.13632,"88":0.01515,"89":0.01515,"90":0.0202,"91":0.02525,"92":0.03534,"93":0.01515,"94":0.10603,"95":0.03534,"96":0.0202,"97":0.05554,"98":0.0101,"99":0.01515,"100":0.30799,"101":0.03534,"102":0.04544,"103":0.10603,"104":0.09088,"105":0.08583,"106":0.06564,"107":0.16662,"108":5.57915,"109":5.18532,"110":0.00505,"111":0.00505,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00505,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00505,"67":0,"68":0.00505,"69":0.00505,"70":0.00505,"71":0.00505,"72":0.00505,"73":0.0101,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00505,"90":0,"91":0.00505,"92":0.00505,"93":0.36858,"94":0.39382,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00505,"15":0,"16":0.00505,"17":0.01515,"18":0.01515,"79":0,"80":0.00505,"81":0.00505,"83":0.00505,"84":0.0101,"85":0.0101,"86":0.0101,"87":0.00505,"88":0,"89":0.00505,"90":0.00505,"91":0,"92":0.00505,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00505,"100":0.00505,"101":0.00505,"102":0,"103":0.03534,"104":0.00505,"105":0.0101,"106":0.0202,"107":0.05554,"108":1.44401,"109":1.42382},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01515,"14":0.07574,"15":0.02525,_:"0","3.1":0,"3.2":0,"5.1":0.00505,"6.1":0,"7.1":0,"9.1":0.04039,"10.1":0,"11.1":0.02525,"12.1":0.03534,"13.1":0.13127,"14.1":0.20701,"15.1":0.04039,"15.2-15.3":0.03029,"15.4":0.07069,"15.5":0.12623,"15.6":0.63617,"16.0":0.10098,"16.1":0.28274,"16.2":0.46956,"16.3":0.03534},G:{"8":0.0057,"3.2":0,"4.0-4.1":0.01426,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00855,"8.1-8.4":0,"9.0-9.2":0.03992,"9.3":0.14826,"10.0-10.2":0.01996,"10.3":0.134,"11.0-11.2":0.08553,"11.3-11.4":0.05417,"12.0-12.1":0.04277,"12.2-12.5":0.71562,"13.0-13.1":0.05702,"13.2":0.01711,"13.3":0.06558,"13.4-13.7":0.29366,"14.0-14.4":0.51605,"14.5-14.8":0.99503,"15.0-15.1":0.28796,"15.2-15.3":0.34498,"15.4":0.41056,"15.5":0.87243,"15.6":3.29586,"16.0":4.50758,"16.1":8.22255,"16.2":5.39142,"16.3":0.43052},P:{"4":0.09399,"5.0-5.4":0.02089,"6.2-6.4":0,"7.2-7.4":0.01044,"8.2":0.01044,"9.2":0.03133,"10.1":0,"11.1-11.2":0.05222,"12.0":0.02089,"13.0":0.04177,"14.0":0.04177,"15.0":0.02089,"16.0":0.06266,"17.0":0.0731,"18.0":0.13576,"19.0":2.6317},I:{"0":0,"3":0,"4":0.01205,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03614,"4.2-4.3":0.15659,"4.4":0,"4.4.3-4.4.4":0.40954},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01049,"9":0.02622,"10":0.00524,"11":0.09438,"5.5":0},J:{"7":0,"10":0.00495},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.55451},Q:{"13.1":0},O:{"0":0.33172},H:{"0":0.38436},L:{"0":40.69525},S:{"2.5":0.0099}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00487,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00975,"48":0.00975,"49":0,"50":0,"51":0,"52":0.02924,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.02924,"60":0.00487,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01462,"69":0,"70":0,"71":0,"72":0.00487,"73":0,"74":0,"75":0.00487,"76":0,"77":0.00487,"78":0.07797,"79":0.01462,"80":0.01462,"81":0.00975,"82":0.01462,"83":0.00975,"84":0,"85":0,"86":0,"87":0.00487,"88":0.00975,"89":0.00487,"90":0.00975,"91":0.04386,"92":0,"93":0.01462,"94":0.01949,"95":0.00487,"96":0,"97":0,"98":0.00487,"99":0.00487,"100":0.00975,"101":0.00487,"102":0.15106,"103":0.65786,"104":0.00975,"105":0.00975,"106":0.01462,"107":0.01949,"108":0.06335,"109":1.60322,"110":1.07693,"111":0.00487,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00487,"49":0.03411,"50":0,"51":0.00975,"52":0.01462,"53":0,"54":0,"55":0,"56":0.20467,"57":0,"58":0.00487,"59":0,"60":0.08771,"61":0,"62":0,"63":0.00487,"64":0,"65":0.00487,"66":0.11208,"67":0.00487,"68":0.00487,"69":0.00487,"70":0.00487,"71":0.01462,"72":0.00487,"73":0.00487,"74":0.00487,"75":0.00487,"76":0.00487,"77":0.00487,"78":0.01462,"79":0.02437,"80":0.01949,"81":0.02924,"83":0.06822,"84":0.13157,"85":0.14619,"86":0.15106,"87":0.16568,"88":0.01462,"89":0.00975,"90":0.00975,"91":0.02437,"92":0.01949,"93":0.01462,"94":0.20954,"95":0.02924,"96":0.01462,"97":0.0731,"98":0.00975,"99":0.00975,"100":0.02924,"101":0.03898,"102":0.03898,"103":0.09746,"104":0.1803,"105":0.16568,"106":0.13157,"107":0.06822,"108":0.29238,"109":5.90608,"110":3.75221,"111":0.00487,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02437,"68":0.00487,"69":0.00487,"70":0.00487,"71":0.00975,"72":0.00487,"73":0.00487,"74":0.00487,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00487,"90":0.00487,"91":0.00487,"92":0,"93":0.04873,"94":0.40446,"95":0.20954,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00487,"15":0,"16":0,"17":0.01462,"18":0.01949,"79":0,"80":0,"81":0,"83":0.00487,"84":0.00975,"85":0.00975,"86":0.00975,"87":0.00487,"88":0,"89":0,"90":0,"91":0,"92":0.00487,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00975,"100":0,"101":0,"102":0,"103":0.03411,"104":0.00487,"105":0.01462,"106":0.01462,"107":0.03411,"108":0.08284,"109":1.15977,"110":1.56423},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01462,"14":0.06335,"15":0.01949,_:"0","3.1":0,"3.2":0,"5.1":0.00487,"6.1":0,"7.1":0,"9.1":0.01462,"10.1":0,"11.1":0.02924,"12.1":0.03411,"13.1":0.12183,"14.1":0.1803,"15.1":0.02924,"15.2-15.3":0.02437,"15.4":0.05848,"15.5":0.09746,"15.6":0.45806,"16.0":0.07797,"16.1":0.17056,"16.2":0.44344,"16.3":0.33624,"16.4":0},G:{"8":0.00555,"3.2":0,"4.0-4.1":0.01111,"4.2-4.3":0,"5.0-5.1":0.00278,"6.0-6.1":0,"7.0-7.1":0.00833,"8.1-8.4":0,"9.0-9.2":0.04166,"9.3":0.16385,"10.0-10.2":0.02222,"10.3":0.12775,"11.0-11.2":0.07776,"11.3-11.4":0.05277,"12.0-12.1":0.04721,"12.2-12.5":0.71095,"13.0-13.1":0.04721,"13.2":0.01944,"13.3":0.07498,"13.4-13.7":0.39158,"14.0-14.4":0.56653,"14.5-14.8":0.86646,"15.0-15.1":0.25827,"15.2-15.3":0.2916,"15.4":0.33881,"15.5":0.70539,"15.6":2.22726,"16.0":3.33256,"16.1":6.11247,"16.2":6.50126,"16.3":3.26035,"16.4":0.02499},P:{"4":0.09243,"20":0.95513,"5.0-5.4":0.03081,"6.2-6.4":0,"7.2-7.4":0.02054,"8.2":0.01027,"9.2":0.03081,"10.1":0,"11.1-11.2":0.05135,"12.0":0.03081,"13.0":0.04108,"14.0":0.04108,"15.0":0.02054,"16.0":0.06162,"17.0":0.06162,"18.0":0.1027,"19.0":1.69459},I:{"0":0,"3":0,"4":0.02777,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00794,"4.2-4.3":0.03968,"4.4":0,"4.4.3-4.4.4":0.14284},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01009,"9":0.02524,"10":0.00505,"11":0.10094,"5.5":0},N:{"10":0.01025,"11":0},S:{"2.5":0.01025,_:"3.0-3.1"},J:{"7":0,"10":0.00513},O:{"0":0.35889},H:{"0":0.40773},L:{"0":43.42108},R:{_:"0"},M:{"0":0.58448},Q:{"13.1":0.00513}}; 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 8663c590c5c7e2..762550ef14a016 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.00351,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00351,"49":0,"50":0,"51":0,"52":0.00351,"53":0.00351,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00351,"68":0.00351,"69":0,"70":0,"71":0,"72":0.00351,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.04212,"89":0,"90":0,"91":0.01404,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00351,"101":0,"102":0.00351,"103":0,"104":0,"105":0.02808,"106":0.00351,"107":0.02808,"108":0.68796,"109":0.44928,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01053,"39":0,"40":0.00351,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00702,"48":0,"49":0.03159,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00351,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00351,"65":0.01053,"66":0.00351,"67":0,"68":0.00351,"69":0,"70":0,"71":0,"72":0.01053,"73":0.00351,"74":0.00702,"75":0.01404,"76":0,"77":0,"78":0,"79":0.0702,"80":0.00351,"81":0.14391,"83":0.06318,"84":0.01404,"85":0,"86":0.00702,"87":0.05967,"88":0.00702,"89":0,"90":0,"91":0.00351,"92":0.00351,"93":0.01053,"94":0.00351,"95":0.01404,"96":0,"97":0.00351,"98":0,"99":0,"100":0.00351,"101":0,"102":0.0351,"103":0.03159,"104":0.05616,"105":0.01053,"106":0.02808,"107":0.07371,"108":3.21516,"109":3.11688,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02106,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0351,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.02808,"62":0,"63":0.02457,"64":0.01404,"65":0.00351,"66":0.05265,"67":0.04563,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00351,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.01404,"81":0,"82":0,"83":0,"84":0,"85":0.00351,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01053,"94":0.37908,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.00351,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00702},B:{"12":0.02106,"13":0.01755,"14":0,"15":0.00351,"16":0.02106,"17":0,"18":0.02106,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00351,"90":0,"91":0,"92":0.01053,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01053,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.04563,"108":0.61776,"109":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,"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.00702,"14.1":0.01053,"15.1":0,"15.2-15.3":0,"15.4":0.00351,"15.5":0.01404,"15.6":0.02808,"16.0":0.00702,"16.1":0.01755,"16.2":0.07371,"16.3":0.00351},G:{"8":0.00151,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02117,"6.0-6.1":0,"7.0-7.1":0.14515,"8.1-8.4":0,"9.0-9.2":0.00454,"9.3":0.14213,"10.0-10.2":0,"10.3":0.15271,"11.0-11.2":0.02117,"11.3-11.4":0.0121,"12.0-12.1":0.27367,"12.2-12.5":3.67717,"13.0-13.1":0.00151,"13.2":0,"13.3":0.00454,"13.4-13.7":0.05292,"14.0-14.4":0.22831,"14.5-14.8":0.33113,"15.0-15.1":0.39463,"15.2-15.3":0.23134,"15.4":0.35985,"15.5":0.59119,"15.6":0.96012,"16.0":0.87393,"16.1":2.05026,"16.2":1.65412,"16.3":0.2525},P:{"4":0.42933,"5.0-5.4":0.03067,"6.2-6.4":0.01022,"7.2-7.4":0.552,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.04089,"12.0":0.01022,"13.0":0.08178,"14.0":0.03067,"15.0":0.07156,"16.0":0.88933,"17.0":0.06133,"18.0":0.14311,"19.0":1.65599},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00785,"4.2-4.3":0.00654,"4.4":0,"4.4.3-4.4.4":0.37151},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01404,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.70092},Q:{"13.1":0.00649},O:{"0":0.18172},H:{"0":2.0522},L:{"0":66.927},S:{"2.5":0.07788}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00307,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00307,"48":0.00614,"49":0,"50":0,"51":0,"52":0.00307,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00307,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0215,"89":0,"90":0,"91":0.01843,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00307,"100":0.00307,"101":0,"102":0.00307,"103":0,"104":0,"105":0.01843,"106":0.00307,"107":0.01228,"108":0.00307,"109":0.41459,"110":0.3071,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00307,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01228,"39":0,"40":0.00921,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00614,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00307,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00307,"66":0,"67":0,"68":0.00307,"69":0.00307,"70":0,"71":0,"72":0.00921,"73":0.00307,"74":0.00921,"75":0.00614,"76":0,"77":0,"78":0,"79":0.0737,"80":0.00307,"81":0.04914,"83":0.00307,"84":0.01536,"85":0,"86":0.00307,"87":0.0952,"88":0.0215,"89":0.0215,"90":0,"91":0.00307,"92":0,"93":0,"94":0,"95":0.02457,"96":0,"97":0,"98":0.00307,"99":0.00307,"100":0.00307,"101":0.00307,"102":0.03071,"103":0.05221,"104":0.14434,"105":0.00307,"106":0.0215,"107":0.01228,"108":0.15048,"109":2.84989,"110":1.53243,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02764,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.1382,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.02457,"62":0,"63":0.01843,"64":0.00921,"65":0,"66":0.06142,"67":0.22111,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00921,"80":0.00921,"81":0,"82":0,"83":0,"84":0,"85":0.00614,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03071,"94":0.05835,"95":0.13205,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00307,"10.6":0.00307,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00921},B:{"12":0.00921,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01843,"79":0,"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.00921,"101":0,"102":0,"103":0,"104":0.00307,"105":0,"106":0,"107":0.00307,"108":0.01228,"109":0.42994,"110":0.66334},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.00921,"14.1":0.0215,"15.1":0,"15.2-15.3":0,"15.4":0.00307,"15.5":0.00921,"15.6":0.02764,"16.0":0,"16.1":0.00921,"16.2":0.01228,"16.3":0.01536,"16.4":0},G:{"8":0.00298,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04177,"6.0-6.1":0,"7.0-7.1":0.12831,"8.1-8.4":0.02387,"9.0-9.2":0.00298,"9.3":0.09101,"10.0-10.2":0,"10.3":0.02835,"11.0-11.2":0.03133,"11.3-11.4":0.00149,"12.0-12.1":0.22379,"12.2-12.5":3.74928,"13.0-13.1":0,"13.2":0,"13.3":0.00597,"13.4-13.7":0.08206,"14.0-14.4":0.27452,"14.5-14.8":0.25811,"15.0-15.1":0.22976,"15.2-15.3":0.92352,"15.4":0.30734,"15.5":0.49085,"15.6":0.82505,"16.0":0.58335,"16.1":1.59192,"16.2":1.30994,"16.3":1.37857,"16.4":0.00746},P:{"4":0.43263,"20":0.98887,"5.0-5.4":0,"6.2-6.4":0.0103,"7.2-7.4":0.74165,"8.2":0,"9.2":0.0309,"10.1":0,"11.1-11.2":0.0412,"12.0":0.0206,"13.0":0.08241,"14.0":0.0206,"15.0":0.18541,"16.0":0.57684,"17.0":0.0721,"18.0":0.12361,"19.0":1.28759},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00904,"4.4":0,"4.4.3-4.4.4":0.25207},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00307,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.03465,_:"3.0-3.1"},J:{"7":0,"10":0.02079},O:{"0":0.11779},H:{"0":2.40749},L:{"0":67.71982},R:{_:"0"},M:{"0":0.63747},Q:{"13.1":0.00693}}; 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 51710f74e91eaa..2c9135588280ba 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,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0049,"49":0,"50":0,"51":0,"52":0.01471,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00981,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0049,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01961,"79":0,"80":0,"81":0,"82":0,"83":0.0049,"84":0,"85":0,"86":0,"87":0.00981,"88":0,"89":0.00981,"90":0.01471,"91":0.0049,"92":0,"93":0,"94":0.00981,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0049,"101":0.0049,"102":0.02452,"103":0.0049,"104":0.0049,"105":0.00981,"106":0.01471,"107":0.02452,"108":0.64229,"109":0.34321,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.0049,"36":0,"37":0,"38":0.0049,"39":0,"40":0.10787,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01471,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00981,"61":0,"62":0,"63":0,"64":0,"65":0.0049,"66":0.04413,"67":0.0049,"68":0.0049,"69":0.0049,"70":0.0049,"71":0.0049,"72":0.0049,"73":0,"74":0.00981,"75":0.0049,"76":0.01471,"77":0.00981,"78":0.0049,"79":0.01961,"80":0.02452,"81":0.01471,"83":0.01961,"84":0.01961,"85":0.01961,"86":0.01961,"87":0.02942,"88":0.00981,"89":0.01471,"90":0.00981,"91":0.01471,"92":0.01471,"93":0.04413,"94":0.00981,"95":0.00981,"96":0.04413,"97":0.01471,"98":0.00981,"99":0.00981,"100":0.01471,"101":0.01961,"102":0.01961,"103":0.18141,"104":0.06864,"105":0.06864,"106":0.08825,"107":0.24515,"108":6.35919,"109":5.15796,"110":0.0049,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0049,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0049,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0049,"90":0,"91":0,"92":0.0049,"93":0.23534,"94":0.25496,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0049,"16":0,"17":0.0049,"18":0.01961,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.0049,"86":0.0049,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0049,"93":0,"94":0,"95":0,"96":0.0049,"97":0,"98":0,"99":0.0049,"100":0,"101":0.0049,"102":0,"103":0.0049,"104":0.0049,"105":0.0049,"106":0.00981,"107":0.13238,"108":2.21125,"109":2.00533},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01471,"14":0.07845,"15":0.01961,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01961,"10.1":0,"11.1":0.00981,"12.1":0.02452,"13.1":0.10787,"14.1":0.23534,"15.1":0.03432,"15.2-15.3":0.03432,"15.4":0.07355,"15.5":0.1569,"15.6":1.26988,"16.0":0.10296,"16.1":0.35302,"16.2":0.79429,"16.3":0.04903},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00414,"7.0-7.1":0.01655,"8.1-8.4":0.01241,"9.0-9.2":0.00414,"9.3":0.31851,"10.0-10.2":0.00414,"10.3":0.27715,"11.0-11.2":0.02482,"11.3-11.4":0.08273,"12.0-12.1":0.02896,"12.2-12.5":1.27406,"13.0-13.1":0.01655,"13.2":0.00827,"13.3":0.04137,"13.4-13.7":0.15719,"14.0-14.4":0.38056,"14.5-14.8":1.23269,"15.0-15.1":0.2151,"15.2-15.3":0.32679,"15.4":0.38056,"15.5":0.91004,"15.6":5.51403,"16.0":4.54607,"16.1":14.1346,"16.2":8.13246,"16.3":0.52948},P:{"4":0.08469,"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.01059,"12.0":0.01059,"13.0":0.04234,"14.0":0.02117,"15.0":0.01059,"16.0":0.03176,"17.0":0.05293,"18.0":0.11645,"19.0":3.47223},I:{"0":0,"3":0,"4":0.24111,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02097,"4.2-4.3":0.11007,"4.4":0,"4.4.3-4.4.4":0.22538},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00523,"9":0.01046,"10":0,"11":0.06276,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.31601},Q:{"13.1":0},O:{"0":0.09175},H:{"0":0.18337},L:{"0":31.31933},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00506,"49":0,"50":0,"51":0,"52":0.01011,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01011,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00506,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01517,"79":0,"80":0,"81":0.00506,"82":0,"83":0.00506,"84":0,"85":0,"86":0,"87":0.01011,"88":0,"89":0.00506,"90":0.01011,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02528,"103":0.00506,"104":0.00506,"105":0.01011,"106":0.01011,"107":0.00506,"108":0.04045,"109":0.632,"110":0.3792,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00506,"36":0,"37":0,"38":0,"39":0,"40":0.11123,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01517,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02022,"61":0,"62":0,"63":0,"64":0,"65":0.00506,"66":0.0455,"67":0.00506,"68":0,"69":0,"70":0,"71":0.00506,"72":0,"73":0.00506,"74":0.01011,"75":0.00506,"76":0.01011,"77":0.00506,"78":0.00506,"79":0.02022,"80":0.01517,"81":0.02022,"83":0.04045,"84":0.02022,"85":0.02022,"86":0.02528,"87":0.05056,"88":0.01011,"89":0.01011,"90":0.01011,"91":0.02022,"92":0.02022,"93":0.05056,"94":0.01011,"95":0.00506,"96":0.04045,"97":0.01011,"98":0.01011,"99":0.01011,"100":0.02022,"101":0.04045,"102":0.02528,"103":0.24774,"104":0.0455,"105":0.07584,"106":0.0809,"107":0.12134,"108":0.72806,"109":7.49299,"110":4.56051,"111":0.00506,"112":0.00506,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00506,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01011,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03539,"94":0.31853,"95":0.15168,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00506,"16":0,"17":0.00506,"18":0.02022,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00506,"93":0,"94":0,"95":0,"96":0.00506,"97":0,"98":0,"99":0.00506,"100":0,"101":0.00506,"102":0,"103":0.00506,"104":0.00506,"105":0.00506,"106":0.00506,"107":0.06067,"108":0.09101,"109":1.84038,"110":2.4016},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01517,"14":0.07584,"15":0.01517,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01011,"10.1":0,"11.1":0.01011,"12.1":0.02528,"13.1":0.10618,"14.1":0.23258,"15.1":0.03034,"15.2-15.3":0.03034,"15.4":0.06573,"15.5":0.13146,"15.6":0.83424,"16.0":0.07078,"16.1":0.22752,"16.2":0.99098,"16.3":0.56627,"16.4":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.00399,"7.0-7.1":0.01594,"8.1-8.4":0.01196,"9.0-9.2":0.00399,"9.3":0.31488,"10.0-10.2":0.00399,"10.3":0.26705,"11.0-11.2":0.03986,"11.3-11.4":0.07972,"12.0-12.1":0.0279,"12.2-12.5":1.23163,"13.0-13.1":0.01594,"13.2":0.00797,"13.3":0.03986,"13.4-13.7":0.12356,"14.0-14.4":0.3388,"14.5-14.8":1.06422,"15.0-15.1":0.19132,"15.2-15.3":0.29495,"15.4":0.33481,"15.5":0.7613,"15.6":3.71083,"16.0":3.47168,"16.1":10.00051,"16.2":10.19183,"16.3":4.63555,"16.4":0.01993},P:{"4":0.0742,"20":1.35683,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0106,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0106,"12.0":0.0106,"13.0":0.0318,"14.0":0.0212,"15.0":0.0106,"16.0":0.0318,"17.0":0.053,"18.0":0.0636,"19.0":2.07765},I:{"0":0,"3":0,"4":0.24259,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0099,"4.2-4.3":0.07426,"4.4":0,"4.4.3-4.4.4":0.22773},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01074,"9":0.01074,"10":0.00537,"11":0.05909,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.09888},H:{"0":0.19191},L:{"0":31.384},R:{_:"0"},M:{"0":0.31147},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js index d37ec1bef31a81..3cc3210a38311c 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.00441,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00441,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00441,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00441,"92":0,"93":0,"94":0,"95":0.00441,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01764,"103":0,"104":0.00441,"105":0.00441,"106":0,"107":0.00441,"108":0.27342,"109":0.19404,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00882,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00441,"64":0,"65":0,"66":0,"67":0.00441,"68":0,"69":0,"70":0.01323,"71":0,"72":0,"73":0.02646,"74":0,"75":0,"76":0.01764,"77":0,"78":0,"79":0.03969,"80":0,"81":0.00882,"83":0.00441,"84":0,"85":0,"86":0.01764,"87":0.03528,"88":0.02205,"89":0,"90":0,"91":0.00882,"92":0.02205,"93":0.01764,"94":0.01323,"95":0.00882,"96":0.00882,"97":0.00441,"98":0.00441,"99":0.00882,"100":0.00882,"101":0.00441,"102":0.00882,"103":0.15435,"104":0.00882,"105":0.0441,"106":0.06615,"107":0.12789,"108":5.55219,"109":4.82454,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00441,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00441,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00441,"93":0.04851,"94":0.14553,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00441,"16":0,"17":0,"18":0.03087,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00882,"93":0,"94":0,"95":0,"96":0.00441,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00441,"105":0,"106":0,"107":0.05292,"108":1.40679,"109":1.68903},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03087,"15":0.00441,_:"0","3.1":0,"3.2":0,"5.1":0.00441,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01764,"13.1":0.02205,"14.1":0.43659,"15.1":0.00882,"15.2-15.3":0.00882,"15.4":0.02646,"15.5":0.03528,"15.6":0.94815,"16.0":0.04851,"16.1":0.1323,"16.2":0.3969,"16.3":0.01764},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.05265,"8.1-8.4":0,"9.0-9.2":0.02289,"9.3":0.04807,"10.0-10.2":0,"10.3":0.0847,"11.0-11.2":0.01373,"11.3-11.4":0.00687,"12.0-12.1":0.01373,"12.2-12.5":0.39372,"13.0-13.1":0.00687,"13.2":0,"13.3":0.01373,"13.4-13.7":0.07554,"14.0-14.4":0.1053,"14.5-14.8":0.59516,"15.0-15.1":0.1053,"15.2-15.3":0.10072,"15.4":0.07783,"15.5":0.35023,"15.6":1.7168,"16.0":1.99378,"16.1":9.98036,"16.2":3.87769,"16.3":0.57456},P:{"4":0.20427,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11826,"8.2":0,"9.2":0,"10.1":0.01075,"11.1-11.2":0.05376,"12.0":0,"13.0":0.01075,"14.0":0.0215,"15.0":0,"16.0":0.03225,"17.0":0.18277,"18.0":0.08601,"19.0":2.49429},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.29494,"4.4":0,"4.4.3-4.4.4":0.8111},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00441,"5.5":0},J:{"7":0,"10":0.00559},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.26273},Q:{"13.1":0},O:{"0":0.38571},H:{"0":0.16935},L:{"0":54.72917},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01472,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01962,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00491,"91":0,"92":0,"93":0,"94":0,"95":0.00491,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.2894,"103":0,"104":0,"105":0.00491,"106":0,"107":0.00491,"108":0,"109":0.3875,"110":0.30411,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00981,"54":0,"55":0,"56":0,"57":0,"58":0.00491,"59":0,"60":0,"61":0,"62":0,"63":0.00491,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00491,"71":0.00491,"72":0,"73":0.01472,"74":0,"75":0,"76":0.01962,"77":0,"78":0,"79":0.01472,"80":0,"81":0.00981,"83":0.01472,"84":0,"85":0.00491,"86":0.00491,"87":0.01472,"88":0.00491,"89":0,"90":0,"91":0.00491,"92":0.02453,"93":0.0981,"94":0,"95":0.01472,"96":0.00981,"97":0.01472,"98":0.00491,"99":0,"100":0.04905,"101":0,"102":0.00981,"103":0.15696,"104":0.00981,"105":0.03924,"106":0.06377,"107":0.07848,"108":0.76518,"109":8.49056,"110":4.66956,"111":0.00981,"112":0.00491,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02453,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00491,"64":0,"65":0,"66":0,"67":0.00981,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00491,"90":0,"91":0,"92":0,"93":0.00491,"94":0.18639,"95":0.0932,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00491,"16":0,"17":0,"18":0.00981,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00491,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00491,"104":0,"105":0,"106":0,"107":0.01962,"108":0.04415,"109":1.80014,"110":2.07482},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03434,"15":0.00491,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00981,"13.1":0.05886,"14.1":0.05886,"15.1":0.02943,"15.2-15.3":0,"15.4":0.02943,"15.5":0.06377,"15.6":0.56898,"16.0":0.01962,"16.1":0.07848,"16.2":0.59351,"16.3":0.51993,"16.4":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.0083,"8.1-8.4":0,"9.0-9.2":0.00623,"9.3":0.06436,"10.0-10.2":0,"10.3":0.07058,"11.0-11.2":0.01038,"11.3-11.4":0.02284,"12.0-12.1":0,"12.2-12.5":0.50654,"13.0-13.1":0,"13.2":0.00208,"13.3":0.08719,"13.4-13.7":0.03529,"14.0-14.4":0.14532,"14.5-14.8":0.58335,"15.0-15.1":0.07681,"15.2-15.3":0.08096,"15.4":0.26988,"15.5":0.64355,"15.6":0.97986,"16.0":1.51547,"16.1":5.84388,"16.2":4.37409,"16.3":3.49595,"16.4":0.0083},P:{"4":0.09534,"20":1.44072,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09534,"8.2":0,"9.2":0.02119,"10.1":0,"11.1-11.2":0.04237,"12.0":0,"13.0":0.02119,"14.0":0.01059,"15.0":0,"16.0":0.02119,"17.0":0.03178,"18.0":0.06356,"19.0":1.36657},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.80104},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00491,"11":0.00491,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.0051},O:{"0":0.05605},H:{"0":0.14471},L:{"0":52.36851},R:{_:"0"},M:{"0":0.70821},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js index 88bd63e6fee827..386afc99303bf2 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.00453,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00453,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00453,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00453,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00453,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04078,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02266,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01359,"100":0,"101":0,"102":0.00453,"103":0,"104":0.00453,"105":0.00453,"106":0.00453,"107":0.00906,"108":0.37154,"109":0.22202,"110":0.00453,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00453,"36":0,"37":0,"38":0.00453,"39":0.00453,"40":0.00453,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00906,"48":0,"49":0.03172,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00453,"57":0,"58":0.00906,"59":0.00453,"60":0,"61":0,"62":0.00453,"63":0.00453,"64":0,"65":0,"66":0.00906,"67":0,"68":0.01812,"69":0,"70":0.00453,"71":0,"72":0,"73":0.02266,"74":0.00906,"75":0,"76":0.01359,"77":0,"78":0.01359,"79":0.10421,"80":0.00906,"81":0.01359,"83":0.09062,"84":0.00453,"85":0.01359,"86":0.07703,"87":0.04531,"88":0.00906,"89":0.00453,"90":0.03625,"91":0.01812,"92":0.01359,"93":0.00453,"94":0.01812,"95":0.01359,"96":0.00906,"97":0.01359,"98":0.03172,"99":0.01812,"100":0.01359,"101":0.00906,"102":0.03625,"103":0.06343,"104":0.03625,"105":0.02719,"106":0.05437,"107":0.14952,"108":7.05024,"109":6.05795,"110":0.00453,"111":0.00453,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01812,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00453,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02719,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00906,"64":0,"65":0,"66":0.00453,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00906,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01359,"80":0,"81":0,"82":0.00453,"83":0,"84":0.00906,"85":0.02719,"86":0.00453,"87":0,"88":0,"89":0.00453,"90":0,"91":0,"92":0.00453,"93":0.37607,"94":1.0965,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00453,"13":0.01812,"14":0.04531,"15":0.00453,"16":0.02266,"17":0.00453,"18":0.02719,"79":0,"80":0,"81":0,"83":0,"84":0.00453,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01359,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00453,"99":0.00453,"100":0,"101":0.01359,"102":0,"103":0.00453,"104":0.00453,"105":0.00906,"106":0.01359,"107":0.04984,"108":0.87448,"109":0.77027},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00453,"14":0.01359,"15":0.00906,_:"0","3.1":0,"3.2":0,"5.1":0.00453,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00453,"13.1":0.03172,"14.1":0.04078,"15.1":0.04984,"15.2-15.3":0.00906,"15.4":0.02266,"15.5":0.0589,"15.6":0.14499,"16.0":0.02719,"16.1":0.11328,"16.2":0.14499,"16.3":0.01359},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04657,"6.0-6.1":0,"7.0-7.1":0.18806,"8.1-8.4":0,"9.0-9.2":0.00358,"9.3":0.06985,"10.0-10.2":0,"10.3":0.12717,"11.0-11.2":0.06448,"11.3-11.4":0.01612,"12.0-12.1":0.01791,"12.2-12.5":0.84539,"13.0-13.1":0.00716,"13.2":0.00896,"13.3":0.08955,"13.4-13.7":0.10567,"14.0-14.4":0.36896,"14.5-14.8":0.72718,"15.0-15.1":0.19344,"15.2-15.3":0.28836,"15.4":0.35642,"15.5":0.61076,"15.6":1.41674,"16.0":3.09856,"16.1":4.22336,"16.2":2.81378,"16.3":0.28836},P:{"4":0.73289,"5.0-5.4":0.03097,"6.2-6.4":0,"7.2-7.4":0.07226,"8.2":0,"9.2":0.01032,"10.1":0,"11.1-11.2":0.02064,"12.0":0.01032,"13.0":0.04129,"14.0":0.02064,"15.0":0.01032,"16.0":0.05161,"17.0":0.06193,"18.0":0.07226,"19.0":1.24902},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0347,"4.2-4.3":0.19086,"4.4":0,"4.4.3-4.4.4":0.7808},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02266,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0711},Q:{"13.1":0},O:{"0":0.04922},H:{"0":0.26924},L:{"0":59.03121},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0.00454,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00454,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02722,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01361,"89":0,"90":0,"91":0,"92":0.00907,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00907,"100":0,"101":0,"102":0.00907,"103":0,"104":0.01815,"105":0.00454,"106":0.00907,"107":0.00454,"108":0.02722,"109":0.40833,"110":0.24954,"111":0.00454,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00454,"36":0,"37":0,"38":0.00454,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01361,"48":0,"49":0.02722,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00454,"57":0,"58":0.00454,"59":0,"60":0,"61":0,"62":0.00454,"63":0.00907,"64":0,"65":0,"66":0.00454,"67":0,"68":0.01361,"69":0,"70":0.00454,"71":0,"72":0,"73":0.01815,"74":0.00907,"75":0.00454,"76":0,"77":0.00454,"78":0.01361,"79":0.09528,"80":0.00907,"81":0.00907,"83":0.07713,"84":0.00454,"85":0.00907,"86":0.05444,"87":0.0363,"88":0.00907,"89":0.00454,"90":0.01815,"91":0.01815,"92":0.00907,"93":0.00454,"94":0.00907,"95":0.01361,"96":0.00907,"97":0.01361,"98":0.03176,"99":0.01361,"100":0.01361,"101":0.00907,"102":0.05444,"103":0.06352,"104":0.02269,"105":0.03176,"106":0.04537,"107":0.07713,"108":0.38565,"109":8.44789,"110":4.55061,"111":0.00454,"112":0.00454,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00907,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00454,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01815,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00454,"64":0,"65":0,"66":0,"67":0.00454,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01361,"80":0,"81":0,"82":0,"83":0,"84":0.00454,"85":0.02269,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.06352,"94":0.75768,"95":0.73046,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00454,"13":0.01815,"14":0.07259,"15":0,"16":0.02722,"17":0,"18":0.02722,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01361,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00454,"99":0.00454,"100":0,"101":0.00907,"102":0,"103":0.00454,"104":0,"105":0.00907,"106":0.00907,"107":0.02269,"108":0.0363,"109":0.65787,"110":0.8212},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00454,"14":0.01815,"15":0.00907,_:"0","3.1":0,"3.2":0,"5.1":0.00454,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00454,"13.1":0.01815,"14.1":0.04537,"15.1":0.00907,"15.2-15.3":0.00454,"15.4":0.01815,"15.5":0.04083,"15.6":0.17241,"16.0":0.02269,"16.1":0.08167,"16.2":0.13611,"16.3":0.13157,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02446,"6.0-6.1":0,"7.0-7.1":0.16744,"8.1-8.4":0.00376,"9.0-9.2":0.00188,"9.3":0.0602,"10.0-10.2":0,"10.3":0.12041,"11.0-11.2":0.04515,"11.3-11.4":0.00753,"12.0-12.1":0.0301,"12.2-12.5":0.79205,"13.0-13.1":0.00564,"13.2":0.00376,"13.3":0.03763,"13.4-13.7":0.13169,"14.0-14.4":0.44024,"14.5-14.8":0.69422,"15.0-15.1":0.17497,"15.2-15.3":0.27468,"15.4":0.39132,"15.5":0.50797,"15.6":1.23041,"16.0":2.79946,"16.1":3.25663,"16.2":3.42031,"16.3":2.37992,"16.4":0.00941},P:{"4":0.55301,"20":0.38606,"5.0-5.4":0.01043,"6.2-6.4":0,"7.2-7.4":0.0626,"8.2":0,"9.2":0.01043,"10.1":0,"11.1-11.2":0.0313,"12.0":0,"13.0":0.04174,"14.0":0.01043,"15.0":0.01043,"16.0":0.07304,"17.0":0.0626,"18.0":0.0626,"19.0":0.8869},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01964,"4.2-4.3":0.15713,"4.4":0,"4.4.3-4.4.4":0.74637},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01815,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.0437},H:{"0":0.27412},L:{"0":58.28374},R:{_:"0"},M:{"0":0.07102},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js index 063ce5db07e636..0a69623617dde5 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.00434,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00434,"48":0,"49":0,"50":0,"51":0,"52":0.00434,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00868,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00434,"88":0.00434,"89":0,"90":0,"91":0.00868,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00434,"100":0,"101":0.00868,"102":0.19087,"103":0.00434,"104":0.02603,"105":0.00434,"106":0.01301,"107":0.0347,"108":1.23199,"109":0.61166,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00434,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.1258,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00868,"70":0,"71":0,"72":0,"73":0,"74":0.00868,"75":0,"76":0.02169,"77":0,"78":0,"79":0.00434,"80":0,"81":0.00868,"83":0.00434,"84":0,"85":0,"86":0.03904,"87":0.00434,"88":0,"89":0.00434,"90":0.00434,"91":0,"92":0.00868,"93":0,"94":0.01301,"95":0,"96":0.00434,"97":0.00868,"98":0,"99":0,"100":0.01735,"101":0.00868,"102":0.00434,"103":0.0347,"104":0.01301,"105":0.00868,"106":0.01301,"107":0.07375,"108":5.28368,"109":4.25558,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01735,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01301,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02169,"90":0,"91":0,"92":0,"93":0.16484,"94":0.22124,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01735,"13":0,"14":0,"15":0,"16":0,"17":0.02603,"18":0.00434,"79":0,"80":0,"81":0,"83":0.00868,"84":0.00434,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00434,"100":0,"101":0.00434,"102":0,"103":0.00434,"104":0.00868,"105":0.00434,"106":0.01301,"107":0.46417,"108":1.61807,"109":1.15391},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00434,"14":0.02603,"15":0.00434,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00434,"13.1":0.05206,"14.1":0.18653,"15.1":0.03904,"15.2-15.3":0.01735,"15.4":0.01301,"15.5":0.2169,"15.6":0.33403,"16.0":0.05206,"16.1":0.2169,"16.2":0.61166,"16.3":0.01301},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00213,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.27087,"10.0-10.2":0,"10.3":0.00853,"11.0-11.2":0,"11.3-11.4":0.01493,"12.0-12.1":0.0064,"12.2-12.5":0.23461,"13.0-13.1":0,"13.2":0,"13.3":0.01066,"13.4-13.7":0.06612,"14.0-14.4":0.29433,"14.5-14.8":0.75928,"15.0-15.1":0.18342,"15.2-15.3":0.36258,"15.4":0.29859,"15.5":0.74222,"15.6":2.12856,"16.0":5.06118,"16.1":5.06118,"16.2":4.21019,"16.3":0.29859},P:{"4":0.04127,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11349,"8.2":0,"9.2":0,"10.1":0.01032,"11.1-11.2":0.09286,"12.0":0.01032,"13.0":0.08254,"14.0":0.08254,"15.0":0.05159,"16.0":0.2373,"17.0":0.05159,"18.0":0.38174,"19.0":3.45634},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.3647},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00868,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.27744},Q:{"13.1":0},O:{"0":0.0453},H:{"0":0.30554},L:{"0":54.18912},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00408,"53":0,"54":0,"55":0,"56":0,"57":0.00408,"58":0,"59":0,"60":0.00408,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01223,"79":0,"80":0,"81":0.00408,"82":0,"83":0,"84":0,"85":0.00408,"86":0.00815,"87":0,"88":0,"89":0,"90":0,"91":0.00408,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00408,"99":0.00408,"100":0.00408,"101":0,"102":0.12639,"103":0.00408,"104":0.00408,"105":0,"106":0.00815,"107":0.00815,"108":0.04077,"109":1.04371,"110":0.81132,"111":0.00408,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07746,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00408,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00408,"70":0.00408,"71":0.00408,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00408,"79":0.00408,"80":0,"81":0.00408,"83":0.00815,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00815,"90":0,"91":0,"92":0.17123,"93":0,"94":0.01223,"95":0,"96":0.00408,"97":0.00408,"98":0.00408,"99":0.02854,"100":0.01223,"101":0,"102":0.01631,"103":0.02039,"104":0.03669,"105":0.00815,"106":0.01631,"107":0.01223,"108":0.17123,"109":4.74971,"110":3.5633,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01223,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00408,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00815,"90":0,"91":0,"92":0,"93":0.04077,"94":0.13046,"95":0.17123,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00815,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00408,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00408,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00408,"99":0.00815,"100":0.00408,"101":0.01223,"102":0.02039,"103":0.00408,"104":0.00408,"105":0.00408,"106":0,"107":0.06523,"108":0.06116,"109":1.05187,"110":1.55741},E:{"4":0,"5":0.00408,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01223,"14":0.02854,"15":0.00408,_:"0","3.1":0,"3.2":0,"5.1":0.00408,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00408,"13.1":0.06116,"14.1":0.13862,"15.1":0.00815,"15.2-15.3":0.02039,"15.4":0.01223,"15.5":0.17939,"15.6":0.23239,"16.0":0.03669,"16.1":0.1427,"16.2":0.39955,"16.3":0.2487,"16.4":0},G:{"8":0.00619,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.19801,"10.0-10.2":0,"10.3":0.00619,"11.0-11.2":0,"11.3-11.4":0.00413,"12.0-12.1":0.02475,"12.2-12.5":0.20832,"13.0-13.1":0.00413,"13.2":0,"13.3":0.01031,"13.4-13.7":0.04331,"14.0-14.4":0.23101,"14.5-14.8":0.41252,"15.0-15.1":0.18357,"15.2-15.3":0.24339,"15.4":0.39809,"15.5":0.51359,"15.6":1.84604,"16.0":4.29437,"16.1":3.49614,"16.2":4.18918,"16.3":3.11249,"16.4":0.04538},P:{"4":0.07165,"20":1.25891,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11259,"8.2":0,"9.2":0.05118,"10.1":0,"11.1-11.2":0.08188,"12.0":0.01024,"13.0":0.08188,"14.0":0.09212,"15.0":0.01024,"16.0":0.21494,"17.0":0.03071,"18.0":0.3787,"19.0":2.60994},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01545,"4.4":0,"4.4.3-4.4.4":0.11201},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00408,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02369},H:{"0":0.31963},L:{"0":56.5524},R:{_:"0"},M:{"0":0.2843},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js index 4f0355ecf7bcc3..cad1562a05e889 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.01482,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01976,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02965,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00988,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.09882,"103":0.00494,"104":0.00494,"105":0,"106":0,"107":0.01482,"108":0.62751,"109":0.34587,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00988,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.10376,"77":0.00494,"78":0,"79":0.00494,"80":0,"81":0,"83":0,"84":0.00988,"85":0,"86":0.00494,"87":0.00494,"88":0.00988,"89":0.00494,"90":0,"91":0.01482,"92":0.00494,"93":0.02471,"94":0.00494,"95":0.00494,"96":0.01976,"97":0,"98":0.00988,"99":0.00494,"100":0.00494,"101":0.01482,"102":0.00494,"103":0.07412,"104":0.00494,"105":0.01976,"106":0.05929,"107":0.19764,"108":5.08429,"109":4.58031,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00494,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00494,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.23717,"94":0.1087,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00494,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.02471,"104":0,"105":0,"106":0.00494,"107":0.084,"108":1.99616,"109":1.74417},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00988,"13":0.00494,"14":0.11364,"15":0.01482,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.05435,"12.1":0.01482,"13.1":0.25693,"14.1":0.3014,"15.1":0.05435,"15.2-15.3":0.00988,"15.4":0.09882,"15.5":0.29152,"15.6":3.47846,"16.0":0.20258,"16.1":0.27176,"16.2":1.72935,"16.3":0.11858},G:{"8":0.01673,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01115,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.29552,"10.0-10.2":0,"10.3":0.61334,"11.0-11.2":0.10594,"11.3-11.4":0.00558,"12.0-12.1":0.0223,"12.2-12.5":1.43857,"13.0-13.1":0,"13.2":0,"13.3":0.02788,"13.4-13.7":0.06133,"14.0-14.4":1.41626,"14.5-14.8":1.91809,"15.0-15.1":0.36243,"15.2-15.3":0.21188,"15.4":0.41819,"15.5":0.93674,"15.6":9.41203,"16.0":6.22264,"16.1":17.61967,"16.2":10.60526,"16.3":0.94789},P:{"4":0.0107,"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.0321,"14.0":0,"15.0":0,"16.0":0,"17.0":0.0321,"18.0":0.0321,"19.0":3.60629},I:{"0":0,"3":0,"4":0.02335,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.30817},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.22235,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.92074},Q:{"13.1":0},O:{"0":0.00506},H:{"0":0.01437},L:{"0":16.80495},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01008,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00504,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00504,"89":0,"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.10082,"103":0.00504,"104":0,"105":0,"106":0,"107":0,"108":0.01512,"109":0.69566,"110":0.40328,"111":0.00504,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00504,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00504,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.05041,"77":0.01008,"78":0,"79":0,"80":0,"81":0,"83":0.01008,"84":0.00504,"85":0,"86":0.01008,"87":0.01512,"88":0,"89":0.01008,"90":0,"91":0.00504,"92":0.00504,"93":0.01512,"94":0.00504,"95":0.00504,"96":0.00504,"97":0,"98":0.00504,"99":0.01008,"100":0.00504,"101":0,"102":0.00504,"103":0.05041,"104":0,"105":0.00504,"106":0.02016,"107":0.10586,"108":0.43857,"109":6.29117,"110":3.43796,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.18148,"95":0.05041,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00504,"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.03529,"104":0,"105":0,"106":0,"107":0.0857,"108":0.12603,"109":1.57279,"110":2.34911},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01008,"14":0.09578,"15":0.01008,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.06049,"12.1":0.06553,"13.1":0.16131,"14.1":0.26213,"15.1":0.01512,"15.2-15.3":0.01512,"15.4":0.14115,"15.5":0.16131,"15.6":1.92566,"16.0":0.05041,"16.1":0.32767,"16.2":2.78263,"16.3":1.49214,"16.4":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,"7.0-7.1":0,"8.1-8.4":0.00512,"9.0-9.2":0.00512,"9.3":0.31734,"10.0-10.2":0,"10.3":0.62957,"11.0-11.2":0.10237,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.62255,"13.0-13.1":0.00512,"13.2":0,"13.3":0.02559,"13.4-13.7":0.0819,"14.0-14.4":0.86502,"14.5-14.8":2.23165,"15.0-15.1":0.22009,"15.2-15.3":0.17915,"15.4":0.389,"15.5":0.98786,"15.6":4.30462,"16.0":3.9105,"16.1":12.40202,"16.2":13.63045,"16.3":6.29058,"16.4":0},P:{"4":0.0324,"20":1.51218,"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.0324,"14.0":0.0108,"15.0":0,"16.0":0.0108,"17.0":0.0108,"18.0":0.0216,"19.0":2.61391},I:{"0":0,"3":0,"4":0.01683,"2.1":0,"2.2":0,"2.3":0.01262,"4.1":0,"4.2-4.3":0.08835,"4.4":0,"4.4.3-4.4.4":0.26506},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.17139,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.00939},L:{"0":19.5901},R:{_:"0"},M:{"0":0.76369},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js index d447efd5486f24..966dfb1b537205 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.00242,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00242,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00242,"67":0,"68":0.00242,"69":0,"70":0,"71":0,"72":0.00242,"73":0,"74":0.00242,"75":0,"76":0,"77":0,"78":0.00242,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00485,"88":0.00242,"89":0,"90":0,"91":0.00242,"92":0,"93":0,"94":0,"95":0.00242,"96":0.00485,"97":0,"98":0,"99":0.00242,"100":0.00242,"101":0.00242,"102":0.00727,"103":0.00242,"104":0.00242,"105":0.00242,"106":0.00485,"107":0.01212,"108":0.24725,"109":0.14059,"110":0.00485,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00242,"47":0,"48":0,"49":0.00242,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00242,"56":0,"57":0,"58":0,"59":0,"60":0.00242,"61":0,"62":0,"63":0.00242,"64":0.00242,"65":0.00242,"66":0,"67":0,"68":0.00242,"69":0.00242,"70":0.00242,"71":0.00242,"72":0.00242,"73":0.00242,"74":0.00727,"75":0.00242,"76":0.00485,"77":0.01212,"78":0.00242,"79":0.0097,"80":0.00485,"81":0.01697,"83":0.00242,"84":0.00242,"85":0.00485,"86":0.00485,"87":0.00727,"88":0.00485,"89":0.00485,"90":0.00242,"91":0.00485,"92":0.00727,"93":0.00727,"94":0.00485,"95":0.00727,"96":0.00727,"97":0.00485,"98":0.00727,"99":0.00727,"100":0.00485,"101":0.00727,"102":0.0097,"103":0.03394,"104":0.01212,"105":0.01697,"106":0.01939,"107":0.04848,"108":1.51742,"109":1.28957,"110":0.00485,"111":0.00242,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00242,"25":0,"26":0.00242,"27":0.00242,"28":0.00485,"29":0,"30":0.00242,"31":0,"32":0.00242,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00242,"39":0,"40":0,"41":0,"42":0.00242,"43":0,"44":0,"45":0,"46":0.00242,"47":0.00242,"48":0,"49":0,"50":0.00485,"51":0.00242,"52":0,"53":0,"54":0.00485,"55":0.00485,"56":0,"57":0.00242,"58":0.01697,"60":0.08484,"62":0,"63":0.1309,"64":0.0509,"65":0.03394,"66":0.45814,"67":0.03878,"68":0,"69":0,"70":0.00242,"71":0,"72":0.00242,"73":0.01939,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00485,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00242,"86":0.00242,"87":0,"88":0,"89":0.00242,"90":0.00242,"91":0,"92":0.00242,"93":0.01697,"94":0.23513,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00727},B:{"12":0.00727,"13":0.00485,"14":0.00485,"15":0.0097,"16":0.00727,"17":0.00485,"18":0.02424,"79":0,"80":0,"81":0,"83":0,"84":0.00485,"85":0.00242,"86":0,"87":0,"88":0,"89":0.01212,"90":0.0097,"91":0,"92":0.01697,"93":0.00242,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00242,"101":0,"102":0,"103":0.00242,"104":0.00485,"105":0.00485,"106":0.00727,"107":0.02182,"108":0.31754,"109":0.27149},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00242,"14":0.00727,"15":0.00242,_:"0","3.1":0,"3.2":0,"5.1":0.00727,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00242,"12.1":0.00242,"13.1":0.01454,"14.1":0.01212,"15.1":0.00242,"15.2-15.3":0.00242,"15.4":0.0097,"15.5":0.0097,"15.6":0.03394,"16.0":0.0097,"16.1":0.02666,"16.2":0.02909,"16.3":0.00242},G:{"8":0.00239,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02149,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06686,"10.0-10.2":0,"10.3":0.2364,"11.0-11.2":0.03343,"11.3-11.4":0.01433,"12.0-12.1":0.17193,"12.2-12.5":1.97715,"13.0-13.1":0.0788,"13.2":0.03104,"13.3":0.14088,"13.4-13.7":0.24117,"14.0-14.4":2.02491,"14.5-14.8":1.69539,"15.0-15.1":1.07932,"15.2-15.3":1.03633,"15.4":0.62562,"15.5":1.09126,"15.6":1.34914,"16.0":2.88454,"16.1":2.715,"16.2":3.17109,"16.3":0.3749},P:{"4":0.22688,"5.0-5.4":0.01031,"6.2-6.4":0,"7.2-7.4":0.11344,"8.2":0,"9.2":0.07219,"10.1":0,"11.1-11.2":0.06188,"12.0":0.04125,"13.0":0.04125,"14.0":0.04125,"15.0":0.06188,"16.0":0.13407,"17.0":0.07219,"18.0":0.13407,"19.0":0.9591},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00459,"4.2-4.3":0.01284,"4.4":0,"4.4.3-4.4.4":0.08166},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0097,"5.5":0},J:{"7":0,"10":0.01515},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.24243},Q:{"13.1":0.00758},O:{"0":1.28792},H:{"0":10.90932},L:{"0":55.1073},S:{"2.5":0.00758}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00256,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00256,"67":0,"68":0.00256,"69":0,"70":0,"71":0,"72":0.00256,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00256,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00256,"86":0,"87":0.00512,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00256,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00256,"102":0.00512,"103":0.00256,"104":0.00256,"105":0.00512,"106":0.00256,"107":0.00256,"108":0.01535,"109":0.26102,"110":0.17657,"111":0.00768,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00256,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00512,"47":0.00256,"48":0,"49":0.00256,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00256,"59":0,"60":0,"61":0,"62":0,"63":0.00256,"64":0.00256,"65":0,"66":0.00256,"67":0.00256,"68":0.00256,"69":0.00256,"70":0.00512,"71":0,"72":0.00256,"73":0.00256,"74":0.00768,"75":0.00256,"76":0.00512,"77":0.00512,"78":0.00256,"79":0.01024,"80":0.00512,"81":0.02303,"83":0.00256,"84":0,"85":0.00256,"86":0.00512,"87":0.00768,"88":0.00512,"89":0.00512,"90":0.00512,"91":0.00512,"92":0.00512,"93":0.00768,"94":0.00256,"95":0.01024,"96":0.00512,"97":0.00512,"98":0.00512,"99":0.00768,"100":0.00256,"101":0.00768,"102":0.00768,"103":0.03327,"104":0.00768,"105":0.01535,"106":0.01535,"107":0.02047,"108":0.09212,"109":2.01137,"110":1.12596,"111":0.00256,"112":0.00256,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00256,"25":0,"26":0.00256,"27":0.00256,"28":0.00512,"29":0,"30":0.00256,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00256,"43":0,"44":0,"45":0,"46":0.00256,"47":0,"48":0,"49":0,"50":0.00256,"51":0.00256,"52":0,"53":0,"54":0.00512,"55":0.00512,"56":0,"57":0.00256,"58":0.01535,"60":0.06398,"62":0,"63":0.09468,"64":0.03839,"65":0.02303,"66":0.53739,"67":0.6116,"68":0,"69":0,"70":0,"71":0,"72":0.00512,"73":0.01535,"74":0.00256,"75":0,"76":0,"77":0,"78":0,"79":0.00256,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00256,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00256,"93":0.00256,"94":0.12027,"95":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.00768},B:{"12":0.00512,"13":0.00256,"14":0.00256,"15":0.0128,"16":0.00256,"17":0.00512,"18":0.01791,"79":0,"80":0,"81":0,"83":0,"84":0.00512,"85":0,"86":0,"87":0,"88":0,"89":0.0128,"90":0.01024,"91":0,"92":0.02303,"93":0,"94":0,"95":0.00256,"96":0,"97":0,"98":0,"99":0,"100":0.00256,"101":0,"102":0,"103":0.00256,"104":0.00256,"105":0.00256,"106":0.00256,"107":0.0128,"108":0.03327,"109":0.32755,"110":0.39409},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00256,"14":0.00768,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00512,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01535,"14.1":0.01535,"15.1":0.00512,"15.2-15.3":0.00256,"15.4":0.00768,"15.5":0.0128,"15.6":0.02815,"16.0":0.00512,"16.1":0.02047,"16.2":0.02559,"16.3":0.04094,"16.4":0},G:{"8":0.00754,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01005,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08796,"10.0-10.2":0.00503,"10.3":0.24629,"11.0-11.2":0.02765,"11.3-11.4":0.01508,"12.0-12.1":0.16336,"12.2-12.5":1.87988,"13.0-13.1":0.08796,"13.2":0.03267,"13.3":0.12063,"13.4-13.7":0.23624,"14.0-14.4":1.89999,"14.5-14.8":1.62354,"15.0-15.1":1.02288,"15.2-15.3":1.23399,"15.4":0.65846,"15.5":1.14603,"15.6":1.17618,"16.0":2.58358,"16.1":2.27195,"16.2":2.62631,"16.3":2.74694,"16.4":0.01005},P:{"4":0.13338,"20":0.24625,"5.0-5.4":0.02052,"6.2-6.4":0,"7.2-7.4":0.14364,"8.2":0,"9.2":0.06156,"10.1":0,"11.1-11.2":0.0513,"12.0":0.04104,"13.0":0.02052,"14.0":0.03078,"15.0":0.03078,"16.0":0.1026,"17.0":0.0513,"18.0":0.08208,"19.0":0.63614},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00645,"4.2-4.3":0.0137,"4.4":0,"4.4.3-4.4.4":0.08057},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00256,"11":0.00768,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00744,_:"3.0-3.1"},J:{"7":0,"10":0.02976},O:{"0":1.22032},H:{"0":11.29259},L:{"0":53.28138},R:{_:"0"},M:{"0":0.23067},Q:{"13.1":0.00744}}; 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 664800ef2aae07..64f9235a549c91 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.00635,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00635,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.08883,"69":0,"70":0,"71":0,"72":0.00635,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02538,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00635,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00635,"99":0,"100":0,"101":0,"102":0.01269,"103":0,"104":0,"105":0.15863,"106":0.2538,"107":0.24746,"108":0.69161,"109":0.27284,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.03173,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00635,"78":0.00635,"79":0.00635,"80":0,"81":0.00635,"83":0,"84":0,"85":0,"86":0.00635,"87":0.01269,"88":0.00635,"89":0,"90":0,"91":0.00635,"92":0,"93":0,"94":0,"95":0,"96":0.00635,"97":0,"98":0.01269,"99":0.00635,"100":0.00635,"101":0.09518,"102":0.00635,"103":0.35532,"104":0.17132,"105":0.01904,"106":0.02538,"107":0.16497,"108":21.33189,"109":7.57593,"110":0.00635,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00635,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.17132,"94":0.17132,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.07614,"108":1.76391,"109":2.0304},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.10152,"14":0.07614,"15":0.01904,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03807,"13.1":0.04442,"14.1":0.23477,"15.1":0.34263,"15.2-15.3":0.07614,"15.4":0.04442,"15.5":0.17132,"15.6":0.99617,"16.0":0.0698,"16.1":0.2538,"16.2":0.54567,"16.3":0.03807},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10909,"10.0-10.2":0.00606,"10.3":0.11818,"11.0-11.2":0.01212,"11.3-11.4":0.01212,"12.0-12.1":0.02424,"12.2-12.5":0.53939,"13.0-13.1":0.00606,"13.2":0,"13.3":0.00909,"13.4-13.7":0.04848,"14.0-14.4":0.23333,"14.5-14.8":0.65151,"15.0-15.1":0.07273,"15.2-15.3":0.27575,"15.4":0.7212,"15.5":0.77272,"15.6":4.00904,"16.0":5.37266,"16.1":10.47259,"16.2":5.69993,"16.3":0.28788},P:{"4":0.05144,"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.01029,"15.0":0,"16.0":0.01029,"17.0":0.02057,"18.0":0.06172,"19.0":2.67466},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.19421},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01904,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.32895},Q:{"13.1":0},O:{"0":0.01462},H:{"0":0.36679},L:{"0":25.45722},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00919,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.05516,"107":0.05516,"108":0.08275,"109":0.23904,"110":0.08275,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01839,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00919,"69":0,"70":0.00919,"71":0.00919,"72":0.00919,"73":0,"74":0.00919,"75":0,"76":0,"77":0.00919,"78":0.00919,"79":0.00919,"80":0.00919,"81":0.00919,"83":0,"84":0.00919,"85":0.00919,"86":0.00919,"87":0.00919,"88":0.00919,"89":0.00919,"90":0.00919,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00919,"99":0.00919,"100":0.00919,"101":0.02758,"102":0,"103":0.02758,"104":0,"105":0,"106":0.00919,"107":0.01839,"108":75.41838,"109":3.03402,"110":1.78364,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.04597,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01839,"94":0.12872,"95":0.01839,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00919,"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.02758,"108":0.00919,"109":0.73552,"110":0.62519},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03678,"14":0.03678,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.04597,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00919,"14.1":0.08275,"15.1":0.01839,"15.2-15.3":0.00919,"15.4":0.00919,"15.5":0.17469,"15.6":0.24824,"16.0":0.02758,"16.1":0.06436,"16.2":0.24824,"16.3":0.13791,"16.4":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.00162,"9.3":0.03392,"10.0-10.2":0.00565,"10.3":0.04442,"11.0-11.2":0.01454,"11.3-11.4":0.00242,"12.0-12.1":0.00888,"12.2-12.5":0.1171,"13.0-13.1":0.01292,"13.2":0.00323,"13.3":0.00646,"13.4-13.7":0.021,"14.0-14.4":0.05411,"14.5-14.8":0.15667,"15.0-15.1":0.01454,"15.2-15.3":0.0856,"15.4":0.13325,"15.5":0.1066,"15.6":0.72117,"16.0":0.94649,"16.1":2.08923,"16.2":2.0755,"16.3":0.96587,"16.4":0.00162},P:{"4":0.01032,"20":0.20639,"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.01032,"19.0":0.40246},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04242},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.07402},L:{"0":6.92284},R:{_:"0"},M:{"0":0.06932},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js index 314fad62d477e2..5155d56f5ac791 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00538,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02689,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.03227,"99":0,"100":0.00538,"101":0,"102":0,"103":0,"104":0,"105":0.01076,"106":0.00538,"107":0.11832,"108":0.57007,"109":0.4894,"110":0.00538,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01076,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00538,"77":0.00538,"78":0,"79":0.00538,"80":0,"81":0.01076,"83":0.01076,"84":0.00538,"85":0,"86":0,"87":0,"88":0.11832,"89":0.01076,"90":0,"91":0.01076,"92":0.00538,"93":0,"94":0,"95":0,"96":0.00538,"97":0,"98":0.00538,"99":0.0484,"100":0.01076,"101":0.00538,"102":0.00538,"103":0.0484,"104":0.01076,"105":1.71558,"106":0.15596,"107":0.97342,"108":6.52351,"109":4.48525,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00538,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00538,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.34957,"94":2.21036,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.01076,"17":0.01613,"18":0.00538,"79":0,"80":0,"81":0,"83":0,"84":0.02689,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00538,"93":0,"94":0,"95":0.04302,"96":0.05378,"97":0,"98":0,"99":0,"100":0,"101":0.01076,"102":0,"103":0,"104":0.29579,"105":0.15596,"106":0.01076,"107":0.05916,"108":2.31254,"109":1.65105},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.05916,"10":0,"11":0,"12":0,"13":0,"14":0.15058,"15":0.38184,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01076,"10.1":0,"11.1":0,"12.1":0.01076,"13.1":0.08605,"14.1":0.19361,"15.1":0.00538,"15.2-15.3":0.01613,"15.4":0.11294,"15.5":0.18285,"15.6":1.30148,"16.0":1.40904,"16.1":0.52167,"16.2":0.64536,"16.3":0.18285},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.07089,"9.3":0.05672,"10.0-10.2":0,"10.3":0.03899,"11.0-11.2":0,"11.3-11.4":0.00709,"12.0-12.1":0.01063,"12.2-12.5":0.42891,"13.0-13.1":0,"13.2":0,"13.3":0.02481,"13.4-13.7":0.07444,"14.0-14.4":0.04963,"14.5-14.8":0.20205,"15.0-15.1":0.12052,"15.2-15.3":0.1666,"15.4":0.14888,"15.5":0.39701,"15.6":2.91728,"16.0":7.58918,"16.1":12.37097,"16.2":7.78414,"16.3":0.9358},P:{"4":0.1328,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01022,"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.01022,"16.0":0.03065,"17.0":0.01022,"18.0":0.01022,"19.0":4.41307},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05613},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0484,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.16639},Q:{"13.1":0},O:{"0":0.05084},H:{"0":1.18147},L:{"0":28.82237},S:{"2.5":0}}; +module.exports={C:{"2":0.00535,"3":0.00535,"4":0,"5":0.00535,"6":0.00535,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00535,"16":0.00535,"17":0,"18":0,"19":0,"20":0.01606,"21":0.00535,"22":0.00535,"23":0.00535,"24":0.00535,"25":0,"26":0,"27":0.00535,"28":0,"29":0.00535,"30":0,"31":0.01071,"32":0.00535,"33":0,"34":0.00535,"35":0.00535,"36":0,"37":0.01071,"38":0.00535,"39":0.01071,"40":0.02141,"41":0.01071,"42":0.00535,"43":0.01071,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01606,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00535,"102":0.01071,"103":0.02677,"104":0.00535,"105":0.01606,"106":0.02141,"107":0,"108":0.01071,"109":0.62095,"110":0.27836,"111":0.01071,"112":0,"3.5":0.00535,"3.6":0.03212},D:{"4":0,"5":0,"6":0.00535,"7":0.00535,"8":0.00535,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00535,"18":0.00535,"19":0.00535,"20":0,"21":0.00535,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00535,"29":0.00535,"30":0,"31":0.00535,"32":0,"33":0.01606,"34":0,"35":0,"36":0.00535,"37":0.01606,"38":0.02141,"39":0.01071,"40":0.02677,"41":0.01606,"42":0,"43":0.04818,"44":0.05353,"45":0.06424,"46":0.02677,"47":0.03212,"48":0,"49":0,"50":0,"51":0.00535,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00535,"79":0.01071,"80":0.00535,"81":0.08565,"83":0,"84":0,"85":0,"86":0,"87":0.02141,"88":0.03212,"89":0.01071,"90":0,"91":0,"92":0,"93":0.01071,"94":0,"95":0,"96":0.00535,"97":0,"98":0.00535,"99":0.01071,"100":0.00535,"101":0.00535,"102":0.02677,"103":0.09635,"104":0.03212,"105":1.41319,"106":0.01606,"107":0.24089,"108":0.42289,"109":6.02748,"110":3.97193,"111":0.01071,"112":0,"113":0},F:{"9":0,"11":0,"12":0.00535,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00535,"30":0.01606,"31":0.01606,"32":0.01071,"33":0.00535,"34":0,"35":0,"36":0.00535,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.04818,"44":0,"45":0,"46":0.00535,"47":0,"48":0,"49":0,"50":0,"51":0,"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.04818,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00535,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01071,"94":0.72801,"95":3.22251,"9.5-9.6":0,"10.0-10.1":0.00535,"10.5":0,"10.6":0,"11.1":0,"11.5":0.01071,"11.6":0,"12.1":0.00535},B:{"12":0.01071,"13":0,"14":0,"15":0,"16":0,"17":0.01071,"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.00535,"97":0.00535,"98":0,"99":0.00535,"100":0,"101":0.02141,"102":0,"103":0,"104":0,"105":0.0803,"106":0.02141,"107":0.03212,"108":0.06424,"109":1.46137,"110":1.89496},E:{"4":0,"5":0,"6":0,"7":0.01606,"8":0.01071,"9":0.01071,"10":0,"11":0,"12":0,"13":0,"14":0.36936,"15":0,_:"0","3.1":0.00535,"3.2":0,"5.1":0.01071,"6.1":0,"7.1":0.00535,"9.1":0.00535,"10.1":0,"11.1":0.00535,"12.1":0.01071,"13.1":0.10706,"14.1":0.22483,"15.1":0.01606,"15.2-15.3":0.02677,"15.4":0.03747,"15.5":0.16059,"15.6":1.33825,"16.0":0.07494,"16.1":0.23553,"16.2":0.48712,"16.3":1.65943,"16.4":0.00535},G:{"8":0,"3.2":0,"4.0-4.1":0.01301,"4.2-4.3":0.01301,"5.0-5.1":0.03251,"6.0-6.1":0.02926,"7.0-7.1":0.11055,"8.1-8.4":0.19508,"9.0-9.2":0.03251,"9.3":0,"10.0-10.2":0,"10.3":0.04227,"11.0-11.2":0.05527,"11.3-11.4":0.0065,"12.0-12.1":0.02601,"12.2-12.5":0.29912,"13.0-13.1":0,"13.2":0,"13.3":0.01626,"13.4-13.7":0.0065,"14.0-14.4":0.14306,"14.5-14.8":0.41292,"15.0-15.1":0.05852,"15.2-15.3":0.28287,"15.4":0.14631,"15.5":0.2536,"15.6":1.83376,"16.0":6.46692,"16.1":6.46692,"16.2":9.20131,"16.3":4.81524,"16.4":0.03251},P:{"4":0.21616,"20":1.53369,"5.0-5.4":0,"6.2-6.4":0.01029,"7.2-7.4":0.01029,"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.01029,"17.0":0.02059,"18.0":0.01029,"19.0":2.16158},I:{"0":0,"3":0.00662,"4":0.04967,"2.1":0.03145,"2.2":0.03477,"2.3":0.05132,"4.1":0.13906,"4.2-4.3":0.10926,"4.4":0,"4.4.3-4.4.4":0.40726},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01651,"7":0.02752,"8":0.36332,"9":0.06606,"10":0.06606,"11":0.22019,"5.5":0},N:{"10":0.02788,"11":0.04182},S:{"2.5":0.00465,_:"3.0-3.1"},J:{"7":0,"10":0.02324},O:{"0":0.26023},H:{"0":0.59833},L:{"0":31.87921},R:{_:"0"},M:{"0":0.10688},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js index 6e4970eac52906..c64fff187b9106 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.00174,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00174,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00174,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00174,"103":0,"104":0,"105":0,"106":0,"107":0.00174,"108":0.12557,"109":0.07674,"110":0.00349,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00523,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01046,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00174,"47":0,"48":0,"49":0.00174,"50":0.00174,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00523,"61":0,"62":0,"63":0.00174,"64":0.00523,"65":0.00349,"66":0,"67":0,"68":0.00174,"69":0,"70":0.00174,"71":0.00174,"72":0.00349,"73":0,"74":0.00349,"75":0.00174,"76":0.00174,"77":0.00174,"78":0.00174,"79":0.22672,"80":0.00174,"81":0.00698,"83":0.00349,"84":0.00174,"85":0.00349,"86":0.00174,"87":0.00349,"88":0.00174,"89":0.00349,"90":0.00349,"91":0.00349,"92":0,"93":0.03139,"94":0,"95":0.00523,"96":0,"97":0.00174,"98":0,"99":0.00174,"100":0,"101":0.00349,"102":0.00174,"103":0.01395,"104":0.00698,"105":0.00174,"106":0.00349,"107":0.0279,"108":0.48483,"109":0.43251,"110":0.00174,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00698,"51":0,"52":0,"53":0,"54":0.00174,"55":0,"56":0,"57":0,"58":0,"60":0.00523,"62":0,"63":0.00872,"64":0.00349,"65":0.00174,"66":0.00872,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00174,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00174,"94":0.05058,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00174},B:{"12":0.00174,"13":0.00349,"14":0,"15":0,"16":0,"17":0,"18":0.00174,"79":0,"80":0,"81":0,"83":0,"84":0.00174,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00349,"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.00174,"106":0,"107":0.00698,"108":0.17963,"109":0.12382},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00349,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00174,"6.1":0,"7.1":0,"9.1":0.00523,"10.1":0,"11.1":0,"12.1":0.00174,"13.1":0.00523,"14.1":0.01221,"15.1":0,"15.2-15.3":0,"15.4":0.00349,"15.5":0.00698,"15.6":0.06802,"16.0":0,"16.1":0.01395,"16.2":0.0157,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.05819,"6.0-6.1":0,"7.0-7.1":0.01791,"8.1-8.4":0,"9.0-9.2":0.00224,"9.3":0.67147,"10.0-10.2":0,"10.3":0.74534,"11.0-11.2":0.00448,"11.3-11.4":0.0291,"12.0-12.1":1.87341,"12.2-12.5":4.05794,"13.0-13.1":0.37603,"13.2":0.0761,"13.3":0.64685,"13.4-13.7":0.16563,"14.0-14.4":1.33176,"14.5-14.8":1.58468,"15.0-15.1":0.5618,"15.2-15.3":0.65357,"15.4":0.84382,"15.5":0.7901,"15.6":0.82591,"16.0":1.47501,"16.1":2.50012,"16.2":1.66749,"16.3":0.12982},P:{"4":1.54597,"5.0-5.4":0.03134,"6.2-6.4":0.02089,"7.2-7.4":0.1149,"8.2":0,"9.2":0.05223,"10.1":0.06267,"11.1-11.2":0.02089,"12.0":0,"13.0":0.01045,"14.0":0.07312,"15.0":0.01045,"16.0":0.04178,"17.0":0.07312,"18.0":0.15669,"19.0":0.69987},I:{"0":0,"3":0,"4":0.00056,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00265,"4.2-4.3":0.01886,"4.4":0,"4.4.3-4.4.4":0.05026},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00174,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04954},Q:{"13.1":0},O:{"0":0.40454},H:{"0":0.90668},L:{"0":71.62133},S:{"2.5":0.00826}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00155,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00155,"100":0,"101":0,"102":0.00155,"103":0,"104":0,"105":0,"106":0,"107":0.00155,"108":0.00155,"109":0.14551,"110":0.06502,"111":0.00619,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00155,"38":0,"39":0.00155,"40":0.0031,"41":0,"42":0,"43":0.00155,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00155,"57":0.0031,"58":0,"59":0,"60":0.00774,"61":0,"62":0,"63":0.00155,"64":0,"65":0,"66":0,"67":0,"68":0.00155,"69":0.00155,"70":0.00155,"71":0,"72":0.00155,"73":0,"74":0.00155,"75":0,"76":0.00155,"77":0.00155,"78":0.00155,"79":0.00464,"80":0.00155,"81":0.02012,"83":0.00155,"84":0.00155,"85":0.00155,"86":0.00155,"87":0.00155,"88":0,"89":0.00155,"90":0.00774,"91":0,"92":0,"93":0.00155,"94":0,"95":0.00155,"96":0,"97":0.00155,"98":0.00155,"99":0,"100":0,"101":0.0031,"102":0,"103":0.01238,"104":0.0031,"105":0.00155,"106":0.0031,"107":0.01858,"108":0.03096,"109":0.5387,"110":0.26316,"111":0.00155,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00155,"60":0.00464,"62":0,"63":0.00464,"64":0.00155,"65":0,"66":0.00464,"67":0.02632,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00155,"94":0.01238,"95":0.02477,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0031},B:{"12":0.0031,"13":0,"14":0,"15":0.00155,"16":0,"17":0,"18":0.0031,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00155,"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.00155,"107":0.00155,"108":0.0031,"109":0.07121,"110":0.113},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00155,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00155,"6.1":0,"7.1":0,"9.1":0.0031,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0031,"14.1":0.00155,"15.1":0.00155,"15.2-15.3":0,"15.4":0,"15.5":0.00774,"15.6":0.02632,"16.0":0.00155,"16.1":0.00774,"16.2":0.00619,"16.3":0.00774,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02379,"6.0-6.1":0,"7.0-7.1":0.28289,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.71647,"10.0-10.2":0,"10.3":0.95442,"11.0-11.2":0,"11.3-11.4":0.04494,"12.0-12.1":1.1765,"12.2-12.5":5.35901,"13.0-13.1":0.45209,"13.2":0.02644,"13.3":0.71383,"13.4-13.7":0.16127,"14.0-14.4":1.3695,"14.5-14.8":1.81101,"15.0-15.1":0.58164,"15.2-15.3":0.58164,"15.4":0.98614,"15.5":1.09983,"15.6":1.3272,"16.0":1.44352,"16.1":3.03774,"16.2":1.40915,"16.3":1.07868,"16.4":0.00529},P:{"4":0.89218,"20":0.20748,"5.0-5.4":0.02075,"6.2-6.4":0.03112,"7.2-7.4":0.18674,"8.2":0.01037,"9.2":0.17636,"10.1":0,"11.1-11.2":0.0415,"12.0":0,"13.0":0.06225,"14.0":0.01037,"15.0":0.01037,"16.0":0.0415,"17.0":0.03112,"18.0":0.42534,"19.0":0.95443},I:{"0":0,"3":0,"4":0.00024,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00795,"4.2-4.3":0.01406,"4.4":0,"4.4.3-4.4.4":0.03729},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00155,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.27046},H:{"0":0.76017},L:{"0":68.82355},R:{_:"0"},M:{"0":0.02536},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js index fbfe9ee91b6d2a..83111e71a6cb9d 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.00095,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00095,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.03034,"109":0.01138,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00095,"39":0,"40":0.00664,"41":0,"42":0.0019,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00095,"51":0,"52":0,"53":0,"54":0,"55":0.0019,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00095,"63":0.00284,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0019,"70":0,"71":0,"72":0,"73":0,"74":0.00095,"75":0,"76":0,"77":0,"78":0.00095,"79":0.00095,"80":0,"81":0.00569,"83":0,"84":0,"85":0,"86":0,"87":0.00284,"88":0.00095,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00379,"100":0,"101":0,"102":0.00095,"103":0.00095,"104":0,"105":0.00095,"106":0.00095,"107":0.00284,"108":0.08911,"109":0.09954,"110":0.00095,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.0019,"31":0,"32":0.00379,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00758,"62":0,"63":0.00664,"64":0.0237,"65":0.00474,"66":0.01043,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00853,"9.5-9.6":0,"10.0-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.00095,"14":0.00095,"15":0.03318,"16":0,"17":0.00095,"18":0.00284,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00095,"90":0,"91":0,"92":0.00095,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0019,"100":0.00095,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00095,"108":0.04171,"109":0.03508},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.00095,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00095,"16.0":0,"16.1":0.00095,"16.2":0.0019,"16.3":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.07682,"10.0-10.2":0.13635,"10.3":0.06337,"11.0-11.2":0.20548,"11.3-11.4":0.26117,"12.0-12.1":0.63565,"12.2-12.5":3.89649,"13.0-13.1":0.47818,"13.2":0.08066,"13.3":0.28806,"13.4-13.7":0.87378,"14.0-14.4":1.58241,"14.5-14.8":0.63565,"15.0-15.1":1.45566,"15.2-15.3":0.84882,"15.4":0.28422,"15.5":0.56268,"15.6":1.83398,"16.0":1.56129,"16.1":1.10999,"16.2":0.90259,"16.3":0.0749},P:{"4":0.20406,"5.0-5.4":0.07142,"6.2-6.4":0.02041,"7.2-7.4":0.36731,"8.2":0,"9.2":0.34691,"10.1":0.02041,"11.1-11.2":0.14284,"12.0":0.04081,"13.0":0.02041,"14.0":0.67341,"15.0":0.04081,"16.0":0.22447,"17.0":0.26528,"18.0":0.30609,"19.0":0.78564},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0001,"4.2-4.3":0.00352,"4.4":0,"4.4.3-4.4.4":0.01491},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00095,"5.5":0},J:{"7":0,"10":0.02716},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02716},Q:{"13.1":0.00905},O:{"0":0.15388},H:{"0":6.67591},L:{"0":68.97973},S:{"2.5":0.46165}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0009,"102":0.0009,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.0018,"109":0.02607,"110":0.02427,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0009,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.0009,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00539,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0018,"56":0.0009,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0009,"70":0.0036,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0009,"79":0.0009,"80":0,"81":0.00629,"83":0,"84":0,"85":0,"86":0,"87":0.0018,"88":0.0009,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0009,"99":0.00629,"100":0,"101":0,"102":0.0009,"103":0.0009,"104":0,"105":0.0009,"106":0.0018,"107":0.0027,"108":0.0036,"109":0.0872,"110":0.05664,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.0009,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.0009,"33":0,"34":0,"35":0,"36":0,"37":0.0027,"38":0.0009,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0009,"60":0.00899,"62":0,"63":0.00719,"64":0.03057,"65":0.0045,"66":0.01978,"67":0.01438,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0018,"95":0.00539,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0009,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0009,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.0036,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0009,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.0009,"108":0.0018,"109":0.03686,"110":0.03956},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.0018,"16.0":0,"16.1":0.00719,"16.2":0.0009,"16.3":0.0009,"16.4":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.02061,"8.1-8.4":0,"9.0-9.2":0.01311,"9.3":0.01874,"10.0-10.2":0.09368,"10.3":0.12178,"11.0-11.2":0.08806,"11.3-11.4":0.16113,"12.0-12.1":0.41218,"12.2-12.5":3.97567,"13.0-13.1":0.71008,"13.2":0.05433,"13.3":0.34661,"13.4-13.7":0.93865,"14.0-14.4":1.26839,"14.5-14.8":1.14849,"15.0-15.1":1.10352,"15.2-15.3":0.69883,"15.4":0.32412,"15.5":0.56581,"15.6":1.4164,"16.0":1.37331,"16.1":0.9705,"16.2":0.83186,"16.3":0.82061,"16.4":0.00375},P:{"4":0.20152,"20":0.11084,"5.0-5.4":0.0403,"6.2-6.4":0.10076,"7.2-7.4":0.53403,"8.2":0.02015,"9.2":0.16122,"10.1":0.02015,"11.1-11.2":0.12091,"12.0":0.02015,"13.0":0.05038,"14.0":0.47358,"15.0":0.0403,"16.0":0.35266,"17.0":0.24183,"18.0":0.17129,"19.0":1.00761},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00031,"4.2-4.3":0.01228,"4.4":0,"4.4.3-4.4.4":0.0328},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.30943,_:"3.0-3.1"},J:{"7":0,"10":0.0091},O:{"0":0.08191},H:{"0":5.60056},L:{"0":71.15547},R:{_:"0"},M:{"0":0.0273},Q:{"13.1":0.0182}}; 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 8a5d14b451b56a..b9bf13fda599e5 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.07758,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00431,"48":0,"49":0,"50":0,"51":0,"52":0.00862,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01293,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0431,"78":0.02586,"79":0,"80":0.00431,"81":0.00431,"82":0.00862,"83":0,"84":0.00862,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01293,"92":0,"93":0,"94":0.00431,"95":0,"96":0.00431,"97":0.00862,"98":0,"99":0,"100":0.00862,"101":0,"102":0.03017,"103":0.00431,"104":0.00862,"105":0.00862,"106":0.00862,"107":0.01724,"108":1.04733,"109":0.58185,"110":0.00431,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00862,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01293,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.02155,"78":0.00431,"79":0.00431,"80":0.00431,"81":0.01293,"83":0.00431,"84":0.11637,"85":0.06034,"86":0.00431,"87":0.03879,"88":0,"89":0,"90":0,"91":0.00431,"92":0.00431,"93":0,"94":0.00431,"95":0.00431,"96":0.00431,"97":0.00431,"98":0.00862,"99":0.03017,"100":0.02155,"101":0.00431,"102":0.02586,"103":0.14223,"104":0.00431,"105":0.02155,"106":0.02155,"107":0.08189,"108":4.48671,"109":4.30138,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00431,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.48703,"94":0.24567,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00431,"18":0.00431,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00431,"93":0,"94":0,"95":0,"96":0,"97":0.04741,"98":0,"99":0.00862,"100":0,"101":0,"102":0,"103":0.00431,"104":0.00431,"105":0.01293,"106":0.00431,"107":0.05603,"108":1.51712,"109":1.5085},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00862,"14":0.06034,"15":0.01293,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00431,"12.1":0.0431,"13.1":0.1724,"14.1":0.37928,"15.1":0.03448,"15.2-15.3":0.02586,"15.4":0.03879,"15.5":0.05172,"15.6":0.45686,"16.0":0.14654,"16.1":0.28877,"16.2":0.49996,"16.3":0.0431},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00574,"9.3":0.0201,"10.0-10.2":0.00862,"10.3":0.02585,"11.0-11.2":0,"11.3-11.4":0.00287,"12.0-12.1":0.14647,"12.2-12.5":0.36762,"13.0-13.1":0.00862,"13.2":0.00862,"13.3":0.02872,"13.4-13.7":0.11488,"14.0-14.4":0.29869,"14.5-14.8":0.71514,"15.0-15.1":0.30156,"15.2-15.3":0.20391,"15.4":0.47676,"15.5":1.60834,"15.6":3.45505,"16.0":4.98872,"16.1":8.49834,"16.2":6.02265,"16.3":0.44229},P:{"4":0.17695,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06245,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02082,"12.0":0.02082,"13.0":0.03123,"14.0":0.03123,"15.0":0.03123,"16.0":0.07286,"17.0":0.10409,"18.0":0.19776,"19.0":4.37159},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00946,"4.4":0,"4.4.3-4.4.4":0.10243},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06896,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.51779},Q:{"13.1":0},O:{"0":0.00569},H:{"0":0.21548},L:{"0":45.80585},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00825,"53":0,"54":0.00413,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00413,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00413,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0165,"79":0,"80":0,"81":0,"82":0.03713,"83":0,"84":0.00413,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00413,"92":0,"93":0,"94":0,"95":0,"96":0.00413,"97":0,"98":0,"99":0,"100":0.00413,"101":0,"102":0.01238,"103":0,"104":0,"105":0.00413,"106":0.00413,"107":0.00825,"108":0.05363,"109":0.84975,"110":0.54863,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00825,"39":0,"40":0,"41":0,"42":0,"43":0.00413,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00413,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00413,"74":0,"75":0,"76":0,"77":0.00413,"78":0,"79":0.02475,"80":0,"81":0.00825,"83":0.02063,"84":0.00413,"85":0.00413,"86":0.05363,"87":0.02888,"88":0,"89":0,"90":0,"91":0.00413,"92":0.00413,"93":0,"94":0,"95":0,"96":0.00413,"97":0.00413,"98":0.00413,"99":0.00413,"100":0.02475,"101":0,"102":0.0165,"103":0.15263,"104":0.00825,"105":0.01238,"106":0.01238,"107":0.033,"108":0.17738,"109":4.422,"110":3.32475,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00413,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00413,"47":0,"48":0,"49":0,"50":0,"51":0,"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.06188,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.1155,"94":0.49088,"95":0.17325,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00413,"13":0,"14":0,"15":0,"16":0,"17":0.00825,"18":0.00413,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00413,"93":0.00413,"94":0,"95":0,"96":0,"97":0.04125,"98":0,"99":0,"100":0,"101":0,"102":0.00825,"103":0,"104":0,"105":0,"106":0.00413,"107":0.02475,"108":0.03713,"109":1.31175,"110":1.78613},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00413,"14":0.07425,"15":0.02475,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.033,"13.1":0.15675,"14.1":0.14438,"15.1":0.03713,"15.2-15.3":0.0165,"15.4":0.07838,"15.5":0.06188,"15.6":0.31763,"16.0":0.05363,"16.1":0.16088,"16.2":0.43725,"16.3":0.30525,"16.4":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.12635,"10.0-10.2":0,"10.3":0.07088,"11.0-11.2":0.00308,"11.3-11.4":0,"12.0-12.1":0.05239,"12.2-12.5":0.41602,"13.0-13.1":0.01541,"13.2":0.00308,"13.3":0.07088,"13.4-13.7":0.10786,"14.0-14.4":0.29892,"14.5-14.8":0.84745,"15.0-15.1":0.22496,"15.2-15.3":0.24345,"15.4":0.34514,"15.5":2.29583,"15.6":2.40061,"16.0":4.44682,"16.1":6.70567,"16.2":7.08471,"16.3":3.963,"16.4":0.03698},P:{"4":0.02068,"20":1.46799,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09304,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04135,"12.0":0.03101,"13.0":0.02068,"14.0":0.04135,"15.0":0.02068,"16.0":0.0827,"17.0":0.04135,"18.0":0.16541,"19.0":2.79126},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00682,"4.4":0,"4.4.3-4.4.4":0.17743},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0495,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.28788},H:{"0":0.06674},L:{"0":46.094},R:{_:"0"},M:{"0":0.29375},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js index 4f7447faf947da..44ac58b28b3644 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.00776,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00776,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0388,"94":0,"95":0,"96":0,"97":0.01552,"98":0.02328,"99":0.01552,"100":0.00776,"101":0,"102":0.0388,"103":0,"104":0,"105":0.00776,"106":0,"107":0.01552,"108":0.41123,"109":0.24829,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01552,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00776,"53":0,"54":0.00776,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00776,"64":0.01552,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00776,"74":0.00776,"75":0,"76":0,"77":0,"78":0,"79":0.03104,"80":0,"81":0.00776,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02328,"89":0,"90":0,"91":0.00776,"92":0.01552,"93":0.00776,"94":0.00776,"95":0.00776,"96":0.01552,"97":0.00776,"98":0,"99":0.02328,"100":0.01552,"101":0,"102":0.00776,"103":0.08535,"104":0.01552,"105":0.03104,"106":0.00776,"107":0.0388,"108":3.36741,"109":4.66316,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.04655,"62":0,"63":0,"64":0,"65":0,"66":0.00776,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00776,"89":0.1319,"90":0.03104,"91":0.00776,"92":0,"93":0.01552,"94":0.0388,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.05431,"13":0.00776,"14":0.00776,"15":0,"16":0,"17":0,"18":0.02328,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00776,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00776,"104":0,"105":0.8147,"106":0.58193,"107":0.44226,"108":24.64258,"109":22.75715},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.02328,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.01552,"15.1":0,"15.2-15.3":0.02328,"15.4":0,"15.5":0.00776,"15.6":0.07759,"16.0":0,"16.1":0.01552,"16.2":0.00776,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00121,"4.2-4.3":0,"5.0-5.1":0.00725,"6.0-6.1":0,"7.0-7.1":0.01571,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06527,"10.0-10.2":0,"10.3":0.01692,"11.0-11.2":0.02538,"11.3-11.4":0.00242,"12.0-12.1":0.08824,"12.2-12.5":4.73713,"13.0-13.1":0.00967,"13.2":0.0556,"13.3":0.81833,"13.4-13.7":0.19219,"14.0-14.4":0.36505,"14.5-14.8":0.76998,"15.0-15.1":0.14626,"15.2-15.3":0.39526,"15.4":0.8002,"15.5":0.19461,"15.6":0.36505,"16.0":0.44482,"16.1":1.10722,"16.2":0.67086,"16.3":0.14263},P:{"4":0.26145,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01046,"8.2":0,"9.2":0.08366,"10.1":0,"11.1-11.2":0.01046,"12.0":0,"13.0":0.01046,"14.0":0,"15.0":0,"16.0":0.02092,"17.0":0.01046,"18.0":0.01046,"19.0":0.24053},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00055,"4.2-4.3":0.02592,"4.4":0,"4.4.3-4.4.4":0.2318},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01552,"5.5":0},J:{"7":0,"10":0.00448},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02241},Q:{"13.1":0.00224},O:{"0":0.13894},H:{"0":0.11669},L:{"0":27.40462},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00783,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00783,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00783,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00783,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03134,"94":0,"95":0,"96":0,"97":0.00783,"98":0,"99":0.00783,"100":0,"101":0,"102":0.11751,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00783,"109":0.35253,"110":0.18018,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01567,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.03917,"51":0,"52":0.047,"53":0,"54":0.0235,"55":0,"56":0,"57":0,"58":0.01567,"59":0,"60":0,"61":0,"62":0.00783,"63":0,"64":0.01567,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.03917,"77":0,"78":0,"79":0.0235,"80":0,"81":0.00783,"83":0,"84":0,"85":0,"86":0.00783,"87":0,"88":0.21935,"89":0,"90":0,"91":0.00783,"92":0.0235,"93":0,"94":0.00783,"95":0,"96":0,"97":0.00783,"98":0,"99":0.03917,"100":0.17235,"101":0,"102":0.0235,"103":0.03134,"104":0.0235,"105":0,"106":0.00783,"107":0.00783,"108":0.047,"109":7.15244,"110":3.19627,"111":0,"112":0.00783,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01567,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00783,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00783,"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.20368,"90":0,"91":0,"92":0,"93":0.01567,"94":0.03917,"95":0.07051,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01567,"13":0,"14":0,"15":0,"16":0,"17":0.00783,"18":0.05484,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01567,"90":0,"91":0,"92":0.00783,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00783,"105":0.01567,"106":0.08617,"107":0.00783,"108":0.82257,"109":17.42282,"110":29.14248},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0235,"12":0,"13":0,"14":0.01567,"15":0.07051,_:"0","3.1":0,"3.2":0,"5.1":0.0235,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.01567,"15.1":0,"15.2-15.3":0.00783,"15.4":0,"15.5":0,"15.6":0.07051,"16.0":0,"16.1":0,"16.2":0,"16.3":0.01567,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00279,"6.0-6.1":0,"7.0-7.1":0.00975,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0209,"10.0-10.2":0,"10.3":0.01951,"11.0-11.2":0.03065,"11.3-11.4":0,"12.0-12.1":0.47653,"12.2-12.5":6.43314,"13.0-13.1":0.00418,"13.2":0.05016,"13.3":1.5522,"13.4-13.7":0.46956,"14.0-14.4":0.19786,"14.5-14.8":0.82905,"15.0-15.1":0.1254,"15.2-15.3":0.27171,"15.4":0.25359,"15.5":0.12401,"15.6":0.32047,"16.0":0.37899,"16.1":0.41104,"16.2":0.45702,"16.3":0.44727,"16.4":0},P:{"4":0.19614,"20":0.04129,"5.0-5.4":0,"6.2-6.4":0.01032,"7.2-7.4":0.03097,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01032,"12.0":0,"13.0":0,"14.0":0.01032,"15.0":0,"16.0":0.02065,"17.0":0.01032,"18.0":0.01032,"19.0":0.14452},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00069,"4.2-4.3":0.0309,"4.4":0,"4.4.3-4.4.4":0.15657},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01567,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.15162},H:{"0":0.34246},L:{"0":24.80218},R:{_:"0"},M:{"0":0.03466},Q:{"13.1":0}}; 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 f5115fba439691..9e9b22ffb4c945 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.00598,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.11958,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00598,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00598,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01196,"79":0,"80":0.00598,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00598,"87":0.00598,"88":0.0299,"89":0,"90":0,"91":0.00598,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00598,"98":0.00598,"99":0.00598,"100":0,"101":0,"102":0.07773,"103":0.00598,"104":0.00598,"105":0.17339,"106":0.01794,"107":0.03587,"108":2.62478,"109":1.59639,"110":0.00598,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.06577,"35":0,"36":0,"37":0,"38":0.06577,"39":0.05381,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.07773,"48":0,"49":0.20927,"50":0,"51":0,"52":0,"53":0.00598,"54":0,"55":0,"56":0.01794,"57":0.00598,"58":0.01196,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00598,"69":0,"70":0.00598,"71":0,"72":0,"73":0,"74":0,"75":0.00598,"76":0.00598,"77":0.01196,"78":0,"79":0.06577,"80":0.01196,"81":0.0299,"83":0.01196,"84":0.01196,"85":0.01196,"86":0.01794,"87":0.02392,"88":0.01794,"89":0.0299,"90":0.01196,"91":0.14948,"92":0.0299,"93":0.01794,"94":0.00598,"95":0.01196,"96":0.01196,"97":0.00598,"98":0.01196,"99":0.00598,"100":0.02392,"101":0.01794,"102":0.09566,"103":0.05979,"104":0.02392,"105":0.04185,"106":0.06577,"107":0.08969,"108":11.04919,"109":10.98342,"110":0.00598,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.05381,"26":0,"27":0,"28":0.00598,"29":0,"30":0,"31":0.42451,"32":0,"33":0,"34":0,"35":0,"36":0.00598,"37":0,"38":0,"39":0,"40":0.3707,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.2571,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01196,"74":0,"75":0,"76":0,"77":0.00598,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.26308,"94":0.5979,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.08969,"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.00598,"103":0,"104":0.02392,"105":0,"106":0.00598,"107":0.02392,"108":1.09416,"109":1.06426},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00598,"14":0.02392,"15":0.00598,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01196,"13.1":0.0299,"14.1":0.05979,"15.1":0.01196,"15.2-15.3":0.00598,"15.4":0.01794,"15.5":0.04185,"15.6":0.2272,"16.0":0.0299,"16.1":0.10164,"16.2":0.17937,"16.3":0.01794},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.43415,"8.1-8.4":0.00241,"9.0-9.2":0,"9.3":0.06753,"10.0-10.2":0,"10.3":0.07959,"11.0-11.2":0.00362,"11.3-11.4":0.01085,"12.0-12.1":0.00844,"12.2-12.5":0.31717,"13.0-13.1":0.01206,"13.2":0.00482,"13.3":0.01327,"13.4-13.7":0.0603,"14.0-14.4":0.11577,"14.5-14.8":0.34732,"15.0-15.1":0.08201,"15.2-15.3":0.1013,"15.4":0.1423,"15.5":0.32079,"15.6":1.19631,"16.0":1.34827,"16.1":3.53709,"16.2":2.63141,"16.3":0.2822},P:{"4":0.16813,"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.02102,"12.0":0.01051,"13.0":0.04203,"14.0":0.02102,"15.0":0.01051,"16.0":0.04203,"17.0":0.03152,"18.0":0.07356,"19.0":1.48162},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0679,"4.2-4.3":0.0679,"4.4":0,"4.4.3-4.4.4":1.15434},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03587,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.19703},Q:{"13.1":0},O:{"0":0.08444},H:{"0":0.24364},L:{"0":48.86863},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.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,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.12382,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0059,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0059,"69":0,"70":0,"71":0,"72":0.0059,"73":0,"74":0,"75":0,"76":0,"77":0.0059,"78":0.01179,"79":0,"80":0.0059,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.0059,"87":0.01179,"88":0.04127,"89":0,"90":0,"91":0.0059,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0059,"98":0.0059,"99":0.0059,"100":0,"101":0,"102":0.05896,"103":0.0059,"104":0.0059,"105":0.15919,"106":0.01179,"107":0.02358,"108":0.11792,"109":2.60014,"110":1.58013,"111":0.0059,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.07075,"35":0,"36":0,"37":0,"38":0.04127,"39":0.05896,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.08254,"48":0,"49":0.17688,"50":0,"51":0,"52":0,"53":0.0059,"54":0,"55":0,"56":0.02358,"57":0.01179,"58":0.01179,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0059,"71":0,"72":0,"73":0,"74":0,"75":0.0059,"76":0.0059,"77":0.0059,"78":0,"79":0.1415,"80":0.0059,"81":0.02948,"83":0.01179,"84":0.0059,"85":0.01179,"86":0.01769,"87":0.02948,"88":0.01769,"89":0.03538,"90":0.04127,"91":0.1474,"92":0.04717,"93":0.01179,"94":0.0059,"95":0.01769,"96":0.01179,"97":0.0059,"98":0.0059,"99":0.0059,"100":0.02358,"101":0.01769,"102":0.08254,"103":0.05896,"104":0.01769,"105":0.04717,"106":0.05306,"107":0.04127,"108":0.35376,"109":14.3037,"110":6.50918,"111":0.0059,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.06486,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.41862,"32":0,"33":0,"34":0,"35":0,"36":0.0059,"37":0,"38":0,"39":0,"40":0.38914,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.24763,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0059,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03538,"94":0.41272,"95":0.32428,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.09434,"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.01179,"108":0.04127,"109":0.94336,"110":1.13203},E:{"4":0,"5":0,"6":0,"7":0,"8":0.0059,"9":0,"10":0,"11":0,"12":0,"13":0.0059,"14":0.01769,"15":0.0059,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01179,"13.1":0.02948,"14.1":0.05306,"15.1":0.01179,"15.2-15.3":0.0059,"15.4":0.01769,"15.5":0.02948,"15.6":0.1533,"16.0":0.02358,"16.1":0.05896,"16.2":0.18278,"16.3":0.1533,"16.4":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.41097,"8.1-8.4":0.0047,"9.0-9.2":0.00117,"9.3":0.06693,"10.0-10.2":0,"10.3":0.07515,"11.0-11.2":0.0047,"11.3-11.4":0.00822,"12.0-12.1":0.00822,"12.2-12.5":0.32643,"13.0-13.1":0.00352,"13.2":0.00235,"13.3":0.01292,"13.4-13.7":0.05401,"14.0-14.4":0.11507,"14.5-14.8":0.29942,"15.0-15.1":0.05284,"15.2-15.3":0.08572,"15.4":0.11272,"15.5":0.26537,"15.6":0.83016,"16.0":0.95228,"16.1":2.494,"16.2":2.67131,"16.3":2.00906,"16.4":0.00822},P:{"4":0.21766,"20":0.54933,"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.01036,"12.0":0.01036,"13.0":0.02073,"14.0":0.02073,"15.0":0.01036,"16.0":0.05182,"17.0":0.03109,"18.0":0.04146,"19.0":1.06756},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.09028,"4.2-4.3":0.18057,"4.4":0,"4.4.3-4.4.4":0.99313},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04127,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.06977},H:{"0":0.24478},L:{"0":49.99049},R:{_:"0"},M:{"0":0.21751},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js index cc31395d0a5583..16bb65557f7530 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.00341,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.04427,"74":0,"75":0,"76":0,"77":0,"78":0.00681,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00341,"103":0,"104":0.01362,"105":0.00341,"106":0.00341,"107":0.00681,"108":0.32688,"109":0.19409,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00341,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00341,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00341,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00341,"77":0,"78":0.00341,"79":0.02043,"80":0,"81":0.00681,"83":0,"84":0.00341,"85":0,"86":0,"87":0.00681,"88":0.00681,"89":0,"90":0,"91":0.01362,"92":0.01022,"93":0.00341,"94":0.00341,"95":0.00341,"96":0.00681,"97":0.00681,"98":0.00681,"99":0.00681,"100":0.00681,"101":0.00681,"102":0.01022,"103":0.03405,"104":0.01362,"105":0.02043,"106":0.02384,"107":0.07491,"108":3.57185,"109":3.76934,"110":0,"111":0.00341,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00341,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00341,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00341,"93":0.33369,"94":0.33029,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00341,"93":0.00341,"94":0,"95":0,"96":0.00341,"97":0,"98":0.00681,"99":0,"100":0.00341,"101":0,"102":0,"103":0.00341,"104":0.00341,"105":0.00341,"106":0.00341,"107":0.01703,"108":0.45627,"109":0.51075},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01022,"15":0.00341,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00341,"13.1":0.01703,"14.1":0.02724,"15.1":0.00341,"15.2-15.3":0.00681,"15.4":0.01022,"15.5":0.02724,"15.6":0.16004,"16.0":0.02043,"16.1":0.09534,"16.2":0.17025,"16.3":0.01703},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01724,"7.0-7.1":0.00784,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01568,"10.0-10.2":0,"10.3":0.01097,"11.0-11.2":0,"11.3-11.4":0.00157,"12.0-12.1":0.00314,"12.2-12.5":0.20537,"13.0-13.1":0.00314,"13.2":0.00314,"13.3":0.01097,"13.4-13.7":0.04546,"14.0-14.4":0.14109,"14.5-14.8":0.27435,"15.0-15.1":0.07682,"15.2-15.3":0.10347,"15.4":0.16618,"15.5":0.27905,"15.6":1.24005,"16.0":2.24808,"16.1":5.08563,"16.2":4.38957,"16.3":0.52988},P:{"4":0.09153,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.18305,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.06102,"12.0":0.01017,"13.0":0.04068,"14.0":0.06102,"15.0":0.04068,"16.0":0.12204,"17.0":0.07119,"18.0":0.14238,"19.0":2.66446},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01881,"4.4":0,"4.4.3-4.4.4":0.12227},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01022,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.23742},Q:{"13.1":0},O:{"0":0.05936},H:{"0":0.27472},L:{"0":68.68621},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00358,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.04291,"74":0,"75":0,"76":0,"77":0,"78":0.00358,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00358,"103":0,"104":0.01073,"105":0.00358,"106":0.00358,"107":0.00358,"108":0.00715,"109":0.32542,"110":0.21456,"111":0.00358,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00358,"50":0.00358,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00358,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00358,"77":0,"78":0.00358,"79":0.03218,"80":0,"81":0.00715,"83":0,"84":0.00358,"85":0,"86":0,"87":0.00715,"88":0.00715,"89":0,"90":0.00358,"91":0.01788,"92":0.01073,"93":0.00358,"94":0.00358,"95":0.00358,"96":0.00358,"97":0.00715,"98":0.00715,"99":0.00715,"100":0.00715,"101":0.00358,"102":0.00715,"103":0.03934,"104":0.01788,"105":0.02146,"106":0.02146,"107":0.03576,"108":0.12874,"109":4.69529,"110":3.28634,"111":0.00358,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01073,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.05364,"94":0.43985,"95":0.18595,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00358,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01073,"99":0,"100":0.00358,"101":0,"102":0,"103":0.00358,"104":0.00358,"105":0.00358,"106":0.00358,"107":0.01073,"108":0.0143,"109":0.43985,"110":0.58289},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00358,"14":0.01073,"15":0.00358,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02146,"14.1":0.03218,"15.1":0.00358,"15.2-15.3":0.00715,"15.4":0.01788,"15.5":0.02146,"15.6":0.12158,"16.0":0.01788,"16.1":0.07152,"16.2":0.14304,"16.3":0.13589,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00156,"6.0-6.1":0.01711,"7.0-7.1":0.00311,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.014,"10.0-10.2":0,"10.3":0.00933,"11.0-11.2":0,"11.3-11.4":0.00156,"12.0-12.1":0.00156,"12.2-12.5":0.18514,"13.0-13.1":0.00311,"13.2":0.00156,"13.3":0.00933,"13.4-13.7":0.04201,"14.0-14.4":0.10579,"14.5-14.8":0.23959,"15.0-15.1":0.07001,"15.2-15.3":0.08712,"15.4":0.14158,"15.5":0.23492,"15.6":0.86968,"16.0":1.66002,"16.1":3.46784,"16.2":4.26285,"16.3":3.37916,"16.4":0.02178},P:{"4":0.0912,"20":0.94238,"5.0-5.4":0.01013,"6.2-6.4":0,"7.2-7.4":0.1824,"8.2":0,"9.2":0.01013,"10.1":0,"11.1-11.2":0.0608,"12.0":0.01013,"13.0":0.0304,"14.0":0.05067,"15.0":0.02027,"16.0":0.1216,"17.0":0.07093,"18.0":0.10133,"19.0":1.70236},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13934},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00715,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.08351},H:{"0":0.24327},L:{"0":67.95531},R:{_:"0"},M:{"0":0.23769},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js index d38cf6bd1045e2..f8b54eb67b8727 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,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.07855,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00436,"85":0,"86":0,"87":0,"88":0,"89":0,"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.01309,"103":0,"104":0.00873,"105":0,"106":0.02182,"107":0.01309,"108":0.44949,"109":0.25311,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00873,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01746,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00436,"77":0,"78":0,"79":0.048,"80":0,"81":0,"83":0.01309,"84":0,"85":0,"86":0,"87":0.01309,"88":0,"89":0,"90":0,"91":0.00873,"92":0.00436,"93":0.02182,"94":0,"95":0,"96":0,"97":0.00436,"98":0.00436,"99":0.03928,"100":0.00436,"101":0,"102":0.00436,"103":0.19638,"104":0.02618,"105":0.03055,"106":0.02618,"107":0.19202,"108":5.58156,"109":4.2069,"110":0.01309,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00436,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"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.00873,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.15274,"94":0.17456,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00436,"15":0,"16":0,"17":0,"18":0.00436,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00873,"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.11346,"108":1.19137,"109":1.139},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02618,"14":0.048,"15":0.01309,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00873,"12.1":0.03491,"13.1":0.10037,"14.1":0.19202,"15.1":0.03055,"15.2-15.3":0.0611,"15.4":0.1571,"15.5":0.14401,"15.6":1.23938,"16.0":0.08292,"16.1":0.47131,"16.2":0.56296,"16.3":0.03055},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.50286,"10.0-10.2":0,"10.3":0.04152,"11.0-11.2":0,"11.3-11.4":0.20299,"12.0-12.1":0.08765,"12.2-12.5":1.01956,"13.0-13.1":0.01845,"13.2":0.0692,"13.3":0.4475,"13.4-13.7":0.2399,"14.0-14.4":0.72892,"14.5-14.8":0.92729,"15.0-15.1":0.43366,"15.2-15.3":0.41982,"15.4":0.5167,"15.5":1.69773,"15.6":6.67557,"16.0":6.90163,"16.1":13.79403,"16.2":8.2718,"16.3":0.43366},P:{"4":0.23949,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02083,"8.2":0.01041,"9.2":0.01041,"10.1":0,"11.1-11.2":0.01041,"12.0":0,"13.0":0.01041,"14.0":0.02083,"15.0":0.02083,"16.0":0.22908,"17.0":0.09371,"18.0":0.19784,"19.0":3.77981},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1871},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01746,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.19726},Q:{"13.1":0},O:{"0":0.05636},H:{"0":0.19742},L:{"0":30.87462},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00437,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03061,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00875,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00437,"103":0,"104":0,"105":0,"106":0,"107":0.00437,"108":0.01312,"109":0.68219,"110":0.36296,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00875,"50":0,"51":0,"52":0,"53":0.01312,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00437,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00875,"74":0,"75":0,"76":0.00437,"77":0.00437,"78":0,"79":0.03936,"80":0,"81":0,"83":0.00875,"84":0,"85":0.00437,"86":0.00437,"87":0.01312,"88":0,"89":0,"90":0,"91":0.01312,"92":0.03498,"93":0.00875,"94":0,"95":0,"96":0.00875,"97":0.00437,"98":0.00875,"99":0.04373,"100":0.00437,"101":0.00437,"102":0,"103":0.09183,"104":0.00875,"105":0.03061,"106":0.01312,"107":0.03936,"108":0.33672,"109":5.84233,"110":3.59461,"111":0.03498,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00437,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01749,"94":0.15743,"95":0.07434,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01749,"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.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.00875,"106":0.00437,"107":0.0481,"108":0.03061,"109":1.60926,"110":1.30753},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00875,"14":0.08746,"15":0.04373,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00437,"12.1":0.03936,"13.1":0.1137,"14.1":0.14431,"15.1":0.02187,"15.2-15.3":0.03498,"15.4":0.13119,"15.5":0.18367,"15.6":0.85711,"16.0":0.03498,"16.1":0.37171,"16.2":0.65595,"16.3":0.41981,"16.4":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.60974,"10.0-10.2":0,"10.3":0.04517,"11.0-11.2":0,"11.3-11.4":0.15808,"12.0-12.1":0.23486,"12.2-12.5":1.23754,"13.0-13.1":0.00903,"13.2":0.1355,"13.3":0.06775,"13.4-13.7":0.16711,"14.0-14.4":0.41552,"14.5-14.8":0.86718,"15.0-15.1":0.31164,"15.2-15.3":0.71362,"15.4":0.35229,"15.5":1.3098,"15.6":4.67012,"16.0":4.94112,"16.1":10.09903,"16.2":10.4197,"16.3":6.19672,"16.4":0.02258},P:{"4":0.23177,"20":1.78039,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0316,"8.2":0,"9.2":0.01053,"10.1":0,"11.1-11.2":0.0316,"12.0":0,"13.0":0.01053,"14.0":0.02107,"15.0":0.01053,"16.0":0.08428,"17.0":0.08428,"18.0":0.13695,"19.0":2.26499},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.17306},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00437,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.03376},H:{"0":0.1758},L:{"0":29.59092},R:{_:"0"},M:{"0":0.21945},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GW.js index 082d69f34d1089..c95b162ea60c4b 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.00833,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.05831,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.02083,"109":0.00417,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00833,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00417,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.03332,"83":0,"84":0.00417,"85":0,"86":0.05831,"87":0,"88":0.00417,"89":0,"90":0,"91":0.00417,"92":0.00417,"93":0,"94":0,"95":0.00417,"96":0.0125,"97":0,"98":0.00417,"99":0,"100":0,"101":0,"102":0.23324,"103":0.00417,"104":0,"105":0,"106":0,"107":0.01666,"108":6.11422,"109":6.94722,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00417,"62":0,"63":0,"64":0,"65":0,"66":0.00417,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00417,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.19576,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00417,"18":0.03749,"79":0,"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.00833,"104":0,"105":0,"106":0,"107":0.03332,"108":0.61642,"109":0.74137},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.00417,"14.1":0.00417,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0.04582,"16.2":0.0125,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00511,"6.0-6.1":0,"7.0-7.1":3.61062,"8.1-8.4":0.11241,"9.0-9.2":0,"9.3":0.39853,"10.0-10.2":0.02895,"10.3":0.02555,"11.0-11.2":0.00341,"11.3-11.4":0.00852,"12.0-12.1":0.53819,"12.2-12.5":1.00314,"13.0-13.1":0.39002,"13.2":0.0017,"13.3":0,"13.4-13.7":0.0562,"14.0-14.4":0.16691,"14.5-14.8":1.68609,"15.0-15.1":0.14136,"15.2-15.3":0.04769,"15.4":0.12092,"15.5":0.88733,"15.6":0.64378,"16.0":5.00889,"16.1":0.30145,"16.2":0.31678,"16.3":0.08175},P:{"4":0.17241,"5.0-5.4":0.01014,"6.2-6.4":0.01014,"7.2-7.4":1.7241,"8.2":0,"9.2":0.11156,"10.1":0,"11.1-11.2":0.05071,"12.0":0.02028,"13.0":0,"14.0":0.01014,"15.0":0.10142,"16.0":0.03043,"17.0":0.01014,"18.0":0.01014,"19.0":0.29411},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00043,"4.1":0,"4.2-4.3":0.00043,"4.4":0,"4.4.3-4.4.4":0.08161},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00417,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02918},Q:{"13.1":0.01751},O:{"0":0.01167},H:{"0":0.46956},L:{"0":64.00959},S:{"2.5":0.46097}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.03851,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.11938,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.01155,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0154,"110":0.01926,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00385,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00385,"41":0,"42":0,"43":0.00385,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00385,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00385,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00385,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.16559,"78":0,"79":0.00385,"80":0,"81":0.0154,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00385,"90":0,"91":0.0077,"92":0,"93":0.00385,"94":0,"95":0.00385,"96":0,"97":0.00385,"98":0,"99":0,"100":0.00385,"101":0,"102":0,"103":0.00385,"104":0.00385,"105":0,"106":0.0077,"107":0.01155,"108":0.01155,"109":7.95232,"110":2.06029,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0077,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00385,"95":0.04621,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00385,"17":0,"18":0.08472,"79":0,"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,"107":0.00385,"108":0.00385,"109":0.93964,"110":1.08598},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.04236,"16.0":0,"16.1":0,"16.2":0.00385,"16.3":0.00385,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.15522,"6.0-6.1":0,"7.0-7.1":3.17793,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18402,"10.0-10.2":0.17602,"10.3":0,"11.0-11.2":0.37284,"11.3-11.4":0.0048,"12.0-12.1":0.55526,"12.2-12.5":0.84969,"13.0-13.1":0.31523,"13.2":0,"13.3":0.0176,"13.4-13.7":0.0256,"14.0-14.4":0.19202,"14.5-14.8":0.23202,"15.0-15.1":0.47525,"15.2-15.3":0.11681,"15.4":0.33764,"15.5":1.23213,"15.6":1.01611,"16.0":4.07722,"16.1":0.29603,"16.2":0.19522,"16.3":0.19202,"16.4":0},P:{"4":0.39417,"20":0.04043,"5.0-5.4":0.01011,"6.2-6.4":0.02021,"7.2-7.4":0.78834,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.10107,"12.0":0,"13.0":0,"14.0":0.01011,"15.0":0.11118,"16.0":0.03032,"17.0":0.01011,"18.0":0.03032,"19.0":0.21225},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00183,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.10519},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00385,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.47347,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01845},H:{"0":0.75097},L:{"0":68.74355},R:{_:"0"},M:{"0":0.00615},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js index 53f43068572304..99252f3fc35ed0 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,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00356,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01422,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00356,"103":0,"104":0,"105":0,"106":0,"107":0.00711,"108":0.21692,"109":0.11735,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00356,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00356,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00356,"66":0.00356,"67":0,"68":0,"69":0.00711,"70":0.00356,"71":0,"72":0,"73":0.00356,"74":0,"75":0.00711,"76":0.02134,"77":0.01422,"78":0,"79":0.07823,"80":0,"81":0.01778,"83":0.01067,"84":0,"85":0,"86":0.01422,"87":0.03556,"88":0.00356,"89":0.00711,"90":0.00356,"91":0.02134,"92":0.00356,"93":0.03556,"94":0.00356,"95":0,"96":0.01067,"97":0.02489,"98":0.01422,"99":0.00711,"100":0.00356,"101":0.00711,"102":0.00356,"103":0.28092,"104":0.01067,"105":0.04623,"106":0.02489,"107":0.09601,"108":3.61645,"109":2.5212,"110":0.02845,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00356,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00711,"64":0.00356,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00711,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00356,"93":0.07112,"94":0.17069,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00356,"13":0,"14":0,"15":0.00711,"16":0.00356,"17":0.06401,"18":0.00711,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00356,"90":0.00356,"91":0,"92":0.01067,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00711,"100":0,"101":0,"102":0,"103":0.00356,"104":0.00356,"105":0.01067,"106":0.02845,"107":0.04267,"108":1.04546,"109":0.84277},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00356,"14":0.00711,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01067,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00711,"13.1":0.01778,"14.1":0.02845,"15.1":0.00356,"15.2-15.3":0.00356,"15.4":0.00711,"15.5":0.00711,"15.6":0.14224,"16.0":0.00711,"16.1":0.05334,"16.2":0.43028,"16.3":0.01067},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02569,"6.0-6.1":0,"7.0-7.1":0.4579,"8.1-8.4":0.01209,"9.0-9.2":0,"9.3":0.17228,"10.0-10.2":0,"10.3":0.11032,"11.0-11.2":0.01511,"11.3-11.4":0.00302,"12.0-12.1":0.01813,"12.2-12.5":0.44279,"13.0-13.1":0,"13.2":0,"13.3":0.01058,"13.4-13.7":0.04836,"14.0-14.4":0.13752,"14.5-14.8":0.55764,"15.0-15.1":0.06347,"15.2-15.3":0.15868,"15.4":0.10125,"15.5":0.23877,"15.6":1.35557,"16.0":1.79685,"16.1":3.7675,"16.2":3.47734,"16.3":0.19495},P:{"4":0.35222,"5.0-5.4":0.03202,"6.2-6.4":0,"7.2-7.4":0.2775,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.08539,"12.0":0,"13.0":0.03202,"14.0":0.04269,"15.0":0.19212,"16.0":0.11741,"17.0":0.4803,"18.0":0.14943,"19.0":4.41871},I:{"0":0,"3":0,"4":0.03365,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.10095,"4.4":0,"4.4.3-4.4.4":1.17778},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00356,"11":0.01778,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13532},Q:{"13.1":0},O:{"0":0.74106},H:{"0":0.28064},L:{"0":65.02067},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00365,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01095,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01095,"108":0.00365,"109":0.1934,"110":0.10217,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0073,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00365,"64":0,"65":0,"66":0.00365,"67":0,"68":0,"69":0.0073,"70":0,"71":0,"72":0,"73":0.00365,"74":0.00365,"75":0.0073,"76":0.02189,"77":0.00365,"78":0,"79":0.04014,"80":0,"81":0.01825,"83":0.0073,"84":0.00365,"85":0,"86":0.00365,"87":0.0146,"88":0.00365,"89":0,"90":0,"91":0.01095,"92":0.0073,"93":0.10947,"94":0.00365,"95":0,"96":0.01095,"97":0.00365,"98":0.00365,"99":0.00365,"100":0.0073,"101":0.00365,"102":0.01095,"103":0.21529,"104":0.01095,"105":0.06568,"106":0.0146,"107":0.04379,"108":0.25543,"109":4.0066,"110":2.44118,"111":0.00365,"112":0.00365,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0073,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02919,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00365,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00365,"94":0.10947,"95":0.09487,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00365,"14":0,"15":0.00365,"16":0.00365,"17":0,"18":0.01095,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00365,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00365,"102":0.00365,"103":0,"104":0,"105":0.0073,"106":0.02189,"107":0.02919,"108":0.02919,"109":1.00712,"110":1.32094},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00365,"14":0.0073,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0073,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.05838,"14.1":0.02919,"15.1":0.00365,"15.2-15.3":0,"15.4":0.0073,"15.5":0.06933,"15.6":0.12042,"16.0":0.01095,"16.1":0.04014,"16.2":0.14596,"16.3":0.21894,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03942,"6.0-6.1":0.04397,"7.0-7.1":0.23653,"8.1-8.4":0,"9.0-9.2":0.00152,"9.3":0.11978,"10.0-10.2":0,"10.3":0.03032,"11.0-11.2":0.01213,"11.3-11.4":0.00455,"12.0-12.1":0.00606,"12.2-12.5":0.32447,"13.0-13.1":0,"13.2":0,"13.3":0.01668,"13.4-13.7":0.06975,"14.0-14.4":0.08794,"14.5-14.8":0.28656,"15.0-15.1":0.08642,"15.2-15.3":0.13191,"15.4":0.10613,"15.5":0.24108,"15.6":1.1599,"16.0":1.216,"16.1":2.46688,"16.2":3.78144,"16.3":2.04234,"16.4":0.01365},P:{"4":0.35914,"20":1.54219,"5.0-5.4":0.02113,"6.2-6.4":0,"7.2-7.4":0.3697,"8.2":0,"9.2":0.02113,"10.1":0,"11.1-11.2":0.09507,"12.0":0.01056,"13.0":0.03169,"14.0":0.02113,"15.0":0.15844,"16.0":0.13732,"17.0":0.38027,"18.0":0.12676,"19.0":2.80974},I:{"0":0,"3":0,"4":0.13989,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.06319},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00365,"11":0.0073,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.37471},H:{"0":0.33671},L:{"0":65.53124},R:{_:"0"},M:{"0":0.10797},Q:{"13.1":0.01905}}; 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 92ac26fb8295a1..b1be2e98e8f16a 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.02198,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"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.03297,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01099,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02198,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0055,"89":0.0055,"90":0.01649,"91":0.01099,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0055,"101":0.0055,"102":0.02198,"103":0.0055,"104":0.0055,"105":0.01099,"106":0.01099,"107":0.02198,"108":0.59346,"109":0.32421,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.01099,"27":0,"28":0,"29":0,"30":0.0055,"31":0,"32":0,"33":0,"34":0.06045,"35":0,"36":0,"37":0,"38":0.12089,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01099,"49":0.03847,"50":0,"51":0,"52":0,"53":0.03297,"54":0,"55":0.01649,"56":0.0055,"57":0.0055,"58":0,"59":0,"60":0.0055,"61":0.02748,"62":0.0055,"63":0.01099,"64":0,"65":0.0055,"66":0,"67":0.01649,"68":0.0055,"69":0.01099,"70":0.01099,"71":0.0055,"72":0.01099,"73":0.0055,"74":0.01649,"75":0.02198,"76":0.0055,"77":0.0055,"78":0.02198,"79":0.52203,"80":0.02198,"81":0.02198,"83":0.07144,"84":0.02198,"85":0.01649,"86":0.04946,"87":0.09891,"88":0.01099,"89":0.01649,"90":0.01099,"91":0.03297,"92":0.08792,"93":0.0055,"94":0.08792,"95":0.02748,"96":0.04396,"97":0.07693,"98":0.04946,"99":0.06594,"100":0.06045,"101":0.04396,"102":0.05495,"103":0.2253,"104":0.07693,"105":0.12639,"106":0.14287,"107":0.3297,"108":7.98973,"109":6.58851,"110":0.01099,"111":0.0055,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01649,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02198,"37":0,"38":0,"39":0,"40":0.0055,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.06594,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0055,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03847,"94":0.10441,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0055,"13":0,"14":0,"15":0,"16":0,"17":0.0055,"18":0.01649,"79":0,"80":0,"81":0,"83":0.0055,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.0055,"103":0.0055,"104":0.0055,"105":0.0055,"106":0.01099,"107":0.04946,"108":1.57157,"109":1.35177},E:{"4":0,"5":0,"6":0,"7":0,"8":0.0055,"9":0,"10":0,"11":0,"12":0.0055,"13":0.04396,"14":0.15936,"15":0.04396,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0055,"12.1":0.03297,"13.1":0.12089,"14.1":0.34619,"15.1":0.04946,"15.2-15.3":0.05495,"15.4":0.19233,"15.5":0.31322,"15.6":1.89578,"16.0":0.10441,"16.1":0.40114,"16.2":0.78029,"16.3":0.06594},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00319,"5.0-5.1":0.02234,"6.0-6.1":0.01915,"7.0-7.1":0.05425,"8.1-8.4":0.04149,"9.0-9.2":0.02234,"9.3":0.32871,"10.0-10.2":0.00638,"10.3":0.19787,"11.0-11.2":0.03511,"11.3-11.4":0.03511,"12.0-12.1":0.05106,"12.2-12.5":0.99252,"13.0-13.1":0.03511,"13.2":0.01277,"13.3":0.07659,"13.4-13.7":0.19787,"14.0-14.4":0.667,"14.5-14.8":1.32123,"15.0-15.1":0.38616,"15.2-15.3":0.47552,"15.4":0.84572,"15.5":1.02763,"15.6":5.02005,"16.0":2.91693,"16.1":9.15928,"16.2":5.64237,"16.3":0.40531},P:{"4":1.22573,"5.0-5.4":0.06451,"6.2-6.4":0.01075,"7.2-7.4":0.03226,"8.2":0.01075,"9.2":0.04301,"10.1":0,"11.1-11.2":0.03226,"12.0":0.01075,"13.0":0.08602,"14.0":0.04301,"15.0":0.03226,"16.0":0.05376,"17.0":0.15053,"18.0":0.18278,"19.0":4.7954},I:{"0":0,"3":0,"4":0.01726,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02014,"4.2-4.3":0.01151,"4.4":0,"4.4.3-4.4.4":0.08055},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03266,"9":0.16332,"10":0,"11":0.39198,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.21624},Q:{"13.1":0.0901},O:{"0":0.36491},H:{"0":0.0981},L:{"0":30.66206},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02191,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01096,"53":0,"54":0,"55":0.00548,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00548,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02191,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00548,"89":0.00548,"90":0.00548,"91":0.01096,"92":0.00548,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00548,"102":0.02191,"103":0.00548,"104":0.00548,"105":0.00548,"106":0.00548,"107":0.01096,"108":0.02739,"109":0.52041,"110":0.33964,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00548,"23":0,"24":0,"25":0,"26":0.00548,"27":0,"28":0,"29":0,"30":0.00548,"31":0,"32":0,"33":0,"34":0.05478,"35":0,"36":0,"37":0,"38":0.12599,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00548,"49":0.04382,"50":0,"51":0,"52":0,"53":0.03835,"54":0,"55":0.01643,"56":0.00548,"57":0.00548,"58":0,"59":0,"60":0,"61":0.02739,"62":0.00548,"63":0.01096,"64":0,"65":0.00548,"66":0,"67":0.01096,"68":0.00548,"69":0.01096,"70":0.01096,"71":0.00548,"72":0.00548,"73":0.00548,"74":0.01643,"75":0.01096,"76":0.00548,"77":0.00548,"78":0.02739,"79":0.52589,"80":0.02191,"81":0.02739,"83":0.05478,"84":0.01096,"85":0.01643,"86":0.04382,"87":0.13147,"88":0.00548,"89":0.01643,"90":0.01096,"91":0.03287,"92":0.08765,"93":0.01643,"94":0.0986,"95":0.02191,"96":0.03835,"97":0.08217,"98":0.06574,"99":0.06026,"100":0.06574,"101":0.05478,"102":0.0493,"103":0.20269,"104":0.08217,"105":0.12052,"106":0.12052,"107":0.20269,"108":0.66832,"109":8.73741,"110":5.39583,"111":0.01096,"112":0.01096,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01096,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02191,"37":0,"38":0,"39":0,"40":0.00548,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.06574,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00548,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00548,"94":0.07121,"95":0.05478,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00548,"18":0.01096,"79":0,"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.00548,"103":0.00548,"104":0.00548,"105":0.00548,"106":0.01096,"107":0.02739,"108":0.09313,"109":1.19968,"110":1.64888},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00548,"13":0.03835,"14":0.15886,"15":0.04382,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00548,"12.1":0.02739,"13.1":0.11504,"14.1":0.3232,"15.1":0.04382,"15.2-15.3":0.0493,"15.4":0.16982,"15.5":0.27938,"15.6":1.33663,"16.0":0.08217,"16.1":0.2739,"16.2":1.05725,"16.3":0.56423,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0063,"5.0-5.1":0.02837,"6.0-6.1":0.01891,"7.0-7.1":0.05043,"8.1-8.4":0.04097,"9.0-9.2":0.01576,"9.3":0.31203,"10.0-10.2":0.0063,"10.3":0.19226,"11.0-11.2":0.03467,"11.3-11.4":0.04097,"12.0-12.1":0.05988,"12.2-12.5":0.99912,"13.0-13.1":0.03467,"13.2":0.01261,"13.3":0.07249,"13.4-13.7":0.19226,"14.0-14.4":0.59884,"14.5-14.8":0.99597,"15.0-15.1":0.36561,"15.2-15.3":0.42234,"15.4":0.75328,"15.5":0.89826,"15.6":3.57414,"16.0":2.39537,"16.1":6.7354,"16.2":7.1735,"16.3":3.72543,"16.4":0.00946},P:{"4":1.22215,"20":2.14412,"5.0-5.4":0.07504,"6.2-6.4":0.01072,"7.2-7.4":0.01072,"8.2":0.01072,"9.2":0.03216,"10.1":0,"11.1-11.2":0.02144,"12.0":0.01072,"13.0":0.08576,"14.0":0.03216,"15.0":0.02144,"16.0":0.06432,"17.0":0.13937,"18.0":0.15009,"19.0":2.93745},I:{"0":0,"3":0,"4":0.01504,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01504,"4.2-4.3":0.01203,"4.4":0,"4.4.3-4.4.4":0.0872},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.1579,"10":0,"11":0.37895,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.33915},H:{"0":0.08562},L:{"0":30.86074},R:{_:"0"},M:{"0":0.21253},Q:{"13.1":0.0814}}; 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 1952c03a64c873..681f971bc75c27 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.00385,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00385,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03466,"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,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00385,"95":0.00385,"96":0.00385,"97":0,"98":0,"99":0.00385,"100":0.01155,"101":0,"102":0.01155,"103":0.00385,"104":0,"105":0.0077,"106":0.02696,"107":0.0154,"108":0.25417,"109":0.16174,"110":0.00385,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00385,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0077,"50":0,"51":0,"52":0,"53":0.0077,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00385,"64":0.0077,"65":0.00385,"66":0,"67":0,"68":0.0077,"69":0.00385,"70":0.00385,"71":0,"72":0,"73":0.00385,"74":0.00385,"75":0.0077,"76":0.0077,"77":0,"78":0.00385,"79":0.15404,"80":0.00385,"81":0.01155,"83":0.00385,"84":0.00385,"85":0.0077,"86":0.0077,"87":0.01926,"88":0.0154,"89":0.00385,"90":0.00385,"91":0.02696,"92":0.02311,"93":0.03081,"94":0.00385,"95":0.0077,"96":0.01926,"97":0.0154,"98":0.01155,"99":0.02696,"100":0.02311,"101":0.0154,"102":0.01926,"103":0.16559,"104":0.01926,"105":0.02311,"106":0.03081,"107":0.11553,"108":4.70592,"109":4.32852,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00385,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00385,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00385,"82":0.00385,"83":0,"84":0.00385,"85":0,"86":0.0154,"87":0,"88":0,"89":0,"90":0,"91":0.0077,"92":0.0154,"93":0.38125,"94":0.3697,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00385,"79":0,"80":0,"81":0,"83":0,"84":0.00385,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0077,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00385,"99":0.00385,"100":0.00385,"101":0.00385,"102":0.00385,"103":0.0077,"104":0.00385,"105":0.00385,"106":0.00385,"107":0.05777,"108":0.67393,"109":0.69703},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00385,"14":0.01155,"15":0.01155,_:"0","3.1":0,"3.2":0,"5.1":0.01155,"6.1":0,"7.1":0,"9.1":0.00385,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01926,"14.1":0.04621,"15.1":0.00385,"15.2-15.3":0.0077,"15.4":0.0154,"15.5":0.04621,"15.6":0.15019,"16.0":0.0154,"16.1":0.08472,"16.2":0.1733,"16.3":0.01155},G:{"8":0,"3.2":0.0038,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0019,"6.0-6.1":0.04939,"7.0-7.1":0.0228,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07789,"10.0-10.2":0,"10.3":0.11778,"11.0-11.2":0.0114,"11.3-11.4":0.0114,"12.0-12.1":0.0095,"12.2-12.5":0.68008,"13.0-13.1":0.0057,"13.2":0.0057,"13.3":0.05509,"13.4-13.7":0.06079,"14.0-14.4":0.16147,"14.5-14.8":0.44262,"15.0-15.1":0.12348,"15.2-15.3":0.41033,"15.4":0.20326,"15.5":0.53001,"15.6":1.6983,"16.0":2.93309,"16.1":5.18989,"16.2":4.05579,"16.3":0.40653},P:{"4":0.31752,"5.0-5.4":0.03073,"6.2-6.4":0,"7.2-7.4":0.16388,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.09218,"12.0":0.02048,"13.0":0.05121,"14.0":0.06145,"15.0":0.03073,"16.0":0.10242,"17.0":0.08194,"18.0":0.18436,"19.0":2.40697},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02257,"4.2-4.3":0.02257,"4.4":0,"4.4.3-4.4.4":0.24823},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0154,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.19062},Q:{"13.1":0},O:{"0":0.10453},H:{"0":0.326},L:{"0":62.93007},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00496,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03469,"74":0,"75":0,"76":0,"77":0,"78":0.02478,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.01982,"103":0.00496,"104":0.00496,"105":0.00991,"106":0.01487,"107":0.00991,"108":0.01982,"109":0.31223,"110":0.22798,"111":0.00496,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00496,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00496,"48":0,"49":0.00496,"50":0,"51":0,"52":0,"53":0.00496,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00496,"66":0,"67":0,"68":0.00496,"69":0.00496,"70":0.00496,"71":0,"72":0,"73":0.00496,"74":0.00496,"75":0.00496,"76":0.01982,"77":0.00496,"78":0.00496,"79":0.18833,"80":0.00496,"81":0.00496,"83":0.00496,"84":0.00991,"85":0.00991,"86":0.00991,"87":0.01982,"88":0.01982,"89":0.00496,"90":0.00496,"91":0.0446,"92":0.03469,"93":0.0446,"94":0.00496,"95":0.00496,"96":0.00991,"97":0.02974,"98":0.00991,"99":0.00991,"100":0.00991,"101":0.00991,"102":0.02478,"103":0.09416,"104":0.01982,"105":0.01982,"106":0.03965,"107":0.06938,"108":7.94942,"109":5.88773,"110":3.99454,"111":0.00496,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02974,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01487,"93":0.07434,"94":0.52038,"95":0.22798,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00496,"79":0,"80":0,"81":0,"83":0,"84":0.00496,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00991,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00496,"101":0,"102":0,"103":0.00496,"104":0.00496,"105":0.00496,"106":0.00496,"107":0.02478,"108":0.02478,"109":0.70375,"110":0.96146},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00496,"15":0.00991,_:"0","3.1":0,"3.2":0,"5.1":0.01487,"6.1":0,"7.1":0,"9.1":0.00496,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01982,"14.1":0.03469,"15.1":0.01982,"15.2-15.3":0.00496,"15.4":0.02478,"15.5":0.02478,"15.6":0.12886,"16.0":0.02478,"16.1":0.07434,"16.2":0.21311,"16.3":0.11399,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00171,"6.0-6.1":0.03588,"7.0-7.1":0.0188,"8.1-8.4":0.00171,"9.0-9.2":0,"9.3":0.07689,"10.0-10.2":0,"10.3":0.13158,"11.0-11.2":0.01367,"11.3-11.4":0.00684,"12.0-12.1":0.0188,"12.2-12.5":0.44428,"13.0-13.1":0.03588,"13.2":0.00513,"13.3":0.07519,"13.4-13.7":0.05639,"14.0-14.4":0.20505,"14.5-14.8":0.37422,"15.0-15.1":0.08373,"15.2-15.3":0.176,"15.4":0.19138,"15.5":0.40498,"15.6":1.13121,"16.0":1.98388,"16.1":3.22103,"16.2":4.15402,"16.3":2.55803,"16.4":0.01025},P:{"4":0.27809,"20":0.75187,"5.0-5.4":0.0206,"6.2-6.4":0,"7.2-7.4":0.14419,"8.2":0,"9.2":0.0103,"10.1":0,"11.1-11.2":0.0721,"12.0":0.0103,"13.0":0.0412,"14.0":0.0309,"15.0":0.0412,"16.0":0.0618,"17.0":0.0721,"18.0":0.0927,"19.0":1.31835},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02664,"4.4":0,"4.4.3-4.4.4":0.26638},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01982,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.14628},H:{"0":0.23399},L:{"0":56.10154},R:{_:"0"},M:{"0":0.15132},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js index 7b6b9cc5015a12..950ae3d41b8bde 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01841,"53":0,"54":0,"55":0,"56":0,"57":0.0046,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0092,"69":0,"70":0,"71":0,"72":0.0046,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0046,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0046,"89":0.01841,"90":0,"91":0,"92":0.0046,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0046,"100":0,"101":0.0046,"102":0.02301,"103":0.0046,"104":0.01841,"105":0.0092,"106":0.04142,"107":0.04142,"108":1.49105,"109":0.82376,"110":0.0046,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0046,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01381,"50":0,"51":0,"52":0,"53":0.0092,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0046,"67":0.0046,"68":0,"69":0.0046,"70":0.0046,"71":0,"72":0.0046,"73":0,"74":0,"75":0.0092,"76":0,"77":0.04602,"78":0.0046,"79":0.06903,"80":0.0092,"81":0.05983,"83":0.0046,"84":0.0046,"85":0.0092,"86":0.01381,"87":0.01841,"88":0.0046,"89":0.0092,"90":0.0092,"91":0.0046,"92":0.02301,"93":0.0046,"94":0.0092,"95":0.0092,"96":0.05062,"97":0.01381,"98":0.01381,"99":0.0046,"100":0.03221,"101":0.02761,"102":0.0092,"103":0.04142,"104":0.01841,"105":0.04142,"106":0.04602,"107":0.12886,"108":6.69131,"109":7.05487,"110":0.0046,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0046,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0092,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0046,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0092,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0046,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0046,"93":0.41878,"94":0.64428,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.07823,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0046,"16":0,"17":0.0092,"18":0.0046,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.0046,"88":0,"89":0,"90":0,"91":0,"92":0.0046,"93":0,"94":0,"95":0,"96":0,"97":0.0046,"98":0,"99":0.0046,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.0046,"106":0.0046,"107":0.01841,"108":0.66269,"109":0.76853},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01841,"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.0046,"13.1":0.02301,"14.1":0.05062,"15.1":0.0046,"15.2-15.3":0.0046,"15.4":0.01381,"15.5":0.03221,"15.6":0.18408,"16.0":0.02761,"16.1":0.05983,"16.2":0.13346,"16.3":0.0092},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00424,"6.0-6.1":0,"7.0-7.1":0.0099,"8.1-8.4":0.00283,"9.0-9.2":0,"9.3":0.11599,"10.0-10.2":0,"10.3":0.05375,"11.0-11.2":0,"11.3-11.4":0.00849,"12.0-12.1":0.00707,"12.2-12.5":0.2532,"13.0-13.1":0.00283,"13.2":0.00141,"13.3":0.01556,"13.4-13.7":0.058,"14.0-14.4":0.19238,"14.5-14.8":0.50641,"15.0-15.1":0.11458,"15.2-15.3":0.15419,"15.4":0.21642,"15.5":0.57713,"15.6":1.6734,"16.0":1.95065,"16.1":4.46571,"16.2":2.90971,"16.3":0.21642},P:{"4":0.20428,"5.0-5.4":0.02043,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01021,"10.1":0.01021,"11.1-11.2":0.02043,"12.0":0.01021,"13.0":0.04086,"14.0":0.05107,"15.0":0.02043,"16.0":0.06128,"17.0":0.0715,"18.0":0.15321,"19.0":3.48293},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02468,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.06992},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03221,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.31308},Q:{"13.1":0},O:{"0":0.04858},H:{"0":0.42928},L:{"0":58.47454},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0287,"53":0,"54":0,"55":0,"56":0.00478,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00957,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00957,"79":0,"80":0,"81":0.00478,"82":0,"83":0,"84":0.00478,"85":0,"86":0,"87":0,"88":0.00478,"89":0.01435,"90":0,"91":0.00478,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01435,"100":0,"101":0,"102":0.0287,"103":0.00478,"104":0.02392,"105":0.00957,"106":0.0287,"107":0.02392,"108":0.07175,"109":1.65492,"110":0.99965,"111":0.00478,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00478,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01913,"50":0,"51":0,"52":0,"53":0.00478,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00478,"67":0.00478,"68":0,"69":0.00478,"70":0.00478,"71":0,"72":0.00478,"73":0,"74":0,"75":0.00478,"76":0.00478,"77":0.03826,"78":0.00478,"79":0.05261,"80":0.00478,"81":0.05261,"83":0.00478,"84":0.00957,"85":0.00957,"86":0.01435,"87":0.01913,"88":0.00957,"89":0.00478,"90":0.01435,"91":0.00478,"92":0.01435,"93":0.00957,"94":0.00478,"95":0.00957,"96":0.04783,"97":0.01435,"98":0.00957,"99":0.00957,"100":0.01913,"101":0.02392,"102":0.00957,"103":0.03348,"104":0.00957,"105":0.04783,"106":0.03826,"107":0.09566,"108":0.29655,"109":9.04944,"110":5.64394,"111":0.00478,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00478,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00957,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01435,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00478,"74":0,"75":0,"76":0,"77":0,"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.00478,"92":0.00478,"93":0.04783,"94":0.507,"95":0.40177,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.07175,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00478,"16":0,"17":0.00478,"18":0.00478,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00478,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00478,"101":0,"102":0,"103":0,"104":0,"105":0.00478,"106":0,"107":0.00957,"108":0.0287,"109":0.6744,"110":0.86094},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00478,"14":0.01435,"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.00478,"13.1":0.02392,"14.1":0.04305,"15.1":0.00478,"15.2-15.3":0.00478,"15.4":0.00957,"15.5":0.02392,"15.6":0.13871,"16.0":0.01913,"16.1":0.03826,"16.2":0.13392,"16.3":0.12436,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00663,"6.0-6.1":0,"7.0-7.1":0.00265,"8.1-8.4":0.00265,"9.0-9.2":0,"9.3":0.10744,"10.0-10.2":0,"10.3":0.04377,"11.0-11.2":0.00531,"11.3-11.4":0.00796,"12.0-12.1":0.00796,"12.2-12.5":0.23611,"13.0-13.1":0.00265,"13.2":0,"13.3":0.01194,"13.4-13.7":0.06632,"14.0-14.4":0.15917,"14.5-14.8":0.47752,"15.0-15.1":0.10479,"15.2-15.3":0.1154,"15.4":0.17907,"15.5":0.46558,"15.6":1.14472,"16.0":1.42327,"16.1":3.24315,"16.2":3.07337,"16.3":1.74825,"16.4":0.00796},P:{"4":0.19266,"20":1.25735,"5.0-5.4":0.01014,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01014,"10.1":0.01014,"11.1-11.2":0.03042,"12.0":0,"13.0":0.03042,"14.0":0.04056,"15.0":0.02028,"16.0":0.06084,"17.0":0.06084,"18.0":0.12168,"19.0":2.29162},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00478,"4.2-4.3":0.02391,"4.4":0,"4.4.3-4.4.4":0.0813},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00478,"9":0,"10":0,"11":0.04305,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.04695},H:{"0":0.41489},L:{"0":57.7743},R:{_:"0"},M:{"0":0.31302},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js index 76319ad920d487..1c05ba5bd92d70 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.0012,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.0012,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00239,"102":0,"103":0,"104":0,"105":0.0012,"106":0.0012,"107":0.0012,"108":0.03227,"109":0.02032,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0012,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00239,"43":0.0012,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0012,"50":0,"51":0,"52":0.0012,"53":0,"54":0,"55":0,"56":0.00239,"57":0,"58":0,"59":0,"60":0.0012,"61":0,"62":0,"63":0.0012,"64":0.00239,"65":0,"66":0,"67":0,"68":0.01195,"69":0.00239,"70":0.0012,"71":0,"72":0,"73":0,"74":0.0012,"75":0.0012,"76":0.00478,"77":0.0012,"78":0,"79":0.00478,"80":0.0012,"81":0.00478,"83":0,"84":0.00239,"85":0.0012,"86":0.0012,"87":0.00239,"88":0.0012,"89":0.0012,"90":0.00239,"91":0.01076,"92":0.00478,"93":0.00359,"94":0.0012,"95":0.00239,"96":0.00239,"97":0.0012,"98":0.0012,"99":0.0012,"100":0.0012,"101":0.0012,"102":0.00239,"103":0.02271,"104":0.00239,"105":0.00837,"106":0.00478,"107":0.01195,"108":0.25693,"109":0.2629,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0012,"62":0,"63":0.0012,"64":0.00239,"65":0.0012,"66":0.0012,"67":0.0012,"68":0,"69":0,"70":0,"71":0,"72":0.00239,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0012,"94":0.03705,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0012,"13":0.0012,"14":0.0012,"15":0.0012,"16":0.00239,"17":0.0012,"18":0.00359,"79":0,"80":0,"81":0,"83":0,"84":0.0012,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0012,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0012,"100":0,"101":0,"102":0,"103":0.0012,"104":0.0012,"105":0.00239,"106":0.01076,"107":0.00359,"108":0.07768,"109":0.09202},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00239,"14":0.00239,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0012,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00359,"14.1":0.00478,"15.1":0,"15.2-15.3":0.00239,"15.4":0,"15.5":0.0012,"15.6":0.00598,"16.0":0.00239,"16.1":0.00837,"16.2":0.01076,"16.3":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.12356,"8.1-8.4":0.00136,"9.0-9.2":0,"9.3":0.13035,"10.0-10.2":0,"10.3":0.12084,"11.0-11.2":0.14936,"11.3-11.4":0.04616,"12.0-12.1":0.1222,"12.2-12.5":3.20843,"13.0-13.1":0.2444,"13.2":0.00679,"13.3":0.29328,"13.4-13.7":0.49423,"14.0-14.4":1.08079,"14.5-14.8":1.16497,"15.0-15.1":0.43042,"15.2-15.3":1.53293,"15.4":0.3924,"15.5":0.50509,"15.6":0.47115,"16.0":0.43042,"16.1":1.07536,"16.2":0.85812,"16.3":0.0869},P:{"4":0.64205,"5.0-5.4":0.10191,"6.2-6.4":0.04076,"7.2-7.4":0.3465,"8.2":0.03057,"9.2":0.24459,"10.1":0.03057,"11.1-11.2":0.37707,"12.0":0.02038,"13.0":0.1121,"14.0":0.28535,"15.0":0.05096,"16.0":0.20382,"17.0":0.15287,"18.0":0.16306,"19.0":0.693},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0007,"4.2-4.3":0.00889,"4.4":0,"4.4.3-4.4.4":0.06418},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00359,"5.5":0},J:{"7":0,"10":0.00881},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11447},Q:{"13.1":0},O:{"0":0.19371},H:{"0":0.44181},L:{"0":80.99463},S:{"2.5":0.01761}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00116,"102":0.00116,"103":0,"104":0,"105":0,"106":0.00116,"107":0,"108":0.00116,"109":0.0243,"110":0.01273,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00579,"44":0,"45":0,"46":0.00116,"47":0,"48":0,"49":0.00116,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00347,"57":0,"58":0,"59":0,"60":0.00116,"61":0,"62":0,"63":0.00231,"64":0.00347,"65":0,"66":0,"67":0,"68":0.00231,"69":0.00116,"70":0.00231,"71":0,"72":0,"73":0,"74":0.00231,"75":0.00347,"76":0.00579,"77":0.00116,"78":0,"79":0,"80":0.00116,"81":0.00463,"83":0.00116,"84":0.00116,"85":0,"86":0.00116,"87":0.00231,"88":0.00347,"89":0,"90":0.00116,"91":0.00116,"92":0.00579,"93":0.00926,"94":0.00231,"95":0.00231,"96":0.00347,"97":0.00116,"98":0.00116,"99":0.00116,"100":0.00116,"101":0.00116,"102":0.00116,"103":0.01851,"104":0.00116,"105":0.00463,"106":0.00231,"107":0.00694,"108":0.01967,"109":0.28231,"110":0.1562,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00116,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00231,"62":0,"63":0.00231,"64":0.00116,"65":0.00116,"66":0,"67":0.01157,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01157,"95":0.0162,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00116,"13":0,"14":0,"15":0,"16":0.00116,"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.00116,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00116,"100":0,"101":0,"102":0,"103":0.00116,"104":0.00116,"105":0,"106":0.00347,"107":0.00231,"108":0.00579,"109":0.06364,"110":0.06826},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00116,"14":0.00579,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00116,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00116,"13.1":0.00347,"14.1":0.00231,"15.1":0,"15.2-15.3":0,"15.4":0.00231,"15.5":0.00116,"15.6":0.00347,"16.0":0.00231,"16.1":0.00231,"16.2":0.0081,"16.3":0.00463,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00369,"6.0-6.1":0,"7.0-7.1":0.20036,"8.1-8.4":0.00492,"9.0-9.2":0.00123,"9.3":0.21388,"10.0-10.2":0.00123,"10.3":0.14136,"11.0-11.2":0.03319,"11.3-11.4":0.06761,"12.0-12.1":0.19421,"12.2-12.5":2.58375,"13.0-13.1":0.39211,"13.2":0.02581,"13.3":0.24338,"13.4-13.7":0.52241,"14.0-14.4":1.20706,"14.5-14.8":0.90837,"15.0-15.1":0.57157,"15.2-15.3":0.68957,"15.4":0.40932,"15.5":0.55805,"15.6":0.46586,"16.0":0.2569,"16.1":0.68097,"16.2":0.62566,"16.3":0.57772,"16.4":0.00246},P:{"4":0.5785,"20":0.08264,"5.0-5.4":0.09297,"6.2-6.4":0.04132,"7.2-7.4":0.30991,"8.2":0.03099,"9.2":0.29958,"10.1":0.01033,"11.1-11.2":0.46487,"12.0":0.02066,"13.0":0.14462,"14.0":0.21694,"15.0":0.04132,"16.0":0.15496,"17.0":0.1033,"18.0":0.14462,"19.0":0.64048},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00088,"4.2-4.3":0.00368,"4.4":0,"4.4.3-4.4.4":0.08214},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00231,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.02653,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.14149},H:{"0":0.45209},L:{"0":82.83316},R:{_:"0"},M:{"0":0.09727},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js index 05950a1a64da8a..2d79fc4904cabc 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.04001,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00364,"69":0,"70":0,"71":0,"72":0.00364,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01091,"79":0,"80":0,"81":0,"82":0,"83":0.00364,"84":0,"85":0,"86":0,"87":0,"88":0.00364,"89":0.00364,"90":0,"91":0.00727,"92":0,"93":0,"94":0,"95":0.00364,"96":0.00364,"97":0.00364,"98":0.00364,"99":0.00727,"100":0.00364,"101":0.00364,"102":0.02546,"103":0.00364,"104":0.00364,"105":0.35643,"106":0.02182,"107":0.0291,"108":1.04382,"109":0.63648,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00364,"35":0,"36":0,"37":0,"38":0.00727,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01455,"50":0,"51":0,"52":0,"53":0.00364,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00364,"75":0,"76":0,"77":0,"78":0.00364,"79":0.13093,"80":0.00364,"81":0.00727,"83":0.00727,"84":0.00364,"85":0.00727,"86":0.00364,"87":0.01819,"88":0.00364,"89":0.00727,"90":0.00364,"91":0.00364,"92":0.01455,"93":0.00364,"94":0.00364,"95":0.01455,"96":0.00727,"97":0.00727,"98":0.00364,"99":0.00727,"100":0.00727,"101":0.00364,"102":0.00727,"103":0.02546,"104":0.01819,"105":0.04001,"106":0.11638,"107":0.07274,"108":3.81885,"109":3.78248,"110":0.00364,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00364,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00364,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00727,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00364,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00364,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00364,"92":0.01819,"93":0.20367,"94":0.44008,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00364,"18":0.00364,"79":0,"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.00364,"105":0.00364,"106":0.06547,"107":0.05456,"108":0.47281,"109":0.49827},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00364,"14":0.01455,"15":0.00364,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00364,"13.1":0.01819,"14.1":0.0291,"15.1":0.00727,"15.2-15.3":0.00727,"15.4":0.01091,"15.5":0.01819,"15.6":0.11275,"16.0":0.01455,"16.1":0.07638,"16.2":0.13457,"16.3":0.01455},G:{"8":0.00145,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00291,"6.0-6.1":0,"7.0-7.1":0.00291,"8.1-8.4":0,"9.0-9.2":0.00145,"9.3":0.03488,"10.0-10.2":0,"10.3":0.02761,"11.0-11.2":0.00581,"11.3-11.4":0.00436,"12.0-12.1":0.00436,"12.2-12.5":0.20492,"13.0-13.1":0.00581,"13.2":0.00145,"13.3":0.01453,"13.4-13.7":0.04215,"14.0-14.4":0.20783,"14.5-14.8":0.41566,"15.0-15.1":0.07267,"15.2-15.3":0.10319,"15.4":0.18167,"15.5":0.31974,"15.6":1.30511,"16.0":1.81814,"16.1":4.61874,"16.2":3.68714,"16.3":0.42438},P:{"4":0.3594,"5.0-5.4":0.02054,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01027,"12.0":0,"13.0":0.02054,"14.0":0.04107,"15.0":0.01027,"16.0":0.05134,"17.0":0.04107,"18.0":0.11295,"19.0":2.76221},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01008,"4.2-4.3":0.00672,"4.4":0,"4.4.3-4.4.4":0.09411},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01455,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.25452},Q:{"13.1":0},O:{"0":0.01909},H:{"0":0.31928},L:{"0":67.99633},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03749,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00375,"69":0,"70":0,"71":0,"72":0.00375,"73":0,"74":0,"75":0.00375,"76":0,"77":0,"78":0.01125,"79":0.00375,"80":0,"81":0.00375,"82":0,"83":0.00375,"84":0,"85":0,"86":0,"87":0.00375,"88":0.00375,"89":0.0075,"90":0,"91":0.0075,"92":0,"93":0,"94":0,"95":0,"96":0.00375,"97":0.00375,"98":0.00375,"99":0.0075,"100":0.00375,"101":0.00375,"102":0.02624,"103":0.00375,"104":0.00375,"105":0.0075,"106":0.0075,"107":0.0075,"108":0.40864,"109":1.01223,"110":0.70856,"111":0.00375,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00375,"35":0,"36":0,"37":0,"38":0.0075,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01125,"50":0,"51":0,"52":0,"53":0.00375,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00375,"75":0,"76":0,"77":0,"78":0.00375,"79":0.13122,"80":0.00375,"81":0.0075,"83":0.0075,"84":0.01125,"85":0.01125,"86":0.01125,"87":0.02624,"88":0.0075,"89":0.0075,"90":0.00375,"91":0.00375,"92":0.01125,"93":0.00375,"94":0.00375,"95":0.015,"96":0.0075,"97":0.00375,"98":0.00375,"99":0.0075,"100":0.01125,"101":0.00375,"102":0.0075,"103":0.02624,"104":0.0075,"105":0.01875,"106":0.02249,"107":0.02999,"108":0.27368,"109":4.8887,"110":3.07418,"111":0.00375,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00375,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00375,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0075,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00375,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00375,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02999,"94":0.37865,"95":0.28492,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00375,"18":0.00375,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00375,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00375,"105":0,"106":0,"107":0.015,"108":0.01875,"109":0.54361,"110":0.58484},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.015,"15":0.00375,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00375,"13.1":0.01875,"14.1":0.02999,"15.1":0.0075,"15.2-15.3":0.00375,"15.4":0.01125,"15.5":0.02249,"15.6":0.08623,"16.0":0.01125,"16.1":0.04874,"16.2":0.11997,"16.3":0.11622,"16.4":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.00455,"8.1-8.4":0,"9.0-9.2":0.00152,"9.3":0.0197,"10.0-10.2":0,"10.3":0.0303,"11.0-11.2":0.00758,"11.3-11.4":0.00606,"12.0-12.1":0.00455,"12.2-12.5":0.18787,"13.0-13.1":0.00606,"13.2":0.00303,"13.3":0.01364,"13.4-13.7":0.05454,"14.0-14.4":0.17878,"14.5-14.8":0.37725,"15.0-15.1":0.07575,"15.2-15.3":0.11211,"15.4":0.16514,"15.5":0.29392,"15.6":0.99843,"16.0":1.46507,"16.1":3.48617,"16.2":3.66495,"16.3":2.9165,"16.4":0.01515},P:{"4":0.38749,"20":1.01971,"5.0-5.4":0.02039,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0102,"12.0":0.0102,"13.0":0.02039,"14.0":0.03059,"15.0":0.0102,"16.0":0.05099,"17.0":0.03059,"18.0":0.08158,"19.0":1.78449},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02277,"4.4":0,"4.4.3-4.4.4":0.10473},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.015,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.025},H:{"0":0.33733},L:{"0":66.58293},R:{_:"0"},M:{"0":0.26254},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js index 87a9892bb3e1e9..57859d6c97f6fd 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.06347,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00353,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00353,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00353,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00353,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00705,"89":0,"90":0,"91":0.00353,"92":0,"93":0,"94":0,"95":0.00353,"96":0.01058,"97":0.00353,"98":0,"99":0.00353,"100":0.00353,"101":0.00353,"102":0.00705,"103":0.00705,"104":0.00705,"105":0.00705,"106":0.01058,"107":0.02468,"108":0.69462,"109":0.36318,"110":0.01058,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00353,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00353,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00353,"64":0,"65":0.00353,"66":0,"67":0,"68":0,"69":0.00705,"70":0.00353,"71":0.00705,"72":0.00353,"73":0.00353,"74":0.01058,"75":0.00353,"76":0.00353,"77":0.00353,"78":0.00353,"79":0.01058,"80":0.03879,"81":0.0141,"83":0.01058,"84":0.01058,"85":0.01058,"86":0.01058,"87":0.0141,"88":0.00705,"89":0.01058,"90":0.00353,"91":0.00705,"92":0.01058,"93":0.00353,"94":0.00705,"95":0.00705,"96":0.01058,"97":0.01058,"98":0.00705,"99":0.00705,"100":0.02821,"101":0.01058,"102":0.0141,"103":0.03526,"104":0.01763,"105":0.02116,"106":0.02821,"107":0.07757,"108":4.57675,"109":3.83981,"110":0.00353,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01058,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00353,"60":0.00353,"62":0,"63":0.00705,"64":0.00705,"65":0.00353,"66":0.00705,"67":0.00353,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00705,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00353,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00353,"93":0.04231,"94":0.13046,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00353,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00353,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00353,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00353,"106":0.00353,"107":0.0141,"108":0.49364,"109":0.44075},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00353,"14":0.0141,"15":0.00353,_:"0","3.1":0,"3.2":0,"5.1":0.02468,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00353,"13.1":0.01763,"14.1":0.02821,"15.1":0.01058,"15.2-15.3":0.00705,"15.4":0.01058,"15.5":0.02468,"15.6":0.05642,"16.0":0.0141,"16.1":0.04231,"16.2":0.04584,"16.3":0.00353},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0019,"6.0-6.1":0.00095,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01329,"10.0-10.2":0,"10.3":0.01234,"11.0-11.2":0.00475,"11.3-11.4":0.00285,"12.0-12.1":0.00949,"12.2-12.5":0.23538,"13.0-13.1":0.00854,"13.2":0.00759,"13.3":0.02942,"13.4-13.7":0.06074,"14.0-14.4":0.24393,"14.5-14.8":0.39009,"15.0-15.1":0.17464,"15.2-15.3":0.21355,"15.4":0.37016,"15.5":0.54765,"15.6":1.04594,"16.0":1.62206,"16.1":2.01784,"16.2":1.49108,"16.3":0.11484},P:{"4":0.1243,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05179,"8.2":0,"9.2":0.01036,"10.1":0,"11.1-11.2":0.04143,"12.0":0.01036,"13.0":0.04143,"14.0":0.04143,"15.0":0.02072,"16.0":0.09323,"17.0":0.09323,"18.0":0.1243,"19.0":1.10835},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03705},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02116,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.24601},Q:{"13.1":0.00647},O:{"0":1.02937},H:{"0":0.86421},L:{"0":73.84974},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.06857,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00361,"53":0,"54":0,"55":0,"56":0.00361,"57":0,"58":0,"59":0,"60":0.00361,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00361,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00361,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00722,"89":0,"90":0,"91":0.00361,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00361,"100":0.00361,"101":0.00361,"102":0.01083,"103":0.00361,"104":0.00361,"105":0.00361,"106":0.00722,"107":0.01083,"108":0.02526,"109":0.62436,"110":0.41864,"111":0.01083,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00361,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00361,"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.00361,"64":0,"65":0.00361,"66":0,"67":0.00361,"68":0,"69":0.00361,"70":0.00361,"71":0.00361,"72":0.00361,"73":0.00361,"74":0.01444,"75":0.00361,"76":0.00361,"77":0.00361,"78":0.00361,"79":0.01083,"80":0.0397,"81":0.01444,"83":0.01444,"84":0.01805,"85":0.00722,"86":0.01083,"87":0.01083,"88":0.00361,"89":0.00722,"90":0.00361,"91":0.00722,"92":0.01083,"93":0.00361,"94":0.00722,"95":0.00722,"96":0.01083,"97":0.00722,"98":0.00722,"99":0.00722,"100":0.02526,"101":0.01083,"102":0.01444,"103":0.03248,"104":0.01805,"105":0.01805,"106":0.02165,"107":0.0397,"108":0.16962,"109":5.21861,"110":3.42133,"111":0.00361,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01083,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00361,"62":0,"63":0.00722,"64":0.00722,"65":0.00361,"66":0.00361,"67":0.09023,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00722,"94":0.08301,"95":0.0794,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00361,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00361,"79":0,"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,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00361,"107":0.00722,"108":0.01805,"109":0.42225,"110":0.59909},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00361,"14":0.01444,"15":0.00361,_:"0","3.1":0,"3.2":0,"5.1":0.02165,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00361,"13.1":0.01805,"14.1":0.03248,"15.1":0.00722,"15.2-15.3":0.00361,"15.4":0.01083,"15.5":0.01805,"15.6":0.05053,"16.0":0.01083,"16.1":0.03248,"16.2":0.05053,"16.3":0.0397,"16.4":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.01296,"10.0-10.2":0.001,"10.3":0.01197,"11.0-11.2":0.00499,"11.3-11.4":0.00199,"12.0-12.1":0.01296,"12.2-12.5":0.22636,"13.0-13.1":0.00798,"13.2":0.00598,"13.3":0.02493,"13.4-13.7":0.06083,"14.0-14.4":0.23334,"14.5-14.8":0.37693,"15.0-15.1":0.17251,"15.2-15.3":0.20442,"15.4":0.34103,"15.5":0.4926,"15.6":0.86056,"16.0":1.42196,"16.1":1.68522,"16.2":1.60046,"16.3":1.20757,"16.4":0.00199},P:{"4":0.15592,"20":0.34302,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05197,"8.2":0,"9.2":0.01039,"10.1":0,"11.1-11.2":0.04158,"12.0":0.01039,"13.0":0.04158,"14.0":0.03118,"15.0":0.02079,"16.0":0.08316,"17.0":0.09355,"18.0":0.09355,"19.0":0.83156},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04361},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02165,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.1376},H:{"0":0.86523},L:{"0":73.0433},R:{_:"0"},M:{"0":0.10865},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js index 34d0c93fdb43fa..a9fb6fe3993496 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.00358,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00717,"39":0,"40":0,"41":0,"42":0,"43":0.00358,"44":0.02509,"45":0.00717,"46":0,"47":0,"48":0,"49":0,"50":0.00358,"51":0,"52":0.00717,"53":0.00358,"54":0,"55":0,"56":0.00358,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01075,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00358,"85":0,"86":0,"87":0.01434,"88":0.00358,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00717,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00358,"102":0.01434,"103":0.00358,"104":0.00358,"105":0.00358,"106":0.01075,"107":0.01792,"108":0.41933,"109":0.23654,"110":0,"111":0.01075,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00358,"37":0,"38":0.00358,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01075,"48":0.06451,"49":0.02509,"50":0,"51":0,"52":0,"53":0.00358,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00358,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.01434,"75":0,"76":0.00717,"77":0,"78":0.00358,"79":0.0215,"80":0.00358,"81":0.01075,"83":0.00358,"84":0.00717,"85":0.00717,"86":0.00358,"87":0.03226,"88":0.00358,"89":0.01075,"90":0.00358,"91":0.00717,"92":0.00717,"93":0.01075,"94":0.03226,"95":0.00358,"96":0.08243,"97":0.00358,"98":0.00358,"99":0.00358,"100":0.01434,"101":0.01792,"102":0.01075,"103":0.05376,"104":0.01792,"105":0.04659,"106":0.22221,"107":0.15053,"108":3.55533,"109":3.08224,"110":0.00358,"111":0.00358,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00358,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00358,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00358,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00717,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.11469,"94":0.11827,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00358,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00358,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.18278,"101":0,"102":0,"103":0.00358,"104":0,"105":0.00358,"106":0.00358,"107":0.06093,"108":0.6953,"109":0.69888},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00358,"9":0.01075,"10":0,"11":0,"12":0,"13":0.01075,"14":0.07526,"15":0.00717,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00717,"13.1":0.05376,"14.1":0.14694,"15.1":0.02867,"15.2-15.3":0.0215,"15.4":0.04659,"15.5":0.10394,"15.6":0.70246,"16.0":0.05018,"16.1":0.14336,"16.2":0.27955,"16.3":0.02509},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01984,"8.1-8.4":0.03175,"9.0-9.2":0.00397,"9.3":0.14288,"10.0-10.2":0,"10.3":0.12701,"11.0-11.2":0.00794,"11.3-11.4":0.08335,"12.0-12.1":0.01191,"12.2-12.5":1.04383,"13.0-13.1":0.01191,"13.2":0.00794,"13.3":0.04366,"13.4-13.7":0.1151,"14.0-14.4":0.47627,"14.5-14.8":1.47247,"15.0-15.1":0.31751,"15.2-15.3":0.48818,"15.4":0.50009,"15.5":1.26609,"15.6":5.86211,"16.0":4.72699,"16.1":13.25622,"16.2":7.17185,"16.3":0.40086},P:{"4":0.06231,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03115,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03115,"12.0":0.01038,"13.0":0.04154,"14.0":0.05192,"15.0":0.02077,"16.0":0.08308,"17.0":0.05192,"18.0":0.17654,"19.0":3.68661},I:{"0":0,"3":0,"4":0.02058,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.07203,"4.4":0,"4.4.3-4.4.4":0.15434},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.10394,"10":0,"11":0.03226,"5.5":0},J:{"7":0,"10":0.00642},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.47478},Q:{"13.1":0},O:{"0":0.02566},H:{"0":0.17008},L:{"0":43.11744},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00712,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00712,"39":0,"40":0,"41":0,"42":0,"43":0.00712,"44":0.02492,"45":0.00712,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00356,"53":0.00356,"54":0,"55":0,"56":0.00356,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01068,"79":0.00356,"80":0.00356,"81":0,"82":0,"83":0,"84":0.00356,"85":0,"86":0,"87":0.02136,"88":0.00356,"89":0,"90":0,"91":0,"92":0,"93":0.00356,"94":0,"95":0.00712,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00356,"102":0.01068,"103":0.00356,"104":0,"105":0.00356,"106":0.00712,"107":0.01068,"108":0.0178,"109":0.4094,"110":0.25276,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00356,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00356,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00712,"48":0.06764,"49":0.02492,"50":0,"51":0,"52":0,"53":0.00356,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00356,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.02136,"75":0,"76":0.00356,"77":0,"78":0,"79":0.02136,"80":0.00356,"81":0.0534,"83":0.00712,"84":0.01068,"85":0.00712,"86":0.00712,"87":0.0178,"88":0.00356,"89":0.01068,"90":0.00356,"91":0.00356,"92":0.00712,"93":0.00712,"94":0.00712,"95":0.00356,"96":0.1602,"97":0.00712,"98":0.00356,"99":0.00356,"100":0.01424,"101":0.0356,"102":0.01068,"103":0.06408,"104":0.01424,"105":0.03204,"106":0.26344,"107":0.089,"108":0.32752,"109":3.77004,"110":2.5098,"111":0.00356,"112":0.00356,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00356,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00712,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0178,"94":0.16376,"95":0.07832,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00356,"13":0.00356,"14":0,"15":0,"16":0,"17":0,"18":0.00356,"79":0,"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.00356,"101":0,"102":0,"103":0.00356,"104":0,"105":0.00356,"106":0.00356,"107":0.04628,"108":0.03204,"109":0.59808,"110":0.77964},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00356,"9":0.01068,"10":0,"11":0,"12":0,"13":0.00712,"14":0.06052,"15":0.00712,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01068,"13.1":0.0534,"14.1":0.1246,"15.1":0.02136,"15.2-15.3":0.02492,"15.4":0.03916,"15.5":0.09256,"15.6":0.49128,"16.0":0.0356,"16.1":0.09256,"16.2":0.32752,"16.3":0.21716,"16.4":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.0199,"8.1-8.4":0.02388,"9.0-9.2":0.00398,"9.3":0.1353,"10.0-10.2":0,"10.3":0.16714,"11.0-11.2":0.00398,"11.3-11.4":0.12734,"12.0-12.1":0.01592,"12.2-12.5":0.88741,"13.0-13.1":0.01194,"13.2":0.00796,"13.3":0.03979,"13.4-13.7":0.1154,"14.0-14.4":0.44967,"14.5-14.8":1.31718,"15.0-15.1":0.30244,"15.2-15.3":0.45365,"15.4":0.42182,"15.5":1.09832,"15.6":4.39725,"16.0":3.97543,"16.1":10.58921,"16.2":9.31579,"16.3":3.89982,"16.4":0.01194},P:{"4":0.05214,"20":1.43898,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03128,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03128,"12.0":0.01043,"13.0":0.03128,"14.0":0.04171,"15.0":0.02085,"16.0":0.06256,"17.0":0.04171,"18.0":0.10427,"19.0":2.37745},I:{"0":0,"3":0,"4":0.02984,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04974,"4.4":0,"4.4.3-4.4.4":0.13926},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.09256,"10":0,"11":0.03204,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00644},O:{"0":0.02576},H:{"0":0.18901},L:{"0":43.10056},R:{_:"0"},M:{"0":0.48944},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js index 580174ed2b04d1..47e6268f1d5633 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,"25":0.00432,"26":0.00864,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"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.00864,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00432,"69":0.00432,"70":0.00432,"71":0.00432,"72":0.00432,"73":0.00432,"74":0.00432,"75":0.00432,"76":0.00432,"77":0.00432,"78":0.00864,"79":0.05184,"80":0.01296,"81":0.00432,"82":0.00432,"83":0.00432,"84":0,"85":0,"86":0,"87":0,"88":0.00432,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00432,"98":0,"99":0.00432,"100":0,"101":0,"102":0.00864,"103":0,"104":0,"105":0.00432,"106":0.00432,"107":0.00864,"108":0.29808,"109":0.16416,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00432,"31":0.01296,"32":0.00432,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00864,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00432,"50":0,"51":0,"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,"65":0.00432,"66":0,"67":0,"68":0.02592,"69":0.01296,"70":0.01728,"71":0.01728,"72":0.0216,"73":0.0216,"74":0.0216,"75":0.01728,"76":0.01728,"77":0.01296,"78":0.02592,"79":0.05616,"80":0.108,"81":0.03024,"83":0.02592,"84":0.0216,"85":0.03024,"86":0.04752,"87":0.04752,"88":0.03456,"89":0.03456,"90":0.26352,"91":0.24624,"92":0.24624,"93":0.23328,"94":0.24624,"95":0.0216,"96":0.01728,"97":0.01296,"98":0.00864,"99":0.00864,"100":0.07776,"101":0.00864,"102":0.01728,"103":0.04752,"104":0.03024,"105":0.03024,"106":0.03888,"107":0.14688,"108":6.32016,"109":6.048,"110":0.00432,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00432,"54":0.00432,"55":0.00432,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00432,"69":0,"70":0,"71":0,"72":0,"73":0.00864,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00432,"93":0.0864,"94":0.1728,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00432,"79":0.00432,"80":0.00864,"81":0.00864,"83":0.00864,"84":0.00864,"85":0.00432,"86":0.00864,"87":0.00432,"88":0.00432,"89":0.00864,"90":0.00864,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00432,"97":0,"98":0.00432,"99":0,"100":0,"101":0,"102":0,"103":0.00432,"104":0.00432,"105":0.00864,"106":0.01296,"107":0.02592,"108":0.55728,"109":0.55296},E:{"4":0,"5":0,"6":0,"7":0,"8":0.05616,"9":0,"10":0,"11":0,"12":0,"13":0.00432,"14":0.0216,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.00432,"7.1":0,"9.1":0.12096,"10.1":0,"11.1":0,"12.1":0.00432,"13.1":0.01728,"14.1":0.06048,"15.1":0.00864,"15.2-15.3":0.01296,"15.4":0.01728,"15.5":0.0432,"15.6":0.18576,"16.0":0.01728,"16.1":0.06048,"16.2":0.12096,"16.3":0.01296},G:{"8":0.00215,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02361,"8.1-8.4":0.00215,"9.0-9.2":0.00859,"9.3":0.06869,"10.0-10.2":0.01503,"10.3":0.07083,"11.0-11.2":0.03649,"11.3-11.4":0.02576,"12.0-12.1":0.04722,"12.2-12.5":0.33915,"13.0-13.1":0.02361,"13.2":0.01932,"13.3":0.03864,"13.4-13.7":0.11162,"14.0-14.4":0.35847,"14.5-14.8":0.85646,"15.0-15.1":0.1524,"15.2-15.3":0.22109,"15.4":0.28549,"15.5":0.62249,"15.6":2.85056,"16.0":3.2584,"16.1":6.65203,"16.2":4.25438,"16.3":0.31124},P:{"4":0.06145,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03072,"8.2":0,"9.2":0.03072,"10.1":0,"11.1-11.2":0.15362,"12.0":0.05121,"13.0":0.16386,"14.0":0.19459,"15.0":0.09217,"16.0":0.20483,"17.0":0.14338,"18.0":0.30724,"19.0":5.85811},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02465,"4.4":0,"4.4.3-4.4.4":0.05423},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00432,"11":0.05616,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.22152},Q:{"13.1":0},O:{"0":0.0284},H:{"0":0.19897},L:{"0":49.91384},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00435,"26":0.0087,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00435,"53":0,"54":0,"55":0,"56":0.0087,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0087,"69":0.00435,"70":0.00435,"71":0.00435,"72":0.0087,"73":0.00435,"74":0.00435,"75":0.00435,"76":0.00435,"77":0.00435,"78":0.0087,"79":0.0522,"80":0.0174,"81":0.0087,"82":0.00435,"83":0.00435,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00435,"98":0,"99":0.00435,"100":0,"101":0,"102":0.00435,"103":0,"104":0,"105":0.00435,"106":0,"107":0.00435,"108":0.01305,"109":0.30015,"110":0.17835,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01305,"32":0.00435,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0087,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00435,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00435,"64":0,"65":0.00435,"66":0,"67":0,"68":0.03915,"69":0.02175,"70":0.02175,"71":0.0261,"72":0.0348,"73":0.0174,"74":0.03915,"75":0.0261,"76":0.0261,"77":0.0261,"78":0.03915,"79":0.0696,"80":0.10005,"81":0.0435,"83":0.03915,"84":0.0261,"85":0.0435,"86":0.0696,"87":0.0609,"88":0.0522,"89":0.04785,"90":0.28275,"91":0.24795,"92":0.23925,"93":0.23055,"94":0.23055,"95":0.01305,"96":0.0174,"97":0.0087,"98":0.0087,"99":0.0087,"100":0.0261,"101":0.0087,"102":0.0174,"103":0.03915,"104":0.02175,"105":0.02175,"106":0.03915,"107":0.0696,"108":0.31755,"109":7.59075,"110":4.29345,"111":0.00435,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00435,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.0087,"54":0.0087,"55":0.0087,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0087,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00435,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01305,"94":0.15225,"95":0.10005,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00435,"79":0.00435,"80":0.0174,"81":0.01305,"83":0.01305,"84":0.0174,"85":0.0087,"86":0.01305,"87":0.0087,"88":0.0087,"89":0.01305,"90":0.0087,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00435,"97":0,"98":0.00435,"99":0,"100":0,"101":0,"102":0,"103":0.00435,"104":0.00435,"105":0.00435,"106":0.0087,"107":0.0174,"108":0.03045,"109":0.4959,"110":0.5916},E:{"4":0,"5":0,"6":0,"7":0,"8":0.0522,"9":0,"10":0,"11":0,"12":0,"13":0.00435,"14":0.0174,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.00435,"7.1":0,"9.1":0.2001,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0174,"14.1":0.0522,"15.1":0.00435,"15.2-15.3":0.0087,"15.4":0.01305,"15.5":0.0348,"15.6":0.1305,"16.0":0.01305,"16.1":0.03915,"16.2":0.1305,"16.3":0.08265,"16.4":0},G:{"8":0.00218,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02182,"8.1-8.4":0.00436,"9.0-9.2":0.01091,"9.3":0.07856,"10.0-10.2":0.01309,"10.3":0.08074,"11.0-11.2":0.04801,"11.3-11.4":0.02837,"12.0-12.1":0.05237,"12.2-12.5":0.34914,"13.0-13.1":0.02837,"13.2":0.02619,"13.3":0.06765,"13.4-13.7":0.1222,"14.0-14.4":0.40587,"14.5-14.8":0.78556,"15.0-15.1":0.12656,"15.2-15.3":0.18984,"15.4":0.25749,"15.5":0.59572,"15.6":2.2825,"16.0":2.5749,"16.1":5.14544,"16.2":5.14326,"16.3":2.57272,"16.4":0.01091},P:{"4":0.05137,"20":1.94169,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04109,"8.2":0,"9.2":0.04109,"10.1":0,"11.1-11.2":0.12328,"12.0":0.02055,"13.0":0.12328,"14.0":0.14383,"15.0":0.06164,"16.0":0.17465,"17.0":0.11301,"18.0":0.22602,"19.0":3.66764},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02179,"4.4":0,"4.4.3-4.4.4":0.03736},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00435,"11":0.05655,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02825},H:{"0":0.21931},L:{"0":50.3023},R:{_:"0"},M:{"0":0.26555},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js index 322cfb6f752a3b..c2894c75c815b6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00509,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.14773,"53":0,"54":0,"55":0,"56":0.00509,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03056,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01528,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00509,"100":0,"101":0,"102":0.02547,"103":0,"104":0,"105":0,"106":0.01019,"107":0.02038,"108":0.88126,"109":0.49412,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00509,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07132,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01528,"66":0,"67":0.06622,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00509,"75":0,"76":0.00509,"77":0,"78":0,"79":0,"80":0.10188,"81":0,"83":0,"84":0.00509,"85":0.01528,"86":0.00509,"87":0.01528,"88":0,"89":0,"90":0,"91":0.00509,"92":0,"93":0.00509,"94":0,"95":0,"96":0.00509,"97":0.00509,"98":0.03056,"99":0.00509,"100":0.01528,"101":0.01019,"102":0.02547,"103":0.15791,"104":0.02547,"105":0.35658,"106":0.03056,"107":0.22414,"108":5.094,"109":4.46744,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01528,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00509,"89":0,"90":0,"91":0,"92":0,"93":0.1681,"94":0.28526,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00509,"88":0,"89":0,"90":0,"91":0.01019,"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.03566,"106":0.00509,"107":0.1732,"108":2.73548,"109":2.85773},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01019,"14":0.09169,"15":0.01019,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.28017,"13.1":0.21904,"14.1":0.21395,"15.1":0.03056,"15.2-15.3":0.04585,"15.4":0.12735,"15.5":0.1732,"15.6":1.90006,"16.0":0.14773,"16.1":0.596,"16.2":1.73196,"16.3":0.03566},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00954,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.69662,"10.0-10.2":0,"10.3":0.167,"11.0-11.2":0.00954,"11.3-11.4":0.01909,"12.0-12.1":0.01431,"12.2-12.5":1.6175,"13.0-13.1":0.0334,"13.2":0,"13.3":0,"13.4-13.7":0.167,"14.0-14.4":0.54871,"14.5-14.8":1.12605,"15.0-15.1":0.42943,"15.2-15.3":0.41511,"15.4":0.22426,"15.5":0.98291,"15.6":6.89943,"16.0":3.80757,"16.1":17.55394,"16.2":9.61435,"16.3":0.61074},P:{"4":0.09728,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01081,"10.1":0.01081,"11.1-11.2":0,"12.0":0,"13.0":0.02162,"14.0":0,"15.0":0.01081,"16.0":0.03243,"17.0":0.02162,"18.0":0.20536,"19.0":3.04801},I:{"0":0,"3":0,"4":0.35462,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13931},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06622,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.59363},Q:{"13.1":0},O:{"0":0.00491},H:{"0":0.0418},L:{"0":23.8582},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0.00509,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00509,"39":0,"40":0,"41":0,"42":0.01018,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.22392,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01018,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00509,"79":0,"80":0,"81":0,"82":0,"83":0.01018,"84":0.01018,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00509,"97":0,"98":0,"99":0,"100":0,"101":0.00509,"102":0,"103":0,"104":0,"105":0,"106":0.00509,"107":0.01527,"108":0.04071,"109":0.8346,"110":0.45801,"111":0.00509,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00509,"39":0.01018,"40":0.00509,"41":0.00509,"42":0,"43":0.00509,"44":0.00509,"45":0.01018,"46":0,"47":0.01018,"48":0,"49":0.04071,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00509,"66":0,"67":0.07125,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00509,"77":0,"78":0,"79":0,"80":0.0916,"81":0,"83":0,"84":0,"85":0.02036,"86":0.00509,"87":0.01527,"88":0,"89":0,"90":0.01018,"91":0.00509,"92":0.00509,"93":0.01527,"94":0,"95":0.00509,"96":0.00509,"97":0,"98":0.03053,"99":0.00509,"100":0.03562,"101":0.00509,"102":0.00509,"103":0.12723,"104":0.02545,"105":0.29516,"106":0.02036,"107":0.03053,"108":0.30025,"109":6.07627,"110":3.79131,"111":0.00509,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00509,"31":0.00509,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00509,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01018,"94":0.42239,"95":0.16794,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00509},B:{"12":0,"13":0,"14":0.00509,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00509,"88":0,"89":0,"90":0.00509,"91":0.01018,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00509,"104":0,"105":0.01527,"106":0.01527,"107":0.09669,"108":0.11705,"109":2.49361,"110":2.69717},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00509,"14":0.09669,"15":0.01527,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.26972,"13.1":0.26463,"14.1":0.20865,"15.1":0.02545,"15.2-15.3":0.02036,"15.4":0.05598,"15.5":0.10178,"15.6":1.12467,"16.0":0.1374,"16.1":0.49872,"16.2":1.67428,"16.3":0.81933,"16.4":0.00509},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01406,"8.1-8.4":0.02343,"9.0-9.2":0.00469,"9.3":0.66996,"10.0-10.2":0,"10.3":0.14055,"11.0-11.2":0.0328,"11.3-11.4":0.01406,"12.0-12.1":0.01874,"12.2-12.5":1.43831,"13.0-13.1":0.00469,"13.2":0,"13.3":0.01874,"13.4-13.7":0.05154,"14.0-14.4":0.59032,"14.5-14.8":1.11973,"15.0-15.1":0.44039,"15.2-15.3":0.30453,"15.4":0.29984,"15.5":1.16189,"15.6":4.14627,"16.0":3.54189,"16.1":12.59809,"16.2":12.12958,"16.3":5.34095,"16.4":0.08433},P:{"4":0.10753,"20":1.2689,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01075,"8.2":0,"9.2":0.01075,"10.1":0.02151,"11.1-11.2":0,"12.0":0,"13.0":0.09678,"14.0":0,"15.0":0.01075,"16.0":0.03226,"17.0":0.01075,"18.0":0.17205,"19.0":2.00013},I:{"0":0,"3":0,"4":0.25428,"2.1":0.01429,"2.2":0.00857,"2.3":0.02571,"4.1":0.03714,"4.2-4.3":0.06857,"4.4":0,"4.4.3-4.4.4":0.25999},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00509,"7":0.00509,"8":0.0458,"9":0.01018,"10":0.01018,"11":0.06107,"5.5":0},N:{"10":0.00982,"11":0.00982},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00491},O:{"0":0.02947},H:{"0":0.05114},L:{"0":24.0835},R:{_:"0"},M:{"0":0.52548},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js index b936d20bf5f5a1..4e4db075644ebb 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.00242,"48":0,"49":0,"50":0,"51":0,"52":0.00242,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00242,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00242,"100":0,"101":0,"102":0.00485,"103":0.00242,"104":0.00242,"105":0.00242,"106":0.00242,"107":0.00727,"108":0.17688,"109":0.11873,"110":0.00727,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00242,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00242,"64":0,"65":0,"66":0,"67":0,"68":0.00242,"69":0.00242,"70":0.00485,"71":0.00485,"72":0.00242,"73":0,"74":0.01212,"75":0,"76":0,"77":0.00242,"78":0.00242,"79":0.00485,"80":0.00485,"81":0.00485,"83":0.00727,"84":0.00242,"85":0.00242,"86":0.00727,"87":0.01212,"88":0.00242,"89":0.00242,"90":0.00485,"91":0.00727,"92":0.00485,"93":0.00242,"94":0.00969,"95":0.00485,"96":0.00969,"97":0.00727,"98":0.00485,"99":0.00969,"100":0.00727,"101":0.00727,"102":0.00969,"103":0.0315,"104":0.01938,"105":0.01938,"106":0.02423,"107":0.06784,"108":2.05228,"109":2.11286,"110":0.00485,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00242,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00242,"56":0,"57":0,"58":0.00242,"60":0.00242,"62":0,"63":0.00727,"64":0.00727,"65":0.00485,"66":0.00727,"67":0.00727,"68":0,"69":0,"70":0,"71":0,"72":0.00242,"73":0.02423,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00242,"93":0.00727,"94":0.03877,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00242,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00242,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00242,"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.00242,"106":0.00242,"107":0.00485,"108":0.1163,"109":0.11146},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00242,"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.00242,"14.1":0.00242,"15.1":0,"15.2-15.3":0,"15.4":0.00242,"15.5":0.00242,"15.6":0.01212,"16.0":0.00242,"16.1":0.00969,"16.2":0.01696,"16.3":0.00242},G:{"8":0.00058,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00585,"8.1-8.4":0,"9.0-9.2":0.00029,"9.3":0.00526,"10.0-10.2":0.00058,"10.3":0.00497,"11.0-11.2":0.00555,"11.3-11.4":0.00117,"12.0-12.1":0.00409,"12.2-12.5":0.07249,"13.0-13.1":0.00263,"13.2":0.00234,"13.3":0.00526,"13.4-13.7":0.01461,"14.0-14.4":0.05232,"14.5-14.8":0.07249,"15.0-15.1":0.05232,"15.2-15.3":0.04472,"15.4":0.03946,"15.5":0.08623,"15.6":0.19175,"16.0":0.31159,"16.1":0.6299,"16.2":0.98796,"16.3":0.11253},P:{"4":0.09092,"5.0-5.4":0,"6.2-6.4":0.0101,"7.2-7.4":0.06062,"8.2":0,"9.2":0.0101,"10.1":0,"11.1-11.2":0.0101,"12.0":0.0101,"13.0":0.03031,"14.0":0.02021,"15.0":0.0101,"16.0":0.05051,"17.0":0.04041,"18.0":0.06062,"19.0":0.50513},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03485},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00727,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14396},Q:{"13.1":0},O:{"0":1.92456},H:{"0":2.24528},L:{"0":84.81215},S:{"2.5":0.40916}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"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.00241,"89":0,"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.00481,"103":0.00241,"104":0.00241,"105":0.00241,"106":0.00241,"107":0.00241,"108":0.00962,"109":0.17557,"110":0.11785,"111":0.00481,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00241,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00241,"69":0.00241,"70":0.00481,"71":0.00481,"72":0.00241,"73":0,"74":0.00962,"75":0,"76":0,"77":0.00241,"78":0.00241,"79":0.00481,"80":0.00722,"81":0.00481,"83":0.00722,"84":0.00241,"85":0.00241,"86":0.00481,"87":0.00962,"88":0.00241,"89":0.00241,"90":0.00241,"91":0.00481,"92":0.00481,"93":0.00241,"94":0.00962,"95":0.00481,"96":0.00722,"97":0.00722,"98":0.00481,"99":0.00962,"100":0.00481,"101":0.00722,"102":0.00722,"103":0.02646,"104":0.01924,"105":0.01684,"106":0.01924,"107":0.03608,"108":0.10823,"109":2.68398,"110":1.21212,"111":0.00241,"112":0.00241,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00241,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00241,"56":0,"57":0,"58":0.00241,"60":0.00241,"62":0,"63":0.00481,"64":0.00481,"65":0.00241,"66":0.00481,"67":0.11304,"68":0,"69":0,"70":0,"71":0,"72":0.00241,"73":0.00962,"74":0.00722,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.02165,"95":0.02405,"9.5-9.6":0,"10.0-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,"16":0,"17":0,"18":0.00241,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00241,"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.00241,"108":0.00722,"109":0.10582,"110":0.12266},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00241,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00241,"14.1":0.00241,"15.1":0,"15.2-15.3":0,"15.4":0.00241,"15.5":0.00241,"15.6":0.00962,"16.0":0.00241,"16.1":0.00722,"16.2":0.01203,"16.3":0.01203,"16.4":0},G:{"8":0.00088,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00088,"7.0-7.1":0.00673,"8.1-8.4":0,"9.0-9.2":0.00029,"9.3":0.00439,"10.0-10.2":0.00059,"10.3":0.0041,"11.0-11.2":0.00585,"11.3-11.4":0.00088,"12.0-12.1":0.0041,"12.2-12.5":0.06903,"13.0-13.1":0.00234,"13.2":0.00351,"13.3":0.00439,"13.4-13.7":0.01229,"14.0-14.4":0.04768,"14.5-14.8":0.06786,"15.0-15.1":0.04622,"15.2-15.3":0.03861,"15.4":0.03452,"15.5":0.07137,"15.6":0.13777,"16.0":0.23312,"16.1":0.42559,"16.2":0.69557,"16.3":0.78625,"16.4":0.0041},P:{"4":0.08944,"20":0.13913,"5.0-5.4":0,"6.2-6.4":0.00994,"7.2-7.4":0.05963,"8.2":0,"9.2":0.00994,"10.1":0,"11.1-11.2":0.00994,"12.0":0.00994,"13.0":0.02981,"14.0":0.01988,"15.0":0.00994,"16.0":0.04969,"17.0":0.03975,"18.0":0.04969,"19.0":0.40746},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03481},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00722,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.51646,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":2.06584},H:{"0":2.31533},L:{"0":84.58253},R:{_:"0"},M:{"0":0.1519},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js index dc5e85b852f799..0655e7dde4f9e6 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,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02812,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00352,"69":0.01055,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00352,"98":0,"99":0,"100":0,"101":0,"102":0.00352,"103":0,"104":0,"105":0.00352,"106":0.00352,"107":0.00703,"108":0.16872,"109":0.09491,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00352,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00352,"34":0,"35":0,"36":0,"37":0,"38":0.01055,"39":0,"40":0.00352,"41":0,"42":0,"43":0.01406,"44":0,"45":0,"46":0,"47":0.00352,"48":0,"49":0.01055,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00352,"57":0,"58":0,"59":0,"60":0.00352,"61":0,"62":0,"63":0.00352,"64":0.00352,"65":0.00703,"66":0,"67":0,"68":0.00352,"69":0.00352,"70":0.00703,"71":0.00703,"72":0.00352,"73":0,"74":0.00352,"75":0,"76":0,"77":0.00352,"78":0.00352,"79":0.01758,"80":0.00352,"81":0.01055,"83":0.01055,"84":0.00352,"85":0.00703,"86":0.00703,"87":0.01055,"88":0.01055,"89":0.00352,"90":0.00352,"91":0.00352,"92":0.01055,"93":0.00352,"94":0.00352,"95":0.00703,"96":0.00703,"97":0.01406,"98":0.01055,"99":0.00703,"100":0.01406,"101":0.00352,"102":0.01055,"103":0.02461,"104":0.02461,"105":1.11426,"106":0.01758,"107":0.0457,"108":4.18285,"109":3.18459,"110":0.00352,"111":0.00352,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00352,"62":0,"63":0.00352,"64":0,"65":0,"66":0.00352,"67":0.00703,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01406,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00703,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00352,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.06679,"94":0.18278,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00352,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00703,"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.00703,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00352,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.03515,"108":0.35502,"109":0.27417},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00352,"14":0.02461,"15":0.00352,_:"0","3.1":0,"3.2":0,"5.1":0.09842,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01758,"14.1":0.05976,"15.1":0.00703,"15.2-15.3":0.01055,"15.4":0.02461,"15.5":0.06679,"15.6":0.41477,"16.0":0.01406,"16.1":0.16872,"16.2":0.3269,"16.3":0.01406},G:{"8":0,"3.2":0.00238,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07622,"8.1-8.4":0,"9.0-9.2":0.03811,"9.3":0.05478,"10.0-10.2":0.00238,"10.3":0.05955,"11.0-11.2":0.00953,"11.3-11.4":0.01429,"12.0-12.1":0.02858,"12.2-12.5":0.65738,"13.0-13.1":0.00476,"13.2":0.01429,"13.3":0.04764,"13.4-13.7":0.131,"14.0-14.4":0.36442,"14.5-14.8":0.67405,"15.0-15.1":0.14767,"15.2-15.3":0.24294,"15.4":0.35727,"15.5":0.81458,"15.6":1.85543,"16.0":4.07528,"16.1":5.53057,"16.2":5.20902,"16.3":0.53353},P:{"4":0.11265,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14337,"8.2":0,"9.2":0.02048,"10.1":0,"11.1-11.2":0.0512,"12.0":0.02048,"13.0":0.09216,"14.0":0.0512,"15.0":0.03072,"16.0":0.09216,"17.0":0.14337,"18.0":0.12289,"19.0":2.34509},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00903,"4.2-4.3":0.00677,"4.4":0,"4.4.3-4.4.4":0.13098},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00803,"9":0,"10":0,"11":0.04821,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11025},Q:{"13.1":0},O:{"0":0.45395},H:{"0":0.38679},L:{"0":60.23989},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04606,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00329,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00329,"75":0,"76":0,"77":0,"78":0.00329,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00329,"100":0,"101":0,"102":0.00658,"103":0,"104":0.00329,"105":0.00329,"106":0.00329,"107":0.00329,"108":0.00987,"109":0.13489,"110":0.08883,"111":0.00329,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00987,"39":0,"40":0,"41":0,"42":0,"43":0.01316,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00987,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00329,"57":0,"58":0,"59":0,"60":0.00329,"61":0,"62":0,"63":0.00329,"64":0.00329,"65":0.00329,"66":0.00329,"67":0,"68":0.00329,"69":0.00329,"70":0.00329,"71":0.00658,"72":0.00329,"73":0.00329,"74":0.00329,"75":0.00329,"76":0,"77":0.00329,"78":0.00658,"79":0.01974,"80":0.00329,"81":0.01316,"83":0.01316,"84":0.00329,"85":0.00658,"86":0.00658,"87":0.01645,"88":0.00987,"89":0.00329,"90":0.00329,"91":0.00329,"92":0.01645,"93":0.00329,"94":0.00329,"95":0.00987,"96":0.00987,"97":0.01316,"98":0.00987,"99":0.00658,"100":0.01645,"101":0.00329,"102":0.00987,"103":0.01974,"104":0.01645,"105":0.70406,"106":0.01316,"107":0.02303,"108":0.09212,"109":4.07302,"110":1.56604,"111":0.00329,"112":0.00329,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00329,"67":0.02632,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00329,"75":0,"76":0,"77":0,"78":0,"79":0.00658,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00329,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00987,"94":0.11844,"95":0.11515,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00329,"79":0,"80":0,"81":0,"83":0,"84":0.00329,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00987,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00329,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.02303,"108":0.02961,"109":0.27636,"110":0.33887},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00329,"14":0.04935,"15":0.02303,_:"0","3.1":0,"3.2":0,"5.1":0.07896,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00987,"14.1":0.08883,"15.1":0.00658,"15.2-15.3":0.00987,"15.4":0.02303,"15.5":0.12831,"15.6":0.44744,"16.0":0.01974,"16.1":0.16779,"16.2":0.4935,"16.3":0.2632,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00254,"6.0-6.1":0,"7.0-7.1":0.09385,"8.1-8.4":0,"9.0-9.2":0.00507,"9.3":0.05834,"10.0-10.2":0,"10.3":0.0558,"11.0-11.2":0.00761,"11.3-11.4":0.01268,"12.0-12.1":0.02029,"12.2-12.5":0.61636,"13.0-13.1":0.00761,"13.2":0.00761,"13.3":0.03551,"13.4-13.7":0.11161,"14.0-14.4":0.3196,"14.5-14.8":0.76602,"15.0-15.1":0.16233,"15.2-15.3":0.23589,"15.4":0.31706,"15.5":0.68992,"15.6":1.53711,"16.0":3.45215,"16.1":4.05837,"16.2":5.11608,"16.3":4.66205,"16.4":0.01522},P:{"4":0.08265,"20":0.87813,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10331,"8.2":0,"9.2":0.02066,"10.1":0,"11.1-11.2":0.06199,"12.0":0.02066,"13.0":0.07232,"14.0":0.06199,"15.0":0.04132,"16.0":0.09298,"17.0":0.1343,"18.0":0.1343,"19.0":1.68394},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00632,"4.2-4.3":0.00843,"4.4":0,"4.4.3-4.4.4":0.10118},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02632,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.44286},H:{"0":0.38116},L:{"0":60.46988},R:{_:"0"},M:{"0":0.11407},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js index ea54a4b256db7c..d2818dc36e04b4 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.00214,"48":0,"49":0,"50":0,"51":0,"52":0.00857,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00214,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01072,"69":0,"70":0,"71":0,"72":0.00214,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00214,"79":0,"80":0.00214,"81":0.00214,"82":0.00214,"83":0,"84":0.00214,"85":0,"86":0.00214,"87":0.00214,"88":0.00214,"89":0.00214,"90":0.00214,"91":0.00214,"92":0.00214,"93":0.00214,"94":0.01286,"95":0.00429,"96":0.00214,"97":0.00429,"98":0.00214,"99":0.00643,"100":0.00429,"101":0.00643,"102":0.02143,"103":0.00857,"104":0.01286,"105":0.015,"106":0.01929,"107":0.03215,"108":0.48003,"109":0.26145,"110":0.00214,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00214,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00214,"47":0,"48":0.00214,"49":0.00214,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00214,"59":0,"60":0,"61":0,"62":0.00214,"63":0.01072,"64":0.00214,"65":0,"66":0,"67":0,"68":0,"69":0.00214,"70":0.00214,"71":0.00429,"72":0.00214,"73":0.00214,"74":0.00214,"75":0.00214,"76":0.00214,"77":0.00643,"78":0.00643,"79":0.00643,"80":0.00643,"81":0.01072,"83":0.00643,"84":0.00643,"85":0.00643,"86":0.01072,"87":0.00857,"88":0.00429,"89":0.00429,"90":0.00429,"91":0.00643,"92":0.00643,"93":0.00214,"94":0.00429,"95":0.00857,"96":0.00857,"97":0.00429,"98":0.00643,"99":0.00643,"100":0.01072,"101":0.00643,"102":0.01072,"103":0.02357,"104":0.02357,"105":0.02786,"106":0.01929,"107":0.04286,"108":1.29009,"109":1.2408,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00429,"73":0.00857,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00429,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00214,"93":0.01286,"94":0.06215,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00214,"15":0,"16":0,"17":0,"18":0.00429,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00214,"90":0.00214,"91":0,"92":0.00857,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00214,"101":0,"102":0,"103":0,"104":0.00214,"105":0.00214,"106":0.00214,"107":0.00643,"108":0.07715,"109":0.07286},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00214,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00214,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00214,"14.1":0.00214,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00214,"15.6":0.00643,"16.0":0,"16.1":0.00214,"16.2":0.00643,"16.3":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.00404,"7.0-7.1":0.00202,"8.1-8.4":0,"9.0-9.2":0.00202,"9.3":0.00404,"10.0-10.2":0.00404,"10.3":0.02473,"11.0-11.2":0.00959,"11.3-11.4":0.0106,"12.0-12.1":0.02573,"12.2-12.5":0.48846,"13.0-13.1":0.01968,"13.2":0.01817,"13.3":0.05147,"13.4-13.7":0.09638,"14.0-14.4":0.29671,"14.5-14.8":0.33455,"15.0-15.1":0.18872,"15.2-15.3":0.20739,"15.4":0.19478,"15.5":0.33405,"15.6":0.45415,"16.0":0.42488,"16.1":0.53236,"16.2":0.61411,"16.3":0.0545},P:{"4":0.40528,"5.0-5.4":0.04053,"6.2-6.4":0.06079,"7.2-7.4":0.46608,"8.2":0.06079,"9.2":0.15198,"10.1":0.06079,"11.1-11.2":0.3141,"12.0":0.13172,"13.0":0.39515,"14.0":0.45595,"15.0":0.23304,"16.0":0.87136,"17.0":0.8207,"18.0":1.074,"19.0":3.0903},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00847,"4.4":0,"4.4.3-4.4.4":0.03582},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00433,"9":0.00217,"10":0.00217,"11":0.41137,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.87213},Q:{"13.1":0},O:{"0":0.055},H:{"0":0.39424},L:{"0":78.99761},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00222,"48":0,"49":0,"50":0.00222,"51":0,"52":0.01109,"53":0,"54":0,"55":0,"56":0.00222,"57":0,"58":0,"59":0,"60":0.00222,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01331,"69":0,"70":0,"71":0,"72":0.00222,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00222,"82":0.00222,"83":0.00222,"84":0.00222,"85":0.00222,"86":0.00222,"87":0.00222,"88":0.00222,"89":0.00222,"90":0.00222,"91":0.00222,"92":0.00222,"93":0.00222,"94":0.01109,"95":0.00444,"96":0.00222,"97":0.00222,"98":0.00222,"99":0.00665,"100":0.00444,"101":0.00665,"102":0.02218,"103":0.00887,"104":0.01331,"105":0.01553,"106":0.01553,"107":0.02218,"108":0.05101,"109":0.4924,"110":0.3083,"111":0.00222,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00222,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00222,"47":0,"48":0,"49":0.00444,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00222,"59":0,"60":0,"61":0,"62":0.00222,"63":0.01109,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00222,"70":0.00222,"71":0.00444,"72":0.00222,"73":0,"74":0.00222,"75":0.00222,"76":0.00222,"77":0.00444,"78":0.00444,"79":0.00444,"80":0.00665,"81":0.00665,"83":0.00444,"84":0.00665,"85":0.00444,"86":0.00887,"87":0.00887,"88":0.00444,"89":0.00444,"90":0.00222,"91":0.00665,"92":0.00444,"93":0.00222,"94":0.00444,"95":0.00665,"96":0.00665,"97":0.00444,"98":0.00444,"99":0.00665,"100":0.01109,"101":0.00444,"102":0.01109,"103":0.01996,"104":0.01996,"105":0.02218,"106":0.01553,"107":0.02662,"108":0.06876,"109":1.87421,"110":0.79848,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00222,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00222,"73":0.00444,"74":0.00222,"75":0,"76":0,"77":0,"78":0,"79":0.00444,"80":0,"81":0,"82":0,"83":0.00222,"84":0,"85":0.00222,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00444,"94":0.03992,"95":0.03327,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00222,"13":0.00222,"14":0.00222,"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.00222,"90":0.00222,"91":0,"92":0.00887,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00222,"101":0,"102":0,"103":0,"104":0.00222,"105":0.00222,"106":0,"107":0.00444,"108":0.00665,"109":0.07541,"110":0.07763},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.00222,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00222,"14.1":0.00222,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00222,"15.6":0.00665,"16.0":0,"16.1":0.00222,"16.2":0.00222,"16.3":0.00444,"16.4":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.00131,"7.0-7.1":0.00327,"8.1-8.4":0,"9.0-9.2":0.00065,"9.3":0.00392,"10.0-10.2":0.00327,"10.3":0.02028,"11.0-11.2":0.00981,"11.3-11.4":0.00916,"12.0-12.1":0.02551,"12.2-12.5":0.50691,"13.0-13.1":0.01962,"13.2":0.01504,"13.3":0.04579,"13.4-13.7":0.09092,"14.0-14.4":0.26752,"14.5-14.8":0.31069,"15.0-15.1":0.19884,"15.2-15.3":0.22827,"15.4":0.22369,"15.5":0.32246,"15.6":0.44608,"16.0":0.58409,"16.1":0.71425,"16.2":0.84245,"16.3":0.78359,"16.4":0.00065},P:{"4":0.42482,"20":0.51585,"5.0-5.4":0.04046,"6.2-6.4":0.04046,"7.2-7.4":0.45516,"8.2":0.05057,"9.2":0.16184,"10.1":0.06069,"11.1-11.2":0.26298,"12.0":0.11126,"13.0":0.35402,"14.0":0.37425,"15.0":0.19218,"16.0":0.75861,"17.0":0.74849,"18.0":0.8901,"19.0":3.09512},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00595,"4.4":0,"4.4.3-4.4.4":0.02627},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00448,"9":0.00224,"10":0.00224,"11":0.47457,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.06226},H:{"0":0.42731},L:{"0":77.25523},R:{_:"0"},M:{"0":0.98831},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js index eed4bad2cfb044..02477405c8886c 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.00566,"36":0,"37":0,"38":0,"39":0,"40":0.00566,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01131,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03394,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00566,"92":0,"93":0,"94":0,"95":0.02263,"96":0,"97":0,"98":0,"99":0.00566,"100":0,"101":0.00566,"102":0.14708,"103":0.00566,"104":0,"105":0.01697,"106":0.01697,"107":0.05091,"108":1.36334,"109":0.6845,"110":0.00566,"111":0.00566,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00566,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00566,"39":0.00566,"40":0,"41":0,"42":0,"43":0.00566,"44":0.00566,"45":0.00566,"46":0.00566,"47":0.00566,"48":0,"49":0.00566,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00566,"66":0,"67":0.00566,"68":0,"69":0,"70":0.00566,"71":0,"72":0.01131,"73":0.00566,"74":0,"75":0,"76":0,"77":0.00566,"78":0.0396,"79":0.03394,"80":0.01697,"81":0.00566,"83":0,"84":0,"85":0.02829,"86":0,"87":0.05091,"88":0,"89":0,"90":0.01131,"91":0.00566,"92":0.01131,"93":0,"94":0,"95":0.01697,"96":0.06223,"97":0.01131,"98":0.01131,"99":0,"100":0.01131,"101":0.00566,"102":0.00566,"103":0.14708,"104":0.02263,"105":0.05657,"106":0.0792,"107":0.39033,"108":9.70176,"109":8.25356,"110":0.02829,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00566,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00566,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00566,"92":0,"93":0.54873,"94":0.58833,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00566,"88":0,"89":0,"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.00566,"104":0.00566,"105":0.00566,"106":0.00566,"107":0.05091,"108":1.55568,"109":1.59527},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02263,"14":0.1188,"15":0.02263,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02263,"12.1":0.04526,"13.1":0.20365,"14.1":0.33376,"15.1":0.05091,"15.2-15.3":0.04526,"15.4":0.13011,"15.5":0.18102,"15.6":1.43122,"16.0":0.22628,"16.1":0.59399,"16.2":1.07483,"16.3":0.06788},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01332,"8.1-8.4":0.0233,"9.0-9.2":0,"9.3":0.04661,"10.0-10.2":0,"10.3":0.07324,"11.0-11.2":0.07324,"11.3-11.4":0.00333,"12.0-12.1":0.01665,"12.2-12.5":0.33959,"13.0-13.1":0,"13.2":0,"13.3":0.01665,"13.4-13.7":0.04994,"14.0-14.4":0.25635,"14.5-14.8":0.63256,"15.0-15.1":0.11652,"15.2-15.3":0.30629,"15.4":0.22306,"15.5":0.86228,"15.6":4.77752,"16.0":5.66976,"16.1":12.1552,"16.2":6.27902,"16.3":0.38287},P:{"4":0.05144,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01029,"11.1-11.2":0,"12.0":0,"13.0":0.1646,"14.0":0.01029,"15.0":0,"16.0":0.04115,"17.0":0.06172,"18.0":0.15431,"19.0":3.38451},I:{"0":0,"3":0,"4":0.01207,"2.1":0.00241,"2.2":0.01207,"2.3":0.01448,"4.1":0.02655,"4.2-4.3":0.04586,"4.4":0,"4.4.3-4.4.4":0.09655},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00566,"7":0.00566,"8":0.04526,"9":0.01131,"10":0.01131,"11":0.05657,"5.5":0},J:{"7":0,"10":0.00434},N:{"10":0,"11":0.01303},R:{_:"0"},M:{"0":0.35613},Q:{"13.1":0},O:{"0":0.0304},H:{"0":0.22203},L:{"0":29.0731},S:{"2.5":0.01737}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01709,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03988,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0057,"92":0,"93":0,"94":0,"95":0.02849,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.12533,"103":0.0057,"104":0,"105":0.02849,"106":0.01709,"107":0.01139,"108":0.06267,"109":1.44134,"110":0.82037,"111":0.0057,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01139,"36":0,"37":0,"38":0.0057,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0057,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0057,"66":0,"67":0.0057,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0057,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.03418,"80":0.0057,"81":0.0057,"83":0,"84":0,"85":0.03418,"86":0,"87":0.03988,"88":0,"89":0,"90":0.01139,"91":0.0057,"92":0.02849,"93":0,"94":0,"95":0.0057,"96":0.06267,"97":0.0057,"98":0.0057,"99":0,"100":0.02279,"101":0.0057,"102":0.0057,"103":0.15382,"104":0.01139,"105":0.02279,"106":0.03418,"107":0.10255,"108":0.9514,"109":10.65909,"110":6.72246,"111":0.01139,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0057,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0057,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.09115,"94":0.81467,"95":0.34752,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.0057,"105":0,"106":0,"107":0.04558,"108":0.08546,"109":1.34449,"110":1.78316},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0057,"14":0.11394,"15":0.03418,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01139,"12.1":0.04558,"13.1":0.22218,"14.1":0.35321,"15.1":0.21649,"15.2-15.3":0.06836,"15.4":0.14812,"15.5":0.14243,"15.6":1.11661,"16.0":0.11964,"16.1":0.3817,"16.2":1.15079,"16.3":0.83746,"16.4":0.0057},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00328,"9.3":0.01638,"10.0-10.2":0,"10.3":0.06225,"11.0-11.2":0.03604,"11.3-11.4":0,"12.0-12.1":0.02293,"12.2-12.5":0.45868,"13.0-13.1":0,"13.2":0,"13.3":0.00328,"13.4-13.7":0.04259,"14.0-14.4":0.26865,"14.5-14.8":0.59956,"15.0-15.1":0.23262,"15.2-15.3":0.27521,"15.4":0.20641,"15.5":0.65525,"15.6":3.57113,"16.0":4.40331,"16.1":9.51757,"16.2":7.92857,"16.3":3.51216,"16.4":0.01311},P:{"4":0.04141,"20":1.33558,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01035,"11.1-11.2":0,"12.0":0,"13.0":0.10353,"14.0":0.01035,"15.0":0,"16.0":0.02071,"17.0":0.07247,"18.0":0.04141,"19.0":2.11208},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.01903,"2.3":0,"4.1":0.01427,"4.2-4.3":0.04758,"4.4":0,"4.4.3-4.4.4":0.0333},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01709,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.01721,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01721},H:{"0":0.23221},L:{"0":29.21501},R:{_:"0"},M:{"0":0.61533},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js index 9aa5531de616d2..94cabbe284bf28 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.00466,"48":0.00933,"49":0,"50":0,"51":0,"52":0.03264,"53":0,"54":0,"55":0,"56":0.00466,"57":0,"58":0,"59":0.00466,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00466,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0373,"79":0,"80":0.00466,"81":0.00466,"82":0.00466,"83":0,"84":0.00466,"85":0,"86":0,"87":0.00933,"88":0.00933,"89":0,"90":0,"91":0.00933,"92":0,"93":0,"94":0.02798,"95":0.00466,"96":0.00466,"97":0.00466,"98":0,"99":0.00466,"100":0.00466,"101":0.00466,"102":0.04197,"103":0.00466,"104":0.00466,"105":0.00933,"106":0.02332,"107":0.02798,"108":1.05384,"109":0.66215,"110":0.00466,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00466,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04197,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00466,"59":0,"60":0.00466,"61":0,"62":0,"63":0.06528,"64":0,"65":0.00466,"66":0.04663,"67":0.01399,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00466,"75":0,"76":0,"77":0.00466,"78":0.00466,"79":0.0373,"80":0.00933,"81":0.02332,"83":0.01865,"84":0.02332,"85":0.03264,"86":0.03264,"87":0.04197,"88":0.00933,"89":0.00933,"90":0.00933,"91":0.00466,"92":0.0373,"93":0.00933,"94":0.00466,"95":0.00933,"96":0.01399,"97":0.01399,"98":0.01399,"99":0.01865,"100":0.02332,"101":0.01399,"102":0.01865,"103":0.08393,"104":0.02798,"105":0.0373,"106":0.04663,"107":0.11658,"108":6.35567,"109":6.78933,"110":0.00466,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00466,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00933,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00466,"90":0.00466,"91":0,"92":0.00933,"93":0.21916,"94":0.33574,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00466,"16":0,"17":0.00466,"18":0.00466,"79":0,"80":0,"81":0,"83":0,"84":0.00466,"85":0.00466,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00466,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00466,"102":0,"103":0.00466,"104":0.00933,"105":0.00466,"106":0.00933,"107":0.02798,"108":0.9699,"109":1.03519},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00933,"14":0.06062,"15":0.01865,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00466,"10.1":0,"11.1":0.00933,"12.1":0.02332,"13.1":0.10259,"14.1":0.13523,"15.1":0.02798,"15.2-15.3":0.02332,"15.4":0.06062,"15.5":0.10259,"15.6":0.47563,"16.0":0.0886,"16.1":0.29843,"16.2":0.5036,"16.3":0.04197},G:{"8":0.00243,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00487,"6.0-6.1":0,"7.0-7.1":0.00487,"8.1-8.4":0,"9.0-9.2":0.0073,"9.3":0.10219,"10.0-10.2":0.0073,"10.3":0.09489,"11.0-11.2":0.01947,"11.3-11.4":0.04866,"12.0-12.1":0.02433,"12.2-12.5":0.41364,"13.0-13.1":0.0146,"13.2":0.00973,"13.3":0.04136,"13.4-13.7":0.13869,"14.0-14.4":0.34308,"14.5-14.8":0.76158,"15.0-15.1":0.20925,"15.2-15.3":0.25305,"15.4":0.29928,"15.5":0.63505,"15.6":2.24094,"16.0":3.85656,"16.1":7.47223,"16.2":5.69846,"16.3":0.53043},P:{"4":0.09292,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01032,"10.1":0.01032,"11.1-11.2":0.0413,"12.0":0.01032,"13.0":0.0413,"14.0":0.03097,"15.0":0.02065,"16.0":0.0826,"17.0":0.0826,"18.0":0.15487,"19.0":2.72576},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01246,"4.2-4.3":0.03738,"4.4":0,"4.4.3-4.4.4":0.11213},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0049,"9":0.0049,"10":0,"11":0.08813,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.30421},Q:{"13.1":0},O:{"0":0.09607},H:{"0":0.25264},L:{"0":49.51224},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00465,"48":0.00465,"49":0,"50":0,"51":0,"52":0.03252,"53":0,"54":0,"55":0,"56":0.00465,"57":0,"58":0,"59":0.00929,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00465,"69":0,"70":0,"71":0,"72":0.00465,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03252,"79":0.00465,"80":0.00465,"81":0.00929,"82":0.00465,"83":0.00465,"84":0,"85":0,"86":0,"87":0.01394,"88":0.00465,"89":0,"90":0,"91":0.00465,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00465,"100":0.00929,"101":0,"102":0.04646,"103":0.00465,"104":0.00465,"105":0.00465,"106":0.01394,"107":0.00929,"108":0.05111,"109":1.02677,"110":0.72013,"111":0.00465,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00465,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03717,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00465,"61":0,"62":0,"63":0.07898,"64":0,"65":0.00465,"66":0.05575,"67":0.00929,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00465,"75":0,"76":0,"77":0.00929,"78":0.00465,"79":0.02323,"80":0.00929,"81":0.01858,"83":0.02323,"84":0.03717,"85":0.04646,"86":0.05575,"87":0.06504,"88":0.00465,"89":0.01394,"90":0.00929,"91":0.00929,"92":0.05111,"93":0.00465,"94":0.00465,"95":0.00465,"96":0.00929,"97":0.00929,"98":0.00929,"99":0.00929,"100":0.02323,"101":0.02788,"102":0.01394,"103":0.07434,"104":0.02323,"105":0.03252,"106":0.03252,"107":0.05575,"108":0.25088,"109":7.65661,"110":4.98051,"111":0.00465,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00465,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00929,"68":0,"69":0,"70":0,"71":0.00465,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02788,"94":0.29734,"95":0.19513,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00465,"16":0,"17":0.00465,"18":0.00929,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00465,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00465,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00465,"102":0,"103":0,"104":0.00465,"105":0.00465,"106":0.00465,"107":0.01858,"108":0.05111,"109":0.83628,"110":1.14292},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00929,"14":0.0604,"15":0.01394,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00929,"12.1":0.02323,"13.1":0.10686,"14.1":0.12544,"15.1":0.02788,"15.2-15.3":0.01858,"15.4":0.05111,"15.5":0.09292,"15.6":0.3531,"16.0":0.05575,"16.1":0.19513,"16.2":0.45531,"16.3":0.39026,"16.4":0},G:{"8":0.00482,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00241,"6.0-6.1":0.00723,"7.0-7.1":0.00482,"8.1-8.4":0,"9.0-9.2":0.00241,"9.3":0.1085,"10.0-10.2":0.00241,"10.3":0.09886,"11.0-11.2":0.01688,"11.3-11.4":0.05546,"12.0-12.1":0.02411,"12.2-12.5":0.40507,"13.0-13.1":0.01206,"13.2":0.01206,"13.3":0.04099,"13.4-13.7":0.16396,"14.0-14.4":0.37614,"14.5-14.8":0.67753,"15.0-15.1":0.1953,"15.2-15.3":0.2387,"15.4":0.26522,"15.5":0.54009,"15.6":1.67814,"16.0":2.88612,"16.1":5.4178,"16.2":5.66374,"16.3":4.1182,"16.4":0.0217},P:{"4":0.10291,"20":1.00852,"5.0-5.4":0.01029,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01029,"11.1-11.2":0.04116,"12.0":0.01029,"13.0":0.04116,"14.0":0.04116,"15.0":0.02058,"16.0":0.07204,"17.0":0.07204,"18.0":0.10291,"19.0":1.77006},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03644,"4.2-4.3":0.01215,"4.4":0,"4.4.3-4.4.4":0.10323},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00485,"9":0.00485,"10":0,"11":0.10181,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.11779},H:{"0":0.25851},L:{"0":49.88642},R:{_:"0"},M:{"0":0.30518},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JE.js index fa355274f80a1b..83ca088a3be5e9 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.00482,"79":0,"80":0,"81":0,"82":0,"83":0.00482,"84":0,"85":0,"86":0,"87":0.00965,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00482,"102":0.03376,"103":0,"104":0,"105":0,"106":0.00965,"107":0.00482,"108":0.55947,"109":0.35208,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00965,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00482,"80":0.02894,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00965,"88":0.01929,"89":0,"90":0,"91":0.00482,"92":0,"93":0,"94":0.01929,"95":0.00482,"96":0.00482,"97":0.00482,"98":0,"99":0.00482,"100":0,"101":0.01447,"102":0.00482,"103":0.08681,"104":0.00965,"105":0.02894,"106":0.01929,"107":0.14951,"108":5.0545,"109":4.278,"110":0.00482,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00482,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.28456,"94":0.13022,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00482,"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.01447,"101":0,"102":0,"103":0,"104":0.00482,"105":0.00965,"106":0.00482,"107":0.13022,"108":2.30539,"109":2.12694},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00965,"14":0.16398,"15":0.01929,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.05305,"13.1":0.1254,"14.1":0.39066,"15.1":0.02412,"15.2-15.3":0.0627,"15.4":0.12058,"15.5":0.21704,"15.6":2.0546,"16.0":0.1881,"16.1":0.52088,"16.2":1.14305,"16.3":0.07235},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0335,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.02233,"9.3":0.55826,"10.0-10.2":0,"10.3":0.45777,"11.0-11.2":0,"11.3-11.4":0.06699,"12.0-12.1":0.00558,"12.2-12.5":2.00416,"13.0-13.1":0,"13.2":0.01117,"13.3":0.02791,"13.4-13.7":0.08932,"14.0-14.4":1.01603,"14.5-14.8":1.30633,"15.0-15.1":0.19539,"15.2-15.3":0.22889,"15.4":0.6755,"15.5":1.39007,"15.6":7.14015,"16.0":5.28673,"16.1":19.9299,"16.2":11.16521,"16.3":0.56384},P:{"4":0.2469,"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.02147,"12.0":0,"13.0":0,"14.0":0,"15.0":0.02147,"16.0":0.01073,"17.0":0.07514,"18.0":0.05367,"19.0":3.5103},I:{"0":0,"3":0,"4":0.01757,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.26358},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.52571,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.23297},Q:{"13.1":0},O:{"0":0},H:{"0":0.0147},L:{"0":19.64019},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00489,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00489,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00489,"88":0,"89":0,"90":0,"91":0.00489,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00977,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00977,"109":0.89396,"110":0.36638,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00977,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00489,"80":0.02931,"81":0,"83":0,"84":0,"85":0,"86":0.00977,"87":0.00977,"88":0,"89":0,"90":0,"91":0,"92":0.03908,"93":0,"94":0.00977,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00489,"101":0.00489,"102":0,"103":0.06839,"104":0,"105":0.01954,"106":0,"107":0.09282,"108":0.42988,"109":5.45166,"110":3.68329,"111":0.00489,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02931,"94":0.1954,"95":0.07328,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00489,"91":0,"92":0.00489,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00977,"101":0,"102":0,"103":0,"104":0,"105":0.00489,"106":0,"107":0.04885,"108":0.0977,"109":1.79768,"110":2.3448},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00489,"14":0.13678,"15":0.01954,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00489,"12.1":0.05374,"13.1":0.13678,"14.1":0.25891,"15.1":0.04885,"15.2-15.3":0.05862,"15.4":0.05374,"15.5":0.25891,"15.6":1.26522,"16.0":0.14655,"16.1":0.60574,"16.2":1.64625,"16.3":0.7816,"16.4":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.64838,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.46083,"10.0-10.2":0,"10.3":0.35902,"11.0-11.2":0.00536,"11.3-11.4":0.19291,"12.0-12.1":0,"12.2-12.5":2.11661,"13.0-13.1":0,"13.2":0.01072,"13.3":0.02679,"13.4-13.7":0.0643,"14.0-14.4":0.81985,"14.5-14.8":1.14672,"15.0-15.1":0.10717,"15.2-15.3":0.23042,"15.4":0.56264,"15.5":1.43072,"15.6":4.37253,"16.0":4.20642,"16.1":13.94817,"16.2":13.53021,"16.3":6.14084,"16.4":0},P:{"4":0.22822,"20":1.36934,"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.01087,"12.0":0,"13.0":0,"14.0":0,"15.0":0.01087,"16.0":0.0326,"17.0":0.04347,"18.0":0.06521,"19.0":2.5974},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.35218},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.49339,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.04358},L:{"0":20.17894},R:{_:"0"},M:{"0":0.43478},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JM.js index 3f20ecdeaee1c7..94fcc65d7cbcd4 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.00399,"69":0,"70":0,"71":0,"72":0,"73":0.01597,"74":0,"75":0,"76":0,"77":0,"78":0.00399,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00399,"88":0,"89":0,"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.00399,"105":0,"106":0.00399,"107":0.01198,"108":0.21956,"109":0.12375,"110":0.00399,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00399,"38":0.00399,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00399,"50":0,"51":0,"52":0,"53":0.00798,"54":0,"55":0.00399,"56":0,"57":0,"58":0.00399,"59":0,"60":0,"61":0,"62":0,"63":0.00399,"64":0,"65":0,"66":0.01597,"67":0,"68":0.00798,"69":0.00399,"70":0.00399,"71":0,"72":0,"73":0.02794,"74":0.00399,"75":0.00798,"76":0.02395,"77":0,"78":0,"79":0.03992,"80":0.00399,"81":0.01597,"83":0.06786,"84":0.00399,"85":0.00399,"86":0.00399,"87":0.01198,"88":0.00798,"89":0.00399,"90":0.00399,"91":0.02395,"92":0.00798,"93":0.08383,"94":0.00798,"95":0.00399,"96":0.00399,"97":0.00798,"98":0.02794,"99":0.01198,"100":0.01198,"101":0.00798,"102":0.01996,"103":0.19162,"104":0.01996,"105":0.03992,"106":0.0479,"107":0.10778,"108":5.15766,"109":3.82434,"110":0.02395,"111":0.00399,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00399,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00399,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00399,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.13972,"94":0.36327,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00399,"15":0.00399,"16":0,"17":0,"18":0.00798,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00798,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00798,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00399,"104":0.00399,"105":0.00399,"106":0.00399,"107":0.09182,"108":1.04191,"109":0.80638},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00399,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01597,"15":0.00399,_:"0","3.1":0,"3.2":0,"5.1":0.00798,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00399,"12.1":0.00798,"13.1":0.07186,"14.1":0.0519,"15.1":0.00798,"15.2-15.3":0.01198,"15.4":0.03194,"15.5":0.03593,"15.6":0.2515,"16.0":0.02395,"16.1":0.10778,"16.2":0.18762,"16.3":0.01597},G:{"8":0.00977,"3.2":0.00244,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00489,"6.0-6.1":0,"7.0-7.1":0.1955,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13196,"10.0-10.2":0,"10.3":0.08064,"11.0-11.2":0.05621,"11.3-11.4":0.00977,"12.0-12.1":0.01955,"12.2-12.5":0.51806,"13.0-13.1":0.00733,"13.2":0.00733,"13.3":0.02444,"13.4-13.7":0.07331,"14.0-14.4":0.27125,"14.5-14.8":0.65247,"15.0-15.1":0.17106,"15.2-15.3":0.23948,"15.4":0.22726,"15.5":0.56694,"15.6":2.22133,"16.0":3.66067,"16.1":6.71285,"16.2":5.48367,"16.3":0.45209},P:{"4":0.19087,"5.0-5.4":0,"6.2-6.4":0.02121,"7.2-7.4":0.30751,"8.2":0,"9.2":0.02121,"10.1":0,"11.1-11.2":0.08483,"12.0":0.02121,"13.0":0.05302,"14.0":0.06362,"15.0":0.04242,"16.0":0.12725,"17.0":0.08483,"18.0":0.20147,"19.0":3.56292},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.14349,"4.4":0,"4.4.3-4.4.4":0.69696},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00399,"11":0.00798,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10814},Q:{"13.1":0},O:{"0":0.36048},H:{"0":0.2844},L:{"0":55.82766},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02441,"74":0,"75":0,"76":0,"77":0,"78":0.00407,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00407,"103":0,"104":0,"105":0,"106":0,"107":0.00814,"108":0.00814,"109":0.21154,"110":0.17899,"111":0.00814,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00407,"50":0,"51":0,"52":0,"53":0.00407,"54":0,"55":0.00407,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00407,"64":0,"65":0.00407,"66":0.00814,"67":0,"68":0,"69":0.00407,"70":0.00407,"71":0,"72":0,"73":0.02848,"74":0.00814,"75":0.0122,"76":0.03254,"77":0.01627,"78":0,"79":0.03661,"80":0.00407,"81":0.0122,"83":0.08136,"84":0.00814,"85":0.00407,"86":0.00407,"87":0.02441,"88":0.00407,"89":0.00407,"90":0.00407,"91":0.0122,"92":0.00814,"93":0.09356,"94":0.0122,"95":0.00814,"96":0.00407,"97":0.00814,"98":0.0122,"99":0.0122,"100":0.00814,"101":0.00407,"102":0.01627,"103":0.25628,"104":0.00814,"105":0.02848,"106":0.02848,"107":0.04068,"108":0.65902,"109":5.4918,"110":3.46594,"111":0.01627,"112":0.00814,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0122,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01627,"94":0.18713,"95":0.13424,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00407,"17":0.00407,"18":0.00407,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00814,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00407,"104":0,"105":0,"106":0.00407,"107":0.04882,"108":0.03254,"109":0.77292,"110":1.1309},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0122,"15":0.00407,_:"0","3.1":0,"3.2":0,"5.1":0.00407,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00407,"12.1":0.00814,"13.1":0.06916,"14.1":0.04882,"15.1":0.01627,"15.2-15.3":0.0122,"15.4":0.02034,"15.5":0.04882,"15.6":0.2034,"16.0":0.03254,"16.1":0.06916,"16.2":0.23188,"16.3":0.13424,"16.4":0},G:{"8":0.00743,"3.2":0.00248,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00495,"6.0-6.1":0,"7.0-7.1":0.20791,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13613,"10.0-10.2":0,"10.3":0.04455,"11.0-11.2":0.05445,"11.3-11.4":0.00743,"12.0-12.1":0.01485,"12.2-12.5":0.58166,"13.0-13.1":0.00495,"13.2":0,"13.3":0.02475,"13.4-13.7":0.06683,"14.0-14.4":0.24009,"14.5-14.8":0.52473,"15.0-15.1":0.14356,"15.2-15.3":0.18316,"15.4":0.30197,"15.5":0.39602,"15.6":1.63112,"16.0":2.75236,"16.1":4.67802,"16.2":6.06657,"16.3":3.8736,"16.4":0.02723},P:{"4":0.18048,"20":1.17846,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.26542,"8.2":0,"9.2":0.01062,"10.1":0,"11.1-11.2":0.0637,"12.0":0,"13.0":0.0637,"14.0":0.04247,"15.0":0.02123,"16.0":0.11678,"17.0":0.0637,"18.0":0.1274,"19.0":2.00657},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.19413,"4.4":0,"4.4.3-4.4.4":0.54709},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00407,"11":0.00407,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.40338},H:{"0":0.16848},L:{"0":56.08864},R:{_:"0"},M:{"0":0.12457},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js index 2f84549567c315..4118aa3676099d 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.00256,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01537,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00256,"79":0,"80":0,"81":0.00256,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00256,"100":0,"101":0,"102":0.00256,"103":0,"104":0.00256,"105":0.00256,"106":0.00512,"107":0.00768,"108":0.15622,"109":0.07171,"110":0.00256,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00256,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00256,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00256,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00256,"61":0,"62":0.00256,"63":0,"64":0,"65":0.00256,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00256,"75":0.00512,"76":0,"77":0,"78":0.00256,"79":0.00512,"80":0.00256,"81":0.00512,"83":0.00512,"84":0.00256,"85":0.00768,"86":0.01024,"87":0.00512,"88":0.00768,"89":0.00768,"90":0.00256,"91":0.00768,"92":0.02561,"93":0.00256,"94":0.00256,"95":0.00256,"96":0.00768,"97":0.00512,"98":0.00512,"99":0.01281,"100":0.00768,"101":0.00256,"102":0.00768,"103":0.01793,"104":0.01281,"105":0.01793,"106":0.01281,"107":0.04354,"108":2.19478,"109":2.11539,"110":0.00256,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00256,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00768,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00256,"80":0,"81":0,"82":0,"83":0.00256,"84":0.00256,"85":0,"86":0.00768,"87":0.00256,"88":0,"89":0.00256,"90":0.00256,"91":0.00512,"92":0.00512,"93":0.09732,"94":0.05634,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00256,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00256,"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.00256,"106":0,"107":0.00768,"108":0.2561,"109":0.26634},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01024,"15":0.00256,_:"0","3.1":0,"3.2":0,"5.1":0.02305,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00768,"14.1":0.0461,"15.1":0.00256,"15.2-15.3":0.00768,"15.4":0.01024,"15.5":0.03073,"15.6":0.10756,"16.0":0.01024,"16.1":0.05634,"16.2":0.07939,"16.3":0.00512},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00377,"6.0-6.1":0,"7.0-7.1":0.02261,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03392,"10.0-10.2":0,"10.3":0.0848,"11.0-11.2":0.00377,"11.3-11.4":0.00377,"12.0-12.1":0.00942,"12.2-12.5":0.53331,"13.0-13.1":0.00754,"13.2":0,"13.3":0.02261,"13.4-13.7":0.06784,"14.0-14.4":0.27702,"14.5-14.8":0.62565,"15.0-15.1":0.12438,"15.2-15.3":0.2676,"15.4":0.30152,"15.5":0.58042,"15.6":1.78273,"16.0":3.12637,"16.1":4.65846,"16.2":4.03281,"16.3":0.38444},P:{"4":0.06104,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.13225,"8.2":0,"9.2":0.03052,"10.1":0,"11.1-11.2":0.07121,"12.0":0.01017,"13.0":0.07121,"14.0":0.08139,"15.0":0.09156,"16.0":0.14243,"17.0":0.12208,"18.0":0.19329,"19.0":2.7468},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.09397,"4.4":0,"4.4.3-4.4.4":0.41347},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01793,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15622},Q:{"13.1":0},O:{"0":0.20829},H:{"0":0.1972},L:{"0":70.92776},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00236,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00236,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01887,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00236,"100":0,"101":0,"102":0.00236,"103":0,"104":0.00236,"105":0.00236,"106":0.00472,"107":0.00944,"108":0.00944,"109":0.16041,"110":0.08728,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00236,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00236,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00236,"71":0,"72":0,"73":0,"74":0.00236,"75":0.00236,"76":0,"77":0,"78":0.00708,"79":0.00472,"80":0.00236,"81":0.00236,"83":0.00236,"84":0.00236,"85":0.00236,"86":0.00472,"87":0.00472,"88":0.00944,"89":0.00708,"90":0.00236,"91":0.00472,"92":0.03067,"93":0.00236,"94":0.00236,"95":0.00472,"96":0.00708,"97":0.00472,"98":0.00472,"99":0.00944,"100":0.00472,"101":0.00236,"102":0.00944,"103":0.0118,"104":0.00472,"105":0.00944,"106":0.02831,"107":0.02595,"108":0.06605,"109":2.27408,"110":1.21724,"111":0.00236,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00236,"80":0,"81":0,"82":0,"83":0.00236,"84":0.00236,"85":0,"86":0.00472,"87":0,"88":0.00236,"89":0.00236,"90":0.00236,"91":0.00472,"92":0.00236,"93":0.03067,"94":0.07549,"95":0.02123,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00236,"92":0.00236,"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.00236,"108":0.00944,"109":0.18872,"110":0.27836},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00708,"15":0.00236,_:"0","3.1":0,"3.2":0,"5.1":0.01415,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00236,"13.1":0.00708,"14.1":0.01415,"15.1":0.00236,"15.2-15.3":0.00236,"15.4":0.00472,"15.5":0.01887,"15.6":0.04954,"16.0":0.0118,"16.1":0.02595,"16.2":0.07549,"16.3":0.05898,"16.4":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.01859,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02479,"10.0-10.2":0,"10.3":0.06197,"11.0-11.2":0.00413,"11.3-11.4":0.00413,"12.0-12.1":0.00826,"12.2-12.5":0.47097,"13.0-13.1":0.00413,"13.2":0,"13.3":0.02892,"13.4-13.7":0.0599,"14.0-14.4":0.26027,"14.5-14.8":0.60111,"15.0-15.1":0.11155,"15.2-15.3":0.21689,"15.4":0.2706,"15.5":0.50815,"15.6":1.55751,"16.0":2.92291,"16.1":3.85659,"16.2":4.59816,"16.3":3.09436,"16.4":0.0062},P:{"4":0.06104,"20":0.92583,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11191,"8.2":0,"9.2":0.03052,"10.1":0,"11.1-11.2":0.07122,"12.0":0.03052,"13.0":0.05087,"14.0":0.06104,"15.0":0.10174,"16.0":0.10174,"17.0":0.10174,"18.0":0.13226,"19.0":1.90252},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0185,"4.4":0,"4.4.3-4.4.4":0.14801},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00708,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.28272},H:{"0":0.18808},L:{"0":70.63067},R:{_:"0"},M:{"0":0.16046},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JP.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JP.js index 1989ba18a2330c..a39bf458058f8d 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.00602,"49":0,"50":0,"51":0,"52":0.03012,"53":0,"54":0,"55":0,"56":0.01205,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00602,"67":0,"68":0.00602,"69":0,"70":0,"71":0,"72":0.00602,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01807,"79":0,"80":0,"81":0,"82":0,"83":0.00602,"84":0,"85":0,"86":0,"87":0,"88":0.00602,"89":0,"90":0,"91":0.00602,"92":0,"93":0,"94":0.00602,"95":0.00602,"96":0,"97":0,"98":0.00602,"99":0.00602,"100":0.00602,"101":0.00602,"102":0.06023,"103":0.01807,"104":0.01205,"105":0.01205,"106":0.03012,"107":0.03012,"108":1.50575,"109":0.62639,"110":0.00602,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00602,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.06023,"50":0,"51":0,"52":0.00602,"53":0,"54":0,"55":0,"56":0.00602,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00602,"66":0,"67":0.00602,"68":0,"69":0.00602,"70":0.00602,"71":0.00602,"72":0.00602,"73":0.00602,"74":0.01205,"75":0.00602,"76":0,"77":0,"78":0.00602,"79":0.01807,"80":0.01807,"81":0.03614,"83":0.03012,"84":0.01205,"85":0.02409,"86":0.03012,"87":0.03012,"88":0.00602,"89":0.02409,"90":0.01205,"91":0.01205,"92":0.03012,"93":0.01205,"94":0.01807,"95":0.03012,"96":0.03012,"97":0.01807,"98":0.03614,"99":0.02409,"100":0.02409,"101":0.02409,"102":0.03012,"103":0.09035,"104":0.04818,"105":0.10239,"106":0.09035,"107":0.16864,"108":8.48641,"109":6.87224,"110":0.01205,"111":0.00602,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00602,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00602,"93":0.03012,"94":0.18671,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00602,"17":0.00602,"18":0.02409,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00602,"87":0,"88":0,"89":0,"90":0.00602,"91":0.00602,"92":0.00602,"93":0,"94":0.00602,"95":0,"96":0,"97":0,"98":0.00602,"99":0.00602,"100":0.00602,"101":0.00602,"102":0.00602,"103":0.00602,"104":0.00602,"105":0.01205,"106":0.01807,"107":0.05421,"108":4.5835,"109":3.64994},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02409,"14":0.06625,"15":0.01205,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00602,"12.1":0.01807,"13.1":0.0783,"14.1":0.1566,"15.1":0.01807,"15.2-15.3":0.01807,"15.4":0.04818,"15.5":0.10841,"15.6":0.70469,"16.0":0.07228,"16.1":0.22285,"16.2":0.49389,"16.3":0.03614},G:{"8":0.02615,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00436,"6.0-6.1":0,"7.0-7.1":0.04794,"8.1-8.4":0.07845,"9.0-9.2":0.30071,"9.3":0.16561,"10.0-10.2":0.01743,"10.3":0.10024,"11.0-11.2":0.10024,"11.3-11.4":0.04358,"12.0-12.1":0.0523,"12.2-12.5":0.52297,"13.0-13.1":0.03486,"13.2":0.02179,"13.3":0.06537,"13.4-13.7":0.20047,"14.0-14.4":0.73652,"14.5-14.8":1.79118,"15.0-15.1":0.3748,"15.2-15.3":0.54041,"15.4":0.71909,"15.5":1.25078,"15.6":5.89652,"16.0":3.52135,"16.1":15.01804,"16.2":8.95591,"16.3":0.51861},P:{"4":0.01054,"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.01054,"13.0":0.01054,"14.0":0.02108,"15.0":0,"16.0":0.02108,"17.0":0.02108,"18.0":0.04216,"19.0":0.9169},I:{"0":0,"3":0,"4":0.02462,"2.1":0,"2.2":0.00821,"2.3":0.01641,"4.1":0.02462,"4.2-4.3":0.15593,"4.4":0,"4.4.3-4.4.4":0.32828},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.01394,"10":0,"11":0.47392,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.34998},Q:{"13.1":0.02386},O:{"0":0.16703},H:{"0":0.10919},L:{"0":24.78031},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00573,"49":0,"50":0,"51":0,"52":0.01718,"53":0,"54":0,"55":0,"56":0.00573,"57":0,"58":0,"59":0,"60":0.00573,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00573,"67":0.00573,"68":0.00573,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0229,"79":0,"80":0,"81":0,"82":0,"83":0.00573,"84":0,"85":0,"86":0,"87":0,"88":0.00573,"89":0,"90":0,"91":0.00573,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00573,"98":0,"99":0.00573,"100":0.00573,"101":0.00573,"102":0.05725,"103":0.00573,"104":0.01145,"105":0.00573,"106":0.02863,"107":0.01145,"108":0.04008,"109":1.05913,"110":0.69273,"111":0.00573,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0458,"50":0,"51":0,"52":0.00573,"53":0,"54":0,"55":0,"56":0.00573,"57":0,"58":0.0229,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00573,"65":0.00573,"66":0,"67":0.00573,"68":0,"69":0.00573,"70":0.00573,"71":0,"72":0.00573,"73":0.00573,"74":0.01145,"75":0.00573,"76":0.00573,"77":0.00573,"78":0.00573,"79":0.01718,"80":0.01145,"81":0.07443,"83":0.0229,"84":0.01718,"85":0.0229,"86":0.02863,"87":0.02863,"88":0.00573,"89":0.01718,"90":0.00573,"91":0.01145,"92":0.02863,"93":0.00573,"94":0.01718,"95":0.01718,"96":0.0229,"97":0.0229,"98":0.03435,"99":0.0229,"100":0.0229,"101":0.0229,"102":0.02863,"103":0.08588,"104":0.02863,"105":0.05725,"106":0.07443,"107":0.09733,"108":0.47518,"109":7.98638,"110":5.59905,"111":0.01145,"112":0.00573,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00573,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00573,"94":0.07443,"95":0.08588,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00573,"18":0.00573,"79":0,"80":0,"81":0,"83":0,"84":0.00573,"85":0.00573,"86":0.00573,"87":0,"88":0,"89":0,"90":0.00573,"91":0.00573,"92":0.00573,"93":0,"94":0.00573,"95":0,"96":0.00573,"97":0,"98":0.00573,"99":0.00573,"100":0.00573,"101":0.00573,"102":0.00573,"103":0.00573,"104":0.00573,"105":0.00573,"106":0.01718,"107":0.02863,"108":0.15458,"109":2.9999,"110":4.04758},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00573,"13":0.01718,"14":0.05725,"15":0.01145,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00573,"12.1":0.01718,"13.1":0.07443,"14.1":0.14313,"15.1":0.01718,"15.2-15.3":0.01718,"15.4":0.06298,"15.5":0.0916,"15.6":0.49235,"16.0":0.0458,"16.1":0.14313,"16.2":0.50953,"16.3":0.37213,"16.4":0},G:{"8":0.00932,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.06523,"8.1-8.4":0.10716,"9.0-9.2":0.31215,"9.3":0.14909,"10.0-10.2":0.02329,"10.3":0.09784,"11.0-11.2":0.09784,"11.3-11.4":0.03727,"12.0-12.1":0.05125,"12.2-12.5":0.49851,"13.0-13.1":0.05125,"13.2":0.02329,"13.3":0.06988,"13.4-13.7":0.20965,"14.0-14.4":0.70817,"14.5-14.8":1.7378,"15.0-15.1":0.35874,"15.2-15.3":0.51715,"15.4":0.71748,"15.5":1.1927,"15.6":4.62638,"16.0":3.033,"16.1":11.59623,"16.2":12.05281,"16.3":5.73056,"16.4":0.01398},P:{"4":0.0104,"20":0.37422,"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.0104,"12.0":0.0104,"13.0":0.0104,"14.0":0.0104,"15.0":0,"16.0":0.02079,"17.0":0.02079,"18.0":0.02079,"19.0":0.49896},I:{"0":0,"3":0,"4":0.01027,"2.1":0,"2.2":0.01027,"2.3":0,"4.1":0.05135,"4.2-4.3":0.18487,"4.4":0,"4.4.3-4.4.4":0.28758},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00716,"9":0.02147,"10":0,"11":0.37213,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.21375},H:{"0":0.10523},L:{"0":25.09788},R:{_:"0"},M:{"0":0.3591},Q:{"13.1":0.02138}}; 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 0e21ae93a952b0..06f2abd37f5045 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.00476,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00238,"74":0,"75":0,"76":0,"77":0,"78":0.00238,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00238,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00238,"102":0.00713,"103":0.00238,"104":0.00238,"105":0.00476,"106":0.00476,"107":0.01902,"108":0.23067,"109":0.1403,"110":0.00713,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00238,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00238,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00238,"67":0,"68":0.00238,"69":0.00238,"70":0.00476,"71":0,"72":0.00476,"73":0.00238,"74":0.00476,"75":0.00238,"76":0.00238,"77":0.00238,"78":0.00238,"79":0.00951,"80":0.00238,"81":0.00713,"83":0.00951,"84":0.00238,"85":0.00238,"86":0.00238,"87":0.00951,"88":0.00238,"89":0.00238,"90":0.00238,"91":0.00238,"92":0.00713,"93":0.0214,"94":0.00238,"95":0.00713,"96":0.01189,"97":0.00476,"98":0.00476,"99":0.00476,"100":0.00476,"101":0.00951,"102":0.00476,"103":0.03329,"104":0.00713,"105":0.01189,"106":0.01189,"107":0.05232,"108":1.52905,"109":1.45771,"110":0.00476,"111":0.00238,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00476,"25":0,"26":0.00713,"27":0.00951,"28":0.00951,"29":0,"30":0.02378,"31":0.00476,"32":0.02378,"33":0.01665,"34":0,"35":0.00238,"36":0,"37":0.00951,"38":0.01902,"39":0,"40":0,"41":0,"42":0.00951,"43":0,"44":0,"45":0.00476,"46":0.0214,"47":0.00951,"48":0,"49":0,"50":0.01189,"51":0.01189,"52":0,"53":0,"54":0.02854,"55":0.01427,"56":0.00713,"57":0.01427,"58":0.06421,"60":0.24731,"62":0.00713,"63":0.58974,"64":0.27823,"65":0.17835,"66":0.56121,"67":0.08799,"68":0,"69":0,"70":0,"71":0,"72":0.0214,"73":0.03329,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00238,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00238,"93":0.01189,"94":0.10701,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01665},B:{"12":0.00238,"13":0,"14":0,"15":0,"16":0.00238,"17":0,"18":0.00713,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00476,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00238,"100":0,"101":0,"102":0,"103":0.00238,"104":0,"105":0.00238,"106":0.00238,"107":0.00951,"108":0.15695,"109":0.15219},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00238,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00713,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00713,"14.1":0.00951,"15.1":0.00238,"15.2-15.3":0.00238,"15.4":0.00238,"15.5":0.00951,"15.6":0.0214,"16.0":0.00238,"16.1":0.01427,"16.2":0.01902,"16.3":0.00238},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00274,"6.0-6.1":0.00122,"7.0-7.1":0.05825,"8.1-8.4":0,"9.0-9.2":0.00061,"9.3":0.02958,"10.0-10.2":0.00091,"10.3":0.03233,"11.0-11.2":0.00427,"11.3-11.4":0.00457,"12.0-12.1":0.00396,"12.2-12.5":0.19274,"13.0-13.1":0.00183,"13.2":0.00091,"13.3":0.00915,"13.4-13.7":0.01433,"14.0-14.4":0.08143,"14.5-14.8":0.104,"15.0-15.1":0.02989,"15.2-15.3":0.05307,"15.4":0.05154,"15.5":0.16103,"15.6":0.294,"16.0":0.30314,"16.1":0.67277,"16.2":0.54773,"16.3":0.04209},P:{"4":0.17555,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07229,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01033,"12.0":0,"13.0":0.01033,"14.0":0.02065,"15.0":0.01033,"16.0":0.05163,"17.0":0.02065,"18.0":0.05163,"19.0":0.53698},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00492,"4.4":0,"4.4.3-4.4.4":0.05411},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04994,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15244},Q:{"13.1":0},O:{"0":0.19817},H:{"0":33.60499},L:{"0":47.12406},S:{"2.5":0.00762}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00244,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00244,"48":0,"49":0,"50":0,"51":0,"52":0.00731,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00487,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00244,"74":0,"75":0,"76":0,"77":0,"78":0.00244,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00244,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00244,"100":0,"101":0,"102":0.00731,"103":0.00244,"104":0.00244,"105":0.00487,"106":0.00487,"107":0.00731,"108":0.01462,"109":0.23873,"110":0.16078,"111":0.00974,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00244,"50":0,"51":0,"52":0,"53":0,"54":0.00244,"55":0,"56":0.00244,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00244,"63":0.00244,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00244,"70":0.00244,"71":0,"72":0.00244,"73":0.00244,"74":0.00731,"75":0,"76":0,"77":0,"78":0.00244,"79":0.00731,"80":0.00244,"81":0.00487,"83":0.00731,"84":0,"85":0.00244,"86":0.00244,"87":0.00731,"88":0.00244,"89":0.00244,"90":0.00244,"91":0.00244,"92":0.00487,"93":0.01462,"94":0.00244,"95":0.00487,"96":0.01705,"97":0.00244,"98":0.00244,"99":0.00487,"100":0.00487,"101":0.00731,"102":0.00487,"103":0.02923,"104":0.00487,"105":0.00974,"106":0.00974,"107":0.02192,"108":0.08282,"109":1.89521,"110":1.13518,"111":0.00731,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00244,"21":0,"22":0,"23":0,"24":0.00487,"25":0,"26":0.00731,"27":0.00974,"28":0.00974,"29":0,"30":0.01705,"31":0.00244,"32":0.00731,"33":0.00974,"34":0,"35":0,"36":0,"37":0.00487,"38":0.00487,"39":0,"40":0,"41":0,"42":0.00487,"43":0,"44":0,"45":0.00244,"46":0.00974,"47":0.00487,"48":0,"49":0,"50":0.00487,"51":0.00731,"52":0,"53":0,"54":0.01218,"55":0.00487,"56":0.00487,"57":0.00731,"58":0.02923,"60":0.10231,"62":0.00487,"63":0.2436,"64":0.25334,"65":0.1827,"66":0.6358,"67":1.69302,"68":0,"69":0,"70":0,"71":0,"72":0.01218,"73":0.01705,"74":0.00731,"75":0,"76":0,"77":0,"78":0,"79":0.00244,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00487,"94":0.05846,"95":0.07308,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0268},B:{"12":0.00244,"13":0,"14":0,"15":0,"16":0.00244,"17":0,"18":0.00487,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00244,"90":0,"91":0,"92":0.00487,"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.00244,"106":0.00244,"107":0.00487,"108":0.00731,"109":0.14372,"110":0.18514},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00244,"15":0.00244,_:"0","3.1":0,"3.2":0,"5.1":0.00244,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00487,"14.1":0.00731,"15.1":0.00244,"15.2-15.3":0,"15.4":0.00244,"15.5":0.00244,"15.6":0.01705,"16.0":0.00244,"16.1":0.01462,"16.2":0.01705,"16.3":0.01705,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00623,"6.0-6.1":0.00255,"7.0-7.1":0.03315,"8.1-8.4":0.00028,"9.0-9.2":0.00057,"9.3":0.02097,"10.0-10.2":0.00142,"10.3":0.02238,"11.0-11.2":0.00425,"11.3-11.4":0.00623,"12.0-12.1":0.0051,"12.2-12.5":0.18246,"13.0-13.1":0.00255,"13.2":0.00113,"13.3":0.01247,"13.4-13.7":0.01672,"14.0-14.4":0.06771,"14.5-14.8":0.06913,"15.0-15.1":0.02861,"15.2-15.3":0.05128,"15.4":0.04561,"15.5":0.11786,"15.6":0.20965,"16.0":0.22892,"16.1":0.47427,"16.2":0.52527,"16.3":0.33205,"16.4":0.0017},P:{"4":0.1517,"20":0.14159,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06068,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04045,"12.0":0.01011,"13.0":0.01011,"14.0":0.02023,"15.0":0.01011,"16.0":0.03034,"17.0":0.02023,"18.0":0.03034,"19.0":0.37421},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00166,"4.2-4.3":0.0083,"4.4":0,"4.4.3-4.4.4":0.04979},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04141,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00756,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.18154},H:{"0":33.82907},L:{"0":46.71429},R:{_:"0"},M:{"0":0.15884},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js index 458ba077ef42fa..4904ff9e74e204 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.01182,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00394,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00788,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00394,"96":0,"97":0,"98":0.00394,"99":0.00394,"100":0,"101":0,"102":0.0197,"103":0,"104":0,"105":0,"106":0,"107":0.22458,"108":0.10244,"109":0.05122,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01182,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.05516,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00394,"68":0.00394,"69":0,"70":0,"71":0.00394,"72":0.01576,"73":0.00788,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00788,"80":0,"81":0.00788,"83":0.00394,"84":0.00394,"85":0.00394,"86":0.00394,"87":0.01576,"88":0.00788,"89":0.00788,"90":0.00394,"91":0.00394,"92":0.00394,"93":0.00394,"94":0.11426,"95":0,"96":0.00394,"97":0.00788,"98":0.00788,"99":0.00394,"100":0.03546,"101":0.05122,"102":0.01182,"103":0.01576,"104":0.02758,"105":0.01182,"106":0.01576,"107":4.62556,"108":6.107,"109":2.05668,"110":0,"111":0.00394,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00394,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00788,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00394,"74":0,"75":0.00394,"76":0,"77":0,"78":0,"79":0.00788,"80":0,"81":0,"82":0,"83":0,"84":0.00394,"85":0.0394,"86":0,"87":0,"88":0,"89":0,"90":0.01182,"91":0,"92":0,"93":0.07486,"94":0.36642,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00788,"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.00394,"104":0,"105":0,"106":0,"107":0.00394,"108":0.1182,"109":0.10638},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00394,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0394,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00394,"13.1":0.00788,"14.1":0.01182,"15.1":0.00394,"15.2-15.3":0,"15.4":0.00394,"15.5":0.03546,"15.6":0.05122,"16.0":0.00788,"16.1":0.06304,"16.2":0.07092,"16.3":0.00394},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0015,"6.0-6.1":0,"7.0-7.1":0.00299,"8.1-8.4":0,"9.0-9.2":0.00299,"9.3":0.01196,"10.0-10.2":0,"10.3":0.01346,"11.0-11.2":0.00897,"11.3-11.4":0,"12.0-12.1":0.00299,"12.2-12.5":0.28856,"13.0-13.1":0.00449,"13.2":0.00598,"13.3":0.01495,"13.4-13.7":0.06878,"14.0-14.4":0.305,"14.5-14.8":0.5517,"15.0-15.1":0.20633,"15.2-15.3":0.36032,"15.4":0.46647,"15.5":0.86866,"15.6":1.17815,"16.0":3.46267,"16.1":3.00666,"16.2":2.52225,"16.3":0.25267},P:{"4":0.21272,"5.0-5.4":0.01013,"6.2-6.4":0.03039,"7.2-7.4":0.22285,"8.2":0.01013,"9.2":0.02026,"10.1":0.01013,"11.1-11.2":0.06078,"12.0":0.02026,"13.0":0.06078,"14.0":0.07091,"15.0":0.04052,"16.0":0.90151,"17.0":0.13168,"18.0":0.18233,"19.0":1.49915},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00168,"4.2-4.3":0.00168,"4.4":0,"4.4.3-4.4.4":0.01846},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00788,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0303},Q:{"13.1":0},O:{"0":0.41208},H:{"0":0.32128},L:{"0":64.40302},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01185,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00395,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00395,"99":0.00395,"100":0,"101":0,"102":0.01976,"103":0,"104":0,"105":0,"106":0,"107":0.09482,"108":0.00395,"109":0.11853,"110":0.06322,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00395,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02371,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01976,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00395,"68":0,"69":0,"70":0,"71":0.0079,"72":0,"73":0.0079,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00395,"80":0.00395,"81":0.0079,"83":0.0079,"84":0,"85":0.00395,"86":0.00395,"87":0.01185,"88":0.00395,"89":0.0079,"90":0.00395,"91":0.00395,"92":0.0158,"93":0,"94":0.01976,"95":0.00395,"96":0.00395,"97":0.01185,"98":0.00395,"99":0.00395,"100":0.01976,"101":0.01185,"102":0.0158,"103":0.0158,"104":0.01185,"105":0.0079,"106":0.0158,"107":0.04346,"108":0.52153,"109":11.16948,"110":1.39865,"111":0,"112":0.00395,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00395,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01976,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0079,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.04741,"86":0.00395,"87":0,"88":0,"89":0,"90":0.0158,"91":0,"92":0,"93":0.0158,"94":0.15409,"95":0.22916,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00395,"15":0.0079,"16":0,"17":0,"18":0.00395,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00395,"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.00395,"109":0.11458,"110":0.12248},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00395,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.05136,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0079,"14.1":0.0079,"15.1":0.00395,"15.2-15.3":0.00395,"15.4":0.0079,"15.5":0.01976,"15.6":0.03556,"16.0":0.00395,"16.1":0.03556,"16.2":0.05927,"16.3":0.05136,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00152,"6.0-6.1":0,"7.0-7.1":0.00152,"8.1-8.4":0,"9.0-9.2":0.00304,"9.3":0.01978,"10.0-10.2":0,"10.3":0.00609,"11.0-11.2":0.00913,"11.3-11.4":0.00152,"12.0-12.1":0.01065,"12.2-12.5":0.32405,"13.0-13.1":0.01065,"13.2":0.00456,"13.3":0.0213,"13.4-13.7":0.04868,"14.0-14.4":0.35752,"14.5-14.8":0.51422,"15.0-15.1":0.26167,"15.2-15.3":0.32709,"15.4":0.37425,"15.5":0.86109,"15.6":1.31902,"16.0":2.65781,"16.1":2.46003,"16.2":2.35202,"16.3":1.86366,"16.4":0.01065},P:{"4":0.19945,"20":0.26926,"5.0-5.4":0.00997,"6.2-6.4":0.02992,"7.2-7.4":0.52855,"8.2":0,"9.2":0.02992,"10.1":0,"11.1-11.2":0.04986,"12.0":0.01995,"13.0":0.04986,"14.0":0.05984,"15.0":0.05984,"16.0":0.16954,"17.0":0.09973,"18.0":0.14959,"19.0":0.85765},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01354,"4.4":0,"4.4.3-4.4.4":0.02437},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0079,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.48392},H:{"0":0.25198},L:{"0":65.1934},R:{_:"0"},M:{"0":0.03629},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js index 9abfc60589639c..27d02242066ccb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00428,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00428,"51":0.00428,"52":0.01285,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00428,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00428,"77":0,"78":0.01285,"79":0.00428,"80":0.01285,"81":0.01713,"82":0.00428,"83":0.00428,"84":0,"85":0,"86":0.00857,"87":0,"88":0,"89":0,"90":0,"91":0.01285,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00428,"100":0,"101":0,"102":0.00428,"103":0.00857,"104":0.00428,"105":0.00857,"106":0.00428,"107":0.05996,"108":0.454,"109":0.227,"110":0.00428,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00428,"39":0,"40":0,"41":0.00428,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00428,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.02998,"57":0.00857,"58":4.35153,"59":0,"60":0,"61":0,"62":0.00428,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00428,"71":0,"72":0.00428,"73":0.00857,"74":0.00428,"75":0.00428,"76":0,"77":0.00428,"78":0.00428,"79":0.02142,"80":0.00857,"81":0.00428,"83":0.03855,"84":0.07281,"85":0.05996,"86":0.0514,"87":0.05568,"88":0.00428,"89":0.00428,"90":0.00857,"91":0.00857,"92":0.02998,"93":0.00428,"94":0.04283,"95":0.00857,"96":0.02142,"97":0.00857,"98":0.00857,"99":0.00857,"100":0.01713,"101":0.00857,"102":0.01285,"103":0.08138,"104":0.03426,"105":0.05996,"106":0.11564,"107":0.08994,"108":5.09249,"109":3.38785,"110":0.00857,"111":0.00428,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00857,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00428,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00428,"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.00857,"71":0.00428,"72":0,"73":0.00428,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00428,"84":0,"85":0,"86":0.00428,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.05996,"94":0.32123,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00428,"15":0,"16":0.00428,"17":0,"18":0.01285,"79":0,"80":0,"81":0,"83":0,"84":0.00428,"85":0.00857,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00428,"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.00428,"106":0.00857,"107":0.00857,"108":0.39404,"109":0.34692},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00428,"11":0,"12":0,"13":0.01285,"14":0.03855,"15":0.00857,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00857,"13.1":0.02998,"14.1":0.08566,"15.1":0.02142,"15.2-15.3":0.02142,"15.4":0.04283,"15.5":0.08566,"15.6":0.37262,"16.0":0.03426,"16.1":0.1756,"16.2":0.16275,"16.3":0.01285},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01728,"8.1-8.4":0.02419,"9.0-9.2":0,"9.3":0.09331,"10.0-10.2":0.0311,"10.3":0.08294,"11.0-11.2":0.02073,"11.3-11.4":0.0622,"12.0-12.1":0.04492,"12.2-12.5":1.47906,"13.0-13.1":0.05184,"13.2":0.04838,"13.3":0.12095,"13.4-13.7":0.45962,"14.0-14.4":1.30973,"14.5-14.8":2.28771,"15.0-15.1":0.58057,"15.2-15.3":0.7499,"15.4":0.82938,"15.5":1.53781,"15.6":5.01084,"16.0":4.74129,"16.1":6.78019,"16.2":4.74475,"16.3":0.51491},P:{"4":0.11189,"5.0-5.4":0.01017,"6.2-6.4":0,"7.2-7.4":0.01017,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01017,"12.0":0.01017,"13.0":0.03052,"14.0":0.01017,"15.0":0.01017,"16.0":0.05086,"17.0":0.05086,"18.0":0.06103,"19.0":1.17993},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01714,"4.4":0,"4.4.3-4.4.4":0.03999},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01843,"9":0.00461,"10":0.00461,"11":0.27645,"5.5":0},J:{"7":0,"10":0.00572},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18294},Q:{"13.1":0.01143},O:{"0":0.68032},H:{"0":0.47089},L:{"0":46.41684},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0.00358,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00358,"51":0.00717,"52":0.01433,"53":0,"54":0,"55":0,"56":0.00358,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00358,"65":0,"66":0,"67":0,"68":0.00717,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00358,"79":0.00717,"80":0.01075,"81":0.01075,"82":0.00717,"83":0.00358,"84":0,"85":0,"86":0.00358,"87":0,"88":0,"89":0,"90":0,"91":0.01075,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00717,"103":0.00717,"104":0.00358,"105":0.00717,"106":0.00358,"107":0.0215,"108":0.01792,"109":0.35113,"110":0.26514,"111":0.01075,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00717,"39":0,"40":0,"41":0.00717,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00358,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.02866,"57":0.00358,"58":0.00717,"59":0,"60":0,"61":0,"62":0,"63":0.00358,"64":0,"65":0.00358,"66":0,"67":0,"68":0.00358,"69":0,"70":0.00717,"71":0,"72":0.00358,"73":0.00358,"74":0.00358,"75":0.00358,"76":0.00358,"77":0,"78":0.00717,"79":0.0215,"80":0.00358,"81":0.00358,"83":0.03941,"84":0.043,"85":0.07166,"86":0.03941,"87":0.02866,"88":0.00717,"89":0.00358,"90":0.00358,"91":0.00717,"92":0.03225,"93":0,"94":0,"95":0.00717,"96":0.0215,"97":0.01075,"98":0.01075,"99":0.00717,"100":0.01075,"101":0.01433,"102":0.01433,"103":0.07166,"104":0.02508,"105":0.11107,"106":0.01792,"107":0.03941,"108":0.17198,"109":4.20286,"110":3.43968,"111":0.00717,"112":0.00717,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00717,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00358,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01433,"68":0,"69":0,"70":0.00358,"71":0,"72":0,"73":0.00358,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00358,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00358,"94":0.15049,"95":0.18273,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00358,"15":0,"16":0,"17":0,"18":0.00717,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00717,"86":0.00717,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01075,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00358,"103":0,"104":0,"105":0,"106":0.00358,"107":0.00358,"108":0.01075,"109":0.27589,"110":0.38696},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00717,"11":0,"12":0,"13":0.01075,"14":0.03583,"15":0.01075,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00358,"10.1":0,"11.1":0,"12.1":0.00358,"13.1":0.02866,"14.1":0.07524,"15.1":0.01792,"15.2-15.3":0.01075,"15.4":0.03583,"15.5":0.06449,"15.6":0.21856,"16.0":0.02866,"16.1":0.10749,"16.2":0.17198,"16.3":0.11466,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00378,"6.0-6.1":0,"7.0-7.1":0.01133,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09823,"10.0-10.2":0.03778,"10.3":0.07934,"11.0-11.2":0.01889,"11.3-11.4":0.068,"12.0-12.1":0.04911,"12.2-12.5":1.85125,"13.0-13.1":0.05289,"13.2":0.04156,"13.3":0.10579,"13.4-13.7":0.40803,"14.0-14.4":1.35632,"14.5-14.8":2.40284,"15.0-15.1":0.66116,"15.2-15.3":0.66872,"15.4":0.95207,"15.5":1.54522,"15.6":4.46944,"16.0":4.24275,"16.1":6.21867,"16.2":5.70486,"16.3":3.64582,"16.4":0.034},P:{"4":0.1119,"20":0.55948,"5.0-5.4":0.02034,"6.2-6.4":0,"7.2-7.4":0.01017,"8.2":0,"9.2":0,"10.1":0.01017,"11.1-11.2":0.01017,"12.0":0.01017,"13.0":0.02034,"14.0":0,"15.0":0.01017,"16.0":0.04069,"17.0":0.04069,"18.0":0.06103,"19.0":0.885},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0246,"4.4":0,"4.4.3-4.4.4":0.05331},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01514,"9":0.00379,"10":0.00379,"11":0.44666,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.93047},H:{"0":0.51032},L:{"0":48.06602},R:{_:"0"},M:{"0":0.23101},Q:{"13.1":0.01283}}; 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 4f8f8d69175225..5f06315a5876be 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.01471,"55":0,"56":0.01471,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00294,"98":0,"99":0.00588,"100":0,"101":0,"102":0.01471,"103":0,"104":0,"105":0.00294,"106":0,"107":0.01471,"108":0.06764,"109":0.08823,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.01471,"75":0,"76":0.00294,"77":0,"78":0,"79":0,"80":0,"81":0.02059,"83":0,"84":0,"85":0,"86":0.00294,"87":0.01176,"88":0,"89":0,"90":0.00294,"91":0,"92":0.01765,"93":0,"94":0.02941,"95":0,"96":0,"97":0,"98":0.00882,"99":0.02059,"100":0.00294,"101":0,"102":0,"103":0.04412,"104":0.01471,"105":0.00294,"106":0.00294,"107":0.00882,"108":4.19975,"109":2.08223,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.00294,"66":0.02353,"67":0.01176,"68":0,"69":0,"70":0,"71":0,"72":0.01471,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00294,"94":0.01765,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00294,"13":0,"14":0,"15":0.00588,"16":0,"17":0,"18":0.01176,"79":0,"80":0,"81":0,"83":0,"84":0.01765,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01176,"91":0,"92":0.01176,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00294,"104":0,"105":0.00294,"106":0.00294,"107":0.01765,"108":0.36468,"109":0.29998},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00882,"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.00588,"15.6":0.00294,"16.0":0.00294,"16.1":0.05588,"16.2":0.04117,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01439,"5.0-5.1":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.04279,"12.2-12.5":0.05019,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.03579,"14.0-14.4":0.12877,"14.5-14.8":0.06419,"15.0-15.1":0.08598,"15.2-15.3":0.07858,"15.4":1.65923,"15.5":0.08598,"15.6":0.10737,"16.0":0.66525,"16.1":0.4719,"16.2":0.36491,"16.3":0.007},P:{"4":0.01001,"5.0-5.4":0.05004,"6.2-6.4":0.06005,"7.2-7.4":0.74061,"8.2":0,"9.2":0,"10.1":0.03002,"11.1-11.2":0,"12.0":0,"13.0":0.11009,"14.0":0.06005,"15.0":0.09007,"16.0":0.09007,"17.0":0.23019,"18.0":1.19097,"19.0":1.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,"4.4":0,"4.4.3-4.4.4":0.22294},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02059,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08471},Q:{"13.1":0},O:{"0":0.8612},H:{"0":0.40766},L:{"0":81.70339},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.03589,"55":0,"56":0.04142,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.01104,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00276,"104":0,"105":0,"106":0.19051,"107":0.01381,"108":0.02209,"109":0.07455,"110":0.19051,"111":0.00276,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01104,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02761,"70":0,"71":0,"72":0,"73":0,"74":0.00276,"75":0,"76":0,"77":0,"78":0.00276,"79":0,"80":0,"81":0.03313,"83":0,"84":0.00276,"85":0,"86":0,"87":0,"88":0.01381,"89":0,"90":0.00276,"91":0,"92":0,"93":0,"94":0.00276,"95":0,"96":0,"97":0.00276,"98":0,"99":0.01104,"100":0.02209,"101":0,"102":0.02209,"103":0.19879,"104":0,"105":0,"106":0.00828,"107":0,"108":0.10492,"109":2.80794,"110":1.39707,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02485,"68":0,"69":0,"70":0,"71":0,"72":0.00828,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00828,"94":0.01104,"95":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00828},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01104,"79":0,"80":0,"81":0,"83":0,"84":0.00828,"85":0.01381,"86":0,"87":0,"88":0,"89":0.00828,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00828,"97":0,"98":0,"99":0.00276,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00828,"106":0.00276,"107":0.0497,"108":0.05798,"109":0.30095,"110":0.3755},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.02485,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00276,"16.0":0,"16.1":0.01104,"16.2":0.05798,"16.3":0.14081,"16.4":0.00276},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01058,"10.0-10.2":0,"10.3":0.08555,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.01058,"13.0-13.1":0,"13.2":0.09613,"13.3":0,"13.4-13.7":0.06408,"14.0-14.4":0.16021,"14.5-14.8":0.14963,"15.0-15.1":0.03204,"15.2-15.3":0.14963,"15.4":0.16021,"15.5":0.18168,"15.6":0.3422,"16.0":0.20314,"16.1":0.2778,"16.2":0.22461,"16.3":0.90869,"16.4":0},P:{"4":0.10032,"20":0.05016,"5.0-5.4":0.35111,"6.2-6.4":0,"7.2-7.4":0.78246,"8.2":0,"9.2":0.03009,"10.1":0,"11.1-11.2":0.06019,"12.0":0,"13.0":0.08025,"14.0":0.03009,"15.0":0.10032,"16.0":0.3812,"17.0":0.04013,"18.0":0.14044,"19.0":0.53167},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00905,"4.4":0,"4.4.3-4.4.4":0.0996},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04142,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.51397},H:{"0":0.40435},L:{"0":85.01169},R:{_:"0"},M:{"0":0.78905},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KM.js index 8376ef7c0d0022..c7c7150d4aaa7b 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.00216,"44":0,"45":0,"46":0,"47":0,"48":0.0108,"49":0.00216,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00648,"79":0,"80":0,"81":0.02807,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00216,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00216,"104":0,"105":0.00216,"106":0.00648,"107":0.00648,"108":0.28715,"109":0.11227,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00432,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00216,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00216,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00216,"65":0.00216,"66":0,"67":0.00216,"68":0,"69":0,"70":0.1317,"71":0.00432,"72":0,"73":0,"74":0,"75":0,"76":0.00648,"77":0,"78":0,"79":0.00216,"80":0.00432,"81":0.03023,"83":0.00432,"84":0,"85":0.00648,"86":0.00216,"87":0.0108,"88":0.01295,"89":0,"90":0,"91":0,"92":0.02591,"93":0.00648,"94":0.00432,"95":0,"96":0.00648,"97":0.04102,"98":0.00216,"99":0,"100":0.00432,"101":0.00216,"102":0.00648,"103":0.07557,"104":0,"105":0.00864,"106":0.00216,"107":0.06693,"108":0.84201,"109":0.85928,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00216,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00216,"46":0,"47":0,"48":0,"49":0,"50":0.00216,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01295,"62":0,"63":0.01295,"64":0.00432,"65":0.13386,"66":0.00864,"67":0.03023,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01511,"74":0,"75":0,"76":0,"77":0,"78":0.00432,"79":0.00216,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00216,"88":0,"89":0,"90":0,"91":0,"92":0.00216,"93":0.01295,"94":0.05829,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00864,"13":0.00648,"14":0.00864,"15":0.00432,"16":0.00216,"17":0,"18":0.00864,"79":0,"80":0,"81":0,"83":0,"84":0.00216,"85":0,"86":0,"87":0,"88":0,"89":0.00216,"90":0,"91":0,"92":0.02807,"93":0.00216,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00216,"104":0,"105":0.0108,"106":0,"107":0.02807,"108":0.15329,"109":0.16408},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00216,"15":0.00216,_:"0","3.1":0,"3.2":0,"5.1":0.00432,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00648,"13.1":0.00216,"14.1":0.00216,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00864,"16.0":0.00216,"16.1":0.01511,"16.2":0.17056,"16.3":0.00216},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.006,"10.0-10.2":0.00257,"10.3":0.02485,"11.0-11.2":0.00257,"11.3-11.4":0,"12.0-12.1":0.06427,"12.2-12.5":1.68989,"13.0-13.1":0.03085,"13.2":0,"13.3":0.2288,"13.4-13.7":0.00514,"14.0-14.4":1.40624,"14.5-14.8":0.29136,"15.0-15.1":0.06941,"15.2-15.3":0.21852,"15.4":0.16796,"15.5":0.15082,"15.6":0.37448,"16.0":1.4808,"16.1":1.45852,"16.2":0.52788,"16.3":0.03599},P:{"4":0.53956,"5.0-5.4":0.03997,"6.2-6.4":0.03997,"7.2-7.4":0.30975,"8.2":0,"9.2":0.05995,"10.1":0,"11.1-11.2":0.53956,"12.0":0,"13.0":0.01998,"14.0":0.37969,"15.0":0.00999,"16.0":0.10991,"17.0":0.20983,"18.0":0.17985,"19.0":0.41966},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.00062,"4.4":0,"4.4.3-4.4.4":0.08421},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01727,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04705},Q:{"13.1":0.00784},O:{"0":0.11762},H:{"0":1.25455},L:{"0":82.93876},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00236,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00236,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00709,"82":0,"83":0.00236,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00709,"95":0,"96":0.00236,"97":0,"98":0,"99":0.00709,"100":0,"101":0,"102":0.00473,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00709,"109":0.31205,"110":0.25531,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00236,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00236,"45":0,"46":0,"47":0,"48":0,"49":0.00236,"50":0,"51":0,"52":0.01418,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00236,"66":0,"67":0,"68":0,"69":0.00473,"70":0.00473,"71":0,"72":0,"73":0,"74":0,"75":0.00473,"76":0,"77":0.00473,"78":0,"79":0.00236,"80":0.00709,"81":0.00473,"83":0.01655,"84":0.00236,"85":0,"86":0,"87":0.00946,"88":0.01418,"89":0,"90":0,"91":0.00236,"92":0,"93":0.00473,"94":0,"95":0.00473,"96":0.00473,"97":0.06383,"98":0,"99":0.00236,"100":0.00946,"101":0,"102":0.00473,"103":0.05201,"104":0.00236,"105":0.01418,"106":0.00709,"107":0.02364,"108":0.026,"109":1.46095,"110":0.4137,"111":0,"112":0.00236,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00236,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00473,"62":0,"63":0.01891,"64":0.00236,"65":0.01182,"66":0.00473,"67":0.05201,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00236,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.03782,"95":0.07565,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00473,"13":0,"14":0.00236,"15":0,"16":0,"17":0.00473,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00236,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00709,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00236,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.06146,"108":0.00473,"109":0.11111,"110":0.26713},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.00473,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00709,"13.1":0.01182,"14.1":0.01182,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.04255,"16.0":0,"16.1":0.01418,"16.2":0.0331,"16.3":0.03546,"16.4":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.0236,"7.0-7.1":0.03021,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03682,"10.0-10.2":0,"10.3":0.01039,"11.0-11.2":0.0236,"11.3-11.4":0,"12.0-12.1":0.11897,"12.2-12.5":1.0386,"13.0-13.1":0.01039,"13.2":0,"13.3":0.04626,"13.4-13.7":0.05004,"14.0-14.4":1.63532,"14.5-14.8":0.36068,"15.0-15.1":0.14918,"15.2-15.3":0.21905,"15.4":0.20866,"15.5":0.12935,"15.6":0.74779,"16.0":0.3569,"16.1":1.84871,"16.2":0.46926,"16.3":0.86676,"16.4":0},P:{"4":0.38293,"20":0.16123,"5.0-5.4":0.03023,"6.2-6.4":0.01008,"7.2-7.4":0.21162,"8.2":0,"9.2":0.07054,"10.1":0,"11.1-11.2":0.28216,"12.0":0,"13.0":0.02015,"14.0":0.21162,"15.0":0.02015,"16.0":0.10077,"17.0":0.524,"18.0":0.10077,"19.0":0.33254},I:{"0":0,"3":0,"4":0.00058,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00116,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05007},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00709,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.084,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.22908},H:{"0":0.86751},L:{"0":83.32929},R:{_:"0"},M:{"0":0.04582},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js index 250049f6ce41b3..28a833a9ff37f2 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.03399,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00486,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00486,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.03399,"108":0.46123,"109":0.335,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00486,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00486,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.04855,"76":0.02913,"77":0,"78":0,"79":0.80593,"80":0,"81":0.00486,"83":0.04855,"84":0,"85":0,"86":0,"87":0.00971,"88":0.00486,"89":0,"90":0,"91":0,"92":0,"93":0.01457,"94":0,"95":0.01942,"96":0,"97":0,"98":0.00486,"99":0,"100":0.00971,"101":0,"102":0.00971,"103":0.06312,"104":0.01457,"105":0.00971,"106":0.08254,"107":0.15051,"108":6.10759,"109":4.70935,"110":0.01457,"111":0,"112":0.00486},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00971,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.06312,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03884,"94":0.06312,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00971,"85":0,"86":0,"87":0,"88":0,"89":0.00486,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00486,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00486,"104":0,"105":0,"106":0.01457,"107":0.41753,"108":1.64585,"109":1.69925},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03884,"15":0.00486,_:"0","3.1":0,"3.2":0,"5.1":0.00486,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00971,"13.1":1.07296,"14.1":0.32529,"15.1":0.00486,"15.2-15.3":0.01457,"15.4":0.01457,"15.5":0.12623,"15.6":0.7234,"16.0":0.10196,"16.1":0.24275,"16.2":0.5826,"16.3":0.03884},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00764,"6.0-6.1":0,"7.0-7.1":0.00255,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08403,"10.0-10.2":0,"10.3":0.02801,"11.0-11.2":0.03056,"11.3-11.4":0.08148,"12.0-12.1":0.00255,"12.2-12.5":0.42778,"13.0-13.1":0,"13.2":0,"13.3":0.01273,"13.4-13.7":0.06875,"14.0-14.4":0.04838,"14.5-14.8":0.48635,"15.0-15.1":0.05347,"15.2-15.3":0.10949,"15.4":0.14259,"15.5":1.20187,"15.6":3.46047,"16.0":2.78824,"16.1":7.67466,"16.2":6.81654,"16.3":0.39468},P:{"4":0.0971,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14026,"8.2":0,"9.2":0.03237,"10.1":0,"11.1-11.2":0.01079,"12.0":0,"13.0":0.02158,"14.0":0.01079,"15.0":0.01079,"16.0":0.03237,"17.0":0.03237,"18.0":0.08631,"19.0":2.41677},I:{"0":0,"3":0,"4":0.06227,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.08981},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00486,"11":0.01942,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.27783},Q:{"13.1":0},O:{"0":0.07203},H:{"0":1.23722},L:{"0":47.8876}}; +module.exports={C:{"94":0.0042,"102":0.021,"108":0.021,"109":1.0878,"110":0.7518,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 103 104 105 106 107 111 112 3.5 3.6"},D:{"34":0.0042,"37":0.0042,"38":0.0042,"63":0.0042,"68":0.0042,"74":0.0084,"75":0.0462,"76":0.042,"79":0.9996,"81":0.0042,"83":0.0462,"84":0.0126,"87":0.0546,"88":0.0168,"91":0.0042,"92":0.0966,"93":0.0378,"94":0.0042,"95":0.0126,"96":0.0084,"98":0.0168,"99":0.0042,"100":0.0462,"101":0.0084,"102":0.0168,"103":0.2268,"104":0.0252,"105":0.0336,"106":0.0546,"107":0.105,"108":0.6384,"109":14.9856,"110":7.4886,"111":0.0042,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 72 73 77 78 80 85 86 89 90 97 112 113"},F:{"93":0.0168,"94":0.3108,"95":0.0672,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.0084,"18":0.0126,"84":0.0084,"89":0.0042,"92":0.0042,"94":0.0042,"106":0.0336,"107":0.0924,"108":0.1302,"109":2.6544,"110":4.0026,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90 91 93 95 96 97 98 99 100 101 102 103 104 105"},E:{"4":0,"14":0.042,"15":0.0084,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.0294,"13.1":0.2142,"14.1":0.3108,"15.1":0.0042,"15.2-15.3":0.0252,"15.4":0.042,"15.5":0.084,"15.6":0.9912,"16.0":0.1008,"16.1":0.1596,"16.2":1.2894,"16.3":1.0038,"16.4":0.0042},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0036,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0054,"10.0-10.2":0,"10.3":0.03962,"11.0-11.2":0.0054,"11.3-11.4":0.0072,"12.0-12.1":0.01261,"12.2-12.5":0.36015,"13.0-13.1":0,"13.2":0,"13.3":0.01261,"13.4-13.7":0.01801,"14.0-14.4":0.03602,"14.5-14.8":0.37456,"15.0-15.1":0.02521,"15.2-15.3":1.11647,"15.4":0.04862,"15.5":0.32774,"15.6":1.23532,"16.0":1.50184,"16.1":2.92984,"16.2":5.17539,"16.3":3.27379,"16.4":0.009},P:{"4":0.29513,"20":0.98026,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.13703,"8.2":0.02044,"9.2":0.0307,"10.1":0.0217,"11.1-11.2":0.01054,"12.0":0.02036,"13.0":0.03162,"14.0":0.05117,"15.0":0.02108,"16.0":0.04216,"17.0":0.06324,"18.0":0.0527,"19.0":1.65484},I:{"0":0,"3":0,"4":0.00464,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01856},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0126,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.1334},H:{"0":1.80656},L:{"0":38.0668},R:{_:"0"},M:{"0":0.3828},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KP.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KP.js index 7a6a3d126e7cc7..0151e1f40ee283 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":1.06575,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.1412,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0706,"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,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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":1.35152,"101":0,"102":0,"103":0,"104":0,"105":1.35152,"106":0,"107":0,"108":0.49758,"109":0.78335,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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":2.34668,"80":0,"81":0,"82":0,"83":0,"84":0.1412,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.21181,"94":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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":1.49273},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.28577,"16.0":0,"16.1":0.21181,"16.2":0.0706,"16.3":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.17045,"15.4":0,"15.5":22.37528,"15.6":10.09263,"16.0":4.2044,"16.1":7.23633,"16.2":4.88103,"16.3":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"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},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":27.66055},H:{"0":0},L:{"0":2.91139},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.05264,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.15386,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.05264,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.05264,"110":0,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.05264,"72":0,"73":0,"74":0,"75":0.05264,"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.2065,"99":0,"100":7.73359,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.83005,"110":0.62355,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.10527,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.46564,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.05264,"95":0.10527,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.05264,"85":0,"86":0,"87":0,"88":0,"89":0,"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.31177,"109":0.67618,"110":1.29973},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.25914,"16.0":0,"16.1":0.05264,"16.2":0.41705,"16.3":0.98796,"16.4":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.0966,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.19319,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.0966,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0.0966,"15.4":1.73435,"15.5":20.79898,"15.6":1.73435,"16.0":2.21294,"16.1":8.57074,"16.2":5.87482,"16.3":1.63775,"16.4":0},P:{"4":0,"20":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},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":27.76142},H:{"0":0},L:{"0":0.18356},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js index ae0ebfd36ce36b..338bfb6bafeeff 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.00394,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00394,"79":0,"80":0.00394,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00394,"103":0,"104":0,"105":0,"106":0,"107":0.00394,"108":0.13396,"109":0.08668,"110":0.00394,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00788,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00394,"49":0.00394,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00394,"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.00394,"76":0,"77":0.0591,"78":0.00394,"79":0.01182,"80":0.00394,"81":0.00394,"83":0.01182,"84":0.0197,"85":0.0197,"86":0.02758,"87":0.02758,"88":0.00394,"89":0.00788,"90":0.03546,"91":0.04334,"92":0,"93":0,"94":0.05122,"95":0.00394,"96":0.00788,"97":0.00394,"98":0.00394,"99":0.00394,"100":0.00788,"101":0.01576,"102":0.01576,"103":0.03152,"104":0.0197,"105":0.01576,"106":0.0197,"107":0.0591,"108":4.8462,"109":4.83044,"110":0.00394,"111":0.00394,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00394,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00394,"94":0.05516,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00394,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00394,"93":0,"94":0,"95":0,"96":0.00394,"97":0,"98":0,"99":0,"100":0.00394,"101":0,"102":0,"103":0.00394,"104":0.00394,"105":0.01182,"106":0.00394,"107":0.02364,"108":1.25292,"109":1.28838},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00394,"9":0,"10":0,"11":0,"12":0,"13":0.00394,"14":0.00788,"15":0.00394,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00788,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00788,"14.1":0.01576,"15.1":0.00394,"15.2-15.3":0.00394,"15.4":0.00788,"15.5":0.02364,"15.6":0.10244,"16.0":0.01576,"16.1":0.07092,"16.2":0.14578,"16.3":0.01182},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00233,"8.1-8.4":0.00466,"9.0-9.2":0.21902,"9.3":0.01398,"10.0-10.2":0.00932,"10.3":0.01165,"11.0-11.2":0.02796,"11.3-11.4":0.00932,"12.0-12.1":0.01864,"12.2-12.5":0.11417,"13.0-13.1":0.17941,"13.2":0.00466,"13.3":0.01165,"13.4-13.7":0.04427,"14.0-14.4":0.19805,"14.5-14.8":0.49628,"15.0-15.1":0.21669,"15.2-15.3":0.16543,"15.4":0.24465,"15.5":0.48463,"15.6":1.99212,"16.0":4.04015,"16.1":7.95448,"16.2":5.83189,"16.3":0.46599},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01015,"9.2":0,"10.1":0.01015,"11.1-11.2":0.02029,"12.0":0.01015,"13.0":0.03044,"14.0":0.04059,"15.0":0.02029,"16.0":0.09132,"17.0":0.16235,"18.0":0.67985,"19.0":13.67825},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.33758},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00426,"9":0.00426,"10":0.00426,"11":0.14482,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.1212},Q:{"13.1":0.00606},O:{"0":0.06666},H:{"0":0.12048},L:{"0":30.77392},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0039,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"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,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0039,"103":0,"104":0,"105":0,"106":0,"107":0.0039,"108":0.0039,"109":0.13633,"110":0.08569,"111":0.0039,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00779,"43":0,"44":0.0039,"45":0,"46":0,"47":0,"48":0,"49":0.0039,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0039,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00779,"69":0.0039,"70":0.0039,"71":0.0039,"72":0.0039,"73":0,"74":0.0039,"75":0.0039,"76":0.0039,"77":0.05843,"78":0.0039,"79":0.01169,"80":0.00779,"81":0.01169,"83":0.01169,"84":0.01558,"85":0.01558,"86":0.02727,"87":0.01948,"88":0.0039,"89":0.00779,"90":0.04285,"91":0.04285,"92":0,"93":0,"94":0.05453,"95":0.0039,"96":0.01169,"97":0.0039,"98":0.0039,"99":0.0039,"100":0.00779,"101":0.01558,"102":0.01558,"103":0.02337,"104":0.01948,"105":0.01169,"106":0.01558,"107":0.05843,"108":0.1597,"109":5.36731,"110":3.77815,"111":0.0039,"112":0.0039,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0039,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.02337,"95":0.03116,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0039,"79":0,"80":0,"81":0,"83":0,"84":0.0039,"85":0.0039,"86":0.0039,"87":0.0039,"88":0,"89":0.0039,"90":0,"91":0.0039,"92":0.0039,"93":0,"94":0,"95":0,"96":0.0039,"97":0,"98":0,"99":0,"100":0.0039,"101":0,"102":0,"103":0.0039,"104":0.0039,"105":0.00779,"106":0.0039,"107":0.01558,"108":0.03506,"109":1.04386,"110":1.41389},E:{"4":0,"5":0,"6":0,"7":0,"8":0.0039,"9":0,"10":0,"11":0,"12":0,"13":0.0039,"14":0.00779,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01558,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00779,"14.1":0.01558,"15.1":0.0039,"15.2-15.3":0.0039,"15.4":0.00779,"15.5":0.01948,"15.6":0.05843,"16.0":0.00779,"16.1":0.04285,"16.2":0.13243,"16.3":0.10127,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00479,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.22519,"9.3":0.01198,"10.0-10.2":0.00719,"10.3":0.00719,"11.0-11.2":0.01917,"11.3-11.4":0.00479,"12.0-12.1":0.01437,"12.2-12.5":0.08145,"13.0-13.1":0.18447,"13.2":0.00719,"13.3":0.01437,"13.4-13.7":0.04791,"14.0-14.4":0.18207,"14.5-14.8":0.4432,"15.0-15.1":0.14374,"15.2-15.3":0.14614,"15.4":0.20603,"15.5":0.45039,"15.6":1.53562,"16.0":3.24134,"16.1":5.8047,"16.2":6.5761,"16.3":4.07263,"16.4":0.01917},P:{"4":0.01012,"20":5.60672,"5.0-5.4":0.01012,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01012,"9.2":0,"10.1":0.01012,"11.1-11.2":0.02024,"12.0":0.01012,"13.0":0.03036,"14.0":0.04048,"15.0":0.03036,"16.0":0.08096,"17.0":0.15181,"18.0":0.3947,"19.0":7.93441},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.27895},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00418,"9":0,"10":0,"11":0.10877,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.07326},H:{"0":0.1156},L:{"0":31.57792},R:{_:"0"},M:{"0":0.1221},Q:{"13.1":0.00611}}; 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 d0116ef788291c..41e175695f1b28 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.0029,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0029,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02606,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0029,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0029,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0029,"101":0,"102":0.01158,"103":0,"104":0.0029,"105":0.0029,"106":0.0029,"107":0.00579,"108":0.15349,"109":0.08978,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0029,"39":0,"40":0,"41":0.0029,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0029,"48":0,"49":0.0029,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0029,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.0029,"65":0,"66":0,"67":0,"68":0.00869,"69":0.0029,"70":0,"71":0.0029,"72":0,"73":0,"74":0.00579,"75":0.0029,"76":0,"77":0,"78":0.0029,"79":0.0029,"80":0.00579,"81":0.0029,"83":0.00579,"84":0,"85":0.0029,"86":0.00579,"87":0.00579,"88":0.00869,"89":0.00579,"90":0.00579,"91":0.0029,"92":0.02606,"93":0.0029,"94":0.0029,"95":0.01158,"96":0.0029,"97":0.00869,"98":0.0029,"99":0.0029,"100":0.0029,"101":0.00579,"102":0.00579,"103":0.03765,"104":0.00869,"105":0.02317,"106":0.01738,"107":0.05213,"108":2.58323,"109":2.59192,"110":0.0029,"111":0.0029,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00579,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00579,"47":0,"48":0,"49":0,"50":0,"51":0.00869,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01448,"62":0.0029,"63":0.00579,"64":0.00579,"65":0.0029,"66":0.01738,"67":0.00579,"68":0,"69":0,"70":0,"71":0,"72":0.0029,"73":0.01158,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.17376,"94":0.15928,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0029},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0029,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0029,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0029,"102":0,"103":0,"104":0.0029,"105":0.0029,"106":0.0029,"107":0.04054,"108":0.38806,"109":0.34752},E:{"4":0,"5":0,"6":0,"7":0.03186,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0029,"14":0.03765,"15":0.01158,_:"0","3.1":0,"3.2":0,"5.1":0.0029,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00579,"13.1":0.01738,"14.1":0.12163,"15.1":0.02896,"15.2-15.3":0.01448,"15.4":0.03186,"15.5":0.08688,"15.6":0.25485,"16.0":0.02317,"16.1":0.09846,"16.2":0.15059,"16.3":0.01448},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0117,"8.1-8.4":0.03902,"9.0-9.2":0,"9.3":0.11705,"10.0-10.2":0,"10.3":0.08193,"11.0-11.2":0.0039,"11.3-11.4":0.01561,"12.0-12.1":0.03511,"12.2-12.5":0.77642,"13.0-13.1":0.08584,"13.2":0.03121,"13.3":0.18338,"13.4-13.7":0.2302,"14.0-14.4":1.15098,"14.5-14.8":1.95081,"15.0-15.1":0.60865,"15.2-15.3":0.75301,"15.4":1.06904,"15.5":2.04055,"15.6":4.43224,"16.0":5.42715,"16.1":8.87228,"16.2":8.01002,"16.3":0.88957},P:{"4":0.14438,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0825,"8.2":0,"9.2":0.01031,"10.1":0.01031,"11.1-11.2":0.04125,"12.0":0.02063,"13.0":0.02063,"14.0":0.07219,"15.0":0.02063,"16.0":0.09282,"17.0":0.12375,"18.0":0.2372,"19.0":3.06292},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00697,"4.2-4.3":0.00697,"4.4":0,"4.4.3-4.4.4":0.05344},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02027,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09946},Q:{"13.1":0},O:{"0":2.51482},H:{"0":1.1568},L:{"0":44.20523},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0.00251,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00251,"35":0,"36":0.00251,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06031,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00251,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00251,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00754,"103":0,"104":0,"105":0,"106":0.00251,"107":0.00251,"108":0.00503,"109":0.14827,"110":0.07036,"111":0.00251,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00503,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00251,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00251,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00251,"65":0,"66":0,"67":0,"68":0.00503,"69":0.00251,"70":0.00251,"71":0,"72":0.00251,"73":0.00251,"74":0.00503,"75":0.00251,"76":0,"77":0,"78":0.00503,"79":0.00251,"80":0.00251,"81":0.02262,"83":0.00251,"84":0,"85":0.00251,"86":0.00251,"87":0.00251,"88":0.00503,"89":0.00251,"90":0.00503,"91":0.00251,"92":0.0201,"93":0.00251,"94":0,"95":0.01005,"96":0.00251,"97":0.00754,"98":0.00251,"99":0.00251,"100":0.00251,"101":0.00251,"102":0.00251,"103":0.03016,"104":0.00754,"105":0.01257,"106":0.01005,"107":0.0201,"108":0.14324,"109":2.24662,"110":1.26153,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00503,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00503,"47":0,"48":0,"49":0,"50":0,"51":0.00503,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00503,"62":0,"63":0.00503,"64":0.00251,"65":0,"66":0.01005,"67":0.06785,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00251,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01508,"94":0.15078,"95":0.04775,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00251,"79":0,"80":0,"81":0,"83":0,"84":0.00251,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00251,"92":0.00251,"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.00251,"106":0.00503,"107":0.02262,"108":0.03267,"109":0.25381,"110":0.3091},E:{"4":0,"5":0,"6":0,"7":0.03016,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00251,"14":0.02764,"15":0.00754,_:"0","3.1":0,"3.2":0,"5.1":0.00251,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00754,"13.1":0.01759,"14.1":0.08293,"15.1":0.01759,"15.2-15.3":0.01005,"15.4":0.0779,"15.5":0.06031,"15.6":0.15078,"16.0":0.01508,"16.1":0.06283,"16.2":0.10806,"16.3":0.11811,"16.4":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.01238,"8.1-8.4":0.01651,"9.0-9.2":0,"9.3":0.07428,"10.0-10.2":0,"10.3":0.1073,"11.0-11.2":0.01651,"11.3-11.4":0.01651,"12.0-12.1":0.03714,"12.2-12.5":0.88313,"13.0-13.1":0.08666,"13.2":0.02889,"13.3":0.15269,"13.4-13.7":0.22697,"14.0-14.4":1.15137,"14.5-14.8":1.88593,"15.0-15.1":0.60663,"15.2-15.3":0.73044,"15.4":1.06058,"15.5":1.77863,"15.6":3.70171,"16.0":4.85307,"16.1":7.18057,"16.2":7.65102,"16.3":6.80091,"16.4":0.02476},P:{"4":0.15362,"20":1.20851,"5.0-5.4":0.01024,"6.2-6.4":0,"7.2-7.4":0.08193,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.09217,"12.0":0.01024,"13.0":0.05121,"14.0":0.08193,"15.0":0.02048,"16.0":0.11266,"17.0":0.09217,"18.0":0.17411,"19.0":2.24292},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01263,"4.2-4.3":0.00631,"4.4":0,"4.4.3-4.4.4":0.05367},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01005,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":2.28354},H:{"0":0.99944},L:{"0":44.32111},R:{_:"0"},M:{"0":0.18718},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KY.js index 7b31ab027c1140..8c63974ef98c76 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.00466,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00932,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00466,"103":0,"104":0,"105":0,"106":0,"107":0.00932,"108":0.63403,"109":0.34499,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00932,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00466,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00466,"77":0.00932,"78":0,"79":0.02331,"80":0,"81":0,"83":0.00932,"84":0,"85":0,"86":0,"87":0.00932,"88":0,"89":0,"90":0,"91":0,"92":0.0979,"93":0.00932,"94":0,"95":0,"96":0.00466,"97":0.00932,"98":0.00466,"99":0.01399,"100":0.00932,"101":0.01865,"102":0.01399,"103":0.0979,"104":0.00932,"105":0.04662,"106":0.0373,"107":0.24242,"108":6.74591,"109":4.89044,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00466,"91":0,"92":0,"93":0.16317,"94":0.24242,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00466,"18":0.00466,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00466,"96":0,"97":0,"98":0,"99":0.00466,"100":0.03263,"101":0,"102":0,"103":0,"104":0,"105":0.00466,"106":0.06527,"107":0.07459,"108":1.47785,"109":1.60373},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04196,"15":0.0373,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01399,"13.1":0.23776,"14.1":0.17249,"15.1":0.07925,"15.2-15.3":0.00932,"15.4":0.04662,"15.5":0.15851,"15.6":1.47785,"16.0":0.18648,"16.1":0.48485,"16.2":0.6993,"16.3":0.02331},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00836,"10.0-10.2":0,"10.3":0.07523,"11.0-11.2":0,"11.3-11.4":0.0209,"12.0-12.1":0.00418,"12.2-12.5":0.25495,"13.0-13.1":0,"13.2":0,"13.3":0.27167,"13.4-13.7":0.11703,"14.0-14.4":0.13792,"14.5-14.8":0.80246,"15.0-15.1":0.30928,"15.2-15.3":0.25495,"15.4":0.23823,"15.5":0.96547,"15.6":6.09372,"16.0":4.5264,"16.1":13.81744,"16.2":10.70789,"16.3":0.63528},P:{"4":0.27071,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.31236,"8.2":0,"9.2":0,"10.1":0.01041,"11.1-11.2":0.04165,"12.0":0,"13.0":0,"14.0":0.01041,"15.0":0,"16.0":0.04165,"17.0":0.03124,"18.0":0.07288,"19.0":3.84206},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.16166,"4.4":0,"4.4.3-4.4.4":0.08083},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00466,"9":0,"10":0,"11":0.00932,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.22953},Q:{"13.1":0},O:{"0":0.05872},H:{"0":0.04548},L:{"0":32.2847},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.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,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.01483,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.02472,"109":0.68227,"110":0.53395,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00494,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01483,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00494,"77":0,"78":0,"79":0.00989,"80":0,"81":0,"83":0.00494,"84":0,"85":0.01483,"86":0,"87":0.00989,"88":0,"89":0,"90":0,"91":0,"92":0.03461,"93":0.05438,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00494,"100":0.00494,"101":0,"102":0.00494,"103":0.05933,"104":0.00494,"105":0.06922,"106":0.01483,"107":0.09888,"108":0.85037,"109":7.73242,"110":4.50398,"111":0.00494,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00989,"94":0.3708,"95":0.1681,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00494,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00494,"101":0.00494,"102":0,"103":0.00494,"104":0,"105":0,"106":0.00989,"107":0.01978,"108":0.09888,"109":1.6859,"110":1.94299},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02472,"14":0.03955,"15":0.04944,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.07416,"13.1":0.17304,"14.1":0.18787,"15.1":0.11371,"15.2-15.3":0.00989,"15.4":0.01978,"15.5":0.10877,"15.6":0.99374,"16.0":0.0791,"16.1":0.30158,"16.2":1.27061,"16.3":0.80587,"16.4":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.00807,"10.0-10.2":0,"10.3":0.0605,"11.0-11.2":0.00403,"11.3-11.4":0.01613,"12.0-12.1":0,"12.2-12.5":0.45171,"13.0-13.1":0,"13.2":0.0121,"13.3":0.0726,"13.4-13.7":0.10486,"14.0-14.4":0.12099,"14.5-14.8":0.41541,"15.0-15.1":0.10889,"15.2-15.3":0.17746,"15.4":0.14923,"15.5":0.52028,"15.6":4.21061,"16.0":3.30718,"16.1":8.7842,"16.2":12.59149,"16.3":6.95718,"16.4":0.10889},P:{"4":0.10355,"20":1.62575,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.60059,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0932,"12.0":0,"13.0":0,"14.0":0.01036,"15.0":0,"16.0":0.06213,"17.0":0.0932,"18.0":0.07249,"19.0":2.72339},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.11031,"4.4":0,"4.4.3-4.4.4":0.08273},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00989,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.07584},H:{"0":0.01436},L:{"0":29.57643},R:{_:"0"},M:{"0":0.11629},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js index fc515851033ea4..c61cb3a3532653 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.08568,"53":0,"54":0,"55":0,"56":0.00373,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00373,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00373,"97":0,"98":0,"99":0.00373,"100":0,"101":0.00373,"102":0.0149,"103":0.00373,"104":0.00373,"105":0.00373,"106":0.00373,"107":0.01118,"108":0.29055,"109":0.17135,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00745,"50":0,"51":0.00745,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00373,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00745,"72":0.00745,"73":0,"74":0.00373,"75":0.00373,"76":0.00373,"77":0.00373,"78":0,"79":0.01118,"80":0.00745,"81":0.00373,"83":0.00745,"84":0.00745,"85":0.01863,"86":0.0149,"87":0.0149,"88":0.00745,"89":0.00373,"90":0.01118,"91":0.0149,"92":0.00745,"93":0.00373,"94":0.00373,"95":0.00373,"96":0.0298,"97":0.02235,"98":0.0149,"99":0.01863,"100":0.0596,"101":0.00745,"102":0.01863,"103":0.03725,"104":0.04843,"105":0.04843,"106":0.0447,"107":0.10803,"108":4.917,"109":3.0843,"110":0.00373,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00373,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00745,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00373,"72":0.02235,"73":0.00373,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01118,"80":0,"81":0,"82":0,"83":0,"84":0.00373,"85":0.0298,"86":0.00373,"87":0,"88":0,"89":0,"90":0.01863,"91":0,"92":0.00373,"93":0.18998,"94":0.93125,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.18625,"12.1":0},B:{"12":0,"13":0.00373,"14":0,"15":0,"16":0,"17":0,"18":0.00745,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00373,"90":0,"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.00373,"106":0.00373,"107":0.00745,"108":0.32408,"109":0.32408},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01863,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.02608,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00373,"13.1":0.01118,"14.1":0.02235,"15.1":0.01118,"15.2-15.3":0.00745,"15.4":0.02235,"15.5":0.02608,"15.6":0.13038,"16.0":0.01863,"16.1":0.0894,"16.2":0.12665,"16.3":0.01118},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00522,"8.1-8.4":0.00783,"9.0-9.2":0,"9.3":0.01826,"10.0-10.2":0.00522,"10.3":0.0313,"11.0-11.2":0.02609,"11.3-11.4":0.00261,"12.0-12.1":0.01826,"12.2-12.5":0.5713,"13.0-13.1":0.02087,"13.2":0.01304,"13.3":0.06261,"13.4-13.7":0.1513,"14.0-14.4":0.56608,"14.5-14.8":0.96782,"15.0-15.1":0.29739,"15.2-15.3":0.47478,"15.4":0.69913,"15.5":1.32521,"15.6":2.63737,"16.0":6.06517,"16.1":6.09909,"16.2":4.17649,"16.3":0.34174},P:{"4":0.09092,"5.0-5.4":0,"6.2-6.4":0.0101,"7.2-7.4":0.31317,"8.2":0,"9.2":0.03031,"10.1":0,"11.1-11.2":0.13133,"12.0":0.0202,"13.0":0.05051,"14.0":0.06061,"15.0":0.04041,"16.0":0.12123,"17.0":0.11112,"18.0":0.19194,"19.0":2.08105},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02118},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0298,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06903},Q:{"13.1":0},O:{"0":0.31375},H:{"0":0.34456},L:{"0":54.37078},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.102,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0255,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00364,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00364,"99":0.00364,"100":0,"101":0.00729,"102":0.01093,"103":0,"104":0.00364,"105":0.00364,"106":0.00364,"107":0.00729,"108":0.01822,"109":0.27687,"110":0.17851,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00729,"50":0,"51":0.00729,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00364,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00364,"73":0,"74":0.00364,"75":0,"76":0,"77":0.00364,"78":0.00364,"79":0.01093,"80":0.00729,"81":0.00729,"83":0.00364,"84":0.00729,"85":0.01457,"86":0.00729,"87":0.01457,"88":0.00364,"89":0.00364,"90":0.00364,"91":0.01093,"92":0.01093,"93":0.00364,"94":0.00729,"95":0.00729,"96":0.01822,"97":0.01822,"98":0.02186,"99":0.00729,"100":0.03643,"101":0.01093,"102":0.0255,"103":0.0255,"104":0.01457,"105":0.03279,"106":0.05829,"107":0.0765,"108":0.26958,"109":5.24956,"110":2.38252,"111":0.00364,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00729,"80":0,"81":0,"82":0,"83":0,"84":0.00364,"85":0.0255,"86":0.00364,"87":0.00364,"88":0.00364,"89":0,"90":0,"91":0,"92":0,"93":0.0255,"94":0.38252,"95":0.35337,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.17486,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00729,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00364,"89":0.00364,"90":0,"91":0,"92":0.00364,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00364,"105":0,"106":0.00364,"107":0.00729,"108":0.02186,"109":0.32058,"110":0.42987},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01457,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0255,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00364,"13.1":0.01093,"14.1":0.02914,"15.1":0.01457,"15.2-15.3":0.00729,"15.4":0.02186,"15.5":0.0255,"15.6":0.09472,"16.0":0.01457,"16.1":0.07286,"16.2":0.11293,"16.3":0.08743,"16.4":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.0028,"8.1-8.4":0.00561,"9.0-9.2":0,"9.3":0.01963,"10.0-10.2":0.00841,"10.3":0.02805,"11.0-11.2":0.03085,"11.3-11.4":0.0028,"12.0-12.1":0.01683,"12.2-12.5":0.49083,"13.0-13.1":0.01683,"13.2":0.01402,"13.3":0.05329,"13.4-13.7":0.13463,"14.0-14.4":0.58619,"14.5-14.8":0.948,"15.0-15.1":0.28608,"15.2-15.3":0.43754,"15.4":0.70679,"15.5":1.35749,"15.6":2.47377,"16.0":5.71043,"16.1":5.35703,"16.2":4.8045,"16.3":3.0263,"16.4":0.01122},P:{"4":0.12154,"20":0.58743,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.31397,"8.2":0,"9.2":0.02026,"10.1":0,"11.1-11.2":0.06077,"12.0":0.02026,"13.0":0.05064,"14.0":0.05064,"15.0":0.04051,"16.0":0.11141,"17.0":0.08102,"18.0":0.13167,"19.0":1.39768},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00273,"4.4":0,"4.4.3-4.4.4":0.02184},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04007,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.31149},H:{"0":0.27083},L:{"0":53.66403},R:{_:"0"},M:{"0":0.06357},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js index d5454cf74dc542..0a1715f0ee81a8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00229,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00229,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00229,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00229,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00229,"102":0.00229,"103":0,"104":0,"105":0.00229,"106":0.00229,"107":0.00917,"108":0.16051,"109":0.08026,"110":0.00229,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00229,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00459,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00459,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00459,"69":0.00229,"70":0.00459,"71":0.00229,"72":0.00459,"73":0.00229,"74":0.00229,"75":0.00459,"76":0.00229,"77":0,"78":0.00917,"79":0.00688,"80":0.00459,"81":0.00688,"83":0.00917,"84":0.00459,"85":0,"86":0.01147,"87":0.00459,"88":0.00688,"89":0,"90":0.00917,"91":0.00688,"92":0.01147,"93":0.00229,"94":0.08255,"95":0.00459,"96":0.00459,"97":0.00688,"98":0.00688,"99":0.00459,"100":0.00459,"101":0.00688,"102":0.00917,"103":0.02293,"104":0.01376,"105":0.02064,"106":0.02293,"107":0.05274,"108":1.61427,"109":1.44459,"110":0.00459,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00229,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00229,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00229,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01376,"94":0.06191,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00229,"13":0,"14":0.00229,"15":0,"16":0.00229,"17":0,"18":0.00229,"79":0,"80":0,"81":0,"83":0,"84":0.00688,"85":0,"86":0,"87":0.00229,"88":0,"89":0,"90":0,"91":0,"92":0.00459,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00229,"103":0,"104":0,"105":0.00229,"106":0.00229,"107":0.00688,"108":0.24306,"109":0.22242},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00229,"14":0.00459,"15":0.00229,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00688,"13.1":0.00917,"14.1":0.01376,"15.1":0.00229,"15.2-15.3":0.00688,"15.4":0.00459,"15.5":0.00917,"15.6":0.05503,"16.0":0.00917,"16.1":0.0321,"16.2":0.05274,"16.3":0.01376},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00981,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00491,"9.3":0.07116,"10.0-10.2":0.01963,"10.3":0.11532,"11.0-11.2":0.02944,"11.3-11.4":0.03435,"12.0-12.1":0.0319,"12.2-12.5":1.22684,"13.0-13.1":0.02454,"13.2":0.05398,"13.3":0.11532,"13.4-13.7":0.45148,"14.0-14.4":0.8367,"14.5-14.8":1.5041,"15.0-15.1":0.52999,"15.2-15.3":0.71402,"15.4":0.7042,"15.5":1.19003,"15.6":2.65733,"16.0":3.03274,"16.1":4.49513,"16.2":3.2045,"16.3":0.27972},P:{"4":0.23397,"5.0-5.4":0,"6.2-6.4":0.01017,"7.2-7.4":0.31535,"8.2":0,"9.2":0.03052,"10.1":0.02034,"11.1-11.2":0.08138,"12.0":0.02034,"13.0":0.05086,"14.0":0.12207,"15.0":0.09155,"16.0":0.17293,"17.0":0.15259,"18.0":0.27466,"19.0":2.45156},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09459},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03669,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12331},Q:{"13.1":0.03083},O:{"0":1.03274},H:{"0":0.28456},L:{"0":66.82458},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00224,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00224,"67":0,"68":0.00224,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00224,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00224,"95":0,"96":0,"97":0,"98":0.00224,"99":0,"100":0,"101":0.00224,"102":0.00224,"103":0,"104":0,"105":0.00224,"106":0,"107":0.00448,"108":0.00448,"109":0.12326,"110":0.09412,"111":0.00448,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00224,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00448,"44":0,"45":0,"46":0.00224,"47":0,"48":0,"49":0,"50":0,"51":0.00224,"52":0,"53":0,"54":0,"55":0,"56":0.00224,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00224,"63":0.00224,"64":0,"65":0.00224,"66":0,"67":0,"68":0.00224,"69":0.00224,"70":0.00672,"71":0,"72":0.00224,"73":0.00448,"74":0.00224,"75":0.00448,"76":0,"77":0,"78":0.00448,"79":0.00672,"80":0.00448,"81":0.00224,"83":0.01121,"84":0.00448,"85":0,"86":0.00672,"87":0.01345,"88":0.00896,"89":0.00224,"90":0.00672,"91":0.00448,"92":0.00896,"93":0,"94":0.00448,"95":0.00224,"96":0.00448,"97":0.00672,"98":0.00448,"99":0.00672,"100":0.00672,"101":0.00448,"102":0.00672,"103":0.02017,"104":0.00896,"105":0.02241,"106":0.01793,"107":0.0381,"108":0.07171,"109":1.68747,"110":1.04431,"111":0.00224,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00224,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00672,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00224,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.02913,"95":0.02241,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00224,"17":0,"18":0.00448,"79":0,"80":0,"81":0,"83":0,"84":0.00224,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00672,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00224,"102":0,"103":0,"104":0,"105":0,"106":0.00224,"107":0.00224,"108":0.01121,"109":0.16135,"110":0.25323},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00224,"14":0.00448,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00224,"10.1":0,"11.1":0,"12.1":0.00448,"13.1":0.00896,"14.1":0.01569,"15.1":0.00448,"15.2-15.3":0.00672,"15.4":0.00672,"15.5":0.00672,"15.6":0.05378,"16.0":0.00448,"16.1":0.02241,"16.2":0.02913,"16.3":0.06051,"16.4":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.01654,"7.0-7.1":0.00236,"8.1-8.4":0.00472,"9.0-9.2":0.02835,"9.3":0.04252,"10.0-10.2":0.01181,"10.3":0.0567,"11.0-11.2":0.02835,"11.3-11.4":0.01654,"12.0-12.1":0.02362,"12.2-12.5":1.15758,"13.0-13.1":0.0189,"13.2":0.03307,"13.3":0.08268,"13.4-13.7":0.27876,"14.0-14.4":0.85756,"14.5-14.8":1.27807,"15.0-15.1":0.43941,"15.2-15.3":0.64966,"15.4":0.55044,"15.5":1.13868,"15.6":2.45927,"16.0":2.56086,"16.1":3.41605,"16.2":3.39715,"16.3":2.17815,"16.4":0.00709},P:{"4":0.16211,"20":0.68898,"5.0-5.4":0,"6.2-6.4":0.01013,"7.2-7.4":0.20264,"8.2":0.01013,"9.2":0.0304,"10.1":0,"11.1-11.2":0.08106,"12.0":0.0304,"13.0":0.0304,"14.0":0.13172,"15.0":0.07092,"16.0":0.20264,"17.0":0.13172,"18.0":0.20264,"19.0":1.82378},I:{"0":0,"3":0,"4":0.02418,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00967,"4.4":0,"4.4.3-4.4.4":0.06287},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00586,"9":0.00293,"10":0.00293,"11":0.02637,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.1173},H:{"0":0.30852},L:{"0":68.00315},R:{_:"0"},M:{"0":0.10087},Q:{"13.1":0.05431}}; 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 e333f028955a73..3223e3a0cae3b7 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.00342,"27":0,"28":0,"29":0,"30":0.00342,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00342,"48":0,"49":0,"50":0,"51":0,"52":0.01369,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00342,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00342,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00342,"92":0,"93":0,"94":0,"95":0,"96":0.00342,"97":0,"98":0,"99":0.00342,"100":0,"101":0,"102":0.00684,"103":0.00342,"104":0.00342,"105":0.00684,"106":0.00684,"107":0.01369,"108":0.6844,"109":0.3114,"110":0.00342,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00342,"35":0,"36":0,"37":0,"38":0.00342,"39":0,"40":0.00342,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00342,"48":0,"49":0.01027,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00342,"56":0.00342,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00342,"66":0,"67":0.00342,"68":0.00342,"69":0.00342,"70":0.00342,"71":0.00342,"72":0.00684,"73":0.00342,"74":0.00342,"75":0,"76":0,"77":0,"78":0.00342,"79":0.01369,"80":0.00684,"81":0.02053,"83":0.00342,"84":0.01027,"85":0.00684,"86":0.01369,"87":0.01027,"88":0.00342,"89":0.00342,"90":0.00342,"91":0.01711,"92":0.01027,"93":0.00342,"94":0.00342,"95":0.01027,"96":0.01027,"97":0.00684,"98":0.00684,"99":0.00342,"100":0.01711,"101":0.00684,"102":0.01711,"103":0.0616,"104":0.01027,"105":0.0308,"106":0.02738,"107":0.07871,"108":3.40147,"109":3.41516,"110":0,"111":0.00342,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00342,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00342,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00342,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.08213,"94":0.12661,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00342,"13":0,"14":0,"15":0,"16":0,"17":0.00342,"18":0.01027,"79":0,"80":0,"81":0,"83":0,"84":0.00342,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00684,"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.00342,"106":0.00342,"107":0.0308,"108":0.46881,"109":0.43117},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00342,"14":0.02738,"15":0.00342,_:"0","3.1":0,"3.2":0,"5.1":0.12661,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00684,"12.1":0.01369,"13.1":0.02738,"14.1":0.09239,"15.1":0.01027,"15.2-15.3":0.02053,"15.4":0.0308,"15.5":0.07186,"15.6":0.22243,"16.0":0.02738,"16.1":0.08897,"16.2":0.21901,"16.3":0.01711},G:{"8":0.03044,"3.2":0,"4.0-4.1":0.01268,"4.2-4.3":0.04312,"5.0-5.1":0.00254,"6.0-6.1":0.01268,"7.0-7.1":0.05581,"8.1-8.4":0.03044,"9.0-9.2":0.03551,"9.3":0.11922,"10.0-10.2":0.07864,"10.3":0.22069,"11.0-11.2":0.10908,"11.3-11.4":0.10147,"12.0-12.1":0.11922,"12.2-12.5":1.0933,"13.0-13.1":0.06849,"13.2":0.03551,"13.3":0.17757,"13.4-13.7":0.32469,"14.0-14.4":0.47182,"14.5-14.8":0.91827,"15.0-15.1":0.25113,"15.2-15.3":0.35767,"15.4":0.41348,"15.5":0.91827,"15.6":2.40475,"16.0":3.77963,"16.1":6.3036,"16.2":4.43662,"16.3":0.36274},P:{"4":0.13319,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.18442,"8.2":0,"9.2":0.02049,"10.1":0,"11.1-11.2":0.07172,"12.0":0.03074,"13.0":0.1127,"14.0":0.09221,"15.0":0.07172,"16.0":0.20491,"17.0":0.25614,"18.0":0.23565,"19.0":4.27241},I:{"0":0,"3":0,"4":0.00476,"2.1":0,"2.2":0,"2.3":0.00476,"4.1":0.00793,"4.2-4.3":0.02063,"4.4":0,"4.4.3-4.4.4":0.1301},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0075,"9":0.00375,"10":0.00375,"11":0.06371,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17103},Q:{"13.1":0},O:{"0":0.24339},H:{"0":0.30515},L:{"0":56.91722},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00577,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00577,"59":0,"60":0,"61":0,"62":0.00289,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01155,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00289,"92":0,"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.00289,"105":0.00289,"106":0.00289,"107":0.00577,"108":0.01155,"109":0.33489,"110":0.18477,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00289,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.03176,"62":0,"63":0,"64":0,"65":0.00289,"66":0,"67":0,"68":0.00289,"69":0.00289,"70":0.00289,"71":0,"72":0.00289,"73":0,"74":0.00577,"75":0,"76":0,"77":0,"78":0,"79":0.00577,"80":0.00289,"81":0.00577,"83":0.00289,"84":0.00577,"85":0.00577,"86":0.00289,"87":0.00577,"88":0.00289,"89":0.00289,"90":0.00289,"91":0.00866,"92":0.00577,"93":0.00289,"94":0.00289,"95":0.00289,"96":0.01155,"97":0.00577,"98":0.00577,"99":0.00289,"100":0.01155,"101":0.00289,"102":0.01155,"103":0.02021,"104":0.01155,"105":0.00866,"106":0.01155,"107":0.02021,"108":0.11548,"109":3.48172,"110":1.82747,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00577,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00289,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00577,"94":0.08084,"95":0.07218,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00289,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01155,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00289,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00289,"106":0.00577,"107":0.00289,"108":0.01444,"109":0.27138,"110":0.3118},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00289,"14":0.02021,"15":0.00289,_:"0","3.1":0,"3.2":0,"5.1":0.04331,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00577,"13.1":0.02598,"14.1":0.05197,"15.1":0.00577,"15.2-15.3":0.01444,"15.4":0.02021,"15.5":0.03464,"15.6":0.09527,"16.0":0.01155,"16.1":0.04908,"16.2":0.10105,"16.3":0.08372,"16.4":0.00289},G:{"8":0.00383,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00767,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04217,"10.0-10.2":0,"10.3":0.046,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.02683,"12.2-12.5":0.61715,"13.0-13.1":0.01533,"13.2":0.00767,"13.3":0.0575,"13.4-13.7":0.11883,"14.0-14.4":0.36799,"14.5-14.8":1.18063,"15.0-15.1":0.26449,"15.2-15.3":0.42932,"15.4":0.45999,"15.5":0.98897,"15.6":2.66791,"16.0":5.55432,"16.1":8.28356,"16.2":8.48289,"16.3":6.63528,"16.4":0.0115},P:{"4":0.06086,"20":2.41417,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14201,"8.2":0.02029,"9.2":0.03043,"10.1":0,"11.1-11.2":0.08115,"12.0":0.03043,"13.0":0.11158,"14.0":0.08115,"15.0":0.05072,"16.0":0.14201,"17.0":0.18258,"18.0":0.21302,"19.0":3.36767},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00669,"4.4":0,"4.4.3-4.4.4":0.05218},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01732,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.15649},H:{"0":0.15488},L:{"0":46.22017},R:{_:"0"},M:{"0":0.12803},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LC.js index 93cda792f1740e..178b6e29597f57 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.0086,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0086,"69":0,"70":0,"71":0,"72":0.0043,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.06453,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0043,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0043,"104":0.0086,"105":0.0043,"106":0.0043,"107":0.0086,"108":0.24952,"109":0.15917,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.27103,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0043,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0043,"74":0.0043,"75":0.0043,"76":0.03442,"77":0,"78":0.01291,"79":0.0086,"80":0,"81":0.03442,"83":0.01721,"84":0.0043,"85":0.0043,"86":0,"87":0.0043,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03011,"94":0,"95":0.0043,"96":0.0043,"97":0.0086,"98":0.02581,"99":0,"100":0.01721,"101":0.0043,"102":0.02151,"103":0.16778,"104":0.02151,"105":0.03442,"106":0.03011,"107":0.09895,"108":5.77759,"109":4.42246,"110":0.06023,"111":0.0043,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0086,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.15057,"94":0.38288,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0086,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0043,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.04302,"101":0,"102":0,"103":0.0043,"104":0,"105":0.0086,"106":0.0043,"107":0.04302,"108":1.43257,"109":1.05399},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01291,"14":0.04302,"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.0043,"13.1":0.09034,"14.1":0.03872,"15.1":0.0086,"15.2-15.3":0.0043,"15.4":0.06023,"15.5":0.04732,"15.6":0.40009,"16.0":0.01291,"16.1":0.12476,"16.2":0.20219,"16.3":0.01721},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01232,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.23198,"10.0-10.2":0,"10.3":0.01848,"11.0-11.2":0.01026,"11.3-11.4":0.01232,"12.0-12.1":0.01232,"12.2-12.5":0.3531,"13.0-13.1":0.00205,"13.2":0,"13.3":0.00411,"13.4-13.7":0.02874,"14.0-14.4":0.34078,"14.5-14.8":0.28946,"15.0-15.1":0.08006,"15.2-15.3":0.1047,"15.4":0.13139,"15.5":0.57892,"15.6":2.15759,"16.0":3.23536,"16.1":6.7376,"16.2":4.59643,"16.3":0.24635},P:{"4":0.13567,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.48007,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03131,"12.0":0.03131,"13.0":0.05218,"14.0":0.04175,"15.0":0.07305,"16.0":0.04175,"17.0":0.08349,"18.0":0.21916,"19.0":4.75897},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.73983},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0086,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.2735},Q:{"13.1":0},O:{"0":0.58689},H:{"0":0.64195},L:{"0":53.42956}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.13239,"88":0.00457,"89":0,"90":0,"91":0.00457,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00457,"103":0,"104":0.00457,"105":0,"106":0.00457,"107":0.00457,"108":0.00913,"109":0.33325,"110":0.29216,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00457,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00457,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00457,"70":0,"71":0,"72":0,"73":0.00457,"74":0,"75":0,"76":0.02739,"77":0.00457,"78":0.02739,"79":0.02283,"80":0,"81":0.02283,"83":0.02283,"84":0.00457,"85":0,"86":0.00457,"87":0.00457,"88":0.00913,"89":0,"90":0.00457,"91":0.00457,"92":0,"93":0.02283,"94":0,"95":0.00457,"96":0.02283,"97":0.03196,"98":0.00457,"99":0,"100":0.00913,"101":0.00457,"102":0.02283,"103":0.24651,"104":0.00913,"105":0.01826,"106":0.05478,"107":0.04109,"108":0.77149,"109":7.56877,"110":4.04459,"111":0.05935,"112":0.0137,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00913,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00913,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01826,"94":0.23282,"95":0.29216,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00913,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00913,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00913,"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.00457,"106":0.00457,"107":0.02283,"108":0.05935,"109":1.12756,"110":1.26451},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.05935,"14":0.02739,"15":0.00457,_:"0","3.1":0,"3.2":0,"5.1":0.00457,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00457,"12.1":0.00457,"13.1":0.06391,"14.1":0.05022,"15.1":0.00457,"15.2-15.3":0.00457,"15.4":0.05022,"15.5":0.04109,"15.6":0.27847,"16.0":0.00457,"16.1":0.05022,"16.2":0.24195,"16.3":0.17347,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00204,"6.0-6.1":0,"7.0-7.1":0.00611,"8.1-8.4":0,"9.0-9.2":0.20161,"9.3":0.12829,"10.0-10.2":0,"10.3":0.0448,"11.0-11.2":0.00611,"11.3-11.4":0.01833,"12.0-12.1":0,"12.2-12.5":0.26066,"13.0-13.1":0,"13.2":0,"13.3":0.01222,"13.4-13.7":0.02851,"14.0-14.4":0.77588,"14.5-14.8":0.36452,"15.0-15.1":0.10997,"15.2-15.3":0.11404,"15.4":0.13033,"15.5":0.28306,"15.6":1.74725,"16.0":2.19119,"16.1":4.48216,"16.2":5.26007,"16.3":2.67178,"16.4":0.01018},P:{"4":0.18843,"20":1.60163,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.36639,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06281,"12.0":0.01047,"13.0":0.04187,"14.0":0.02094,"15.0":0.12562,"16.0":0.04187,"17.0":0.07328,"18.0":0.10468,"19.0":2.74267},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.14286,"4.4":0,"4.4.3-4.4.4":0.51429},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00913,"11":0.00457,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.26088},H:{"0":0.24698},L:{"0":53.51952},R:{_:"0"},M:{"0":0.15762},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js index 014a3a7af15899..8501a362c753de 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00578,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.09248,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00578,"92":0,"93":0,"94":0,"95":0.01156,"96":0,"97":0,"98":0,"99":0,"100":0.04046,"101":0.01156,"102":0.10404,"103":0,"104":0.02312,"105":0.00578,"106":0.01734,"107":0.04624,"108":2.5432,"109":1.52014,"110":0.00578,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.289,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00578,"75":0.00578,"76":0,"77":0.02312,"78":0,"79":0.05202,"80":0.00578,"81":0,"83":0,"84":0.01734,"85":0.00578,"86":0.00578,"87":0.00578,"88":0.00578,"89":0,"90":0.01734,"91":0.00578,"92":0.00578,"93":0,"94":0,"95":0,"96":0,"97":0.0289,"98":0,"99":0,"100":0.01156,"101":0,"102":0.01734,"103":0.0578,"104":0.0578,"105":1.28316,"106":0.65892,"107":0.55488,"108":7.50244,"109":5.2887,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01156,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01734,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00578,"92":0,"93":0.89012,"94":1.71088,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.0289,"99":0,"100":0.01156,"101":0,"102":0,"103":0,"104":0.00578,"105":0.04624,"106":0.01734,"107":0.3757,"108":3.2368,"109":2.34668},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.1156,"14":0.09826,"15":0.01156,_:"0","3.1":0,"3.2":0,"5.1":0.02312,"6.1":0,"7.1":0,"9.1":0.01156,"10.1":0,"11.1":0,"12.1":0.02312,"13.1":0.81498,"14.1":0.13872,"15.1":0.05202,"15.2-15.3":0.06358,"15.4":0.22542,"15.5":0.16762,"15.6":0.94214,"16.0":0.0867,"16.1":0.41616,"16.2":0.5491,"16.3":0.03468},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.02904,"9.0-9.2":0,"9.3":0.02541,"10.0-10.2":0,"10.3":0.02178,"11.0-11.2":0,"11.3-11.4":0.00726,"12.0-12.1":0.01452,"12.2-12.5":1.61522,"13.0-13.1":0.01089,"13.2":0.01089,"13.3":0.01089,"13.4-13.7":0.10526,"14.0-14.4":0.24319,"14.5-14.8":2.17056,"15.0-15.1":0.25408,"15.2-15.3":0.22141,"15.4":0.23956,"15.5":0.87476,"15.6":4.30482,"16.0":4.03986,"16.1":13.54967,"16.2":7.10332,"16.3":0.48638},P:{"4":0,"5.0-5.4":0.01029,"6.2-6.4":0,"7.2-7.4":0.1029,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.02058,"15.0":0.03087,"16.0":0.03087,"17.0":0.09261,"18.0":0.08232,"19.0":3.22078},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.06417,"4.2-4.3":0.04011,"4.4":0,"4.4.3-4.4.4":0.05214},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01156,"9":0,"10":0,"11":0.03468,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.93262},Q:{"13.1":0},O:{"0":0.01266},H:{"0":0.40751},L:{"0":24.07676},S:{"2.5":0}}; +module.exports={C:{"2":0.0063,"3":0,"4":0.0063,"5":0,"6":0.0063,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.0063,"20":0.0063,"21":0,"22":0.0063,"23":0,"24":0,"25":0.0063,"26":0,"27":0,"28":0.0063,"29":0,"30":0,"31":0.0063,"32":0,"33":0,"34":0.0126,"35":0,"36":0.0063,"37":0,"38":0.0063,"39":0,"40":0.0315,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0063,"78":0.0063,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0063,"92":0,"93":0,"94":0,"95":0.0063,"96":0,"97":0,"98":0,"99":0,"100":0.0315,"101":0.0189,"102":0.0504,"103":0,"104":0,"105":0,"106":0.0126,"107":0.0126,"108":0.0504,"109":2.898,"110":1.9152,"111":0.0189,"112":0,"3.5":0.0189,"3.6":0.0063},D:{"4":0,"5":0,"6":0.0126,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0063,"14":0,"15":0,"16":0.0126,"17":0,"18":0,"19":0.0063,"20":0,"21":0,"22":0.0063,"23":0,"24":0,"25":0,"26":0.0063,"27":0.0063,"28":0.0063,"29":0,"30":0,"31":0.0126,"32":0.0063,"33":0,"34":0,"35":0,"36":0,"37":0.0063,"38":0,"39":0,"40":0,"41":0.0189,"42":0,"43":0.0315,"44":0.0441,"45":0.0378,"46":0.0252,"47":0.0063,"48":0,"49":0.1953,"50":0,"51":0.0252,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0126,"78":0,"79":0.0819,"80":0,"81":0,"83":0,"84":0.1008,"85":0.0063,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0126,"92":0.0252,"93":0,"94":0,"95":0,"96":0,"97":0.0252,"98":0.0063,"99":0.0063,"100":0.0126,"101":0,"102":0.0063,"103":0.0945,"104":0.0252,"105":1.5435,"106":0.5922,"107":0.0504,"108":0.4158,"109":9.2421,"110":6.4071,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0063,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.0063,"31":0.0063,"32":0.0063,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0252,"92":0,"93":0.252,"94":1.3167,"95":0.2268,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0189},B:{"12":0.0126,"13":0.0063,"14":0.0126,"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.0063,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0315,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.0063,"105":0.0063,"106":0.0189,"107":0.3087,"108":0.4851,"109":2.268,"110":4.3911},E:{"4":0.0063,"5":0.0063,"6":0,"7":0,"8":0.0063,"9":0.0252,"10":0,"11":0,"12":0.0063,"13":0.2016,"14":0.1638,"15":0.063,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0189,"13.1":0.5166,"14.1":0.441,"15.1":0.063,"15.2-15.3":0.0882,"15.4":0.0378,"15.5":0.1386,"15.6":0.7875,"16.0":0.2079,"16.1":0.4032,"16.2":0.4788,"16.3":0.7434,"16.4":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.00682,"7.0-7.1":0.05458,"8.1-8.4":0.1501,"9.0-9.2":0.01365,"9.3":0.20469,"10.0-10.2":0,"10.3":0.09552,"11.0-11.2":0.22516,"11.3-11.4":0.02047,"12.0-12.1":0.04094,"12.2-12.5":0.23198,"13.0-13.1":0.05458,"13.2":0.02388,"13.3":0,"13.4-13.7":0.01365,"14.0-14.4":0.24562,"14.5-14.8":1.63408,"15.0-15.1":0.19445,"15.2-15.3":0.15693,"15.4":0.23539,"15.5":0.49466,"15.6":4.08008,"16.0":2.61316,"16.1":9.38146,"16.2":9.14607,"16.3":4.12102,"16.4":0.01706},P:{"4":0.10245,"20":2.10016,"5.0-5.4":0,"6.2-6.4":0.02049,"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.01024,"19.0":1.71086},I:{"0":0,"3":0,"4":0.08706,"2.1":0.0068,"2.2":0.08434,"2.3":0.04761,"4.1":0.07482,"4.2-4.3":0.10203,"4.4":0,"4.4.3-4.4.4":0.29384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0126,"7":0.0252,"8":0.189,"9":0.0378,"10":0.0441,"11":0.1386,"5.5":0},N:{"10":0.0259,"11":0.0777},S:{"2.5":0.0148,_:"3.0-3.1"},J:{"7":0,"10":0.0111},O:{"0":0.0518},H:{"0":1.01935},L:{"0":17.9344},R:{_:"0"},M:{"0":0.3959},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js index a280a54dcd9eea..0a0dcaec0ab961 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.00388,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00388,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00388,"96":0,"97":0,"98":0,"99":0.00388,"100":0,"101":0,"102":0.01165,"103":0.00388,"104":0.00388,"105":0.00388,"106":0.00777,"107":0.01165,"108":0.33006,"109":0.2058,"110":0.00388,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00777,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00388,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00388,"65":0,"66":0,"67":0,"68":0,"69":0.00388,"70":0.00388,"71":0,"72":0.00388,"73":0.00388,"74":0.03106,"75":0,"76":0.00388,"77":0.01165,"78":0.00388,"79":0.00777,"80":0.00388,"81":0.02718,"83":0.00388,"84":0.00388,"85":0.00777,"86":0.00777,"87":0.00777,"88":0.00777,"89":0.00388,"90":0.00777,"91":0.01553,"92":0.01942,"93":0.00388,"94":0.01942,"95":0.00777,"96":0.01165,"97":0.00777,"98":0.00777,"99":0.00777,"100":0.01165,"101":0.00777,"102":0.01165,"103":0.03495,"104":0.01942,"105":0.0233,"106":0.03106,"107":0.07378,"108":4.05385,"109":3.87523,"110":0.00388,"111":0.00388,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.02718,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00388,"56":0,"57":0,"58":0.00388,"60":0.00777,"62":0,"63":0.01553,"64":0.01553,"65":0.00777,"66":0.02718,"67":0.00388,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00777,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00388,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00388,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00388,"93":0.06213,"94":0.32617,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00388,"13":0,"14":0,"15":0.00388,"16":0.00388,"17":0,"18":0.00777,"79":0,"80":0,"81":0,"83":0,"84":0.00388,"85":0,"86":0,"87":0,"88":0,"89":0.00388,"90":0,"91":0,"92":0.01553,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00388,"103":0.00388,"104":0.00388,"105":0.00388,"106":0.00388,"107":0.01553,"108":2.27544,"109":2.50065},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00388,"14":0.01553,"15":0.00388,_:"0","3.1":0,"3.2":0,"5.1":0.00388,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00388,"13.1":0.00777,"14.1":0.0233,"15.1":0.00388,"15.2-15.3":0.00777,"15.4":0.00777,"15.5":0.01553,"15.6":0.0466,"16.0":0.00388,"16.1":0.03495,"16.2":0.03495,"16.3":0.00388},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00115,"5.0-5.1":0,"6.0-6.1":0.00115,"7.0-7.1":0.00689,"8.1-8.4":0.00345,"9.0-9.2":0.00574,"9.3":0.0379,"10.0-10.2":0.0023,"10.3":0.0379,"11.0-11.2":0.00804,"11.3-11.4":0.01034,"12.0-12.1":0.04479,"12.2-12.5":0.7097,"13.0-13.1":0.02756,"13.2":0.01493,"13.3":0.06775,"13.4-13.7":0.12747,"14.0-14.4":0.47313,"14.5-14.8":0.57993,"15.0-15.1":0.27561,"15.2-15.3":0.2848,"15.4":0.25724,"15.5":0.52366,"15.6":0.96234,"16.0":1.31604,"16.1":1.86727,"16.2":1.72717,"16.3":0.16996},P:{"4":0.44565,"5.0-5.4":0.01013,"6.2-6.4":0.03039,"7.2-7.4":0.92168,"8.2":0.02026,"9.2":0.05064,"10.1":0.02026,"11.1-11.2":0.17218,"12.0":0.04051,"13.0":0.11141,"14.0":0.12154,"15.0":0.08103,"16.0":0.16205,"17.0":0.2127,"18.0":0.27347,"19.0":1.35721},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00548,"4.4":0,"4.4.3-4.4.4":0.05393},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00777,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.12846},Q:{"13.1":0},O:{"0":1.2968},H:{"0":1.38988},L:{"0":66.14579}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00409,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01635,"88":0.00409,"89":0,"90":0,"91":0,"92":0.00409,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00409,"100":0,"101":0,"102":0.00817,"103":0.00409,"104":0.00409,"105":0.00409,"106":0.00409,"107":0.00817,"108":0.02044,"109":0.33513,"110":0.21252,"111":0.00409,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00409,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"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,"60":0,"61":0,"62":0,"63":0,"64":0.00409,"65":0,"66":0,"67":0.00409,"68":0,"69":0.00409,"70":0.00817,"71":0,"72":0.00409,"73":0.00409,"74":0.04087,"75":0,"76":0.00409,"77":0.00817,"78":0.00409,"79":0.00817,"80":0.00409,"81":0.02452,"83":0.00409,"84":0.00409,"85":0.00817,"86":0.00817,"87":0.00817,"88":0.00409,"89":0.00817,"90":0.00817,"91":0.01226,"92":0.02044,"93":0.00409,"94":0.00817,"95":0.01226,"96":0.00817,"97":0.00817,"98":0.00817,"99":0.00817,"100":0.00817,"101":0.00817,"102":0.01226,"103":0.0327,"104":0.01635,"105":0.02452,"106":0.02861,"107":0.03678,"108":0.20026,"109":5.20684,"110":3.33091,"111":0.00409,"112":0.00409,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.02452,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00409,"60":0.00817,"62":0,"63":0.01226,"64":0.01226,"65":0.00409,"66":0.02044,"67":0.07357,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00409,"74":0.00409,"75":0,"76":0,"77":0,"78":0,"79":0.00409,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00817,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00409,"93":0.01226,"94":0.17983,"95":0.20026,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00409,"13":0,"14":0.00409,"15":0.00409,"16":0,"17":0,"18":0.00817,"79":0,"80":0,"81":0,"83":0,"84":0.00409,"85":0,"86":0,"87":0,"88":0,"89":0.00409,"90":0,"91":0,"92":0.00817,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00409,"104":0.00409,"105":0.00409,"106":0.00409,"107":0.01226,"108":0.08174,"109":2.47264,"110":2.97534},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00409,"14":0.01226,"15":0.00409,_:"0","3.1":0,"3.2":0,"5.1":0.00409,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00409,"13.1":0.00817,"14.1":0.01635,"15.1":0.00409,"15.2-15.3":0.00409,"15.4":0.00817,"15.5":0.01226,"15.6":0.03678,"16.0":0.00409,"16.1":0.02452,"16.2":0.03678,"16.3":0.03678,"16.4":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.00823,"8.1-8.4":0.00353,"9.0-9.2":0.0047,"9.3":0.04701,"10.0-10.2":0.00353,"10.3":0.04466,"11.0-11.2":0.01293,"11.3-11.4":0.01175,"12.0-12.1":0.03173,"12.2-12.5":0.64525,"13.0-13.1":0.02233,"13.2":0.01763,"13.3":0.06699,"13.4-13.7":0.12576,"14.0-14.4":0.45132,"14.5-14.8":0.5477,"15.0-15.1":0.28913,"15.2-15.3":0.26915,"15.4":0.24564,"15.5":0.476,"15.6":0.80039,"16.0":1.16474,"16.1":1.55495,"16.2":1.43506,"16.3":1.41273,"16.4":0.00235},P:{"4":0.41042,"20":0.25026,"5.0-5.4":0.02002,"6.2-6.4":0.02002,"7.2-7.4":0.83086,"8.2":0.03003,"9.2":0.07007,"10.1":0.02002,"11.1-11.2":0.13013,"12.0":0.02002,"13.0":0.11011,"14.0":0.11011,"15.0":0.06006,"16.0":0.15015,"17.0":0.16017,"18.0":0.1902,"19.0":1.10114},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00396,"4.2-4.3":0.00198,"4.4":0,"4.4.3-4.4.4":0.05449},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00817,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.21808},H:{"0":1.29315},L:{"0":65.10525},R:{_:"0"},M:{"0":0.11826},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LR.js index 30798d8f2d4a63..d946b5e5e3d119 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.00224,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00224,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00224,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00447,"105":0,"106":0.02906,"107":0.00671,"108":0.20562,"109":0.08493,"110":0.00224,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00224,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00224,"38":0,"39":0.00224,"40":0,"41":0,"42":0,"43":0.00224,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00447,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00224,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00447,"65":0.00224,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.01118,"72":0,"73":0,"74":0.00447,"75":0.00447,"76":0.00447,"77":0.00224,"78":0.00224,"79":0.00447,"80":0.00224,"81":0.00894,"83":0.00224,"84":0.00224,"85":0,"86":0.00224,"87":0.00671,"88":0.00224,"89":0.00224,"90":0.00447,"91":0.00447,"92":0.00671,"93":0.01565,"94":0.00671,"95":0.00224,"96":0.00894,"97":0.00224,"98":0.00224,"99":0.00447,"100":0.00671,"101":0.00224,"102":0.00671,"103":0.03353,"104":0.00447,"105":0.00894,"106":0.01118,"107":0.05364,"108":0.86942,"109":0.71297,"110":0.00224,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00671,"43":0,"44":0,"45":0,"46":0.00224,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00224,"56":0,"57":0.00447,"58":0.00447,"60":0.04023,"62":0,"63":0.06035,"64":0.03129,"65":0.00671,"66":0.06258,"67":0,"68":0,"69":0.00224,"70":0,"71":0,"72":0.00671,"73":0.00671,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00224,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00894,"94":0.12516,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00224,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02235},B:{"12":0.02012,"13":0.01565,"14":0.00447,"15":0.00447,"16":0.00447,"17":0.00671,"18":0.02682,"79":0,"80":0,"81":0,"83":0,"84":0.00447,"85":0.00671,"86":0,"87":0,"88":0,"89":0.01341,"90":0.00224,"91":0,"92":0.01788,"93":0,"94":0,"95":0,"96":0.00447,"97":0,"98":0,"99":0,"100":0.00447,"101":0.00224,"102":0.00447,"103":0.00224,"104":0.00894,"105":0.00224,"106":0.00224,"107":0.07376,"108":0.28161,"109":0.27714},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00224,"14":0.00224,"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.00894,"14.1":0.00671,"15.1":0.00224,"15.2-15.3":0,"15.4":0,"15.5":0.02012,"15.6":0.01341,"16.0":0.00224,"16.1":0.00894,"16.2":0.05141,"16.3":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.02236,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05963,"10.0-10.2":0.00373,"10.3":0.06522,"11.0-11.2":0.00373,"11.3-11.4":0.01118,"12.0-12.1":2.8531,"12.2-12.5":1.03986,"13.0-13.1":0.42675,"13.2":0.02236,"13.3":0.08759,"13.4-13.7":0.56838,"14.0-14.4":3.48671,"14.5-14.8":2.07786,"15.0-15.1":0.39321,"15.2-15.3":0.51993,"15.4":0.66529,"15.5":0.56652,"15.6":1.27281,"16.0":0.74915,"16.1":1.78342,"16.2":1.16286,"16.3":0.07641},P:{"4":0.04015,"5.0-5.4":0.01004,"6.2-6.4":0,"7.2-7.4":0.06023,"8.2":0,"9.2":0.02008,"10.1":0.01004,"11.1-11.2":0.12045,"12.0":0.01004,"13.0":0.28106,"14.0":0.02008,"15.0":0.04015,"16.0":0.06023,"17.0":0.05019,"18.0":0.05019,"19.0":0.46173},I:{"0":0,"3":0,"4":0.0037,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01851,"4.4":0,"4.4.3-4.4.4":0.12954},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00447,"11":0.02459,"5.5":0},J:{"7":0,"10":0.00777},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.32613},Q:{"13.1":0},O:{"0":0.97063},H:{"0":6.10901},L:{"0":67.26311},S:{"2.5":0.09318}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00243,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00243,"76":0,"77":0,"78":0.00243,"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,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00487,"103":0,"104":0.0146,"105":0,"106":0.0073,"107":0.00243,"108":0.06572,"109":0.18498,"110":0.09979,"111":0.00243,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00487,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0073,"50":0.00243,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00487,"57":0,"58":0,"59":0.00243,"60":0,"61":0,"62":0,"63":0,"64":0.00243,"65":0.00487,"66":0,"67":0,"68":0.00243,"69":0,"70":0.00243,"71":0.00974,"72":0,"73":0,"74":0.0146,"75":0.00487,"76":0.00487,"77":0.00243,"78":0,"79":0.00243,"80":0.00487,"81":0.0073,"83":0.00243,"84":0.00243,"85":0,"86":0.00243,"87":0.00243,"88":0.00243,"89":0,"90":0.00487,"91":0.0073,"92":0.00974,"93":0.04138,"94":0.00974,"95":0,"96":0.00487,"97":0.00243,"98":0.00243,"99":0.00487,"100":0.00243,"101":0.00243,"102":0.00974,"103":0.04138,"104":0.00243,"105":0.00974,"106":0.00487,"107":0.02191,"108":0.05598,"109":1.06122,"110":0.71803,"111":0.01704,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00243,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00243,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00243,"58":0,"60":0.04625,"62":0,"63":0.05111,"64":0.02191,"65":0.04868,"66":0.07302,"67":0.18985,"68":0,"69":0,"70":0,"71":0,"72":0.0073,"73":0,"74":0.00487,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00243,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.05355,"95":0.1071,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00243,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02191},B:{"12":0.0146,"13":0.00487,"14":0.0073,"15":0.00243,"16":0.0073,"17":0.00243,"18":0.02677,"79":0,"80":0,"81":0,"83":0,"84":0.00243,"85":0.00974,"86":0,"87":0,"88":0,"89":0.00243,"90":0.0073,"91":0,"92":0.0146,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00243,"100":0.00243,"101":0.00243,"102":0,"103":0.00243,"104":0.00487,"105":0.00243,"106":0.00243,"107":0.02191,"108":0.07545,"109":0.31642,"110":0.27504},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00487,"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.00243,"12.1":0.01217,"13.1":0.01704,"14.1":0.00974,"15.1":0.00243,"15.2-15.3":0.00243,"15.4":0,"15.5":0.00974,"15.6":0.01947,"16.0":0.00243,"16.1":0.00243,"16.2":0.03894,"16.3":0.01704,"16.4":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.00758,"7.0-7.1":0.00455,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06216,"10.0-10.2":0,"10.3":0.04245,"11.0-11.2":0.00758,"11.3-11.4":0.02578,"12.0-12.1":3.92397,"12.2-12.5":1.03558,"13.0-13.1":0.42302,"13.2":0.01668,"13.3":0.12433,"13.4-13.7":0.4397,"14.0-14.4":0.9719,"14.5-14.8":1.0841,"15.0-15.1":0.46093,"15.2-15.3":0.56555,"15.4":0.41999,"15.5":0.50945,"15.6":0.78692,"16.0":0.53674,"16.1":1.36915,"16.2":0.70049,"16.3":1.00222,"16.4":0},P:{"4":0.02056,"20":0.2364,"5.0-5.4":0.03084,"6.2-6.4":0.01028,"7.2-7.4":0.05139,"8.2":0,"9.2":0.02056,"10.1":0,"11.1-11.2":0.13362,"12.0":0,"13.0":0.01028,"14.0":0.03084,"15.0":0.02056,"16.0":0.08223,"17.0":0.04111,"18.0":0.04111,"19.0":0.35974},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00644,"4.4":0,"4.4.3-4.4.4":0.10631},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00243,"11":0.00974,"5.5":0},N:{"10":0.01513,"11":0},S:{"2.5":0.18915,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.93062},H:{"0":6.8335},L:{"0":69.16245},R:{_:"0"},M:{"0":0.3783},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js index 93f540120be418..416ca906fbe030 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.00923,"53":0,"54":0,"55":0,"56":0.00308,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00308,"96":0,"97":0,"98":0,"99":0.00308,"100":0.00308,"101":0,"102":0.01231,"103":0.00615,"104":0,"105":0,"106":0,"107":0.00615,"108":0.27078,"109":0.11385,"110":0.00308,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00923,"41":0,"42":0,"43":0.00308,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02154,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00923,"56":0,"57":0,"58":0,"59":0,"60":0.00615,"61":0,"62":0,"63":0,"64":0,"65":0.00308,"66":0,"67":0,"68":0,"69":0,"70":0.00308,"71":0.00615,"72":0,"73":0,"74":0.00308,"75":0.01539,"76":0,"77":0.01846,"78":0.00308,"79":0.00615,"80":0.00615,"81":0.08923,"83":0.00308,"84":0,"85":0,"86":0.00308,"87":0.00308,"88":0.00308,"89":0,"90":0,"91":0.00615,"92":0.01539,"93":0.00308,"94":0,"95":0.00308,"96":0.00308,"97":0.01231,"98":0.01231,"99":0,"100":0.00615,"101":0.04308,"102":0.00308,"103":0.02154,"104":0.01539,"105":0.00923,"106":0.03077,"107":0.08308,"108":1.88312,"109":1.80005,"110":0.00308,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.04923,"27":0,"28":0.01231,"29":0,"30":0.00308,"31":0,"32":0.02769,"33":0,"34":0,"35":0.04,"36":0,"37":0.00308,"38":0.00308,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00615,"47":0.00615,"48":0,"49":0,"50":0.00308,"51":0.00308,"52":0,"53":0,"54":0.00308,"55":0,"56":0.03385,"57":0,"58":0.01231,"60":0.01231,"62":0,"63":0.11693,"64":0.11385,"65":0.03077,"66":0.10154,"67":0.00615,"68":0.00308,"69":0,"70":0,"71":0,"72":0,"73":0.07385,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00615,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02462,"94":0.33539,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01231},B:{"12":0.01846,"13":0.00615,"14":0.00308,"15":0.00308,"16":0.00615,"17":0.00308,"18":0.00923,"79":0,"80":0,"81":0,"83":0,"84":0.00308,"85":0,"86":0,"87":0,"88":0.00308,"89":0.00308,"90":0.00308,"91":0,"92":0.01231,"93":0,"94":0,"95":0,"96":0.00308,"97":0,"98":0,"99":0,"100":0,"101":0.00615,"102":0.00308,"103":0.00308,"104":0.00615,"105":0.00615,"106":0.00923,"107":0.04923,"108":0.4954,"109":0.63694},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.00923,"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.00308,"15.1":0,"15.2-15.3":0,"15.4":0.00308,"15.5":0.00308,"15.6":0.02154,"16.0":0.00308,"16.1":0.00923,"16.2":0.01231,"16.3":0.00308},G:{"8":0.00165,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00659,"7.0-7.1":0.00247,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13395,"10.0-10.2":0.00165,"10.3":0.00453,"11.0-11.2":0.00124,"11.3-11.4":0.00124,"12.0-12.1":0.00412,"12.2-12.5":0.28687,"13.0-13.1":0.00247,"13.2":0.00412,"13.3":0.00948,"13.4-13.7":0.05317,"14.0-14.4":0.1933,"14.5-14.8":0.22999,"15.0-15.1":0.16775,"15.2-15.3":0.10222,"15.4":0.09397,"15.5":0.19413,"15.6":0.31984,"16.0":0.30088,"16.1":1.02464,"16.2":0.39362,"16.3":0.02226},P:{"4":0.20405,"5.0-5.4":0,"6.2-6.4":0.0102,"7.2-7.4":0.72436,"8.2":0.0102,"9.2":0.0102,"10.1":0,"11.1-11.2":0.12243,"12.0":0.0102,"13.0":0.10202,"14.0":0.05101,"15.0":0.04081,"16.0":0.18364,"17.0":0.18364,"18.0":0.11223,"19.0":0.94882},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0012,"4.4":0,"4.4.3-4.4.4":0.04418},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02154,"5.5":0},J:{"7":0,"10":0.00692},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06923},Q:{"13.1":0},O:{"0":1.04537},H:{"0":6.46904},L:{"0":75.73988},S:{"2.5":0.16615}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00606,"53":0,"54":0,"55":0.00303,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00303,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00303,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00303,"99":0,"100":0,"101":0,"102":0.02729,"103":0,"104":0,"105":0,"106":0.00606,"107":0,"108":0.01213,"109":0.22134,"110":0.16676,"111":0.00303,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.11522,"41":0,"42":0,"43":0.01516,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01516,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00606,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00303,"66":0,"67":0,"68":0,"69":0,"70":0.01819,"71":0,"72":0,"73":0,"74":0.0091,"75":0.0091,"76":0,"77":0.01213,"78":0,"79":0.00303,"80":0,"81":0.08186,"83":0.0091,"84":0.00303,"85":0,"86":0.00606,"87":0.00303,"88":0,"89":0,"90":0.00606,"91":0.01213,"92":0.00303,"93":0,"94":0.00303,"95":0.01213,"96":0.00606,"97":0.00606,"98":0.00606,"99":0.00303,"100":0.00303,"101":0.03638,"102":0.0091,"103":0.01213,"104":0.00606,"105":0.0091,"106":0.03032,"107":0.02426,"108":0.0849,"109":2.26794,"110":1.13397,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.02426,"27":0,"28":0.00303,"29":0,"30":0,"31":0.00303,"32":0.03335,"33":0,"34":0,"35":0.04851,"36":0,"37":0,"38":0.00303,"39":0,"40":0.00303,"41":0,"42":0,"43":0,"44":0,"45":0.00303,"46":0.02122,"47":0.00606,"48":0,"49":0,"50":0.00303,"51":0.00303,"52":0,"53":0,"54":0.00303,"55":0,"56":0.03335,"57":0.00303,"58":0.0091,"60":0.02729,"62":0.0091,"63":0.09702,"64":0.15463,"65":0.01213,"66":0.03638,"67":0.16676,"68":0.00606,"69":0,"70":0.00303,"71":0,"72":0,"73":0.00303,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00303,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00606,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00303,"94":0.07883,"95":0.16373,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01213},B:{"12":0.00606,"13":0.00303,"14":0.00606,"15":0,"16":0.01213,"17":0.00606,"18":0.01516,"79":0,"80":0,"81":0,"83":0,"84":0.00303,"85":0,"86":0,"87":0,"88":0,"89":0.00606,"90":0,"91":0,"92":0.01213,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00303,"99":0.00303,"100":0.00303,"101":0,"102":0.00606,"103":0.00303,"104":0.00606,"105":0.01213,"106":0.00303,"107":0.03032,"108":0.03942,"109":0.65491,"110":0.58214},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.00606,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00303,"14.1":0.00303,"15.1":0.00303,"15.2-15.3":0,"15.4":0,"15.5":0.00303,"15.6":0.01213,"16.0":0,"16.1":0.00303,"16.2":0.00606,"16.3":0.02426,"16.4":0},G:{"8":0,"3.2":0.00358,"4.0-4.1":0,"4.2-4.3":0.00179,"5.0-5.1":0.00107,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03933,"10.0-10.2":0,"10.3":0.00894,"11.0-11.2":0.00179,"11.3-11.4":0.00107,"12.0-12.1":0.00429,"12.2-12.5":0.30038,"13.0-13.1":0.02217,"13.2":0,"13.3":0.0025,"13.4-13.7":0.11014,"14.0-14.4":0.12587,"14.5-14.8":0.09941,"15.0-15.1":0.15698,"15.2-15.3":0.05936,"15.4":0.08618,"15.5":0.12837,"15.6":0.16699,"16.0":0.23708,"16.1":0.85321,"16.2":0.44413,"16.3":0.25711,"16.4":0},P:{"4":0.31706,"20":0.29661,"5.0-5.4":0,"6.2-6.4":0.03068,"7.2-7.4":1.20689,"8.2":0,"9.2":0.0716,"10.1":0,"11.1-11.2":0.0716,"12.0":0,"13.0":0.0716,"14.0":0.14319,"15.0":0.05114,"16.0":0.30684,"17.0":0.20456,"18.0":0.12273,"19.0":0.60345},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00261,"4.4":0,"4.4.3-4.4.4":0.06952},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01213,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.18814,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.0661},H:{"0":6.0757},L:{"0":75.52104},R:{_:"0"},M:{"0":0.06968},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js index e297370557b924..8e4b0aa40f993e 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,"47":0,"48":0.01547,"49":0,"50":0,"51":0,"52":0.05415,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01547,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00774,"78":0.00774,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00774,"89":0,"90":0,"91":0.00774,"92":0,"93":0,"94":0,"95":0,"96":0.00774,"97":0,"98":0.00774,"99":0,"100":0,"101":0,"102":0.06188,"103":0.00774,"104":0.00774,"105":0.00774,"106":0.01547,"107":0.03094,"108":1.22213,"109":0.67295,"110":0.00774,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01547,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00774,"61":0.00774,"62":0,"63":0.00774,"64":0.00774,"65":0.02321,"66":0.00774,"67":0.00774,"68":0,"69":0,"70":0,"71":0,"72":0.00774,"73":0,"74":0.00774,"75":0.00774,"76":0,"77":0.00774,"78":0,"79":0.03868,"80":0.00774,"81":0.01547,"83":0.00774,"84":0.00774,"85":0.03094,"86":0.02321,"87":0.03094,"88":0.01547,"89":0.01547,"90":0.00774,"91":0.01547,"92":0.04641,"93":0.05415,"94":0.01547,"95":0.00774,"96":0.03094,"97":0.03868,"98":0.01547,"99":0.01547,"100":0.02321,"101":0.03868,"102":0.03094,"103":0.14697,"104":0.06188,"105":0.30167,"106":0.12376,"107":0.42543,"108":25.48683,"109":18.32422,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01547,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00774,"88":0,"89":0,"90":0,"91":0.00774,"92":0,"93":0.74256,"94":1.14478,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.04641,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00774,"91":0,"92":0.05415,"93":0,"94":0.00774,"95":0,"96":0,"97":0,"98":0.00774,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.06188,"105":0.04641,"106":0.03094,"107":0.10829,"108":4.60233,"109":3.51169},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00774,"14":0.03094,"15":0.00774,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00774,"10.1":0,"11.1":0,"12.1":0.00774,"13.1":0.03868,"14.1":0.05415,"15.1":0.01547,"15.2-15.3":0.01547,"15.4":0.02321,"15.5":0.03868,"15.6":0.25526,"16.0":0.04641,"16.1":0.14697,"16.2":0.23205,"16.3":0.01547},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00547,"7.0-7.1":0.00438,"8.1-8.4":0.00109,"9.0-9.2":0.00109,"9.3":0.0197,"10.0-10.2":0.00219,"10.3":0.07772,"11.0-11.2":0.00657,"11.3-11.4":0.00876,"12.0-12.1":0.00547,"12.2-12.5":0.11275,"13.0-13.1":0.00328,"13.2":0.00328,"13.3":0.01204,"13.4-13.7":0.03941,"14.0-14.4":0.15106,"14.5-14.8":0.28679,"15.0-15.1":0.08319,"15.2-15.3":0.13792,"15.4":0.14449,"15.5":0.37436,"15.6":1.19753,"16.0":1.96924,"16.1":3.46451,"16.2":2.13781,"16.3":0.19594},P:{"4":0.041,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0205,"12.0":0,"13.0":0.0205,"14.0":0.0205,"15.0":0.01025,"16.0":0.03075,"17.0":0.03075,"18.0":0.11276,"19.0":1.50686},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00536,"4.2-4.3":0.02682,"4.4":0,"4.4.3-4.4.4":0.08046},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00884,"9":0,"10":0,"11":0.05304,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0.01359},R:{_:"0"},M:{"0":0.15629},Q:{"13.1":0},O:{"0":0.04983},H:{"0":0.23588},L:{"0":25.86069},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.02167,"49":0,"50":0,"51":0,"52":0.05055,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00722,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00722,"67":0,"68":0.00722,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01444,"78":0.00722,"79":0.00722,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00722,"89":0,"90":0,"91":0.00722,"92":0,"93":0.00722,"94":0.00722,"95":0.00722,"96":0,"97":0,"98":0,"99":0,"100":0.00722,"101":0,"102":0.065,"103":0.00722,"104":0,"105":0.00722,"106":0.02167,"107":0.01444,"108":0.05055,"109":1.27829,"110":0.83775,"111":0,"112":0.00722,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00722,"42":0,"43":0,"44":0.00722,"45":0.00722,"46":0,"47":0,"48":0,"49":0.02167,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00722,"64":0.00722,"65":0.03611,"66":0.00722,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00722,"74":0.00722,"75":0,"76":0,"77":0,"78":0,"79":0.03611,"80":0.00722,"81":0.00722,"83":0.01444,"84":0.01444,"85":0.02889,"86":0.02167,"87":0.065,"88":0.02167,"89":0.00722,"90":0.00722,"91":0.01444,"92":0.07222,"93":0.02167,"94":0.00722,"95":0.02167,"96":0.02167,"97":0.03611,"98":0.01444,"99":0.00722,"100":0.01444,"101":0.02167,"102":0.02889,"103":0.12277,"104":0.02167,"105":0.13,"106":0.09389,"107":0.2311,"108":1.19163,"109":22.71319,"110":13.77958,"111":0.00722,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00722,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01444,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00722,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00722,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00722,"86":0,"87":0.00722,"88":0,"89":0,"90":0,"91":0.00722,"92":0,"93":0.12277,"94":1.3144,"95":0.67887,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00722,"86":0,"87":0,"88":0.00722,"89":0,"90":0,"91":0,"92":0.03611,"93":0,"94":0,"95":0,"96":0,"97":0.00722,"98":0,"99":0.00722,"100":0.00722,"101":0,"102":0.00722,"103":0,"104":0.00722,"105":0.10833,"106":0.02167,"107":0.10111,"108":0.28166,"109":2.9538,"110":3.07657},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03611,"12":0,"13":0.01444,"14":0.05055,"15":0.00722,_:"0","3.1":0,"3.2":0,"5.1":0.00722,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00722,"13.1":0.04333,"14.1":0.065,"15.1":0.02167,"15.2-15.3":0.01444,"15.4":0.02167,"15.5":0.03611,"15.6":0.18777,"16.0":0.03611,"16.1":0.13722,"16.2":0.20944,"16.3":0.15888,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01344,"5.0-5.1":0,"6.0-6.1":0.00269,"7.0-7.1":0.00403,"8.1-8.4":0.00537,"9.0-9.2":0.04031,"9.3":0.02687,"10.0-10.2":0.00134,"10.3":0.09003,"11.0-11.2":0.00403,"11.3-11.4":0.00806,"12.0-12.1":0.00672,"12.2-12.5":0.11019,"13.0-13.1":0.00537,"13.2":0.00941,"13.3":0.01478,"13.4-13.7":0.04972,"14.0-14.4":0.17469,"14.5-14.8":0.301,"15.0-15.1":0.07794,"15.2-15.3":0.15319,"15.4":0.16528,"15.5":0.41118,"15.6":1.01587,"16.0":1.93364,"16.1":3.27469,"16.2":3.07716,"16.3":1.84495,"16.4":0.01344},P:{"4":0.05084,"20":0.66095,"5.0-5.4":0.01017,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.01017,"12.0":0,"13.0":0.03051,"14.0":0.01017,"15.0":0.01017,"16.0":0.03051,"17.0":0.04067,"18.0":0.10169,"19.0":1.18972},I:{"0":0,"3":0.00957,"4":0,"2.1":0.01435,"2.2":0.01435,"2.3":0,"4.1":0.01435,"4.2-4.3":0.02391,"4.4":0,"4.4.3-4.4.4":0.08848},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00812,"9":0,"10":0,"11":0.05687,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.0889},H:{"0":0.25774},L:{"0":30.42548},R:{_:"0"},M:{"0":0.1889},Q:{"13.1":0.06667}}; 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 01c364ca983d47..b74b38620c3c7b 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,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00496,"39":0,"40":0,"41":0.00496,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00496,"51":0,"52":0.01984,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00992,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00992,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05455,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00496,"89":0.00496,"90":0,"91":0.09422,"92":0,"93":0.00496,"94":0,"95":0,"96":0,"97":0.00496,"98":0.00496,"99":0.00496,"100":0.00496,"101":0,"102":0.7141,"103":0.01984,"104":0.0248,"105":0.00992,"106":0.0248,"107":0.12893,"108":1.78524,"109":1.00668,"110":0.00496,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01488,"50":0,"51":0,"52":0,"53":0.01488,"54":0,"55":0,"56":0.00496,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00496,"70":0.00496,"71":0,"72":0.14381,"73":0,"74":0.00992,"75":0.00496,"76":0,"77":0.01984,"78":0.0248,"79":0.05455,"80":0.00496,"81":0.00496,"83":0.03967,"84":0,"85":0.20332,"86":0.02975,"87":0.01488,"88":0,"89":0,"90":0.0248,"91":0.01488,"92":0.01488,"93":0.00496,"94":0.00496,"95":0.00992,"96":0.01488,"97":0.03471,"98":0.03967,"99":0.00992,"100":0.1091,"101":0.0248,"102":0.03967,"103":0.0843,"104":0.05951,"105":0.08926,"106":0.08926,"107":0.38184,"108":4.58212,"109":4.61187,"110":0,"111":0.00496,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00496,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00496,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00496,"93":0.37688,"94":0.42152,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00496,"17":0,"18":0.00992,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.01488,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00496,"93":0,"94":0,"95":0,"96":0.01984,"97":0,"98":0,"99":0,"100":0,"101":0.00496,"102":0.00496,"103":0.00496,"104":0.00496,"105":0.00496,"106":0.0843,"107":0.04959,"108":1.60672,"109":1.50754},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00992,"14":0.07934,"15":0.0248,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00496,"10.1":0,"11.1":0.00496,"12.1":0.0843,"13.1":0.23803,"14.1":0.33721,"15.1":0.03471,"15.2-15.3":0.04463,"15.4":0.13885,"15.5":0.40664,"15.6":1.15545,"16.0":0.18844,"16.1":0.68434,"16.2":1.21496,"16.3":0.09918},G:{"8":0.00358,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.19695,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.62666,"9.3":0.02865,"10.0-10.2":0,"10.3":0.08952,"11.0-11.2":0.01432,"11.3-11.4":0.00358,"12.0-12.1":0.00716,"12.2-12.5":0.33302,"13.0-13.1":0.00358,"13.2":0.02149,"13.3":0.02507,"13.4-13.7":0.18263,"14.0-14.4":0.27215,"14.5-14.8":0.75199,"15.0-15.1":0.2435,"15.2-15.3":0.27215,"15.4":0.4691,"15.5":0.9561,"15.6":3.91752,"16.0":5.40001,"16.1":12.04618,"16.2":7.74193,"16.3":0.65889},P:{"4":0.2164,"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.0103,"12.0":0,"13.0":0.0103,"14.0":0.02061,"15.0":0.0103,"16.0":0.05152,"17.0":0.03091,"18.0":0.11335,"19.0":3.72008},I:{"0":0,"3":0.05572,"4":0.00526,"2.1":0.02733,"2.2":0.08095,"2.3":0,"4.1":0.05677,"4.2-4.3":0.05677,"4.4":0,"4.4.3-4.4.4":0.20184},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.12893,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.91242},Q:{"13.1":1.30058},O:{"0":0.96787},H:{"0":0.33885},L:{"0":29.31372},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0051,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0051,"46":0,"47":0,"48":0,"49":0,"50":0.01531,"51":0,"52":0.01531,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0102,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0102,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03061,"79":0,"80":0,"81":0,"82":0,"83":0.0102,"84":0,"85":0,"86":0,"87":0,"88":0.0051,"89":0.0051,"90":0,"91":0.06122,"92":0,"93":0.0051,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0051,"101":0.0051,"102":0.83163,"103":0.02551,"104":0.0051,"105":0.0051,"106":0.03061,"107":0.11735,"108":0.12245,"109":1.63264,"110":1.21428,"111":0.0051,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0051,"46":0,"47":0,"48":0,"49":0.0102,"50":0,"51":0,"52":0,"53":0.0102,"54":0,"55":0,"56":0,"57":0,"58":0.0051,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.19388,"73":0,"74":0.01531,"75":0.0051,"76":0,"77":0,"78":0.0051,"79":0.03061,"80":0.0102,"81":0.0051,"83":0.0102,"84":0.0051,"85":0.21939,"86":0.02041,"87":0.02041,"88":0.0051,"89":0,"90":0.0102,"91":0.01531,"92":0.0051,"93":0.0102,"94":0,"95":0.0051,"96":0.0051,"97":0.02041,"98":0.01531,"99":0.0051,"100":0.10714,"101":0.02551,"102":0.05102,"103":0.05612,"104":0.04082,"105":0.04592,"106":0.02041,"107":0.10714,"108":0.29081,"109":6.29077,"110":4.51527,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.06633,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0051,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0051,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02551,"94":0.35204,"95":0.21428,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.04082,"97":0,"98":0.01531,"99":0,"100":0,"101":0.0051,"102":0,"103":0.0051,"104":0.0051,"105":0.0051,"106":0.0102,"107":0.0102,"108":0.2653,"109":1.29591,"110":1.69897},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02551,"14":0.05612,"15":0.01531,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.13775,"13.1":0.19388,"14.1":0.31122,"15.1":0.03061,"15.2-15.3":0.03061,"15.4":0.09694,"15.5":0.31122,"15.6":0.82652,"16.0":0.18367,"16.1":0.47449,"16.2":1.13264,"16.3":0.88775,"16.4":0},G:{"8":0.00336,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.18125,"5.0-5.1":0,"6.0-6.1":0.00336,"7.0-7.1":0,"8.1-8.4":0.00336,"9.0-9.2":0.56389,"9.3":0.02014,"10.0-10.2":0,"10.3":0.05035,"11.0-11.2":0.02014,"11.3-11.4":0.00671,"12.0-12.1":0.11076,"12.2-12.5":0.33565,"13.0-13.1":0,"13.2":0.01007,"13.3":0.0235,"13.4-13.7":0.10405,"14.0-14.4":0.23495,"14.5-14.8":0.56053,"15.0-15.1":0.19132,"15.2-15.3":0.23495,"15.4":0.31215,"15.5":0.66458,"15.6":2.63819,"16.0":3.95057,"16.1":8.1193,"16.2":8.31733,"16.3":5.60195,"16.4":0.02014},P:{"4":0.17353,"20":1.50048,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02041,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01021,"14.0":0.04083,"15.0":0.01021,"16.0":0.03062,"17.0":0.03062,"18.0":0.06124,"19.0":2.01085},I:{"0":0,"3":0.05707,"4":0.00116,"2.1":0.02912,"2.2":0.08386,"2.3":0.00116,"4.1":0.06289,"4.2-4.3":0.06872,"4.4":0,"4.4.3-4.4.4":0.21663},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03673,"9":0,"10":0.01224,"11":0.07347,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.9894},H:{"0":0.48226},L:{"0":30.28254},R:{_:"0"},M:{"0":0.85225},Q:{"13.1":1.19021}}; 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 781b821e56c735..fb507196526b20 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LV.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LV.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04065,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00678,"69":0,"70":0,"71":0,"72":0.00678,"73":0,"74":0,"75":0.00678,"76":0,"77":0,"78":0.02033,"79":0.00678,"80":0,"81":0,"82":0.01355,"83":0.00678,"84":0,"85":0,"86":0,"87":0,"88":0.00678,"89":0,"90":0.00678,"91":0.01355,"92":0,"93":0.00678,"94":0,"95":0.01355,"96":0,"97":0.00678,"98":0,"99":0.00678,"100":0.00678,"101":0,"102":0.15583,"103":0.15583,"104":0.00678,"105":0.01355,"106":0.0271,"107":0.07453,"108":2.1409,"109":1.3821,"110":0.01355,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00678,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0271,"50":0,"51":0,"52":0,"53":0,"54":0.00678,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01355,"66":0,"67":0,"68":0,"69":0,"70":0.00678,"71":0,"72":0,"73":0,"74":0.00678,"75":0,"76":0.00678,"77":0,"78":0.00678,"79":0.10163,"80":0.01355,"81":0.02033,"83":0.02033,"84":0.0271,"85":0.0542,"86":0.04065,"87":0.04065,"88":0.01355,"89":0.00678,"90":0.03388,"91":0.01355,"92":0.03388,"93":0.01355,"94":0.06098,"95":0.02033,"96":0.03388,"97":0.0271,"98":0.01355,"99":0.01355,"100":0.04743,"101":0.02033,"102":0.0271,"103":0.1626,"104":0.0813,"105":0.10163,"106":0.09485,"107":0.86043,"108":17.19495,"109":13.69228,"110":0.00678,"111":0.00678,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00678,"71":0,"72":0,"73":0.00678,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00678,"84":0,"85":0.02033,"86":0,"87":0,"88":0,"89":0.0813,"90":0,"91":0,"92":0.00678,"93":0.52168,"94":1.1653,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00678,"18":0.01355,"79":0,"80":0,"81":0,"83":0,"84":0.00678,"85":0.00678,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00678,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01355,"101":0,"102":0,"103":0.00678,"104":0.04065,"105":0,"106":0.00678,"107":0.06098,"108":2.2493,"109":1.72085},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00678,"14":0.03388,"15":0.0271,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.04743,"13.1":0.0813,"14.1":0.1355,"15.1":0.0271,"15.2-15.3":0.01355,"15.4":0.04743,"15.5":0.08808,"15.6":0.39295,"16.0":0.06775,"16.1":0.26423,"16.2":0.44715,"16.3":0.04065},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02211,"10.0-10.2":0.0051,"10.3":0.02211,"11.0-11.2":0.0068,"11.3-11.4":0.0034,"12.0-12.1":0.0068,"12.2-12.5":0.37757,"13.0-13.1":0.0051,"13.2":0.0102,"13.3":0.01361,"13.4-13.7":0.06123,"14.0-14.4":0.21429,"14.5-14.8":0.38437,"15.0-15.1":0.19218,"15.2-15.3":0.2381,"15.4":0.2313,"15.5":0.57996,"15.6":2.046,"16.0":3.14979,"16.1":5.07674,"16.2":3.19741,"16.3":0.4473},P:{"4":0.06139,"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.01023,"12.0":0.01023,"13.0":0.02046,"14.0":0.01023,"15.0":0.02046,"16.0":0.03069,"17.0":0.05116,"18.0":0.14324,"19.0":2.54763},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00952,"4.4":0,"4.4.3-4.4.4":0.14273},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00678,"9":0,"10":0,"11":0.0542,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.35798},Q:{"13.1":0},O:{"0":0.04838},H:{"0":0.2351},L:{"0":32.23318},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03274,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00655,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00655,"76":0,"77":0,"78":0.01964,"79":0.00655,"80":0,"81":0.00655,"82":0.00655,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00655,"89":0,"90":0.00655,"91":0.00655,"92":0,"93":0,"94":0,"95":0,"96":0.00655,"97":0.00655,"98":0,"99":0.01309,"100":0,"101":0,"102":0.13094,"103":0.09166,"104":0.00655,"105":0.00655,"106":0.01309,"107":0.04583,"108":0.05238,"109":1.92482,"110":1.25048,"111":0.01964,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00655,"42":0.00655,"43":0.00655,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02619,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00655,"66":0,"67":0,"68":0,"69":0,"70":0.00655,"71":0,"72":0.00655,"73":0,"74":0.00655,"75":0,"76":0.00655,"77":0,"78":0,"79":0.08511,"80":0.00655,"81":0.02619,"83":0.01309,"84":0.04583,"85":0.04583,"86":0.03274,"87":0.05892,"88":0.01309,"89":0.01309,"90":0.01309,"91":0.03928,"92":0.02619,"93":0.00655,"94":0.02619,"95":0.01309,"96":0.02619,"97":0.01309,"98":0.00655,"99":0.01309,"100":0.01964,"101":0.02619,"102":0.01964,"103":0.10475,"104":0.05238,"105":0.13749,"106":0.2095,"107":0.43865,"108":1.91172,"109":16.23656,"110":10.61923,"111":0.01309,"112":0.00655,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00655,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00655,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00655,"82":0,"83":0,"84":0,"85":0.01309,"86":0,"87":0,"88":0,"89":0.04583,"90":0,"91":0,"92":0,"93":0.05892,"94":0.93622,"95":0.66125,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00655,"16":0,"17":0.01309,"18":0.01309,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00655,"88":0,"89":0,"90":0,"91":0,"92":0.00655,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.01964,"105":0,"106":0.00655,"107":0.03274,"108":0.24879,"109":1.64984,"110":2.29145},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00655,"9":0,"10":0,"11":0,"12":0,"13":0.00655,"14":0.03274,"15":0.00655,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03928,"13.1":0.07856,"14.1":0.11785,"15.1":0.02619,"15.2-15.3":0.01309,"15.4":0.02619,"15.5":0.06547,"15.6":0.26188,"16.0":0.03928,"16.1":0.13749,"16.2":0.31426,"16.3":0.30771,"16.4":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.0051,"9.0-9.2":0,"9.3":0.0187,"10.0-10.2":0.0034,"10.3":0.017,"11.0-11.2":0.0034,"11.3-11.4":0.0068,"12.0-12.1":0.0102,"12.2-12.5":0.4028,"13.0-13.1":0.0051,"13.2":0.02039,"13.3":0.0102,"13.4-13.7":0.06798,"14.0-14.4":0.16996,"14.5-14.8":0.29742,"15.0-15.1":0.14616,"15.2-15.3":0.17675,"15.4":0.26683,"15.5":0.3722,"15.6":1.84403,"16.0":2.50855,"16.1":3.59288,"16.2":3.5011,"16.3":2.87056,"16.4":0.02039},P:{"4":0.06112,"20":0.95757,"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.01019,"12.0":0,"13.0":0.04075,"14.0":0.01019,"15.0":0.01019,"16.0":0.03056,"17.0":0.04075,"18.0":0.10187,"19.0":1.80309},I:{"0":0,"3":0,"4":0.02263,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00377,"4.2-4.3":0.01132,"4.4":0,"4.4.3-4.4.4":0.08299},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00655,"9":0,"10":0,"11":0.03928,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00345,_:"3.0-3.1"},J:{"7":0,"10":0.00345},O:{"0":0.06215},H:{"0":0.29422},L:{"0":35.13927},R:{_:"0"},M:{"0":0.34185},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js index 9c3cfca0291010..0ca31d8acd927c 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.00184,"48":0,"49":0,"50":0,"51":0,"52":0.00184,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00184,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00368,"99":0.00184,"100":0.00184,"101":0,"102":0.00184,"103":0,"104":0,"105":0.00184,"106":0.01839,"107":0.01287,"108":0.09563,"109":0.04414,"110":0.00184,"111":0.00184,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00184,"34":0,"35":0,"36":0,"37":0,"38":0.00184,"39":0,"40":0.00184,"41":0,"42":0,"43":0.00184,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00184,"50":0,"51":0,"52":0,"53":0,"54":0.00184,"55":0,"56":0,"57":0.00184,"58":0,"59":0,"60":0.00184,"61":0,"62":0.00184,"63":0.00736,"64":0.00184,"65":0,"66":0.00184,"67":0,"68":0,"69":0.00184,"70":0.00184,"71":0.00368,"72":0,"73":0.00184,"74":0.00184,"75":0,"76":0,"77":0,"78":0.00184,"79":0.00368,"80":0.00552,"81":0.00552,"83":0.00184,"84":0.00184,"85":0.00552,"86":0.00368,"87":0.00736,"88":0.00552,"89":0.01287,"90":0.00184,"91":0.00368,"92":0.0092,"93":0.00368,"94":0.00184,"95":0.00368,"96":0.00368,"97":0.00184,"98":0.01839,"99":0.00368,"100":0.00368,"101":0.00184,"102":0.00552,"103":0.01287,"104":0.01471,"105":0.01103,"106":0.02575,"107":0.05885,"108":1.04455,"109":0.8864,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00184,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00184,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00184,"60":0.01287,"62":0,"63":0.01287,"64":0.01655,"65":0.0092,"66":0.02391,"67":0.01655,"68":0,"69":0,"70":0,"71":0,"72":0.00184,"73":0.00552,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00368,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00184,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00184,"93":0.02942,"94":0.12689,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00184},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00368,"79":0,"80":0,"81":0,"83":0,"84":0.00184,"85":0.00184,"86":0,"87":0,"88":0,"89":0.00184,"90":0,"91":0,"92":0.00368,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00184,"100":0,"101":0,"102":0,"103":0.00184,"104":0,"105":0.00184,"106":0,"107":0.02391,"108":0.1416,"109":0.12137},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00184,"14":0.00368,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0423,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00368,"14.1":0.0092,"15.1":0,"15.2-15.3":0,"15.4":0.00552,"15.5":0.05333,"15.6":0.05701,"16.0":0.0092,"16.1":0.04598,"16.2":0.04781,"16.3":0.00184},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00256,"6.0-6.1":0.00256,"7.0-7.1":0.01794,"8.1-8.4":0.01025,"9.0-9.2":0,"9.3":0.05125,"10.0-10.2":0.00256,"10.3":0.07047,"11.0-11.2":0.00769,"11.3-11.4":0.01666,"12.0-12.1":0.04357,"12.2-12.5":0.72268,"13.0-13.1":0.02178,"13.2":0.00513,"13.3":0.03844,"13.4-13.7":0.08072,"14.0-14.4":0.54457,"14.5-14.8":0.54457,"15.0-15.1":0.27421,"15.2-15.3":0.32546,"15.4":0.40106,"15.5":0.56379,"15.6":1.14937,"16.0":2.13601,"16.1":2.44353,"16.2":2.30514,"16.3":0.22295},P:{"4":0.18318,"5.0-5.4":0,"6.2-6.4":0.02035,"7.2-7.4":0.35618,"8.2":0.01018,"9.2":0.04071,"10.1":0.02035,"11.1-11.2":0.12212,"12.0":0.02035,"13.0":0.08141,"14.0":0.15265,"15.0":0.07124,"16.0":0.3053,"17.0":0.20353,"18.0":0.16283,"19.0":1.61809},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.00529,"4.4":0,"4.4.3-4.4.4":0.06067},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01287,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11425},Q:{"13.1":0},O:{"0":0.37541},H:{"0":2.98235},L:{"0":75.70047},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00203,"35":0.00203,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00203,"48":0,"49":0,"50":0,"51":0,"52":0.00203,"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,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00608,"97":0,"98":0.00406,"99":0.00203,"100":0,"101":0,"102":0.00203,"103":0,"104":0.00203,"105":0.00203,"106":0.00203,"107":0,"108":0.00608,"109":0.09329,"110":0.07098,"111":0.00203,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00203,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00203,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00203,"50":0,"51":0,"52":0,"53":0,"54":0.00203,"55":0,"56":0.00203,"57":0,"58":0.00203,"59":0,"60":0,"61":0,"62":0.00203,"63":0.00811,"64":0,"65":0.00203,"66":0,"67":0,"68":0,"69":0.00203,"70":0.00203,"71":0.00406,"72":0.00203,"73":0.00203,"74":0.00203,"75":0,"76":0,"77":0,"78":0.00406,"79":0.00406,"80":0.00608,"81":0.01014,"83":0.00406,"84":0.00203,"85":0.00406,"86":0.00608,"87":0.01217,"88":0.00608,"89":0.00811,"90":0.00203,"91":0.00406,"92":0.00608,"93":0,"94":0.00203,"95":0.00406,"96":0.00406,"97":0.00608,"98":0.00811,"99":0.00406,"100":0.00203,"101":0.00203,"102":0.00811,"103":0.01014,"104":0.01014,"105":0.00608,"106":0.00811,"107":0.02028,"108":0.0507,"109":1.48855,"110":0.59623,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00608,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00203,"60":0.0142,"62":0,"63":0.01825,"64":0.00811,"65":0.00406,"66":0.01217,"67":0.1379,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00203,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00406,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00203,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00811,"94":0.1014,"95":0.07504,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00203},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00406,"79":0,"80":0,"81":0,"83":0,"84":0.00203,"85":0,"86":0,"87":0,"88":0,"89":0.00203,"90":0.00203,"91":0,"92":0.00406,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00203,"102":0,"103":0.00203,"104":0,"105":0.00203,"106":0.00203,"107":0.0142,"108":0.01014,"109":0.16224,"110":0.17035},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00203,"14":0.00406,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.04259,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00406,"14.1":0.01622,"15.1":0.00203,"15.2-15.3":0.00203,"15.4":0.00203,"15.5":0.01825,"15.6":0.03853,"16.0":0.00811,"16.1":0.04056,"16.2":0.4056,"16.3":0.07301,"16.4":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.00937,"8.1-8.4":0.00669,"9.0-9.2":0,"9.3":0.06556,"10.0-10.2":0,"10.3":0.06021,"11.0-11.2":0.00268,"11.3-11.4":0.02408,"12.0-12.1":0.03746,"12.2-12.5":0.76802,"13.0-13.1":0.0669,"13.2":0.0107,"13.3":0.11775,"13.4-13.7":0.3345,"14.0-14.4":0.50309,"14.5-14.8":0.57267,"15.0-15.1":0.19803,"15.2-15.3":0.35859,"15.4":0.4081,"15.5":0.52316,"15.6":0.89246,"16.0":1.73808,"16.1":1.87322,"16.2":2.08731,"16.3":1.90266,"16.4":0.00401},P:{"4":0.12265,"20":0.36796,"5.0-5.4":0,"6.2-6.4":0.02044,"7.2-7.4":0.27597,"8.2":0,"9.2":0.03066,"10.1":0.02044,"11.1-11.2":0.09199,"12.0":0.03066,"13.0":0.06133,"14.0":0.10221,"15.0":0.05111,"16.0":0.22487,"17.0":0.15332,"18.0":0.13288,"19.0":1.17544},I:{"0":0,"3":0,"4":0.00194,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0034,"4.4":0,"4.4.3-4.4.4":0.07131},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00232,"9":0,"10":0,"11":0.01391,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.47832},H:{"0":2.38497},L:{"0":74.76464},R:{_:"0"},M:{"0":0.07972},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MA.js index 4a391572d6ebef..c7d9850abe2e46 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.06374,"53":0,"54":0,"55":0.00425,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.02125,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0085,"79":0,"80":0,"81":0.00425,"82":0,"83":0,"84":0.00425,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00425,"92":0,"93":0,"94":0.00425,"95":0.00425,"96":0,"97":0,"98":0,"99":0.00425,"100":0.00425,"101":0,"102":0.017,"103":0.0085,"104":0.0085,"105":0.00425,"106":0.0085,"107":0.02974,"108":0.68409,"109":0.32292,"110":0.00425,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"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,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00425,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03399,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0085,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0085,"64":0,"65":0.00425,"66":0.00425,"67":0.017,"68":0.00425,"69":0.0085,"70":0.00425,"71":0,"72":0.0085,"73":0.00425,"74":0.00425,"75":0.00425,"76":0.00425,"77":0,"78":0.00425,"79":0.02974,"80":0.00425,"81":0.02125,"83":0.02125,"84":0.02125,"85":0.02549,"86":0.02125,"87":0.03824,"88":0.0085,"89":0.00425,"90":0.00425,"91":0.017,"92":0.017,"93":0.0085,"94":0.08498,"95":0.01275,"96":0.01275,"97":0.01275,"98":0.01275,"99":0.017,"100":0.017,"101":0.017,"102":0.02125,"103":0.06374,"104":0.02974,"105":0.05524,"106":0.06374,"107":0.14872,"108":8.03061,"109":4.63991,"110":0.00425,"111":0.00425,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00425,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00425,"62":0,"63":0,"64":0,"65":0,"66":0.00425,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00425,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00425,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.017,"86":0,"87":0,"88":0,"89":0.00425,"90":0.00425,"91":0,"92":0.0085,"93":0.28468,"94":0.51838,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00425,"13":0,"14":0,"15":0,"16":0,"17":0.00425,"18":0.0085,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00425,"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.00425,"105":0.00425,"106":0.00425,"107":0.02125,"108":0.61611,"109":0.48439},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00425,"12":0,"13":0.00425,"14":0.02125,"15":0.00425,_:"0","3.1":0,"3.2":0,"5.1":0.03399,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00425,"13.1":0.02549,"14.1":0.05949,"15.1":0.0085,"15.2-15.3":0.0085,"15.4":0.017,"15.5":0.02549,"15.6":0.08498,"16.0":0.017,"16.1":0.04249,"16.2":0.05524,"16.3":0.00425},G:{"8":0.00197,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00493,"6.0-6.1":0.00296,"7.0-7.1":0.0552,"8.1-8.4":0.00887,"9.0-9.2":0,"9.3":0.07886,"10.0-10.2":0.00197,"10.3":0.0552,"11.0-11.2":0.00986,"11.3-11.4":0.02169,"12.0-12.1":0.03746,"12.2-12.5":0.42192,"13.0-13.1":0.00986,"13.2":0.01282,"13.3":0.03845,"13.4-13.7":0.11435,"14.0-14.4":0.48304,"14.5-14.8":0.58753,"15.0-15.1":0.17054,"15.2-15.3":0.24842,"15.4":0.26715,"15.5":0.55796,"15.6":1.08831,"16.0":1.26476,"16.1":1.9282,"16.2":1.44714,"16.3":0.11238},P:{"4":0.30533,"5.0-5.4":0.02036,"6.2-6.4":0.02036,"7.2-7.4":0.24426,"8.2":0.01018,"9.2":0.03053,"10.1":0,"11.1-11.2":0.07124,"12.0":0.02036,"13.0":0.0916,"14.0":0.06107,"15.0":0.05089,"16.0":0.0916,"17.0":0.15266,"18.0":0.17302,"19.0":2.00497},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00533,"4.2-4.3":0.02533,"4.4":0,"4.4.3-4.4.4":0.13333},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01955,"9":0.00489,"10":0.00489,"11":0.06841,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18403},Q:{"13.1":0},O:{"0":0.13802},H:{"0":0.37024},L:{"0":67.39077},S:{"2.5":0}}; +module.exports={C:{"52":0.13229,"55":0.01556,"60":0.00389,"65":0.05447,"72":0.00778,"78":0.01556,"80":0.00389,"81":0.00389,"84":0.00778,"91":0.00778,"94":0.00778,"99":0.01167,"100":0.00389,"101":0.00389,"102":0.03891,"103":0.00778,"104":0.06615,"105":0.00389,"106":0.01167,"107":0.03113,"108":0.06615,"109":1.33072,"110":0.98442,"111":0.01946,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 79 82 83 85 86 87 88 89 90 92 93 95 96 97 98 112 3.5 3.6"},D:{"29":0.00778,"43":0.00778,"49":0.08171,"50":0.00389,"56":0.01946,"63":0.01556,"64":0.00389,"65":0.00389,"66":0.00389,"67":0.21401,"68":0.01556,"69":0.15953,"70":0.00778,"71":0.00389,"72":0.02335,"73":0.00778,"74":0.01556,"75":0.01167,"76":0.01167,"77":0.00778,"78":0.00778,"79":0.07393,"80":0.01556,"81":0.01167,"83":0.05058,"84":0.03891,"85":0.0428,"86":0.0428,"87":0.0856,"88":0.03113,"89":0.01167,"90":0.01556,"91":0.01946,"92":0.03113,"93":0.01946,"94":0.01556,"95":0.01946,"96":0.03502,"97":0.03113,"98":0.03113,"99":0.03891,"100":0.0428,"101":0.03502,"102":0.05447,"103":0.13619,"104":0.04669,"105":0.28015,"106":0.14008,"107":0.1751,"108":0.59921,"109":15.85583,"110":9.18665,"111":0.01167,"112":0.00778,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 51 52 53 54 55 57 58 59 60 61 62 113"},F:{"28":0.00778,"79":0.01556,"85":0.01946,"89":0.00778,"92":0.00778,"93":0.09728,"94":1.15174,"95":0.75875,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 90 91 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02724,"84":0.00778,"85":0.00778,"92":0.02724,"105":0.00389,"106":0.00389,"107":0.01556,"108":0.07393,"109":1.14006,"110":1.66924,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104"},E:{"4":0,"13":0.00778,"14":0.08949,"15":0.00778,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.4","5.1":0.07393,"12.1":0.01167,"13.1":0.06226,"14.1":0.10895,"15.1":0.02724,"15.2-15.3":0.01556,"15.4":0.03113,"15.5":0.04669,"15.6":0.18677,"16.0":0.0428,"16.1":0.07782,"16.2":0.16731,"16.3":0.14008},G:{"8":0.00073,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00364,"6.0-6.1":0.00291,"7.0-7.1":0.03926,"8.1-8.4":0.00582,"9.0-9.2":0.00218,"9.3":0.05598,"10.0-10.2":0.00145,"10.3":0.03999,"11.0-11.2":0.00654,"11.3-11.4":0.01381,"12.0-12.1":0.01599,"12.2-12.5":0.29953,"13.0-13.1":0.00945,"13.2":0.00945,"13.3":0.03053,"13.4-13.7":0.09088,"14.0-14.4":0.17957,"14.5-14.8":0.33879,"15.0-15.1":0.11414,"15.2-15.3":0.1614,"15.4":0.20647,"15.5":0.33443,"15.6":0.67831,"16.0":0.81353,"16.1":1.16468,"16.2":1.23956,"16.3":0.76991,"16.4":0.00436},P:{"4":0.28835,"20":0.76208,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.21627,"8.2":0.02044,"9.2":0.04119,"10.1":0.0217,"11.1-11.2":0.06179,"12.0":0.0206,"13.0":0.10298,"14.0":0.07209,"15.0":0.05149,"16.0":0.08239,"17.0":0.12358,"18.0":0.13388,"19.0":1.56535},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00242,"4.2-4.3":0.0121,"4.4":0,"4.4.3-4.4.4":0.04657},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05373,"9":0.01343,"10":0.01791,"11":0.24178,_:"6 7 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.15881},H:{"0":0.399},L:{"0":51.27082},R:{_:"0"},M:{"0":0.16492},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js index b4201c718e6b5a..98297f933ba9b5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0.32208,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00657,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.04601,"68":0.03944,"69":0,"70":0,"71":0,"72":0.03944,"73":0,"74":0,"75":0.2432,"76":0,"77":0,"78":0.23663,"79":0,"80":0,"81":0,"82":0.05916,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.32208,"92":0,"93":0,"94":0,"95":0.00657,"96":0,"97":0,"98":0.3155,"99":0,"100":0,"101":0,"102":0.25635,"103":0,"104":0,"105":0,"106":0.04601,"107":0.05258,"108":1.43291,"109":0.63758,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01315,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00657,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.01315,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00657,"66":0,"67":0,"68":0,"69":0,"70":0.01315,"71":0.05258,"72":0.01315,"73":0,"74":0.00657,"75":0,"76":0.05916,"77":0,"78":0.00657,"79":0.27607,"80":0.05916,"81":0.21034,"83":0.00657,"84":0.01972,"85":0.59814,"86":0.04601,"87":0.55871,"88":0,"89":0.00657,"90":0.01315,"91":0,"92":0.00657,"93":0,"94":0,"95":0,"96":0,"97":0.00657,"98":0.00657,"99":0,"100":0.00657,"101":0.01315,"102":0.00657,"103":1.68926,"104":0.11174,"105":1.33432,"106":0.1709,"107":2.09021,"108":8.11108,"109":9.64916,"110":0.00657,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.03287,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00657,"89":0,"90":0,"91":0,"92":0,"93":0.05258,"94":0.20376,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00657,"17":0,"18":0.03287,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.01972,"87":0,"88":0,"89":0,"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.04601,"108":1.70898,"109":1.801},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00657,"13":0.01315,"14":0.35494,"15":0.01972,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.04601,"13.1":0.39438,"14.1":0.82163,"15.1":0.03944,"15.2-15.3":0.07888,"15.4":0.06573,"15.5":0.32208,"15.6":3.08274,"16.0":0.21691,"16.1":1.27516,"16.2":1.6564,"16.3":0.17747},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01211,"9.0-9.2":0,"9.3":0.03229,"10.0-10.2":0.02422,"10.3":0.00807,"11.0-11.2":0,"11.3-11.4":0.12512,"12.0-12.1":0.02018,"12.2-12.5":0.45608,"13.0-13.1":0.00404,"13.2":0.00807,"13.3":0.04843,"13.4-13.7":0.28253,"14.0-14.4":0.39554,"14.5-14.8":0.74668,"15.0-15.1":0.67,"15.2-15.3":0.56909,"15.4":0.71439,"15.5":1.0171,"15.6":5.61021,"16.0":4.70208,"16.1":13.5089,"16.2":9.77145,"16.3":0.58524},P:{"4":0.01028,"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.34955,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.1645,"18.0":0,"19.0":1.32625},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02315},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03287,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.32899},Q:{"13.1":0},O:{"0":0.02056},H:{"0":0.02271},L:{"0":14.27433},S:{"2.5":0}}; +module.exports={C:{"2":0.01282,"4":0.02564,"5":0.00641,"10":0.01282,"11":0.01282,"12":0.00641,"13":0.01282,"14":0.00641,"16":0.01282,"17":0.01282,"19":0.00641,"21":0.00641,"24":0.01282,"25":0.01282,"26":0.01282,"28":0.01923,"30":0.01282,"31":0.02564,"32":0.00641,"33":0.01923,"34":0.00641,"35":0.01923,"36":0.01923,"37":0.01282,"38":0.01923,"39":0.05127,"40":0.04486,"42":0.01282,"43":0.00641,"67":0.0705,"68":0.07691,"72":0.07691,"75":0.39095,"78":0.48068,"82":0.07691,"88":0.03205,"91":0.09614,"98":0.41659,"101":0.03205,"102":0.26918,"103":0.00641,"104":0.03205,"105":0.00641,"108":0.03845,"109":2.34569,"110":1.26257,_:"3 6 7 8 9 15 18 20 22 23 27 29 41 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 89 90 92 93 94 95 96 97 99 100 106 107 111 112","3.5":0.02564,"3.6":0.05127},D:{"8":0.00641,"11":0.01282,"15":0.01282,"18":0.00641,"21":0.01923,"22":0.01923,"27":0.01282,"30":0.00641,"33":0.01923,"34":0.01282,"35":0.01282,"36":0.01282,"37":0.01282,"38":0.01282,"39":0.06409,"40":0.05127,"41":0.03205,"42":0.01923,"43":0.08332,"44":0.12177,"45":0.08973,"46":0.06409,"47":0.07691,"51":0.01282,"57":0.01282,"65":0.00641,"70":0.05127,"71":0.08332,"72":0.01923,"74":0.01282,"76":0.08973,"78":0.01282,"79":0.55117,"80":0.13459,"81":0.43581,"83":0.03205,"84":0.03845,"85":1.18567,"86":0.06409,"87":1.1408,"89":0.00641,"90":0.01923,"94":0.01282,"97":0.00641,"99":0.01282,"100":0.01282,"101":0.01923,"102":0.01923,"103":1.69839,"104":0.22432,"105":1.87784,"106":0.73063,"107":0.29481,"108":1.52534,"109":12.67059,"110":11.13884,"111":0.04486,_:"4 5 6 7 9 10 12 13 14 16 17 19 20 23 24 25 26 28 29 31 32 48 49 50 52 53 54 55 56 58 59 60 61 62 63 64 66 67 68 69 73 75 77 88 91 92 93 95 96 98 112 113"},F:{"19":0.01282,"31":0.01282,"32":0.01282,"33":0.00641,"65":0.08332,"88":0.01282,"94":0.14741,"95":0.22432,_:"9 11 12 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 34 35 36 37 38 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 89 90 91 92 93 9.5-9.6 10.5 11.1 11.6","10.0-10.1":0,"10.6":0.00641,"11.5":0.01282,"12.1":0.03845},B:{"12":0.01923,"17":0.05768,"18":0.17304,"86":0.01923,"107":0.01282,"108":0.08973,"109":3.15964,"110":2.07652,_:"13 14 15 16 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"},E:{"4":0.01923,"5":0.03845,"8":0.01923,"9":0.03845,"12":0.30122,"13":0.00641,"14":0.3589,"15":0.03205,_:"0 6 7 10 11 3.1 3.2 9.1 10.1 11.1 16.4","5.1":0.00641,"6.1":0.01282,"7.1":0.01282,"12.1":0.08973,"13.1":0.5704,"14.1":0.87162,"15.1":0.03845,"15.2-15.3":0.10254,"15.4":0.07691,"15.5":0.30122,"15.6":2.5636,"16.0":0.5704,"16.1":1.82016,"16.2":2.74305,"16.3":2.68537},G:{"8":0.01582,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.02034,"5.0-5.1":0.00452,"6.0-6.1":0.00452,"7.0-7.1":0.06779,"8.1-8.4":0.13331,"9.0-9.2":0.01356,"9.3":0.0226,"10.0-10.2":0.03841,"10.3":0.0113,"11.0-11.2":0.04971,"11.3-11.4":0.06101,"12.0-12.1":0.02485,"12.2-12.5":0.34571,"13.0-13.1":0.00226,"13.2":0.00452,"13.3":0.0113,"13.4-13.7":0.0113,"14.0-14.4":0.15817,"14.5-14.8":0.43835,"15.0-15.1":0.27114,"15.2-15.3":0.32989,"15.4":0.46998,"15.5":0.49484,"15.6":2.16689,"16.0":2.68658,"16.1":6.01938,"16.2":5.09749,"16.3":2.3115,"16.4":0.01356},P:{"4":0.08606,"20":0.83913,"5.0-5.4":0.01042,"6.2-6.4":0.01076,"7.2-7.4":0.03096,"8.2":0.02044,"9.2":0.02064,"10.1":0.0217,"11.1-11.2":0.4626,"12.0":0.02048,"13.0":0.02064,"14.0":0.02064,"15.0":0.01019,"16.0":0.02152,"17.0":0.11834,"18.0":0.01076,"19.0":0.60245},I:{"0":0,"3":0.00197,"4":0.04134,"2.1":0.00689,"2.2":0.01723,"2.3":0.03691,"4.1":0.04626,"4.2-4.3":0.08022,"4.4":0,"4.4.3-4.4.4":0.21458},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01983,"7":0.0793,"8":0.7005,"9":0.16521,"10":0.13217,"11":0.52207,_:"5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0.00359,_:"3.0-3.1"},J:{"7":0,"10":0.02874},O:{"0":0.0898},H:{"0":0.04421},L:{"0":11.23026},R:{_:"0"},M:{"0":0.5388},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js index b68d004574ec87..c6af2c9f9a0058 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js @@ -1 +1 @@ -module.exports={C:{"52":0.04744,"55":0.01581,"57":0.02767,"68":0.00791,"78":0.01186,"82":0.00395,"87":0.23718,"91":0.03162,"99":0.01186,"102":0.2609,"103":0.00395,"104":0.00791,"105":0.01186,"106":0.01581,"107":0.04744,"108":1.0515,"109":0.6562,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 88 89 90 92 93 94 95 96 97 98 100 101 110 111 3.5","3.6":0.0593},D:{"49":0.08301,"51":0.01581,"53":0.01186,"56":0.01581,"67":0.01186,"70":0.00395,"71":0.01186,"72":0.00791,"73":0.00395,"74":0.00395,"75":0.00791,"76":0.01186,"79":0.04744,"80":0.17393,"81":0.01977,"83":0.00791,"84":0.01186,"85":0.07906,"86":0.04348,"87":0.02372,"88":0.02372,"89":0.01581,"90":0.01977,"91":0.00791,"92":0.02372,"94":0.00791,"95":0.02767,"96":0.07115,"97":0.06325,"98":0.04744,"99":0.03558,"100":0.07511,"101":0.0593,"102":0.17789,"103":0.07511,"104":0.13836,"105":0.08697,"106":0.12254,"107":0.26485,"108":12.68518,"109":13.25836,"110":0.00791,"111":0.01186,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 54 55 57 58 59 60 61 62 63 64 65 66 68 69 77 78 93 112"},F:{"70":0.00791,"79":0.02372,"85":0.05534,"87":0.00791,"93":0.589,"94":2.103,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 80 81 82 83 84 86 88 89 90 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00791,"92":0.00791,"107":0.03162,"108":0.81037,"109":0.76688,_:"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"},E:{"4":0,"8":0.00791,"13":0.00395,"14":0.03162,"15":0.00791,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.00395,"9.1":0.00395,"11.1":0.00395,"12.1":0.00791,"13.1":0.03558,"14.1":0.14231,"15.1":0.02372,"15.2-15.3":0.01581,"15.4":0.03953,"15.5":0.0593,"15.6":0.22927,"16.0":0.04348,"16.1":0.13045,"16.2":0.25299,"16.3":0.01977},G:{"8":0.00137,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00274,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01919,"10.0-10.2":0,"10.3":0.01782,"11.0-11.2":0.00685,"11.3-11.4":0.00685,"12.0-12.1":0.00823,"12.2-12.5":0.21523,"13.0-13.1":0.00685,"13.2":0.0096,"13.3":0.01508,"13.4-13.7":0.05758,"14.0-14.4":0.18096,"14.5-14.8":0.44281,"15.0-15.1":0.11516,"15.2-15.3":0.15903,"15.4":0.20564,"15.5":0.48119,"15.6":1.34213,"16.0":2.54854,"16.1":3.68367,"16.2":2.92006,"16.3":0.27418},P:{"4":0.09322,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04143,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04143,"12.0":0,"13.0":0.02072,"14.0":0.02072,"15.0":0.03107,"16.0":0.06215,"17.0":0.07251,"18.0":0.09322,"19.0":2.19587},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.02015},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00791,"11":0.22137,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18743},Q:{"13.1":0},O:{"0":0.04837},H:{"0":0.21751},L:{"0":45.8928},S:{"2.5":0}}; +module.exports={C:{"40":0.00804,"52":0.04019,"55":0.00402,"57":0.00402,"60":0.00402,"68":0.00804,"78":0.00804,"87":0.22908,"89":0.00804,"91":0.02411,"96":0.00804,"98":0.00402,"99":0.00402,"101":0.01206,"102":0.20899,"103":0.00804,"104":0.01608,"105":0.0201,"106":0.01608,"107":0.03215,"108":0.04823,"109":1.12934,"110":0.61089,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 56 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 88 90 92 93 94 95 97 100 111 112 3.5","3.6":0.04823},D:{"33":0.0201,"44":0.00804,"45":0.00402,"47":0.00402,"49":0.08842,"51":0.01608,"53":0.00402,"56":0.02813,"58":0.00402,"59":0.00804,"63":0.00804,"64":0.00402,"67":0.01206,"70":0.00402,"71":0.00804,"74":0.00402,"75":0.01206,"77":0.00402,"78":0.01206,"79":0.03215,"80":0.04823,"81":0.00402,"83":0.01206,"84":0.01608,"85":0.05627,"86":0.01608,"87":0.03617,"88":0.01206,"89":0.00804,"90":0.01206,"91":0.01608,"92":0.12057,"93":0.00804,"94":0.00402,"95":0.01206,"96":0.0643,"97":0.0643,"98":0.0201,"99":0.04019,"100":0.05225,"101":0.04823,"102":0.11655,"103":0.0844,"104":0.04421,"105":0.0844,"106":0.18889,"107":0.12459,"108":0.66314,"109":17.55097,"110":8.79357,"111":0.00804,"112":0.01608,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 46 48 50 52 54 55 57 60 61 62 65 66 68 69 72 73 76 113"},F:{"28":0.00402,"46":0.00804,"63":0.03617,"70":0.01206,"74":0.01206,"79":0.01608,"85":0.04421,"87":0.01608,"90":0.00402,"93":0.07234,"94":1.2901,"95":1.10924,_:"9 11 12 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 64 65 66 67 68 69 71 72 73 75 76 77 78 80 81 82 83 84 86 88 89 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00402,"92":0.00804,"106":0.01206,"107":0.01206,"108":0.04421,"109":0.64304,"110":1.02886,_:"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:{"4":0,"14":0.03215,"15":0.00804,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.4","5.1":0.00402,"12.1":0.00804,"13.1":0.03215,"14.1":0.08038,"15.1":0.02411,"15.2-15.3":0.01608,"15.4":0.05225,"15.5":0.03215,"15.6":0.22105,"16.0":0.03617,"16.1":0.09646,"16.2":0.20497,"16.3":0.16478},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00564,"8.1-8.4":0.00564,"9.0-9.2":0,"9.3":0.01693,"10.0-10.2":0.00141,"10.3":0.01552,"11.0-11.2":0.00564,"11.3-11.4":0.00847,"12.0-12.1":0.00847,"12.2-12.5":0.20463,"13.0-13.1":0.00564,"13.2":0.00564,"13.3":0.01129,"13.4-13.7":0.04657,"14.0-14.4":0.15664,"14.5-14.8":0.39091,"15.0-15.1":0.10725,"15.2-15.3":0.11572,"15.4":0.17076,"15.5":0.4022,"15.6":1.08946,"16.0":2.14645,"16.1":3.14982,"16.2":3.30929,"16.3":1.87268,"16.4":0.01693},P:{"4":0.11352,"20":0.78434,"5.0-5.4":0.01042,"6.2-6.4":0.01025,"7.2-7.4":0.03096,"8.2":0.02044,"9.2":0.02064,"10.1":0.0217,"11.1-11.2":0.04128,"12.0":0.02048,"13.0":0.02064,"14.0":0.02064,"15.0":0.01019,"16.0":0.0516,"17.0":0.06192,"18.0":0.08256,"19.0":1.33132},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01123,"4.2-4.3":0.00817,"4.4":0,"4.4.3-4.4.4":0.02246},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04888,"9":0.00407,"10":0.00815,"11":0.24033,_:"6 7 5.5"},N:{"10":0.02102,"11":0.02035},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.07774},H:{"0":0.2944},L:{"0":44.87278},R:{_:"0"},M:{"0":0.16744},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ME.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ME.js index e67237bd948cca..5d8bc3c491f8d1 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.00346,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05186,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00346,"69":0.00691,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00346,"76":0,"77":0,"78":0.00691,"79":0,"80":0,"81":0,"82":0.00346,"83":0,"84":0,"85":0,"86":0,"87":0.00346,"88":0,"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.00346,"103":0.01037,"104":0.00691,"105":0,"106":0.00691,"107":0.00346,"108":0.41138,"109":0.2731,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00346,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00691,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0242,"50":0,"51":0,"52":0,"53":0.0242,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00346,"66":0.00346,"67":0,"68":0.02766,"69":0,"70":0.00691,"71":0,"72":0,"73":0,"74":0,"75":0.00346,"76":0.00346,"77":0.00346,"78":0.00691,"79":0.15211,"80":0,"81":0.01383,"83":0.01383,"84":0.02074,"85":0.01383,"86":0.00691,"87":0.02074,"88":0.00346,"89":0.00346,"90":0.00346,"91":0.00346,"92":0.00691,"93":0.00346,"94":0,"95":0.01037,"96":0.01037,"97":0.00346,"98":0.00691,"99":0.01037,"100":0.02074,"101":0.01037,"102":0.0242,"103":0.06568,"104":0.01729,"105":0.06223,"106":0.01729,"107":0.05531,"108":4.14149,"109":4.49064,"110":0.00346,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01383,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00346,"37":0,"38":0,"39":0,"40":0.00346,"41":0,"42":0.00346,"43":0,"44":0,"45":0,"46":0.01037,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00691,"74":0.00346,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01729,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00346,"93":0.15211,"94":0.24199,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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,"91":0,"92":0.01037,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00346,"104":0,"105":0,"106":0,"107":0.0242,"108":0.20742,"109":0.24199},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02074,"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.00691,"13.1":0.0242,"14.1":0.03457,"15.1":0.00346,"15.2-15.3":0.00346,"15.4":0.01037,"15.5":0.02766,"15.6":0.12791,"16.0":0.01037,"16.1":0.04494,"16.2":0.07605,"16.3":0.00346},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00222,"6.0-6.1":0,"7.0-7.1":0.03991,"8.1-8.4":0.00887,"9.0-9.2":0,"9.3":0.09312,"10.0-10.2":0.00222,"10.3":0.16407,"11.0-11.2":0.00665,"11.3-11.4":0.02661,"12.0-12.1":0.0133,"12.2-12.5":0.32148,"13.0-13.1":0,"13.2":0,"13.3":0.01774,"13.4-13.7":0.09312,"14.0-14.4":0.26605,"14.5-14.8":1.25045,"15.0-15.1":0.17959,"15.2-15.3":0.36139,"15.4":0.29044,"15.5":1.01987,"15.6":3.23698,"16.0":3.58729,"16.1":5.74675,"16.2":3.60946,"16.3":0.337},P:{"4":0.21472,"5.0-5.4":0.01022,"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.34764,"12.0":0.01022,"13.0":0.02045,"14.0":0.03067,"15.0":0.02045,"16.0":0.07157,"17.0":0.05112,"18.0":0.12269,"19.0":2.75041},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00429,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04028},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03111,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15703},Q:{"13.1":0},O:{"0":0.01309},H:{"0":0.18583},L:{"0":62.10008},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01057,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00352,"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.00705,"99":0.00352,"100":0.00352,"101":0,"102":0.00352,"103":0.00705,"104":0.00705,"105":0.00705,"106":0,"107":0.00352,"108":0.00705,"109":0.5214,"110":0.32059,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00352,"39":0,"40":0,"41":0.00352,"42":0,"43":0,"44":0.00352,"45":0,"46":0,"47":0,"48":0,"49":0.02114,"50":0,"51":0,"52":0,"53":0.01762,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00352,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00705,"67":0,"68":0.01409,"69":0,"70":0.00352,"71":0,"72":0,"73":0,"74":0.00352,"75":0.00352,"76":0,"77":0,"78":0,"79":0.09512,"80":0.00705,"81":0.01409,"83":0.01409,"84":0.00352,"85":0.01762,"86":0.00705,"87":0.01409,"88":0.00352,"89":0.00352,"90":0.00352,"91":0,"92":0.04228,"93":0.03875,"94":0.01057,"95":0.00705,"96":0.00705,"97":0.00705,"98":0.00352,"99":0.01409,"100":0.02466,"101":0.00352,"102":0.01762,"103":0.05637,"104":0.00352,"105":0.05285,"106":0.02114,"107":0.1691,"108":0.22195,"109":5.7284,"110":2.6951,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02114,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00352,"41":0,"42":0.00352,"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.00352,"68":0.00705,"69":0,"70":0,"71":0,"72":0,"73":0.00352,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00705,"86":0,"87":0.00352,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01057,"94":0.25366,"95":0.17615,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.01057,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00352,"104":0,"105":0,"106":0,"107":0.03523,"108":0.01409,"109":0.22195,"110":0.23956},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01057,"15":0.00352,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01057,"13.1":0.01409,"14.1":0.0458,"15.1":0.00352,"15.2-15.3":0.01762,"15.4":0.09512,"15.5":0.02466,"15.6":0.13387,"16.0":0.00705,"16.1":0.02466,"16.2":0.11626,"16.3":0.03875,"16.4":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.04525,"8.1-8.4":0.00617,"9.0-9.2":0.00411,"9.3":0.07198,"10.0-10.2":0,"10.3":0.11311,"11.0-11.2":0.01851,"11.3-11.4":0.01028,"12.0-12.1":0.0144,"12.2-12.5":0.26736,"13.0-13.1":0.00823,"13.2":0,"13.3":0.07609,"13.4-13.7":0.07404,"14.0-14.4":0.22006,"14.5-14.8":0.77328,"15.0-15.1":0.1234,"15.2-15.3":0.28792,"15.4":0.32494,"15.5":0.83704,"15.6":2.3363,"16.0":2.76202,"16.1":4.37234,"16.2":4.06591,"16.3":2.53579,"16.4":0.01028},P:{"4":0.16133,"20":1.15954,"5.0-5.4":0.01008,"6.2-6.4":0,"7.2-7.4":0.02017,"8.2":0,"9.2":0.01008,"10.1":0,"11.1-11.2":0.18149,"12.0":0.01008,"13.0":0.03025,"14.0":0.02017,"15.0":0.02017,"16.0":0.04033,"17.0":0.05041,"18.0":0.07058,"19.0":2.03675},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00318,"4.2-4.3":0.00953,"4.4":0,"4.4.3-4.4.4":0.07309},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01057,"9":0.00352,"10":0,"11":0.01762,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01295},H:{"0":0.22075},L:{"0":62.65394},R:{_:"0"},M:{"0":0.13602},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js index 915b3b17466193..bd86f1669bc9d8 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.00417,"44":0,"45":0,"46":0,"47":0.00417,"48":0.00417,"49":0,"50":0,"51":0,"52":0.02503,"53":0,"54":0,"55":0,"56":0.00417,"57":0,"58":0,"59":0,"60":0.00417,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00417,"69":0,"70":0,"71":0,"72":0.00834,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00834,"79":0.00417,"80":0.00834,"81":0.00417,"82":0.00417,"83":0,"84":0,"85":0,"86":0.00417,"87":0,"88":0.00417,"89":0.01251,"90":0,"91":0.00417,"92":0.00417,"93":0.00417,"94":0.00417,"95":0.00834,"96":0.00834,"97":0.03337,"98":0.00417,"99":0.01251,"100":0.01251,"101":0.00417,"102":0.05839,"103":0.01668,"104":0.01251,"105":0.01668,"106":0.07925,"107":0.09176,"108":1.39311,"109":0.57143,"110":0.00417,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06257,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00834,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00417,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01668,"50":0.01251,"51":0,"52":0,"53":0,"54":0.00834,"55":0.01251,"56":0.00417,"57":0.01251,"58":0.00417,"59":0.00417,"60":0,"61":0.00417,"62":0.00417,"63":0.00417,"64":0.00417,"65":0.00417,"66":0.00834,"67":0.00417,"68":0.00417,"69":0.00834,"70":0.00417,"71":0.0292,"72":0.00417,"73":0.00417,"74":0.02503,"75":0,"76":0,"77":0.00417,"78":0,"79":0.03754,"80":0.01251,"81":0.05839,"83":0.00417,"84":0,"85":0.01251,"86":0.02086,"87":0.00834,"88":0.02086,"89":0.00417,"90":0.01251,"91":0.00834,"92":0.02086,"93":0.00417,"94":0.00834,"95":0.05005,"96":0.02503,"97":0.06257,"98":0.01251,"99":0.00834,"100":0.01251,"101":0.04588,"102":0.03337,"103":0.07925,"104":0.09176,"105":0.09593,"106":0.08759,"107":0.23358,"108":4.29613,"109":3.08654,"110":0,"111":0.00417,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00417,"25":0,"26":0.00417,"27":0,"28":0.00417,"29":0.00417,"30":0.00834,"31":0,"32":0.02086,"33":0.00417,"34":0,"35":0.00417,"36":0,"37":0.00417,"38":0.00834,"39":0,"40":0,"41":0.00834,"42":0.00417,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00834,"51":0.00417,"52":0,"53":0.0292,"54":0,"55":0,"56":0.00417,"57":0,"58":0.00834,"60":0.0292,"62":0,"63":0.0292,"64":0.02503,"65":0.01251,"66":0.0292,"67":0.00834,"68":0,"69":0,"70":0.00417,"71":0.00417,"72":0,"73":0.00417,"74":0,"75":0,"76":0.01251,"77":0,"78":0,"79":0.04171,"80":0.00417,"81":0,"82":0,"83":0,"84":0,"85":0.00417,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00417,"93":0.05839,"94":0.317,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01251},B:{"12":0.00417,"13":0.00417,"14":0.00834,"15":0.01668,"16":0,"17":0.00834,"18":0.02086,"79":0,"80":0,"81":0,"83":0,"84":0.00417,"85":0.00417,"86":0,"87":0,"88":0,"89":0.00417,"90":0.00417,"91":0,"92":0.01251,"93":0,"94":0,"95":0,"96":0.00417,"97":0,"98":0,"99":0,"100":0.00417,"101":0,"102":0.00834,"103":0.01251,"104":0.00417,"105":0,"106":0.00834,"107":0.01668,"108":0.50886,"109":0.48384},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02086,"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.01668,"13.1":0.00834,"14.1":0.01251,"15.1":0,"15.2-15.3":0,"15.4":0.00417,"15.5":0.00417,"15.6":0.02503,"16.0":0.00417,"16.1":0.02086,"16.2":0.0292,"16.3":0.00417},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00045,"5.0-5.1":0.00178,"6.0-6.1":0,"7.0-7.1":0.03123,"8.1-8.4":0.00268,"9.0-9.2":0,"9.3":0.05443,"10.0-10.2":0.00134,"10.3":0.1392,"11.0-11.2":0.0116,"11.3-11.4":0.00669,"12.0-12.1":0.02543,"12.2-12.5":0.44974,"13.0-13.1":0.00446,"13.2":0.00312,"13.3":0.02499,"13.4-13.7":0.04462,"14.0-14.4":0.16553,"14.5-14.8":0.18561,"15.0-15.1":0.09771,"15.2-15.3":0.0879,"15.4":0.1053,"15.5":0.32972,"15.6":0.31187,"16.0":0.34533,"16.1":0.71967,"16.2":0.67238,"16.3":0.09414},P:{"4":0.07249,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06213,"8.2":0,"9.2":0.02071,"10.1":0,"11.1-11.2":0.01036,"12.0":0.01036,"13.0":0.03107,"14.0":0.06213,"15.0":0.01036,"16.0":0.03107,"17.0":0.07249,"18.0":0.0932,"19.0":0.40385},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00844,"4.2-4.3":0.01406,"4.4":0,"4.4.3-4.4.4":0.15001},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00417,"10":0,"11":0.01668,"5.5":0},J:{"7":0,"10":0.00583},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.48964},Q:{"13.1":0.01166},O:{"0":0.9851},H:{"0":3.01311},L:{"0":74.50405},S:{"2.5":0.18653}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00492,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00492,"43":0.00492,"44":0,"45":0,"46":0,"47":0,"48":0.00984,"49":0,"50":0,"51":0,"52":0.09842,"53":0,"54":0,"55":0,"56":0.00492,"57":0.00492,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00492,"68":0.00492,"69":0,"70":0.00492,"71":0,"72":0.01476,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02461,"79":0,"80":0.00984,"81":0.00492,"82":0.00984,"83":0,"84":0,"85":0.00492,"86":0.00492,"87":0,"88":0.00984,"89":0.02461,"90":0,"91":0.00984,"92":0.00984,"93":0.00492,"94":0.00984,"95":0.02461,"96":0.01476,"97":0.00984,"98":0,"99":0.01476,"100":0.00984,"101":0.00492,"102":0.08858,"103":0.01476,"104":0.01968,"105":0.02461,"106":0.02953,"107":0.02953,"108":0.11318,"109":1.83553,"110":1.03341,"111":0.03445,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02953,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00492,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00984,"40":0,"41":0,"42":0.00492,"43":0.00492,"44":0,"45":0,"46":0.00492,"47":0,"48":0,"49":0.01476,"50":0.00492,"51":0,"52":0,"53":0.00492,"54":0,"55":0.01476,"56":0.00492,"57":0.02461,"58":0.00492,"59":0,"60":0.00492,"61":0,"62":0,"63":0,"64":0.00492,"65":0.00984,"66":0.00492,"67":0.00984,"68":0,"69":0.01476,"70":0.00984,"71":0.00984,"72":0.00492,"73":0.00492,"74":0.02461,"75":0.00492,"76":0.00492,"77":0.00492,"78":0.00492,"79":0.05413,"80":0.01476,"81":0.03445,"83":0.01476,"84":0.00984,"85":0.01968,"86":0.02953,"87":0.01968,"88":0.02461,"89":0.00492,"90":0.03937,"91":0.01476,"92":0.00984,"93":0.00984,"94":0.00984,"95":0.05413,"96":0.03937,"97":0.07874,"98":0.01968,"99":0.01476,"100":0.02461,"101":0.05905,"102":0.03445,"103":0.08366,"104":0.05905,"105":0.13287,"106":0.07382,"107":0.22145,"108":0.36415,"109":7.93265,"110":3.85806,"111":0.00492,"112":0.02953,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00492,"25":0,"26":0.00492,"27":0.00492,"28":0.00492,"29":0,"30":0,"31":0,"32":0.01476,"33":0.00492,"34":0,"35":0,"36":0,"37":0.02461,"38":0.00492,"39":0,"40":0,"41":0.01968,"42":0.01476,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.01476,"51":0,"52":0,"53":0.07874,"54":0,"55":0,"56":0,"57":0.05905,"58":0.03937,"60":0.04429,"62":0.00492,"63":0.03445,"64":0.03445,"65":0.00984,"66":0.01476,"67":0.14271,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00492,"75":0,"76":0,"77":0,"78":0,"79":0.01476,"80":0.00984,"81":0,"82":0,"83":0,"84":0,"85":0.00984,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01968,"94":0.24605,"95":0.44781,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01476},B:{"12":0.00492,"13":0.00492,"14":0.00492,"15":0.01968,"16":0,"17":0.01476,"18":0.01476,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00492,"86":0,"87":0,"88":0,"89":0.00492,"90":0.00984,"91":0,"92":0.04921,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00492,"101":0,"102":0,"103":0.06889,"104":0.00492,"105":0.00492,"106":0.00984,"107":0.04429,"108":0.02953,"109":1.12199,"110":0.83165},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00492,"14":0.00492,"15":0.00492,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03445,"13.1":0.02953,"14.1":0.04921,"15.1":0.00492,"15.2-15.3":0,"15.4":0.00984,"15.5":0.03445,"15.6":0.03445,"16.0":0.00492,"16.1":0.01476,"16.2":0.03937,"16.3":0.04921,"16.4":0},G:{"8":0.00614,"3.2":0.00061,"4.0-4.1":0,"4.2-4.3":0.0043,"5.0-5.1":0.00184,"6.0-6.1":0,"7.0-7.1":0.02455,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.22712,"10.0-10.2":0,"10.3":0.17862,"11.0-11.2":0.01719,"11.3-11.4":0.00307,"12.0-12.1":0.01166,"12.2-12.5":0.58559,"13.0-13.1":0.02517,"13.2":0.02148,"13.3":0.11294,"13.4-13.7":0.03069,"14.0-14.4":0.14425,"14.5-14.8":0.27929,"15.0-15.1":0.11356,"15.2-15.3":0.11847,"15.4":0.16757,"15.5":0.20747,"15.6":0.34865,"16.0":0.41433,"16.1":0.95634,"16.2":0.87777,"16.3":0.65004,"16.4":0.00246},P:{"4":0.04135,"20":0.09304,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03101,"8.2":0,"9.2":0.02067,"10.1":0,"11.1-11.2":0.02067,"12.0":0.01034,"13.0":0.03101,"14.0":0.02067,"15.0":0.02067,"16.0":0.02067,"17.0":0.12405,"18.0":0.03101,"19.0":0.41349},I:{"0":0,"3":0,"4":0.00106,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01802,"4.2-4.3":0.0371,"4.4":0,"4.4.3-4.4.4":0.1781},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00492,"10":0,"11":0.01476,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.29458,_:"3.0-3.1"},J:{"7":0,"10":0.01016},O:{"0":1.17833},H:{"0":4.47188},L:{"0":62.18327},R:{_:"0"},M:{"0":0.26411},Q:{"13.1":0.0254}}; 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 adda9cc990888d..3c4c7000b00c11 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,"79":0,"80":0,"81":0,"82":0,"83":0.01202,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00601,"100":0,"101":0,"102":0.00601,"103":0,"104":0,"105":0,"106":0,"107":0.02404,"108":0.6611,"109":0.14424,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01202,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00601,"68":0,"69":0,"70":0,"71":0,"72":0.01202,"73":0.16227,"74":0,"75":0.14424,"76":0.08414,"77":0.04207,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0.0601,"85":0,"86":0.00601,"87":0.00601,"88":0,"89":0,"90":0.00601,"91":0,"92":0,"93":0.15025,"94":0.07212,"95":0,"96":0,"97":0,"98":0,"99":0.00601,"100":0.01202,"101":0.00601,"102":0.01803,"103":0.61302,"104":0,"105":0,"106":0.07212,"107":0.14424,"108":11.14855,"109":8.42602,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02404,"89":0,"90":0,"91":0,"92":0,"93":0.00601,"94":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00601,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00601,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00601,"100":0,"101":0.00601,"102":0,"103":0,"104":0,"105":0,"106":0.00601,"107":0.11419,"108":2.25375,"109":0.91953},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00601,"12":0,"13":0.00601,"14":2.99298,"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.00601,"13.1":0.43873,"14.1":0.32454,"15.1":0,"15.2-15.3":0.01202,"15.4":0,"15.5":0.12621,"15.6":0.21636,"16.0":0.01202,"16.1":0.13222,"16.2":3.22737,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":1.81569,"10.0-10.2":0,"10.3":0.10653,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.02367,"12.2-12.5":0.85458,"13.0-13.1":0.07102,"13.2":0.03551,"13.3":0.02367,"13.4-13.7":1.61447,"14.0-14.4":0.18938,"14.5-14.8":1.79201,"15.0-15.1":0.08285,"15.2-15.3":0.36692,"15.4":1.22387,"15.5":0.64153,"15.6":1.31856,"16.0":1.9956,"16.1":5.7335,"16.2":3.64558,"16.3":0.02367},P:{"4":0.06209,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0207,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.01035,"15.0":0,"16.0":0.03104,"17.0":0.10348,"18.0":0,"19.0":2.64913},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.78908,"4.4":0,"4.4.3-4.4.4":0.08768},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00601,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02394},Q:{"13.1":0},O:{"0":0.45486},H:{"0":0},L:{"0":38.63094},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00584,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01168,"91":0,"92":0,"93":0,"94":0.00584,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01168,"101":0.01168,"102":0.01168,"103":0.00584,"104":0.01752,"105":0,"106":0,"107":0,"108":0.05257,"109":0.38551,"110":0.29789,"111":0.00584,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01752,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00584,"74":0,"75":0.00584,"76":0.01752,"77":0.05841,"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.02336,"92":0.00584,"93":0.18107,"94":0.02921,"95":0,"96":0,"97":0,"98":0,"99":0.00584,"100":0,"101":0,"102":0.00584,"103":1.15068,"104":0.05257,"105":0,"106":0.18691,"107":0.02336,"108":2.14949,"109":14.36302,"110":8.0489,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01168,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.05257,"95":0.02921,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.07593,"108":0,"109":1.139,"110":1.4953},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00584,"12":0,"13":0.01168,"14":0.00584,"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.01752,"13.1":0.01168,"14.1":0.18107,"15.1":0.11098,"15.2-15.3":0.01168,"15.4":0.00584,"15.5":0.19275,"15.6":0.2278,"16.0":0,"16.1":0.24532,"16.2":0.09346,"16.3":0.16355,"16.4":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.03335,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.3713,"10.0-10.2":0,"10.3":0.01556,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01556,"12.2-12.5":0.67812,"13.0-13.1":0,"13.2":0,"13.3":0.04891,"13.4-13.7":0,"14.0-14.4":0.29126,"14.5-14.8":1.53856,"15.0-15.1":0.1623,"15.2-15.3":0.22678,"15.4":0.76039,"15.5":0.58252,"15.6":2.16777,"16.0":4.59122,"16.1":3.83306,"16.2":4.21992,"16.3":1.1806,"16.4":0},P:{"4":0.09276,"20":1.09255,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01031,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01031,"12.0":0,"13.0":0.01031,"14.0":0,"15.0":0,"16.0":0.06184,"17.0":0,"18.0":0.01031,"19.0":1.08224},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.50385,"4.4":0,"4.4.3-4.4.4":0.25193},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00584,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.44317},H:{"0":0.04331},L:{"0":39.95574},R:{_:"0"},M:{"0":0.16636},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MK.js index 3348e1faf444e2..97ade90d79b7e5 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.00653,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00327,"49":0,"50":0,"51":0.00327,"52":0.03919,"53":0,"54":0,"55":0,"56":0.00653,"57":0,"58":0,"59":0,"60":0,"61":0.00327,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00327,"69":0,"70":0,"71":0,"72":0.0098,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00327,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00327,"89":0,"90":0,"91":0,"92":0,"93":0.00327,"94":0.00327,"95":0,"96":0,"97":0,"98":0,"99":0.00327,"100":0,"101":0,"102":0.0098,"103":0.00327,"104":0.00327,"105":0.0098,"106":0.00327,"107":0.00653,"108":0.39845,"109":0.23842,"110":0.00327,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00653,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00327,"48":0,"49":0.02286,"50":0,"51":0,"52":0,"53":0.00653,"54":0,"55":0,"56":0.00327,"57":0,"58":0,"59":0,"60":0.00327,"61":0,"62":0,"63":0.00327,"64":0.00327,"65":0.00327,"66":0.00327,"67":0,"68":0.00327,"69":0.00327,"70":0,"71":0.00327,"72":0.00327,"73":0.00327,"74":0,"75":0.00327,"76":0.00653,"77":0.00327,"78":0,"79":0.05226,"80":0.00327,"81":0.01633,"83":0.01306,"84":0.00327,"85":0.01306,"86":0.01633,"87":0.01306,"88":0.00653,"89":0.00327,"90":0.00327,"91":0.01306,"92":0.01306,"93":0.00653,"94":0.01306,"95":0.00653,"96":0.00653,"97":0.00653,"98":0.00327,"99":0.00327,"100":0.01306,"101":0.00653,"102":0.01306,"103":0.01633,"104":0.0098,"105":0.02939,"106":0.02939,"107":0.05552,"108":3.94206,"109":3.83755,"110":0.0098,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00653,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00327,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00653,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00327,"68":0,"69":0,"70":0.00327,"71":0,"72":0,"73":0.00327,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.1731,"94":0.23515,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00327,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00327,"85":0,"86":0.00327,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00327,"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.00327,"107":0.00653,"108":0.29067,"109":0.27434},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00327,"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.00653,"14.1":0.01633,"15.1":0,"15.2-15.3":0,"15.4":0.00327,"15.5":0.0098,"15.6":0.04899,"16.0":0.00653,"16.1":0.0196,"16.2":0.04572,"16.3":0.00327},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03585,"8.1-8.4":0,"9.0-9.2":0.00224,"9.3":0.07617,"10.0-10.2":0.00224,"10.3":0.0224,"11.0-11.2":0.00896,"11.3-11.4":0.00448,"12.0-12.1":0.02016,"12.2-12.5":0.69003,"13.0-13.1":0.00672,"13.2":0.00896,"13.3":0.03361,"13.4-13.7":0.1165,"14.0-14.4":0.33157,"14.5-14.8":1.09105,"15.0-15.1":0.10754,"15.2-15.3":0.21507,"15.4":0.27556,"15.5":0.62954,"15.6":2.70411,"16.0":3.18802,"16.1":6.73002,"16.2":4.30372,"16.3":0.33829},P:{"4":0.17243,"5.0-5.4":0.01014,"6.2-6.4":0,"7.2-7.4":0.01014,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03043,"12.0":0.01014,"13.0":0.04057,"14.0":0.03043,"15.0":0.01014,"16.0":0.05071,"17.0":0.071,"18.0":0.071,"19.0":1.9373},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.06334,"4.2-4.3":0.00232,"4.4":0,"4.4.3-4.4.4":0.01046},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0098,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08754},Q:{"13.1":0},O:{"0":0.00673},H:{"0":0.19763},L:{"0":64.80897},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00381,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00381,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00761,"51":0.00381,"52":0.04568,"53":0,"54":0,"55":0,"56":0.00761,"57":0,"58":0,"59":0,"60":0,"61":0.00381,"62":0,"63":0,"64":0,"65":0.00381,"66":0,"67":0,"68":0.00381,"69":0,"70":0,"71":0,"72":0.00381,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00381,"94":0.00381,"95":0,"96":0,"97":0,"98":0.00381,"99":0.00381,"100":0,"101":0,"102":0.01523,"103":0.00381,"104":0.00381,"105":0.01523,"106":0.00761,"107":0.05711,"108":0.03046,"109":0.74998,"110":0.35405,"111":0.01142,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"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,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00381,"48":0,"49":0.02665,"50":0,"51":0,"52":0,"53":0.00381,"54":0,"55":0,"56":0.00381,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00381,"64":0.00761,"65":0,"66":0.00381,"67":0,"68":0.00381,"69":0,"70":0,"71":0,"72":0.00381,"73":0,"74":0,"75":0.00381,"76":0,"77":0,"78":0.00381,"79":0.06472,"80":0,"81":0.01904,"83":0.01523,"84":0.00761,"85":0.01523,"86":0.01142,"87":0.01142,"88":0.00381,"89":0.00381,"90":0.00381,"91":0.00761,"92":0.01523,"93":0.00381,"94":0.00761,"95":0.00761,"96":0.00761,"97":0.00761,"98":0.00381,"99":0.00381,"100":0.01523,"101":0.00761,"102":0.01523,"103":0.02284,"104":0.00761,"105":0.02284,"106":0.01904,"107":0.03807,"108":0.17893,"109":6.77265,"110":3.63569,"111":0.00761,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00761,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00381,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01523,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00381,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00381,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00381,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02284,"94":0.22842,"95":0.15609,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00761,"16":0,"17":0,"18":0.00381,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00381,"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.00761,"108":0.01142,"109":0.30456,"110":0.37309},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00761,"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,"13.1":0.00761,"14.1":0.03046,"15.1":0.00381,"15.2-15.3":0.00381,"15.4":0.00381,"15.5":0.01142,"15.6":0.04949,"16.0":0.01904,"16.1":0.01523,"16.2":0.0533,"16.3":0.03807,"16.4":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.03523,"8.1-8.4":0.00207,"9.0-9.2":0.00207,"9.3":0.06839,"10.0-10.2":0.00207,"10.3":0.02487,"11.0-11.2":0.00829,"11.3-11.4":0.00414,"12.0-12.1":0.00829,"12.2-12.5":0.49114,"13.0-13.1":0.00414,"13.2":0.00207,"13.3":0.02694,"13.4-13.7":0.09533,"14.0-14.4":0.24868,"14.5-14.8":0.89938,"15.0-15.1":0.08289,"15.2-15.3":0.18029,"15.4":0.23417,"15.5":0.51808,"15.6":1.78219,"16.0":2.36244,"16.1":4.54459,"16.2":4.64406,"16.3":3.08568,"16.4":0.01243},P:{"4":0.12218,"20":0.7636,"5.0-5.4":0.02036,"6.2-6.4":0,"7.2-7.4":0.01018,"8.2":0.01018,"9.2":0,"10.1":0,"11.1-11.2":0.03054,"12.0":0.01018,"13.0":0.03054,"14.0":0.03054,"15.0":0.01018,"16.0":0.02036,"17.0":0.09163,"18.0":0.05091,"19.0":1.34393},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03419,"4.2-4.3":0.00892,"4.4":0,"4.4.3-4.4.4":0.02973},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.01523,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00619},O:{"0":0.01858},H:{"0":0.1583},L:{"0":62.55598},R:{_:"0"},M:{"0":0.0867},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ML.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ML.js index 7921102fb519b7..2334c63ad2744c 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,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.04759,"100":0,"101":0,"102":0.00433,"103":0,"104":0,"105":0,"106":0.00216,"107":0.00433,"108":0.199,"109":0.09517,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.01298,"62":0,"63":0,"64":0,"65":0.02163,"66":0,"67":0,"68":0,"69":0,"70":0.00216,"71":0,"72":0,"73":0,"74":0.00216,"75":0.00216,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00649,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00649,"93":0,"94":0,"95":0.00433,"96":0,"97":0,"98":0.00216,"99":0,"100":0,"101":0,"102":0.00216,"103":0.04542,"104":0.00216,"105":0.00216,"106":0.00433,"107":0.01514,"108":1.09448,"109":0.95172,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00216,"62":0,"63":0.00433,"64":0.00433,"65":0,"66":0.00649,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00433,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.01298,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00433,"93":0.00649,"94":0.06273,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00216,"13":0.00433,"14":0.00865,"15":0.00433,"16":0,"17":0.00865,"18":0.02163,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00216,"91":0,"92":0.00649,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00216,"105":0,"106":0,"107":0.01082,"108":0.4153,"109":0.36338},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00649,"14":0.00433,"15":0.00433,_:"0","3.1":0,"3.2":0,"5.1":0.00433,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00216,"12.1":0,"13.1":0.00216,"14.1":0.00216,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.03028,"16.0":0.00216,"16.1":0.01298,"16.2":0.00433,"16.3":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.00201,"7.0-7.1":0.03009,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.11435,"10.0-10.2":0,"10.3":0.65199,"11.0-11.2":0.02809,"11.3-11.4":0.07824,"12.0-12.1":0.26481,"12.2-12.5":2.89285,"13.0-13.1":0.03611,"13.2":0.07423,"13.3":0.22669,"13.4-13.7":0.41126,"14.0-14.4":1.02915,"14.5-14.8":1.1776,"15.0-15.1":0.83455,"15.2-15.3":0.21666,"15.4":1.09736,"15.5":0.93285,"15.6":0.88872,"16.0":2.17465,"16.1":2.20274,"16.2":2.82263,"16.3":0.36913},P:{"4":0.28015,"5.0-5.4":0.01038,"6.2-6.4":0,"7.2-7.4":0.24902,"8.2":0,"9.2":0.03113,"10.1":0,"11.1-11.2":0.01038,"12.0":0,"13.0":0.01038,"14.0":0.13488,"15.0":0.05188,"16.0":0.16601,"17.0":0.16601,"18.0":0.09338,"19.0":1.00645},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00197,"4.2-4.3":0.00829,"4.4":0,"4.4.3-4.4.4":0.13303},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01082,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.03135},Q:{"13.1":0.00784},O:{"0":0.721},H:{"0":0.63808},L:{"0":72.86625},S:{"2.5":0.17241}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00213,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.03201,"100":0,"101":0,"102":0.00213,"103":0.00427,"104":0,"105":0,"106":0,"107":0.00213,"108":0.0064,"109":0.15365,"110":0.13017,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01921,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00213,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00427,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0128,"66":0,"67":0,"68":0,"69":0,"70":0.00427,"71":0,"72":0,"73":0,"74":0.00213,"75":0,"76":0.00427,"77":0,"78":0,"79":0.00213,"80":0.0064,"81":0.0064,"83":0,"84":0,"85":0,"86":0,"87":0.00213,"88":0,"89":0,"90":0.00213,"91":0,"92":0.01067,"93":0,"94":0,"95":0.00213,"96":0,"97":0,"98":0.00427,"99":0,"100":0,"101":0,"102":0.00427,"103":0.01707,"104":0.00427,"105":0.00427,"106":0.00213,"107":0.00427,"108":0.03201,"109":0.90695,"110":0.82799,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0064,"62":0,"63":0.00427,"64":0.00213,"65":0,"66":0.0064,"67":0.00427,"68":0,"69":0,"70":0.00213,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.0064,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.03201,"95":0.04695,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00213,"13":0.00213,"14":0.0064,"15":0.00213,"16":0,"17":0,"18":0.05122,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0064,"90":0,"91":0,"92":0.00213,"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.00213,"106":0,"107":0.00427,"108":0.01494,"109":0.29876,"110":0.39052},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00427,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00213,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00427,"14.1":0.00213,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01707,"16.0":0,"16.1":0.01067,"16.2":0.0064,"16.3":0.0064,"16.4":0},G:{"8":0.00186,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01485,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07423,"10.0-10.2":0,"10.3":0.30062,"11.0-11.2":0.00928,"11.3-11.4":0.00928,"12.0-12.1":0.15217,"12.2-12.5":2.68704,"13.0-13.1":0.01299,"13.2":0.07423,"13.3":0.12062,"13.4-13.7":0.31918,"14.0-14.4":1.02063,"14.5-14.8":1.12455,"15.0-15.1":0.57526,"15.2-15.3":0.1967,"15.4":1.20991,"15.5":0.77568,"15.6":0.65135,"16.0":1.39177,"16.1":1.67569,"16.2":1.77218,"16.3":2.41796,"16.4":0.01113},P:{"4":0.18095,"20":0.31164,"5.0-5.4":0.01005,"6.2-6.4":0.01005,"7.2-7.4":0.24127,"8.2":0,"9.2":0.03016,"10.1":0,"11.1-11.2":0.01005,"12.0":0.01005,"13.0":0.03016,"14.0":0.11058,"15.0":0.05026,"16.0":0.07037,"17.0":0.04021,"18.0":0.18095,"19.0":0.95503},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00141,"4.2-4.3":0.01266,"4.4":0,"4.4.3-4.4.4":0.07636},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00427,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.16519,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.88886},H:{"0":0.633},L:{"0":74.94114},R:{_:"0"},M:{"0":0.03146},Q:{"13.1":0.0236}}; 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 6d3dcc5584ad7c..e7c274774fb8b5 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.00312,"42":0,"43":0,"44":0.00312,"45":0,"46":0,"47":0,"48":0,"49":0.00312,"50":0,"51":0,"52":0.00312,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.03123,"67":0,"68":0,"69":0,"70":0,"71":0.00312,"72":0.00625,"73":0,"74":0,"75":0,"76":0,"77":0.00312,"78":0.00312,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00312,"85":0,"86":0,"87":0,"88":0.00312,"89":0,"90":0,"91":0.00312,"92":0,"93":0,"94":0.00312,"95":0.00312,"96":0.00312,"97":0.00312,"98":0,"99":0.00625,"100":0.00312,"101":0.00312,"102":0.01249,"103":0.01562,"104":0.00937,"105":0.01562,"106":0.01249,"107":0.03123,"108":0.69955,"109":0.41536,"110":0.01562,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00312,"32":0.00312,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00312,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00312,"50":0,"51":0,"52":0,"53":0.00625,"54":0,"55":0,"56":0,"57":0,"58":0.00312,"59":0,"60":0,"61":0.00312,"62":0.00625,"63":0.00312,"64":0,"65":0,"66":0,"67":0.00625,"68":0.00312,"69":0.00312,"70":0.00312,"71":0.01249,"72":0.00312,"73":0,"74":0.00937,"75":0.00312,"76":0.00625,"77":0,"78":0.00625,"79":0.01874,"80":0.00937,"81":0.00625,"83":0.00312,"84":0.00312,"85":0.00312,"86":0.00625,"87":0.00625,"88":0.00625,"89":0.00937,"90":0.00312,"91":0.00625,"92":0.03123,"93":0.00312,"94":0.00312,"95":0.00312,"96":0.00937,"97":0.00625,"98":0.00625,"99":0.00312,"100":0.01249,"101":0.00625,"102":0.00937,"103":0.02498,"104":0.01562,"105":0.02186,"106":0.01874,"107":0.1218,"108":2.65767,"109":2.39534,"110":0.00937,"111":0.01249,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00625,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00312,"64":0.00312,"65":0,"66":0.00625,"67":0.00312,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00625,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.04372,"94":0.14366,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00312,"13":0,"14":0,"15":0,"16":0,"17":0.00312,"18":0.01249,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00312,"87":0,"88":0,"89":0.00312,"90":0.00312,"91":0,"92":0.00937,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00312,"102":0,"103":0,"104":0.00312,"105":0.00312,"106":0.00312,"107":0.01249,"108":0.42785,"109":0.39038},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02498,"12":0,"13":0.00625,"14":0.00937,"15":0.00937,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00625,"13.1":0.02498,"14.1":0.04372,"15.1":0.04685,"15.2-15.3":0.00625,"15.4":0.02498,"15.5":0.05621,"15.6":0.28107,"16.0":0.02498,"16.1":0.10931,"16.2":0.1624,"16.3":0.01249},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00112,"5.0-5.1":0.00897,"6.0-6.1":0.00336,"7.0-7.1":0.00785,"8.1-8.4":0.01009,"9.0-9.2":0.00224,"9.3":0.08297,"10.0-10.2":0.02579,"10.3":0.14351,"11.0-11.2":0.01121,"11.3-11.4":0.01682,"12.0-12.1":0.00673,"12.2-12.5":0.50342,"13.0-13.1":0.00561,"13.2":0.00448,"13.3":0.01233,"13.4-13.7":0.07624,"14.0-14.4":0.1637,"14.5-14.8":0.33973,"15.0-15.1":0.15361,"15.2-15.3":0.15921,"15.4":0.16818,"15.5":0.44624,"15.6":1.05505,"16.0":1.41496,"16.1":2.59335,"16.2":2.1942,"16.3":0.26124},P:{"4":0.17703,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03124,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03124,"12.0":0.01041,"13.0":0.02083,"14.0":0.03124,"15.0":0.01041,"16.0":0.03124,"17.0":0.04165,"18.0":0.06248,"19.0":0.99972},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00361,"4.2-4.3":0.00903,"4.4":0,"4.4.3-4.4.4":0.48048},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02186,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.20631},Q:{"13.1":0.07565},O:{"0":2.23503},H:{"0":0.6055},L:{"0":69.12827},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00327,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00327,"48":0,"49":0.00327,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00327,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.02613,"67":0,"68":0.00327,"69":0,"70":0,"71":0,"72":0.00653,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00327,"79":0,"80":0,"81":0,"82":0,"83":0.00327,"84":0,"85":0,"86":0,"87":0,"88":0.00327,"89":0,"90":0,"91":0,"92":0.00327,"93":0.00327,"94":0.00327,"95":0.00327,"96":0,"97":0.00327,"98":0,"99":0.00327,"100":0.00327,"101":0.00327,"102":0.02613,"103":0.00653,"104":0.0098,"105":0.0098,"106":0.02286,"107":0.0196,"108":0.03593,"109":0.62381,"110":0.48663,"111":0.0196,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00327,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00327,"32":0.00327,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00327,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00327,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00327,"62":0.00653,"63":0.00327,"64":0,"65":0,"66":0,"67":0.0098,"68":0.00327,"69":0.00327,"70":0.00327,"71":0.0098,"72":0.00327,"73":0,"74":0.02286,"75":0,"76":0.00653,"77":0,"78":0.00653,"79":0.0098,"80":0.0098,"81":0.01633,"83":0.00653,"84":0.00327,"85":0.00327,"86":0.00327,"87":0.00653,"88":0.0098,"89":0.0098,"90":0.00327,"91":0.00327,"92":0.03919,"93":0.00327,"94":0.00327,"95":0.00327,"96":0.00653,"97":0.00653,"98":0.00327,"99":0.00653,"100":0.01633,"101":0.0098,"102":0.01306,"103":0.02613,"104":0.0098,"105":0.0196,"106":0.01633,"107":0.03266,"108":0.11431,"109":3.23661,"110":2.31233,"111":0.0098,"112":0.0098,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00653,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00327,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00327,"65":0,"66":0.00327,"67":0.02286,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00327,"74":0.00327,"75":0,"76":0,"77":0,"78":0,"79":0.00327,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00653,"94":0.08818,"95":0.07512,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00653,"13":0,"14":0.00327,"15":0,"16":0.00327,"17":0.00327,"18":0.01633,"79":0,"80":0,"81":0,"83":0,"84":0.00327,"85":0,"86":0,"87":0.00327,"88":0,"89":0.00327,"90":0.00327,"91":0,"92":0.01306,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0098,"101":0,"102":0,"103":0,"104":0,"105":0.00653,"106":0,"107":0.0098,"108":0.02286,"109":0.36906,"110":0.53889},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00653,"12":0,"13":0.00327,"14":0.01633,"15":0.00653,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00653,"13.1":0.03266,"14.1":0.03919,"15.1":0.03266,"15.2-15.3":0.00653,"15.4":0.01633,"15.5":0.04246,"15.6":0.16983,"16.0":0.02613,"16.1":0.08818,"16.2":0.17636,"16.3":0.11431,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00686,"6.0-6.1":0.00229,"7.0-7.1":0.01373,"8.1-8.4":0.01716,"9.0-9.2":0.00572,"9.3":0.10179,"10.0-10.2":0.00915,"10.3":0.11094,"11.0-11.2":0.00915,"11.3-11.4":0.00572,"12.0-12.1":0.00343,"12.2-12.5":0.51469,"13.0-13.1":0.00801,"13.2":0.00458,"13.3":0.0183,"13.4-13.7":0.11438,"14.0-14.4":0.20473,"14.5-14.8":0.34884,"15.0-15.1":0.14526,"15.2-15.3":0.13039,"15.4":0.14869,"15.5":0.43691,"15.6":0.74229,"16.0":1.22381,"16.1":1.9398,"16.2":2.0599,"16.3":1.83686,"16.4":0.00915},P:{"4":0.16678,"20":0.39611,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03127,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03127,"12.0":0,"13.0":0.02085,"14.0":0.03127,"15.0":0.01042,"16.0":0.02085,"17.0":0.0417,"18.0":0.07297,"19.0":0.6984},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00369,"4.2-4.3":0.02217,"4.4":0,"4.4.3-4.4.4":0.50434},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0042,"9":0,"10":0,"11":0.02519,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":2.45118},H:{"0":0.5164},L:{"0":71.89648},R:{_:"0"},M:{"0":0.20875},Q:{"13.1":0.0404}}; 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 26d59246eca293..628d9bec97ca25 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MN.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00803,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00401,"100":0,"101":0,"102":0.00803,"103":0.00401,"104":0.00803,"105":0.01204,"106":0.01605,"107":0.02007,"108":0.40531,"109":0.20868,"110":0.00401,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00401,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00401,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00401,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00401,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00401,"70":0.00401,"71":0.00401,"72":0.00401,"73":0.00401,"74":0.01605,"75":0,"76":0.00401,"77":0.00401,"78":0.00401,"79":0.01204,"80":0.00401,"81":0.00401,"83":0.00401,"84":0.00401,"85":0.01204,"86":0.00803,"87":0.01204,"88":0.00803,"89":0.00401,"90":0.00401,"91":0.00803,"92":0.02408,"93":0.00401,"94":0.01605,"95":0.00401,"96":0.0321,"97":0.01204,"98":0.00803,"99":0.00803,"100":0.02408,"101":0.00803,"102":0.02007,"103":0.0923,"104":0.02408,"105":0.12842,"106":0.03612,"107":0.14447,"108":5.72655,"109":4.63903,"110":0.00401,"111":0.00401,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00401,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00803,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.01204,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.20868,"94":0.309,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00401,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01204,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00401,"91":0,"92":0.00803,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00401,"100":0.00401,"101":0,"102":0.00401,"103":0.00401,"104":0,"105":0.00401,"106":0.01605,"107":0.04013,"108":0.92299,"109":0.74241},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00803,"14":0.04013,"15":0.01605,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00401,"13.1":0.02408,"14.1":0.07223,"15.1":0.02809,"15.2-15.3":0.01605,"15.4":0.02408,"15.5":0.05618,"15.6":0.20466,"16.0":0.04414,"16.1":0.12039,"16.2":0.1846,"16.3":0.00803},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00656,"7.0-7.1":0.00984,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0492,"10.0-10.2":0,"10.3":0.06888,"11.0-11.2":0.00656,"11.3-11.4":0.02624,"12.0-12.1":0.01312,"12.2-12.5":0.88554,"13.0-13.1":0.00984,"13.2":0,"13.3":0.06232,"13.4-13.7":0.26238,"14.0-14.4":0.56412,"14.5-14.8":1.16105,"15.0-15.1":0.49197,"15.2-15.3":0.48541,"15.4":0.72483,"15.5":1.23976,"15.6":2.68943,"16.0":7.35985,"16.1":8.50449,"16.2":5.26078,"16.3":0.40341},P:{"4":0.41647,"5.0-5.4":0.02032,"6.2-6.4":0.01016,"7.2-7.4":0.08126,"8.2":0.01016,"9.2":0.03047,"10.1":0,"11.1-11.2":0.04063,"12.0":0.01016,"13.0":0.07111,"14.0":0.04063,"15.0":0.05079,"16.0":0.21332,"17.0":0.15237,"18.0":0.193,"19.0":3.45367},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.002,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08214},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02007,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14369},Q:{"13.1":0},O:{"0":0.10178},H:{"0":0.15304},L:{"0":46.92431},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00403,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00403,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00403,"94":0,"95":0.00403,"96":0,"97":0,"98":0,"99":0.00807,"100":0,"101":0,"102":0.0121,"103":0.00403,"104":0.02017,"105":0.03226,"106":0.04033,"107":0.02017,"108":0.0605,"109":0.40733,"110":0.16939,"111":0.00403,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00403,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00403,"70":0.00403,"71":0.00403,"72":0,"73":0,"74":0.0121,"75":0.00403,"76":0,"77":0.00403,"78":0.00403,"79":0.0121,"80":0.0121,"81":0.00807,"83":0.00403,"84":0,"85":0.00807,"86":0.00807,"87":0.0121,"88":0.00807,"89":0.00403,"90":0.00403,"91":0.00403,"92":0.02823,"93":0.00403,"94":0.00403,"95":0.0121,"96":0.01613,"97":0.00807,"98":0.0121,"99":0.00807,"100":0.02823,"101":0.00807,"102":0.01613,"103":0.07259,"104":0.02017,"105":0.14519,"106":0.05646,"107":0.08469,"108":0.25005,"109":6.93273,"110":3.08121,"111":0.00403,"112":0.00403,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00403,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00403,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00403,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0242,"94":0.30248,"95":0.27424,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00403,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00403,"79":0,"80":0,"81":0,"83":0,"84":0.00403,"85":0,"86":0,"87":0,"88":0.00403,"89":0.00403,"90":0,"91":0,"92":0.0121,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00403,"100":0.00403,"101":0.00403,"102":0,"103":0,"104":0,"105":0.00807,"106":0.00403,"107":0.0363,"108":0.04436,"109":0.7824,"110":0.72594},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00403,"14":0.02823,"15":0.02017,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00403,"13.1":0.0363,"14.1":0.08066,"15.1":0.0242,"15.2-15.3":0.02823,"15.4":0.02017,"15.5":0.04436,"15.6":0.19762,"16.0":0.05646,"16.1":0.11292,"16.2":0.15325,"16.3":0.12502,"16.4":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.01397,"7.0-7.1":0.01048,"8.1-8.4":0,"9.0-9.2":0.00349,"9.3":0.05938,"10.0-10.2":0,"10.3":0.05938,"11.0-11.2":0.01397,"11.3-11.4":0.02096,"12.0-12.1":0.01048,"12.2-12.5":0.82785,"13.0-13.1":0.03842,"13.2":0.00349,"13.3":0.05589,"13.4-13.7":0.15719,"14.0-14.4":0.6532,"14.5-14.8":1.10729,"15.0-15.1":0.45759,"15.2-15.3":0.4506,"15.4":0.69162,"15.5":0.97456,"15.6":2.25301,"16.0":6.01851,"16.1":6.75554,"16.2":7.51353,"16.3":3.84933,"16.4":0.01048},P:{"4":0.25401,"20":1.00588,"5.0-5.4":0.02032,"6.2-6.4":0.01016,"7.2-7.4":0.13209,"8.2":0,"9.2":0.03048,"10.1":0,"11.1-11.2":0.03048,"12.0":0.01016,"13.0":0.08128,"14.0":0.0508,"15.0":0.06096,"16.0":0.13209,"17.0":0.13209,"18.0":0.12192,"19.0":2.33689},I:{"0":0,"3":0,"4":0.01296,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00778,"4.2-4.3":0.01037,"4.4":0,"4.4.3-4.4.4":0.07519},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00807,"9":0,"10":0.00403,"11":0.0242,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.17901},H:{"0":0.16383},L:{"0":45.75933},R:{_:"0"},M:{"0":0.17901},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js index 522be6229c49d7..0f6eeac50e18c1 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.0646,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00538,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.04306,"95":0,"96":0,"97":0.00538,"98":0.01615,"99":0.00538,"100":0.03768,"101":0,"102":0.0323,"103":0,"104":0.01615,"105":0.00538,"106":0.01077,"107":0.01615,"108":0.73747,"109":0.39296,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00538,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.06998,"35":0,"36":0,"37":0,"38":0.13996,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03768,"50":0,"51":0,"52":0,"53":0.00538,"54":0,"55":0.02692,"56":0,"57":0.00538,"58":0.01615,"59":0,"60":0,"61":0.08075,"62":0.02153,"63":0.00538,"64":0,"65":0.00538,"66":0.00538,"67":0.01077,"68":0.02153,"69":0.01077,"70":0.02153,"71":0.01077,"72":0,"73":0.01077,"74":0.01077,"75":0.00538,"76":0,"77":0.02153,"78":0.0323,"79":0.27453,"80":0.0323,"81":0.02692,"83":0.02153,"84":0.01615,"85":0,"86":0.11843,"87":0.09689,"88":0.01077,"89":0.05921,"90":0.00538,"91":0.01077,"92":0.16149,"93":0.00538,"94":0.01077,"95":0.01615,"96":0.02692,"97":0.12381,"98":0.07536,"99":0.0646,"100":0.08613,"101":0.03768,"102":0.04306,"103":0.18841,"104":0.0646,"105":0.21532,"106":0.10766,"107":0.3499,"108":7.96684,"109":6.15815,"110":0.00538,"111":0.00538,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01615,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0323,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0646,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01077,"71":0.00538,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00538,"93":0.02692,"94":0.09689,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00538,"17":0,"18":0.0323,"79":0,"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.00538,"105":0.00538,"106":0.00538,"107":0.02692,"108":1.31884,"109":1.09813},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.05921,"14":0.23685,"15":0.0323,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01615,"13.1":0.15611,"14.1":0.57598,"15.1":0.04306,"15.2-15.3":0.05921,"15.4":0.13996,"15.5":0.35528,"15.6":1.41035,"16.0":0.11304,"16.1":0.32298,"16.2":0.69979,"16.3":0.05921},G:{"8":0.00785,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00785,"6.0-6.1":0.11376,"7.0-7.1":0.07846,"8.1-8.4":0.14122,"9.0-9.2":0.08238,"9.3":0.50998,"10.0-10.2":0.03138,"10.3":0.6512,"11.0-11.2":0.14907,"11.3-11.4":0.051,"12.0-12.1":0.11376,"12.2-12.5":1.91438,"13.0-13.1":0.09023,"13.2":0.02354,"13.3":0.1373,"13.4-13.7":0.40406,"14.0-14.4":0.9415,"14.5-14.8":2.39298,"15.0-15.1":0.41191,"15.2-15.3":1.41225,"15.4":1.03565,"15.5":1.32594,"15.6":5.73922,"16.0":3.37763,"16.1":10.41533,"16.2":5.28024,"16.3":0.38445},P:{"4":1.14843,"5.0-5.4":0.0325,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.08667,"10.1":0,"11.1-11.2":0,"12.0":0.0325,"13.0":0.02167,"14.0":0.01083,"15.0":0.01083,"16.0":0.02167,"17.0":0.04334,"18.0":0.05417,"19.0":2.35102},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07077},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.43602,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.28625},Q:{"13.1":0.07387},O:{"0":0.61868},H:{"0":0.10053},L:{"0":29.21077},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00536,"34":0.07505,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00536,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00536,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.04289,"95":0,"96":0,"97":0.00536,"98":0,"99":0.00536,"100":0.02144,"101":0,"102":0.03217,"103":0,"104":0.00536,"105":0.00536,"106":0.01072,"107":0.00536,"108":0.03753,"109":0.54146,"110":0.32702,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00536,"23":0,"24":0,"25":0,"26":0.00536,"27":0,"28":0,"29":0,"30":0.00536,"31":0,"32":0,"33":0,"34":0.05897,"35":0,"36":0,"37":0,"38":0.13939,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03217,"50":0,"51":0,"52":0,"53":0.01072,"54":0,"55":0.02144,"56":0,"57":0.00536,"58":0.01608,"59":0,"60":0.00536,"61":0.06433,"62":0.01608,"63":0,"64":0,"65":0.01072,"66":0,"67":0.00536,"68":0.01072,"69":0.00536,"70":0.02144,"71":0.00536,"72":0.00536,"73":0.01072,"74":0.01072,"75":0.00536,"76":0.00536,"77":0.01072,"78":0.01608,"79":0.28949,"80":0.03217,"81":0.49321,"83":0.02144,"84":0.00536,"85":0.00536,"86":0.01072,"87":0.08042,"88":0.01072,"89":0.04289,"90":0.00536,"91":0.01072,"92":0.16619,"93":0.00536,"94":0.01072,"95":0.01072,"96":0.03753,"97":0.1233,"98":0.07505,"99":0.08578,"100":0.07505,"101":0.04289,"102":0.04289,"103":0.18764,"104":0.07505,"105":0.16619,"106":0.07505,"107":0.19836,"108":0.57899,"109":8.40605,"110":4.94284,"111":0.01072,"112":0.01072,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01608,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.03217,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.1233,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01072,"71":0.01072,"72":0,"73":0,"74":0.00536,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00536,"94":0.04825,"95":0.05897,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.04825,"15":0,"16":0,"17":0,"18":0.02681,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01072,"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.00536,"106":0,"107":0.01072,"108":0.07505,"109":1.13117,"110":1.28664},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00536,"13":0.03217,"14":0.25197,"15":0.03217,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00536,"12.1":0.02681,"13.1":0.11258,"14.1":0.55218,"15.1":0.05897,"15.2-15.3":0.04289,"15.4":0.13939,"15.5":0.27877,"15.6":0.95426,"16.0":0.0965,"16.1":0.20372,"16.2":0.9757,"16.3":0.49321,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00385,"6.0-6.1":0.12704,"7.0-7.1":0.05005,"8.1-8.4":0.08469,"9.0-9.2":0.05005,"9.3":0.40422,"10.0-10.2":0.0231,"10.3":0.48506,"11.0-11.2":0.11549,"11.3-11.4":0.08084,"12.0-12.1":0.10009,"12.2-12.5":1.85556,"13.0-13.1":0.13474,"13.2":0.0385,"13.3":0.08084,"13.4-13.7":0.41192,"14.0-14.4":0.75069,"14.5-14.8":2.22513,"15.0-15.1":0.42732,"15.2-15.3":1.10102,"15.4":0.96243,"15.5":1.15106,"15.6":4.42332,"16.0":2.59856,"16.1":7.93811,"16.2":6.98338,"16.3":3.93056,"16.4":0.0077},P:{"4":1.0829,"20":0.95295,"5.0-5.4":0.02166,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.05414,"10.1":0,"11.1-11.2":0,"12.0":0.01083,"13.0":0.03249,"14.0":0,"15.0":0.01083,"16.0":0.03249,"17.0":0.03249,"18.0":0.03249,"19.0":1.33197},I:{"0":0,"3":0,"4":0.00479,"2.1":0,"2.2":0.00479,"2.3":0.00479,"4.1":0.00958,"4.2-4.3":0.01438,"4.4":0,"4.4.3-4.4.4":0.11022},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03753,"9":0,"10":0,"11":0.30022,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.68657},H:{"0":0.12297},L:{"0":30.37382},R:{_:"0"},M:{"0":0.26906},Q:{"13.1":0.08814}}; 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 c5fa53e2f4e400..270786c5ae056c 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,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0064,"89":0,"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.18554,"104":0,"105":0,"106":0.0064,"107":0,"108":1.01088,"109":0.24952,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.05758,"64":0,"65":0.0064,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.39028,"80":0.0064,"81":0,"83":0.03839,"84":0,"85":0.0064,"86":0,"87":0.03839,"88":0,"89":0.0064,"90":0,"91":0.43506,"92":0,"93":0.06398,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.02559,"101":0,"102":0.0128,"103":0.14715,"104":0.0128,"105":0.01919,"106":0.09597,"107":0.23673,"108":12.84718,"109":8.81005,"110":0.0128,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0128,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01919,"93":0.3263,"94":1.36917,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.01919,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0064,"107":0.05758,"108":3.74283,"109":3.30137},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.627,"14":0.43506,"15":0.02559,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0064,"13.1":0.02559,"14.1":1.49713,"15.1":0.0128,"15.2-15.3":0.03839,"15.4":0.08957,"15.5":0.08957,"15.6":0.67819,"16.0":0.06398,"16.1":0.24312,"16.2":0.46066,"16.3":0.0128},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06817,"10.0-10.2":0,"10.3":0.23435,"11.0-11.2":0.10439,"11.3-11.4":0.01704,"12.0-12.1":0.03835,"12.2-12.5":1.56163,"13.0-13.1":0.05752,"13.2":0,"13.3":0.10865,"13.4-13.7":0.09161,"14.0-14.4":1.34432,"14.5-14.8":0.20666,"15.0-15.1":0.83301,"15.2-15.3":0.03622,"15.4":0.21305,"15.5":0.82023,"15.6":3.53657,"16.0":2.78452,"16.1":5.39008,"16.2":2.85269,"16.3":0.27909},P:{"4":0.35678,"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.01049,"12.0":0,"13.0":0,"14.0":0.01049,"15.0":0,"16.0":0.01049,"17.0":0.06296,"18.0":0.07345,"19.0":4.55415},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.86952},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01919,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.34939},Q:{"13.1":0},O:{"0":0.02161},H:{"0":0.1671},L:{"0":31.43728},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01338,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.60192,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.72899,"110":0.25414,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00669,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.02006,"62":0,"63":0,"64":0,"65":0.02006,"66":0,"67":0,"68":0,"69":0.04013,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.04013,"77":0,"78":0,"79":0.04013,"80":0,"81":0,"83":0.01338,"84":0,"85":0,"86":0,"87":0.06688,"88":0.00669,"89":0,"90":0.00669,"91":0.06688,"92":0.00669,"93":0.02006,"94":0,"95":0,"96":0,"97":0.02006,"98":0,"99":0.00669,"100":0,"101":0,"102":0,"103":0.18726,"104":0.02006,"105":0.04013,"106":0.00669,"107":0.02006,"108":1.10352,"109":11.18234,"110":6.93546,"111":0.00669,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0535,"94":0.62867,"95":0.38122,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.02675,"93":0,"94":0,"95":0,"96":0,"97":0.00669,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00669,"106":0,"107":0.02006,"108":0.0535,"109":3.02966,"110":5.45741},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.2207,"14":0.29427,"15":0.01338,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00669,"13.1":0.04013,"14.1":9.28294,"15.1":0.00669,"15.2-15.3":0.02006,"15.4":0.10701,"15.5":0.12707,"15.6":0.34778,"16.0":0.0535,"16.1":0.06688,"16.2":1.27741,"16.3":0.21402,"16.4":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.00308,"10.0-10.2":0.00615,"10.3":0.24462,"11.0-11.2":0.08154,"11.3-11.4":0.01385,"12.0-12.1":0.02923,"12.2-12.5":0.55539,"13.0-13.1":0.02462,"13.2":0,"13.3":0.05231,"13.4-13.7":0.02,"14.0-14.4":0.86309,"14.5-14.8":0.35385,"15.0-15.1":0.44308,"15.2-15.3":0.10923,"15.4":0.23693,"15.5":0.25539,"15.6":1.2231,"16.0":1.72618,"16.1":3.55699,"16.2":3.57852,"16.3":1.40464,"16.4":0.00615},P:{"4":0,"20":2.86455,"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.0924,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01027,"18.0":0.0308,"19.0":3.05963},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.35032},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00669,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.00662},H:{"0":0.08466},L:{"0":30.07371},R:{_:"0"},M:{"0":0.96048},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MQ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MQ.js index 9d07012d6a560d..902b62bea2a014 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.00444,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00444,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00887,"78":0.01775,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00444,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00887,"99":0.00444,"100":0.00444,"101":0.00444,"102":0.02662,"103":0.00444,"104":0.00444,"105":0.00444,"106":0.00444,"107":0.01775,"108":1.30004,"109":0.7676,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"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.00887,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00887,"66":0,"67":0,"68":0.00444,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00444,"75":0,"76":0,"77":0.00887,"78":0,"79":0.00444,"80":0.01331,"81":0.00444,"83":0,"84":0,"85":0,"86":0,"87":0.00887,"88":0,"89":0.00444,"90":0,"91":0,"92":0.00887,"93":0.00444,"94":0,"95":0.15086,"96":0.01775,"97":0,"98":0,"99":0.00444,"100":0,"101":0.00444,"102":0.00444,"103":0.0355,"104":0.00444,"105":0.0355,"106":0.02219,"107":0.11093,"108":5.00937,"109":4.84077,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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,"73":0.00887,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00444,"90":0,"91":0,"92":0,"93":0.28397,"94":0.42595,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.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.00444,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00444,"93":0,"94":0,"95":0,"96":0.00444,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02219,"103":0,"104":0.01331,"105":0.00887,"106":0.00444,"107":0.04881,"108":1.24236,"109":1.4154},E:{"4":0.00444,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00444,"13":0.00444,"14":0.06656,"15":0.00887,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02662,"12.1":0.02219,"13.1":0.09318,"14.1":0.16417,"15.1":0.02662,"15.2-15.3":0.06656,"15.4":0.30615,"15.5":0.18635,"15.6":0.5635,"16.0":0.0843,"16.1":0.30172,"16.2":0.70548,"16.3":0.11536},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01442,"9.0-9.2":0,"9.3":0.06054,"10.0-10.2":0,"10.3":0.08649,"11.0-11.2":0.00577,"11.3-11.4":0.00288,"12.0-12.1":0,"12.2-12.5":0.3229,"13.0-13.1":0.00288,"13.2":0,"13.3":0.01442,"13.4-13.7":0.03748,"14.0-14.4":0.4757,"14.5-14.8":0.64869,"15.0-15.1":0.19316,"15.2-15.3":0.2883,"15.4":0.38921,"15.5":1.07826,"15.6":3.57498,"16.0":5.41148,"16.1":7.90243,"16.2":6.3946,"16.3":0.82743},P:{"4":0.05168,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02067,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04134,"12.0":0.01034,"13.0":0.04134,"14.0":0.14471,"15.0":0.02067,"16.0":0.17571,"17.0":0.04134,"18.0":0.21706,"19.0":4.33083},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.10543},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.04733,"9":0,"10":0,"11":0.09466,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.35603},Q:{"13.1":0},O:{"0":0.01113},H:{"0":0.1106},L:{"0":45.0677},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00823,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00823,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00412,"101":0,"102":0.0247,"103":0.00412,"104":0.00412,"105":0.00412,"106":0.00412,"107":0.00412,"108":0.03294,"109":1.2104,"110":0.63814,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00412,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00412,"75":0,"76":0,"77":0.00823,"78":0,"79":0.00412,"80":0.00412,"81":0,"83":0.00412,"84":0,"85":0,"86":0,"87":0.01235,"88":0,"89":0.00412,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03705,"96":0,"97":0,"98":0,"99":0.00412,"100":0.00823,"101":0,"102":0.00823,"103":0.0247,"104":0.00412,"105":0.03294,"106":0.01235,"107":0.04117,"108":0.1935,"109":4.63574,"110":2.99718,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00823,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00412,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00412,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00412,"90":0,"91":0,"92":0,"93":0.05764,"94":0.40347,"95":0.1935,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00412,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00412,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01235,"103":0,"104":0.0247,"105":0.00412,"106":0.00412,"107":0.02882,"108":0.03294,"109":1.09101,"110":1.42037},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00823,"14":0.03705,"15":0.0247,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.03294,"12.1":0.00823,"13.1":0.07822,"14.1":0.11116,"15.1":0.02882,"15.2-15.3":0.09881,"15.4":0.28407,"15.5":0.12351,"15.6":0.54344,"16.0":0.04117,"16.1":0.12763,"16.2":0.63402,"16.3":0.53933,"16.4":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.04066,"10.0-10.2":0,"10.3":0.05808,"11.0-11.2":0,"11.3-11.4":0.37172,"12.0-12.1":0.0029,"12.2-12.5":0.27879,"13.0-13.1":0,"13.2":0.0029,"13.3":0.04646,"13.4-13.7":0.02614,"14.0-14.4":0.32816,"14.5-14.8":0.44432,"15.0-15.1":0.212,"15.2-15.3":0.20909,"15.4":0.46755,"15.5":0.92929,"15.6":2.47134,"16.0":4.66099,"16.1":5.43928,"16.2":6.56895,"16.3":5.28536,"16.4":0.02614},P:{"4":0.02084,"20":1.28152,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03126,"8.2":0,"9.2":0.01042,"10.1":0,"11.1-11.2":0.04168,"12.0":0.01042,"13.0":0,"14.0":0.36466,"15.0":0.02084,"16.0":0.15628,"17.0":0.03126,"18.0":0.13544,"19.0":2.85476},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13293},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01235,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01765},H:{"0":0.06684},L:{"0":48.25572},R:{_:"0"},M:{"0":0.25297},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MR.js index b0330a21a2f627..bf2659f765b9c0 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.0012,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0012,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0012,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.006,"100":0.01079,"101":0.0012,"102":0,"103":0,"104":0,"105":0,"106":0.0012,"107":0.0048,"108":0.06595,"109":0.04796,"110":0.0012,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.0012,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.0012,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.02518,"41":0,"42":0,"43":0.0012,"44":0,"45":0,"46":0.0024,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0036,"69":0.0012,"70":0.0012,"71":0,"72":0.0036,"73":0,"74":0.0012,"75":0,"76":0.0024,"77":0.0024,"78":0,"79":0,"80":0.0012,"81":0.0024,"83":0.0048,"84":0,"85":0,"86":0,"87":0.0012,"88":0.0024,"89":0,"90":0.0036,"91":0.0012,"92":0.0012,"93":0.0012,"94":0,"95":0.0036,"96":0.0012,"97":0,"98":0.0012,"99":0,"100":0.0012,"101":0,"102":0.0012,"103":0.0024,"104":0.0012,"105":0.0024,"106":0.0024,"107":0.01079,"108":0.3609,"109":0.32733,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0012,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0012,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0012,"57":0,"58":0,"60":0.006,"62":0,"63":0.01559,"64":0.0024,"65":0.0024,"66":0.00839,"67":0.0012,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0012,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.01439,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0024,"94":0.04197,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.0024,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0012},B:{"12":0,"13":0.0012,"14":0,"15":0,"16":0.0012,"17":0,"18":0.0024,"79":0,"80":0,"81":0,"83":0,"84":0.0012,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00719,"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.0012,"106":0,"107":0.0036,"108":0.05875,"109":0.05156},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0012,"14":0.0036,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01559,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0024,"13.1":0.0048,"14.1":0.01559,"15.1":0.0012,"15.2-15.3":0,"15.4":0.00839,"15.5":0.0012,"15.6":0.0048,"16.0":0.0012,"16.1":0.0048,"16.2":0.006,"16.3":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.00942,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00314,"10.0-10.2":0,"10.3":0.02199,"11.0-11.2":0.02827,"11.3-11.4":0,"12.0-12.1":0.04711,"12.2-12.5":4.28117,"13.0-13.1":0.0691,"13.2":0.05654,"13.3":0.27327,"13.4-13.7":1.4637,"14.0-14.4":11.74731,"14.5-14.8":1.14332,"15.0-15.1":0.45858,"15.2-15.3":0.58737,"15.4":0.5057,"15.5":1.00512,"15.6":1.1496,"16.0":2.12331,"16.1":2.41542,"16.2":2.64786,"16.3":0.20731},P:{"4":0.22118,"5.0-5.4":0.05027,"6.2-6.4":0.08043,"7.2-7.4":2.43296,"8.2":0,"9.2":0.10054,"10.1":0.03016,"11.1-11.2":0.33177,"12.0":0.03016,"13.0":0.16086,"14.0":0.36193,"15.0":0.1508,"16.0":0.8646,"17.0":0.58311,"18.0":0.61327,"19.0":1.97049},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0021,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07349},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00305,"9":0.00153,"10":0.00153,"11":0.01068,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13202},Q:{"13.1":0},O:{"0":0.25523},H:{"0":1.0332},L:{"0":57.78866},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00158,"53":0,"54":0,"55":0,"56":0.00158,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00158,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00634,"85":0,"86":0,"87":0,"88":0.00158,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01742,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00158,"108":0.00792,"109":0.11088,"110":0.10771,"111":0.00158,"112":0.00634,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00158,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00158,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00158,"30":0,"31":0,"32":0,"33":0.00158,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.04752,"41":0,"42":0,"43":0.00317,"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,"59":0,"60":0,"61":0,"62":0,"63":0.00158,"64":0,"65":0.00317,"66":0,"67":0,"68":0.01901,"69":0,"70":0.00158,"71":0,"72":0.00475,"73":0,"74":0.00158,"75":0,"76":0,"77":0.00475,"78":0,"79":0,"80":0,"81":0.00158,"83":0.00317,"84":0,"85":0,"86":0,"87":0.00158,"88":0,"89":0,"90":0.00158,"91":0.00158,"92":0.00158,"93":0,"94":0,"95":0.00158,"96":0,"97":0,"98":0.00158,"99":0.00158,"100":0.00158,"101":0,"102":0.00158,"103":0.00317,"104":0.00317,"105":0.00158,"106":0.00158,"107":0.02534,"108":0.04435,"109":0.73498,"110":0.35798,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00158,"57":0,"58":0,"60":0.00792,"62":0,"63":0.01267,"64":0.00317,"65":0,"66":0.00634,"67":0.01584,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00158,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.02534,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.04435,"95":0.05702,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00158,"10.6":0.00475,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00158},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00158,"79":0,"80":0,"81":0,"83":0,"84":0.00158,"85":0,"86":0,"87":0,"88":0,"89":0.00158,"90":0,"91":0,"92":0.00317,"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.00158,"106":0,"107":0.00158,"108":0.01426,"109":0.0887,"110":0.1188},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00158,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.02851,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00158,"13.1":0.00634,"14.1":0.00634,"15.1":0,"15.2-15.3":0.00792,"15.4":0.01267,"15.5":0.00158,"15.6":0.01109,"16.0":0.00158,"16.1":0.00475,"16.2":0.01109,"16.3":0.00475,"16.4":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.01306,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00653,"10.0-10.2":0,"10.3":0.03592,"11.0-11.2":0.01633,"11.3-11.4":0,"12.0-12.1":0.02286,"12.2-12.5":3.23944,"13.0-13.1":0.00653,"13.2":0.0947,"13.3":0.44412,"13.4-13.7":2.46877,"14.0-14.4":11.81156,"14.5-14.8":0.83925,"15.0-15.1":0.43105,"15.2-15.3":0.27431,"15.4":0.28737,"15.5":0.77394,"15.6":0.75761,"16.0":1.8777,"16.1":2.33162,"16.2":3.0631,"16.3":2.25324,"16.4":0.0098},P:{"4":0.33712,"20":0.18963,"5.0-5.4":0.0316,"6.2-6.4":0.06321,"7.2-7.4":0.73744,"8.2":0,"9.2":0.0316,"10.1":0.02107,"11.1-11.2":0.13695,"12.0":0.01053,"13.0":0.05267,"14.0":0.10535,"15.0":0.10535,"16.0":0.43193,"17.0":0.60049,"18.0":0.30551,"19.0":1.31686},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00094,"4.4":0,"4.4.3-4.4.4":0.06024},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00543,"9":0.00181,"10":0,"11":0.03077,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.29456},H:{"0":0.87645},L:{"0":59.90306},R:{_:"0"},M:{"0":0.15149},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MS.js index bb62179c1b36bc..a2d85e5d779885 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.01849,"103":0,"104":0,"105":0,"106":0.00616,"107":0,"108":0.17254,"109":0.11708,"110":0.00616,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01849,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00616,"83":0,"84":0,"85":0,"86":0.0493,"87":0,"88":0,"89":0.05546,"90":0,"91":0,"92":0,"93":0.00616,"94":0,"95":0.16021,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.08011,"104":0,"105":0,"106":0.02465,"107":0.09859,"108":10.75885,"109":13.58721,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00616,"90":0,"91":0,"92":0,"93":0.20951,"94":0.11092,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01849,"79":0,"80":0,"81":0,"83":0.02465,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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":1.54666,"109":2.74825},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.02465,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01849,"11.1":0,"12.1":0,"13.1":0,"14.1":0.26497,"15.1":0,"15.2-15.3":0,"15.4":0.00616,"15.5":0.27113,"15.6":0.57307,"16.0":0.57307,"16.1":0.06162,"16.2":0.59155,"16.3":0.05546},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.03517,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.07035,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":7.58385,"14.0-14.4":0.01623,"14.5-14.8":1.46103,"15.0-15.1":0.05141,"15.2-15.3":0.08658,"15.4":0,"15.5":0.15693,"15.6":0.71158,"16.0":4.75648,"16.1":5.03245,"16.2":6.36903,"16.3":0.01623},P:{"4":0.30131,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04464,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01116,"14.0":0,"15.0":0,"16.0":0.01116,"17.0":0.01116,"18.0":0.1116,"19.0":1.68512},I:{"0":0,"3":0,"4":0,"2.1":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.29226},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01849,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.01535},Q:{"13.1":0},O:{"0":0},H:{"0":0.13444},L:{"0":35.26997},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01202,"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.04807,"110":0.51077,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.01803,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01202,"91":0,"92":0,"93":0,"94":0.01202,"95":0.01202,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01202,"103":0.10215,"104":0,"105":0,"106":0.01803,"107":0.03605,"108":0.72709,"109":11.60338,"110":10.49772,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.1322,"95":0.08413,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.04807,"79":0,"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.04807,"107":0.01803,"108":0.07211,"109":1.11167,"110":2.75813},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.24036,"15":0.03605,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.07211,"11.1":0,"12.1":0,"13.1":0.01803,"14.1":0.10215,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":1.15373,"15.6":0.61292,"16.0":0.03605,"16.1":0.04807,"16.2":0.15623,"16.3":0.80521,"16.4":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.01978,"10.0-10.2":0,"10.3":0.03956,"11.0-11.2":0,"11.3-11.4":0.01978,"12.0-12.1":0,"12.2-12.5":0.01978,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":9.28217,"14.0-14.4":0,"14.5-14.8":0.01978,"15.0-15.1":0,"15.2-15.3":0.22006,"15.4":0,"15.5":0,"15.6":1.08053,"16.0":1.28081,"16.1":1.8594,"16.2":2.66053,"16.3":6.44114,"16.4":0},P:{"4":0.8809,"20":0.34567,"5.0-5.4":0.0223,"6.2-6.4":0,"7.2-7.4":0.12266,"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.0223,"17.0":0.03345,"18.0":0,"19.0":2.63156},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.71857},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01596},H:{"0":0},L:{"0":37.64293},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MT.js index 0bcb2fc8ecf720..8d62af50c173e9 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.0053,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0159,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0106,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.0106,"103":0,"104":0,"105":0,"106":0,"107":0.0106,"108":0.50341,"109":0.27025,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0106,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0053,"66":0,"67":0,"68":0,"69":0,"70":0.0053,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0053,"77":0.0106,"78":0,"79":0.0106,"80":0.0159,"81":0.0053,"83":0.0053,"84":0.0053,"85":0.0106,"86":0.0159,"87":0.03709,"88":0.0053,"89":0.0053,"90":0,"91":0,"92":0.03179,"93":0.14837,"94":0.0106,"95":0.0053,"96":0.0053,"97":0.0053,"98":0.0106,"99":0.11128,"100":0.0265,"101":0.0053,"102":0.0053,"103":0.09538,"104":0.0159,"105":0.21196,"106":0.06889,"107":0.28085,"108":9.30504,"109":9.62828,"110":0,"111":0.0053,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0053,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0106,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0053,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.43452,"94":0.40272,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0053,"15":0,"16":0,"17":0,"18":0.0053,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0106,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.0106,"105":0,"106":0.0053,"107":0.05299,"108":1.65329,"109":1.71158},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0053,"14":0.07419,"15":0.0159,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0159,"13.1":0.05299,"14.1":0.13777,"15.1":0.0212,"15.2-15.3":0.0265,"15.4":0.05829,"15.5":0.09008,"15.6":0.5299,"16.0":0.07949,"16.1":0.28615,"16.2":0.46631,"16.3":0.0265},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00503,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02765,"10.0-10.2":0.00503,"10.3":0.39722,"11.0-11.2":0,"11.3-11.4":0.00754,"12.0-12.1":0.0352,"12.2-12.5":0.35197,"13.0-13.1":0.00251,"13.2":0.00503,"13.3":0.01006,"13.4-13.7":0.03017,"14.0-14.4":0.28912,"14.5-14.8":0.55812,"15.0-15.1":0.10308,"15.2-15.3":0.1785,"15.4":0.29414,"15.5":0.64611,"15.6":2.63975,"16.0":4.28143,"16.1":8.38688,"16.2":5.42784,"16.3":0.4651},P:{"4":0.05145,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02058,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01029,"12.0":0.01029,"13.0":0.01029,"14.0":0.01029,"15.0":0.05145,"16.0":0.02058,"17.0":0.02058,"18.0":0.07204,"19.0":2.55215},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.19889},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06889,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.16924},Q:{"13.1":0},O:{"0":0.07052},H:{"0":0.20028},L:{"0":42.91639},S:{"2.5":0}}; +module.exports={C:{"52":0.04106,"78":0.01026,"102":0.02053,"107":0.01026,"108":0.0154,"109":1.10338,"110":0.57478,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 111 112 3.5 3.6"},D:{"44":0.00513,"49":0.02053,"65":0.02053,"70":0.00513,"72":0.00513,"76":0.00513,"77":0.02566,"79":0.02566,"80":0.02053,"81":0.00513,"83":0.02053,"85":0.02566,"86":0.02566,"87":0.04619,"89":0.00513,"92":0.0154,"93":0.29252,"95":0.01026,"98":0.02053,"99":0.25147,"100":0.03592,"101":0.02566,"102":0.01026,"103":0.13343,"104":0.02053,"105":0.4003,"106":0.11804,"107":0.22068,"108":1.01614,"109":21.9239,"110":12.08586,"111":0.02053,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 73 74 75 78 84 88 90 91 94 96 97 112 113"},F:{"28":0.02053,"46":0.01026,"93":0.1129,"94":0.89297,"95":0.32845,_:"9 11 12 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"92":0.01026,"104":0.01026,"107":0.02566,"108":0.06672,"109":2.83286,"110":3.16131,_:"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 105 106"},E:{"4":0,"13":0.01026,"14":0.21554,"15":0.02566,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.4","11.1":0.00513,"12.1":0.01026,"13.1":0.10777,"14.1":0.27713,"15.1":0.06672,"15.2-15.3":0.02566,"15.4":0.06672,"15.5":0.22068,"15.6":0.73388,"16.0":0.10264,"16.1":0.40543,"16.2":0.69282,"16.3":0.59531},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00315,"6.0-6.1":0.00315,"7.0-7.1":0.0063,"8.1-8.4":0.00315,"9.0-9.2":0,"9.3":0.0252,"10.0-10.2":0,"10.3":0.27877,"11.0-11.2":0.0063,"11.3-11.4":0.01102,"12.0-12.1":0.02047,"12.2-12.5":0.1512,"13.0-13.1":0.00157,"13.2":0,"13.3":0.00787,"13.4-13.7":0.0189,"14.0-14.4":0.1953,"14.5-14.8":0.38272,"15.0-15.1":0.05827,"15.2-15.3":0.12285,"15.4":0.19057,"15.5":0.34335,"15.6":1.19226,"16.0":2.08371,"16.1":3.84297,"16.2":4.09969,"16.3":2.05851,"16.4":0.00787},P:{"4":0.05278,"20":0.93952,"5.0-5.4":0.01042,"6.2-6.4":0.01025,"7.2-7.4":0.03167,"8.2":0.02044,"9.2":0.01042,"10.1":0.0217,"11.1-11.2":0.01056,"12.0":0.02048,"13.0":0.02111,"14.0":0.06252,"15.0":0.05278,"16.0":0.01056,"17.0":0.02111,"18.0":0.03167,"19.0":1.64681},I:{"0":0,"3":0,"4":0.00365,"2.1":0,"2.2":0,"2.3":0.00365,"4.1":0.00365,"4.2-4.3":0.0073,"4.4":0,"4.4.3-4.4.4":0.09858},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03079,"9":0.00513,"11":0.28739,_:"6 7 10 5.5"},N:{"10":0.02102,"11":0.02035},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.10223},H:{"0":0.212},L:{"0":30.63275},R:{_:"0"},M:{"0":0.18012},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MU.js index a5e271c98802ce..d5973686bcae97 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.00326,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00652,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00326,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00326,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00326,"89":0,"90":0,"91":0,"92":0.00652,"93":0,"94":0,"95":0.00326,"96":0,"97":0,"98":0.00978,"99":0.00978,"100":0,"101":0,"102":0.0163,"103":0,"104":0.00326,"105":0,"106":0,"107":0.00978,"108":0.41063,"109":0.2542,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00652,"35":0,"36":0,"37":0,"38":0.00652,"39":0,"40":0.00978,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00652,"50":0.00326,"51":0,"52":0,"53":0.00326,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00326,"68":0.00652,"69":0,"70":0,"71":0,"72":0,"73":0.00326,"74":0.00326,"75":0,"76":0,"77":0,"78":0.00652,"79":0.06192,"80":0.00652,"81":0.03259,"83":0.00652,"84":0,"85":0.00326,"86":0.00652,"87":0.02281,"88":0.00978,"89":0,"90":0.00326,"91":0.02607,"92":0.02933,"93":0.00326,"94":0,"95":0.00326,"96":0.00978,"97":0.01955,"98":0.00978,"99":0.02933,"100":0.01304,"101":0.00978,"102":0.00652,"103":0.03911,"104":0.0163,"105":0.0163,"106":0.03259,"107":0.08148,"108":3.47735,"109":3.33722,"110":0.00326,"111":0.00326,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0163,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00326,"62":0,"63":0.00326,"64":0,"65":0,"66":0.0163,"67":0.00652,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00652,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.09125,"94":0.17925,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00326,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00326,"93":0,"94":0,"95":0,"96":0.00326,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00326,"106":0.00326,"107":0.03259,"108":0.43345,"109":0.49537},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00326,"13":0.00326,"14":0.01304,"15":0.00326,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00652,"13.1":0.0163,"14.1":0.06192,"15.1":0.00652,"15.2-15.3":0.01955,"15.4":0.00978,"15.5":0.04889,"15.6":0.17925,"16.0":0.02933,"16.1":0.11732,"16.2":0.13688,"16.3":0.01955},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01101,"6.0-6.1":0,"7.0-7.1":0.02325,"8.1-8.4":0,"9.0-9.2":0.00245,"9.3":0.13706,"10.0-10.2":0.00122,"10.3":0.05629,"11.0-11.2":0.00612,"11.3-11.4":0.00489,"12.0-12.1":0.00979,"12.2-12.5":0.38302,"13.0-13.1":0.00367,"13.2":0.00245,"13.3":0.00857,"13.4-13.7":0.0722,"14.0-14.4":0.16031,"14.5-14.8":0.27778,"15.0-15.1":0.06486,"15.2-15.3":0.13706,"15.4":0.10402,"15.5":0.39648,"15.6":1.08298,"16.0":1.59571,"16.1":4.0725,"16.2":2.62118,"16.3":0.24964},P:{"4":0.31719,"5.0-5.4":0.01023,"6.2-6.4":0,"7.2-7.4":0.20464,"8.2":0,"9.2":0.02046,"10.1":0.01023,"11.1-11.2":0.07162,"12.0":0.01023,"13.0":0.06139,"14.0":0.08186,"15.0":0.0307,"16.0":0.29673,"17.0":0.15348,"18.0":0.17395,"19.0":5.11603},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00454,"4.2-4.3":0.00756,"4.4":0,"4.4.3-4.4.4":0.06049},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0038,"9":0,"10":0,"11":0.01901,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.37076},Q:{"13.1":0},O:{"0":0.59995},H:{"0":0.48503},L:{"0":67.51509},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00327,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00653,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00327,"79":0,"80":0,"81":0,"82":0.00327,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.02614,"93":0,"94":0.00327,"95":0,"96":0,"97":0,"98":0.00327,"99":0,"100":0,"101":0,"102":0.01307,"103":0,"104":0.00327,"105":0,"106":0,"107":0.00653,"108":0.06207,"109":0.3365,"110":0.23522,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00653,"35":0,"36":0,"37":0,"38":0.00653,"39":0,"40":0.00327,"41":0,"42":0,"43":0.00327,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00327,"50":0.00327,"51":0,"52":0,"53":0.00327,"54":0,"55":0.00327,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00327,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00327,"79":0.05881,"80":0.00653,"81":0.0392,"83":0.0098,"84":0,"85":0,"86":0.00327,"87":0.01634,"88":0.0098,"89":0,"90":0,"91":0.0196,"92":0.04247,"93":0.00327,"94":0.00327,"95":0.00327,"96":0.00327,"97":0.02287,"98":0.00327,"99":0.02287,"100":0.0392,"101":0.0098,"102":0.01307,"103":0.0294,"104":0.01307,"105":0.0098,"106":0.0196,"107":0.02287,"108":0.17642,"109":4.04455,"110":2.6136,"111":0.00327,"112":0.00327,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01634,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00327,"64":0,"65":0,"66":0.01634,"67":0.05227,"68":0,"69":0,"70":0,"71":0.00327,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00327,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0098,"94":0.12741,"95":0.10128,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00327,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00653,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00327,"104":0,"105":0.00327,"106":0.00327,"107":0.02287,"108":0.01307,"109":0.42471,"110":0.6142},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00327,"13":0.00327,"14":0.01634,"15":0.00327,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00653,"13.1":0.01634,"14.1":0.04574,"15.1":0.00327,"15.2-15.3":0.01307,"15.4":0.01307,"15.5":0.03267,"15.6":0.11108,"16.0":0.01634,"16.1":0.07514,"16.2":0.12415,"16.3":0.14048,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00239,"4.2-4.3":0,"5.0-5.1":0.01077,"6.0-6.1":0,"7.0-7.1":0.03111,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08376,"10.0-10.2":0.00359,"10.3":0.06103,"11.0-11.2":0.00359,"11.3-11.4":0.0012,"12.0-12.1":0.01077,"12.2-12.5":0.40325,"13.0-13.1":0.0012,"13.2":0.00359,"13.3":0.00957,"13.4-13.7":0.0359,"14.0-14.4":0.09453,"14.5-14.8":0.33026,"15.0-15.1":0.06462,"15.2-15.3":0.17829,"15.4":0.11966,"15.5":0.21658,"15.6":0.86513,"16.0":1.1906,"16.1":2.43145,"16.2":2.71145,"16.3":2.29265,"16.4":0.01316},P:{"4":0.23468,"20":1.96926,"5.0-5.4":0.0102,"6.2-6.4":0,"7.2-7.4":0.21427,"8.2":0,"9.2":0.0102,"10.1":0.0102,"11.1-11.2":0.06122,"12.0":0.03061,"13.0":0.06122,"14.0":0.06122,"15.0":0.02041,"16.0":0.2959,"17.0":0.12244,"18.0":0.14285,"19.0":3.36712},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00359,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07889},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01307,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.53864},H:{"0":0.55457},L:{"0":67.88912},R:{_:"0"},M:{"0":0.39051},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js index 0555ec5cb74571..51afd883ef79e9 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.00814,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00814,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00271,"79":0,"80":0.00271,"81":0,"82":0.00543,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00271,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00271,"99":0.00271,"100":0,"101":0,"102":0.00543,"103":0,"104":0.00271,"105":0,"106":0,"107":0.00271,"108":0.16013,"109":0.18727,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00271,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00271,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00271,"65":0.00814,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00271,"74":0.00271,"75":0.00271,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.01357,"83":0.00814,"84":0,"85":0,"86":0,"87":0.019,"88":0,"89":0.00271,"90":0.00271,"91":0.00271,"92":0.00271,"93":0.00271,"94":0,"95":0.00271,"96":0,"97":0.00271,"98":0.00271,"99":0.00814,"100":0.00271,"101":0.00543,"102":0.00271,"103":0.02171,"104":0.01086,"105":0.00543,"106":0.019,"107":0.038,"108":2.71671,"109":2.39103,"110":0.00271,"111":0.00271,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00271,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00271,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01086,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.10313,"94":0.10585,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00271,"17":0,"18":0.00271,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00271,"93":0,"94":0,"95":0,"96":0,"97":0.00543,"98":0,"99":0,"100":0,"101":0,"102":0.00271,"103":0,"104":0,"105":0,"106":0.01086,"107":0.00814,"108":0.24697,"109":0.19269},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00271,"14":0.01086,"15":0.00271,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00543,"13.1":0.019,"14.1":0.02985,"15.1":0.00543,"15.2-15.3":0.02443,"15.4":0.01628,"15.5":0.038,"15.6":0.09228,"16.0":0.03528,"16.1":0.09228,"16.2":0.08142,"16.3":0.01086},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00315,"9.3":0.02517,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.00629,"12.0-12.1":0.00629,"12.2-12.5":0.20765,"13.0-13.1":0.00315,"13.2":0,"13.3":0.01888,"13.4-13.7":0.05663,"14.0-14.4":0.1699,"14.5-14.8":0.50341,"15.0-15.1":0.20765,"15.2-15.3":0.35553,"15.4":0.34924,"15.5":0.6387,"15.6":2.52647,"16.0":6.42471,"16.1":9.313,"16.2":8.12056,"16.3":0.78657},P:{"4":0.0211,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05276,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01055,"13.0":0.01055,"14.0":0.0211,"15.0":0.01055,"16.0":0.04221,"17.0":0.0211,"18.0":0.06331,"19.0":1.27681},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09814},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.19672},Q:{"13.1":0},O:{"0":0.57559},H:{"0":0.58632},L:{"0":59.51461},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00551,"65":0,"66":0,"67":0,"68":0.00275,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00275,"99":0.00275,"100":0,"101":0.00275,"102":0.00275,"103":0.00275,"104":0,"105":0,"106":0.00275,"107":0.00275,"108":0.00826,"109":0.2285,"110":0.12939,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00275,"50":0,"51":0.00275,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00275,"65":0,"66":0,"67":0,"68":0,"69":0.00275,"70":0,"71":0,"72":0,"73":0,"74":0.00551,"75":0,"76":0,"77":0,"78":0,"79":0.00275,"80":0,"81":0.00275,"83":0.01101,"84":0,"85":0.00826,"86":0.00551,"87":0.01101,"88":0.00275,"89":0,"90":0,"91":0.00275,"92":0.00275,"93":0,"94":0,"95":0,"96":0,"97":0.00275,"98":0,"99":0.00275,"100":0.00275,"101":0.00275,"102":0.00275,"103":0.01377,"104":0.00551,"105":0.00275,"106":0.00826,"107":0.01377,"108":0.1872,"109":3.03931,"110":2.01795,"111":0.00551,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00275,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00275,"67":0.02202,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00275,"74":0.00275,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00826,"94":0.13214,"95":0.05781,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00275,"17":0,"18":0.00275,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00275,"88":0,"89":0.00275,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00275,"98":0,"99":0,"100":0,"101":0,"102":0.00275,"103":0,"104":0,"105":0,"106":0,"107":0.00551,"108":0.01652,"109":0.19271,"110":0.2753},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00551,"15":0.00551,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00275,"13.1":0.00826,"14.1":0.03854,"15.1":0.00275,"15.2-15.3":0.01377,"15.4":0.01101,"15.5":0.01927,"15.6":0.09636,"16.0":0.02753,"16.1":0.07433,"16.2":0.12113,"16.3":0.06883,"16.4":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.00954,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01591,"10.0-10.2":0,"10.3":0.01273,"11.0-11.2":0,"11.3-11.4":0.00318,"12.0-12.1":0,"12.2-12.5":0.28952,"13.0-13.1":0.00318,"13.2":0,"13.3":0.01273,"13.4-13.7":0.0859,"14.0-14.4":0.24498,"14.5-14.8":0.45179,"15.0-15.1":0.13681,"15.2-15.3":0.27362,"15.4":0.32452,"15.5":0.69041,"15.6":1.91214,"16.0":4.5274,"16.1":6.87224,"16.2":8.10033,"16.3":6.18819,"16.4":0.00954},P:{"4":0.03084,"20":0.44202,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03084,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01028,"12.0":0,"13.0":0.01028,"14.0":0.01028,"15.0":0.01028,"16.0":0.02056,"17.0":0.02056,"18.0":0.03084,"19.0":0.83263},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09826},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00275,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.67397},H:{"0":0.53516},L:{"0":59.02656},R:{_:"0"},M:{"0":0.14494},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MW.js index 3a91f33435502a..f55a105583896c 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.00292,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00292,"61":0,"62":0,"63":0.00583,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00292,"73":0,"74":0,"75":0.00292,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00292,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00292,"100":0.00292,"101":0.00292,"102":0.01749,"103":0.00292,"104":0.00292,"105":0.00292,"106":0.00292,"107":0.03498,"108":0.39936,"109":0.16907,"110":0.01166,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00292,"38":0,"39":0,"40":0.00292,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00292,"47":0,"48":0,"49":0.01166,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00583,"56":0,"57":0,"58":0.00292,"59":0,"60":0,"61":0.00292,"62":0,"63":0,"64":0.00875,"65":0,"66":0,"67":0,"68":0,"69":0.00875,"70":0.00875,"71":0,"72":0.00292,"73":0,"74":0.00292,"75":0.00292,"76":0,"77":0.00583,"78":0.00875,"79":0.02332,"80":0.00292,"81":0.02332,"83":0.01458,"84":0,"85":0.00292,"86":0.00583,"87":0.00583,"88":0.00292,"89":0.00292,"90":0,"91":0.00292,"92":0.01749,"93":0.00292,"94":0.00583,"95":0.00875,"96":0.00583,"97":0.00583,"98":0.00292,"99":0.00875,"100":0.00875,"101":0.00292,"102":0.01749,"103":0.03207,"104":0.00875,"105":0.02041,"106":0.03498,"107":0.06413,"108":1.90058,"109":1.75192,"110":0,"111":0.00292,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00583,"27":0.00292,"28":0.00292,"29":0,"30":0.00292,"31":0.00583,"32":0.01166,"33":0.00292,"34":0,"35":0.01166,"36":0,"37":0.00292,"38":0.00292,"39":0,"40":0,"41":0,"42":0.00292,"43":0,"44":0.00292,"45":0,"46":0,"47":0.00292,"48":0,"49":0,"50":0.00292,"51":0.00292,"52":0,"53":0,"54":0.00875,"55":0,"56":0,"57":0.01166,"58":0.01166,"60":0.12535,"62":0,"63":0.13701,"64":0.0583,"65":0.02915,"66":0.08162,"67":0.02041,"68":0,"69":0,"70":0.00292,"71":0,"72":0.00583,"73":0.01749,"74":0.00583,"75":0,"76":0,"77":0,"78":0,"79":0.00292,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02041,"86":0,"87":0,"88":0,"89":0,"90":0.09328,"91":0.00292,"92":0,"93":0.02041,"94":0.37312,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02041},B:{"12":0.01166,"13":0.00292,"14":0.00292,"15":0.01749,"16":0.00583,"17":0.00583,"18":0.04956,"79":0,"80":0,"81":0,"83":0,"84":0.00583,"85":0.00583,"86":0,"87":0,"88":0,"89":0.00583,"90":0.00875,"91":0,"92":0.02332,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00292,"100":0.00292,"101":0,"102":0.00292,"103":0.00583,"104":0.00875,"105":0.01166,"106":0.01166,"107":0.03207,"108":0.51304,"109":0.40227},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00292,"14":0.00292,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00583,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00292,"13.1":0.00583,"14.1":0.00875,"15.1":0.00292,"15.2-15.3":0,"15.4":0.00292,"15.5":0.00292,"15.6":0.01458,"16.0":0.00292,"16.1":0.01749,"16.2":0.01458,"16.3":0.00292},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01017,"5.0-5.1":0,"6.0-6.1":0.00073,"7.0-7.1":0.02034,"8.1-8.4":0,"9.0-9.2":0.00036,"9.3":0.0236,"10.0-10.2":0.00073,"10.3":0.02251,"11.0-11.2":0.00218,"11.3-11.4":0.00291,"12.0-12.1":0.00654,"12.2-12.5":0.24948,"13.0-13.1":0.02796,"13.2":0.00327,"13.3":0.0966,"13.4-13.7":0.07662,"14.0-14.4":0.28325,"14.5-14.8":0.22079,"15.0-15.1":0.10277,"15.2-15.3":0.06428,"15.4":0.0788,"15.5":0.12565,"15.6":0.23968,"16.0":0.49969,"16.1":0.49533,"16.2":0.62098,"16.3":0.04031},P:{"4":0.40843,"5.0-5.4":0.02042,"6.2-6.4":0.01021,"7.2-7.4":0.17358,"8.2":0,"9.2":0.05105,"10.1":0.01021,"11.1-11.2":0,"12.0":0.01021,"13.0":0.02042,"14.0":0.03063,"15.0":0.02042,"16.0":0.06126,"17.0":0.17358,"18.0":0.22464,"19.0":0.86791},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0034,"4.2-4.3":0.0136,"4.4":0,"4.4.3-4.4.4":0.08049},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00292,"11":0.01749,"5.5":0},J:{"7":0,"10":0.02126},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.22672},Q:{"13.1":0.02834},O:{"0":6.04351},H:{"0":7.27777},L:{"0":68.71588},S:{"2.5":0.1913}}; +module.exports={C:{"48":0.00295,"52":0.00295,"63":0.0059,"68":0.00295,"72":0.01476,"75":0.01771,"78":0.21845,"91":0.00295,"95":0.0059,"99":0.00295,"101":0.00886,"102":0.03838,"103":0.0059,"106":0.01181,"107":0.11808,"108":0.05314,"109":0.91807,"110":0.68191,"111":0.05018,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 73 74 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 100 104 105 112 3.5 3.6"},D:{"11":0.00295,"37":0.0059,"38":0.0059,"49":0.01771,"50":0.0059,"51":0.0059,"55":0.00295,"61":0.00295,"64":0.01181,"65":0.00886,"67":0.00886,"69":0.01476,"70":0.01181,"72":0.00295,"74":0.01181,"75":0.01181,"76":0.01181,"77":0.00886,"78":0.00886,"79":0.02066,"80":0.01181,"81":0.01181,"83":0.00886,"84":0.00886,"85":0.0059,"86":0.0059,"87":0.02066,"88":0.01476,"89":0.00886,"90":0.00886,"91":0.0059,"92":0.03838,"93":0.0059,"94":0.0059,"95":0.0059,"96":0.01181,"97":0.00886,"98":0.03247,"99":0.00886,"100":0.02657,"101":0.01181,"102":0.05609,"103":0.10332,"104":0.02657,"105":0.04723,"106":0.05018,"107":0.09151,"108":0.31882,"109":8.12686,"110":4.76748,"111":0.00295,"112":0.00886,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 43 44 45 46 47 48 52 53 54 56 57 58 59 60 62 63 66 68 71 73 113"},F:{"36":0.0059,"73":0.00295,"74":0.02066,"79":0.01181,"85":0.05314,"88":0.0059,"90":0.61106,"93":0.01771,"94":0.3749,"95":0.61992,_:"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 75 76 77 78 80 81 82 83 84 86 87 89 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03838,"13":0.01181,"14":0.01476,"15":0.03838,"16":0.01476,"17":0.02362,"18":0.13284,"84":0.04428,"85":0.00295,"89":0.01476,"90":0.02657,"92":0.0797,"99":0.00295,"100":0.0059,"102":0.00295,"103":0.01476,"104":0.01476,"105":0.01476,"106":0.02952,"107":0.05314,"108":0.16236,"109":1.6236,"110":1.58818,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 101"},E:{"4":0,"13":0.00886,"14":0.01181,_:"0 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 16.4","5.1":0.01771,"12.1":0.00886,"13.1":0.02066,"14.1":0.01771,"15.1":0.00295,"15.4":0.0059,"15.5":0.01476,"15.6":0.05609,"16.0":0.00295,"16.1":0.02066,"16.2":0.05018,"16.3":0.04133},G:{"8":0.00088,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00058,"5.0-5.1":0.00146,"6.0-6.1":0.00146,"7.0-7.1":0.00088,"8.1-8.4":0,"9.0-9.2":0.00029,"9.3":0.09789,"10.0-10.2":0,"10.3":0.02221,"11.0-11.2":0.00146,"11.3-11.4":0.00351,"12.0-12.1":0.01052,"12.2-12.5":0.31384,"13.0-13.1":0.00497,"13.2":0.00409,"13.3":0.26212,"13.4-13.7":0.04266,"14.0-14.4":0.11543,"14.5-14.8":0.12711,"15.0-15.1":0.08007,"15.2-15.3":0.04149,"15.4":0.06224,"15.5":0.12478,"15.6":0.12711,"16.0":0.31267,"16.1":0.29718,"16.2":0.2814,"16.3":0.40092,"16.4":0.00205},P:{"4":0.4064,"20":0.16673,"5.0-5.4":0.01042,"6.2-6.4":0.01025,"7.2-7.4":0.21883,"8.2":0.02044,"9.2":0.01042,"10.1":0.0217,"11.1-11.2":0.03126,"12.0":0.02048,"13.0":0.02084,"14.0":0.06252,"15.0":0.02084,"16.0":0.08336,"17.0":0.07294,"18.0":0.10421,"19.0":0.75028},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00379,"4.2-4.3":0.00316,"4.4":0,"4.4.3-4.4.4":0.04237},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00295,"11":0.05018,_:"6 7 8 9 5.5"},N:{"10":0.02102,"11":0.02035},S:{"2.5":0.17618,_:"3.0-3.1"},J:{"7":0,"10":0.04933},O:{"0":5.60941},H:{"0":7.71242},L:{"0":57.76598},R:{_:"0"},M:{"0":0.28188},Q:{"13.1":0.02114}}; 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 e30272679286e2..0cbd2feab1bc8f 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.00558,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00558,"67":0,"68":0.00558,"69":0,"70":0,"71":0,"72":0,"73":0.00558,"74":0,"75":0,"76":0,"77":0,"78":0.01117,"79":0,"80":0,"81":0,"82":0,"83":0.00558,"84":0,"85":0,"86":0,"87":0,"88":0.00558,"89":0,"90":0,"91":0.00558,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00558,"101":0,"102":0.01117,"103":0,"104":0.01117,"105":0.00558,"106":0.00558,"107":0.01675,"108":0.4523,"109":0.28478,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00558,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02234,"50":0,"51":0,"52":0.00558,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00558,"66":0.01117,"67":0.00558,"68":0.00558,"69":0.00558,"70":0.00558,"71":0.00558,"72":0.00558,"73":0.00558,"74":0.01117,"75":0.00558,"76":0.01117,"77":0.01117,"78":0.00558,"79":0.03909,"80":0.01675,"81":0.01675,"83":0.01117,"84":0.01117,"85":0.01675,"86":0.01675,"87":0.03909,"88":0.01675,"89":0.02792,"90":0.0335,"91":0.06701,"92":0.05584,"93":0.04467,"94":0.02792,"95":0.00558,"96":0.01117,"97":0.02234,"98":0.0335,"99":0.01675,"100":0.02234,"101":0.01675,"102":0.02234,"103":0.1061,"104":0.03909,"105":0.03909,"106":0.05026,"107":0.15077,"108":10.69894,"109":13.6473,"110":0.00558,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00558,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00558,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00558,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00558,"93":0.28478,"94":0.33504,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01117,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00558,"79":0,"80":0,"81":0,"83":0,"84":0.00558,"85":0,"86":0.00558,"87":0,"88":0,"89":0.00558,"90":0.00558,"91":0,"92":0.00558,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00558,"103":0.00558,"104":0.00558,"105":0.00558,"106":0.00558,"107":0.08376,"108":0.85994,"109":0.85435},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00558,"14":0.02234,"15":0.00558,_:"0","3.1":0,"3.2":0,"5.1":0.00558,"6.1":0,"7.1":0,"9.1":0.0335,"10.1":0,"11.1":0,"12.1":0.01117,"13.1":0.05026,"14.1":0.06701,"15.1":0.01117,"15.2-15.3":0.01117,"15.4":0.02792,"15.5":0.05026,"15.6":0.27362,"16.0":0.02792,"16.1":0.12843,"16.2":0.21778,"16.3":0.01675},G:{"8":0.00302,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00454,"6.0-6.1":0,"7.0-7.1":0.01058,"8.1-8.4":0.00151,"9.0-9.2":0.01209,"9.3":0.07256,"10.0-10.2":0,"10.3":0.05896,"11.0-11.2":0.01209,"11.3-11.4":0.02721,"12.0-12.1":0.01361,"12.2-12.5":0.38247,"13.0-13.1":0.00907,"13.2":0.00605,"13.3":0.01814,"13.4-13.7":0.05291,"14.0-14.4":0.14362,"14.5-14.8":0.4112,"15.0-15.1":0.08919,"15.2-15.3":0.13757,"15.4":0.1542,"15.5":0.3855,"15.6":1.65537,"16.0":2.1089,"16.1":4.70761,"16.2":3.42715,"16.3":0.27967},P:{"4":0.12383,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0516,"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.01032,"16.0":0.02064,"17.0":0.04128,"18.0":0.03096,"19.0":0.67077},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00484,"4.2-4.3":0.00968,"4.4":0,"4.4.3-4.4.4":0.11132},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05026,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15456},Q:{"13.1":0},O:{"0":0.03533},H:{"0":0.16305},L:{"0":53.16968},S:{"2.5":0.00442}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01151,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00576,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00576,"69":0,"70":0,"71":0,"72":0,"73":0.00576,"74":0,"75":0,"76":0,"77":0,"78":0.01151,"79":0,"80":0,"81":0,"82":0,"83":0.00576,"84":0,"85":0,"86":0,"87":0,"88":0.00576,"89":0,"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.01151,"103":0,"104":0.01151,"105":0.00576,"106":0.00576,"107":0.00576,"108":0.01727,"109":0.4317,"110":0.29931,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00576,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02302,"50":0,"51":0,"52":0.01727,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00576,"66":0.01727,"67":0.00576,"68":0.01151,"69":0.00576,"70":0.00576,"71":0.00576,"72":0.01151,"73":0.00576,"74":0.01151,"75":0.01151,"76":0.01151,"77":0.01151,"78":0.01151,"79":0.04605,"80":0.02302,"81":0.01727,"83":0.01151,"84":0.01151,"85":0.01727,"86":0.02302,"87":0.04029,"88":0.02878,"89":0.02878,"90":0.04605,"91":0.0921,"92":0.05756,"93":0.0518,"94":0.03454,"95":0.00576,"96":0.01727,"97":0.02302,"98":0.02302,"99":0.01727,"100":0.01151,"101":0.01727,"102":0.02302,"103":0.12088,"104":0.03454,"105":0.03454,"106":0.04029,"107":0.07483,"108":0.29931,"109":15.15555,"110":10.65436,"111":0.00576,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00576,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00576,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01151,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.04605,"94":0.37414,"95":0.18419,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01151,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00576,"79":0,"80":0.00576,"81":0.00576,"83":0.00576,"84":0.00576,"85":0.00576,"86":0.00576,"87":0,"88":0,"89":0.00576,"90":0.00576,"91":0,"92":0.00576,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00576,"100":0,"101":0,"102":0.00576,"103":0.00576,"104":0,"105":0.00576,"106":0.00576,"107":0.0518,"108":0.03454,"109":0.73677,"110":0.96701},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00576,"14":0.02302,"15":0.00576,_:"0","3.1":0,"3.2":0,"5.1":0.00576,"6.1":0,"7.1":0,"9.1":0.0518,"10.1":0,"11.1":0,"12.1":0.01151,"13.1":0.04029,"14.1":0.06332,"15.1":0.01151,"15.2-15.3":0.01151,"15.4":0.02302,"15.5":0.04029,"15.6":0.21297,"16.0":0.02302,"16.1":0.08634,"16.2":0.22448,"16.3":0.16117,"16.4":0},G:{"8":0.00432,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00432,"6.0-6.1":0.00144,"7.0-7.1":0.01008,"8.1-8.4":0.00144,"9.0-9.2":0.01152,"9.3":0.06481,"10.0-10.2":0.00144,"10.3":0.05473,"11.0-11.2":0.01584,"11.3-11.4":0.03744,"12.0-12.1":0.01728,"12.2-12.5":0.35573,"13.0-13.1":0.01008,"13.2":0.0072,"13.3":0.01584,"13.4-13.7":0.04609,"14.0-14.4":0.12962,"14.5-14.8":0.35861,"15.0-15.1":0.07777,"15.2-15.3":0.11089,"15.4":0.12242,"15.5":0.30244,"15.6":1.11471,"16.0":1.53092,"16.1":3.24618,"16.2":3.75457,"16.3":2.13292,"16.4":0.0072},P:{"4":0.10413,"20":0.2499,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05206,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01041,"12.0":0,"13.0":0.01041,"14.0":0,"15.0":0.01041,"16.0":0.02083,"17.0":0.03124,"18.0":0.02083,"19.0":0.38527},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02976,"4.2-4.3":0.0085,"4.4":0,"4.4.3-4.4.4":0.09354},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00633,"9":0,"10":0,"11":0.05698,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00424,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.03395},H:{"0":0.16072},L:{"0":52.14233},R:{_:"0"},M:{"0":0.15703},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js index 6e6ec197a6f0f0..a4ab7567b245d9 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.00459,"35":0,"36":0,"37":0,"38":0,"39":0.00459,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00918,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00459,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00459,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00459,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00459,"100":0,"101":0,"102":0.01377,"103":0.00459,"104":0.00459,"105":0.00459,"106":0.00459,"107":0.01836,"108":0.50031,"109":0.24327,"110":0.00459,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00459,"30":0,"31":0,"32":0,"33":0,"34":0.00918,"35":0,"36":0,"37":0,"38":0.02754,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00459,"48":0,"49":0.01836,"50":0,"51":0,"52":0,"53":0.01836,"54":0,"55":0.01836,"56":0.00459,"57":0,"58":0.00459,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00459,"66":0,"67":0.00459,"68":0,"69":0.00459,"70":0.00459,"71":0.00459,"72":0.00459,"73":0.00459,"74":0.00918,"75":0.00918,"76":0.00459,"77":0.00459,"78":0.00459,"79":0.12393,"80":0.00918,"81":0.00918,"83":0.01377,"84":0.01377,"85":0.01377,"86":0.02295,"87":0.03213,"88":0.01377,"89":0.00918,"90":0.00459,"91":0.02295,"92":0.11475,"93":0.00459,"94":0.00918,"95":0.00918,"96":0.01836,"97":0.02754,"98":0.03213,"99":0.01836,"100":0.02295,"101":0.01377,"102":0.02754,"103":0.07344,"104":0.03213,"105":0.03672,"106":0.0459,"107":0.15606,"108":7.49088,"109":6.61419,"110":0.00918,"111":0.00459,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01836,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01836,"37":0.00459,"38":0,"39":0,"40":0.00459,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02295,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00459,"64":0.00459,"65":0,"66":0.00459,"67":0.00459,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00918,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00459,"93":0.1377,"94":0.16983,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00459,"79":0,"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.00459,"106":0.00459,"107":0.01377,"108":0.75735,"109":0.6426},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00918,"14":0.04131,"15":0.01377,_:"0","3.1":0,"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.03213,"14.1":0.11016,"15.1":0.02295,"15.2-15.3":0.01836,"15.4":0.05967,"15.5":0.14229,"15.6":0.57834,"16.0":0.05049,"16.1":0.2295,"16.2":0.29376,"16.3":0.01836},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00908,"6.0-6.1":0.01135,"7.0-7.1":0.02724,"8.1-8.4":0.03405,"9.0-9.2":0.01589,"9.3":0.20205,"10.0-10.2":0.01816,"10.3":0.50853,"11.0-11.2":0.01135,"11.3-11.4":0.01589,"12.0-12.1":0.0227,"12.2-12.5":0.56982,"13.0-13.1":0.01816,"13.2":0.00908,"13.3":0.03859,"13.4-13.7":0.11805,"14.0-14.4":0.3428,"14.5-14.8":0.59707,"15.0-15.1":0.24745,"15.2-15.3":0.24745,"15.4":0.4881,"15.5":0.74917,"15.6":2.22254,"16.0":3.43484,"16.1":5.48485,"16.2":5.43263,"16.3":0.3201},P:{"4":0.52635,"5.0-5.4":0.02105,"6.2-6.4":0,"7.2-7.4":0.04211,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03158,"12.0":0.01053,"13.0":0.01053,"14.0":0.02105,"15.0":0.03158,"16.0":0.04211,"17.0":0.04211,"18.0":0.08422,"19.0":1.66326},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.06836},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05049,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15148},Q:{"13.1":0.00541},O:{"0":0.84937},H:{"0":0.51218},L:{"0":52.80461},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00897,"35":0,"36":0,"37":0,"38":0,"39":0.00449,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00897,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00449,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00449,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00449,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00449,"100":0,"101":0,"102":0.02243,"103":0.00449,"104":0.00449,"105":0.00449,"106":0.00449,"107":0.00897,"108":0.01794,"109":0.45309,"110":0.30505,"111":0.00449,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00897,"30":0,"31":0,"32":0,"33":0,"34":0.00897,"35":0,"36":0,"37":0,"38":0.0314,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00449,"48":0,"49":0.01794,"50":0,"51":0,"52":0,"53":0.02692,"54":0,"55":0.02243,"56":0.00449,"57":0,"58":0.00897,"59":0,"60":0,"61":0,"62":0.00449,"63":0,"64":0,"65":0.00449,"66":0,"67":0.00449,"68":0,"69":0.00449,"70":0.00449,"71":0.00449,"72":0.00449,"73":0.00449,"74":0.01346,"75":0.00897,"76":0.00449,"77":0.00449,"78":0.00449,"79":0.15701,"80":0.00449,"81":0.02243,"83":0.01346,"84":0.01346,"85":0.01346,"86":0.02243,"87":0.04037,"88":0.01794,"89":0.00897,"90":0.00897,"91":0.02692,"92":0.13009,"93":0.00449,"94":0.00897,"95":0.00897,"96":0.01346,"97":0.02692,"98":0.02692,"99":0.02243,"100":0.02243,"101":0.01346,"102":0.02692,"103":0.07178,"104":0.02692,"105":0.0314,"106":0.02692,"107":0.09421,"108":0.24673,"109":8.17798,"110":4.78656,"111":0.00897,"112":0.00449,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02243,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02243,"37":0.00449,"38":0,"39":0,"40":0.00449,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0314,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00449,"65":0,"66":0.00449,"67":0.04935,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01794,"94":0.15252,"95":0.08523,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00449,"107":0.00449,"108":0.02243,"109":0.54281,"110":0.65944},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00897,"14":0.04037,"15":0.01346,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00449,"13.1":0.03589,"14.1":0.12112,"15.1":0.02243,"15.2-15.3":0.01794,"15.4":0.05383,"15.5":0.11664,"15.6":0.45757,"16.0":0.03589,"16.1":0.16598,"16.2":0.37234,"16.3":0.20636,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01155,"6.0-6.1":0.01155,"7.0-7.1":0.03235,"8.1-8.4":0.04622,"9.0-9.2":0.01618,"9.3":0.25419,"10.0-10.2":0.01618,"10.3":0.59851,"11.0-11.2":0.01849,"11.3-11.4":0.01387,"12.0-12.1":0.03004,"12.2-12.5":0.65859,"13.0-13.1":0.01618,"13.2":0.00924,"13.3":0.03466,"13.4-13.7":0.10861,"14.0-14.4":0.32583,"14.5-14.8":0.56847,"15.0-15.1":0.23108,"15.2-15.3":0.23339,"15.4":0.44137,"15.5":0.6609,"15.6":1.73544,"16.0":2.79611,"16.1":4.24038,"16.2":5.40042,"16.3":3.06648,"16.4":0.00924},P:{"4":0.71184,"20":0.6595,"5.0-5.4":0.0314,"6.2-6.4":0,"7.2-7.4":0.04187,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0314,"12.0":0.01047,"13.0":0.01047,"14.0":0.02094,"15.0":0.0314,"16.0":0.04187,"17.0":0.04187,"18.0":0.06281,"19.0":1.0887},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0065,"4.4":0,"4.4.3-4.4.4":0.07145},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0628,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.96495},H:{"0":0.53769},L:{"0":53.04331},R:{_:"0"},M:{"0":0.15439},Q:{"13.1":0.00551}}; 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 de76f0fb385ce7..4601b047cf943a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00375,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00751,"62":0,"63":0,"64":0,"65":0,"66":0.00375,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00375,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00375,"89":0.00375,"90":0,"91":0.00751,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.11637,"99":0.00751,"100":0.00375,"101":0,"102":0.00751,"103":0.03003,"104":0.00375,"105":0.00375,"106":0,"107":0.01126,"108":0.37915,"109":0.25527,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00751,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00375,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00375,"41":0,"42":0,"43":0.01126,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00751,"56":0.00375,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00375,"64":0.00375,"65":0,"66":0,"67":0.00375,"68":0.00375,"69":0.03003,"70":0.01126,"71":0.00375,"72":0.03003,"73":0,"74":0.05256,"75":0,"76":0.00375,"77":0,"78":0,"79":0.00751,"80":0.01126,"81":0.16893,"83":0.01502,"84":0.00375,"85":0.00375,"86":0.00375,"87":0.06382,"88":0.00751,"89":0,"90":0.00751,"91":0.01502,"92":0.01502,"93":0.00375,"94":0.05631,"95":0.00751,"96":0.01126,"97":0.00751,"98":0.03003,"99":0.01126,"100":0.00375,"101":0.00751,"102":0.01502,"103":0.04505,"104":0.03003,"105":0.02252,"106":0.06382,"107":0.0488,"108":2.66159,"109":2.79673,"110":0.00375,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00375,"27":0,"28":0.00375,"29":0,"30":0,"31":0,"32":0,"33":0.00375,"34":0,"35":0.01502,"36":0,"37":0.00375,"38":0.01502,"39":0,"40":0,"41":0,"42":0.00375,"43":0,"44":0,"45":0,"46":0.02628,"47":0,"48":0,"49":0,"50":0.00375,"51":0.00751,"52":0,"53":0,"54":0.00375,"55":0.00375,"56":0.00375,"57":0.00375,"58":0.04505,"60":0.10887,"62":0,"63":0.16142,"64":0.10511,"65":0.04505,"66":0.0901,"67":0.01126,"68":0,"69":0,"70":0,"71":0,"72":0.01877,"73":0.00751,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00375,"80":0.01126,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00751,"87":0,"88":0,"89":0,"90":0,"91":0.00375,"92":0,"93":0.01877,"94":0.41669,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00751},B:{"12":0.00375,"13":0,"14":0.00375,"15":0.00375,"16":0,"17":0,"18":0.02252,"79":0,"80":0,"81":0,"83":0,"84":0.00375,"85":0,"86":0,"87":0,"88":0.01126,"89":0.01877,"90":0.00375,"91":0.00375,"92":0.07508,"93":0,"94":0,"95":0,"96":0.00375,"97":0,"98":0,"99":0,"100":0.00375,"101":0,"102":0,"103":0.00375,"104":0,"105":0.00751,"106":0.00751,"107":0.02628,"108":0.52181,"109":0.55184},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,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00375,"13.1":0.01502,"14.1":0.00751,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00375,"15.6":0.01877,"16.0":0.00375,"16.1":0.00751,"16.2":0.01126,"16.3":0.00375},G:{"8":0.00919,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00552,"6.0-6.1":0.00184,"7.0-7.1":0.01655,"8.1-8.4":0.00643,"9.0-9.2":0,"9.3":0.05515,"10.0-10.2":0,"10.3":0.52578,"11.0-11.2":0.00368,"11.3-11.4":0.00092,"12.0-12.1":0.02758,"12.2-12.5":1.94318,"13.0-13.1":0.07905,"13.2":0.00184,"13.3":0.04688,"13.4-13.7":0.23899,"14.0-14.4":0.60575,"14.5-14.8":0.47247,"15.0-15.1":0.16178,"15.2-15.3":0.22704,"15.4":0.36032,"15.5":0.4982,"15.6":0.57358,"16.0":0.58645,"16.1":0.94401,"16.2":0.93298,"16.3":0.09743},P:{"4":0.4196,"5.0-5.4":0.02047,"6.2-6.4":0,"7.2-7.4":0.18421,"8.2":0.01023,"9.2":0.4196,"10.1":0,"11.1-11.2":0.04094,"12.0":0.02047,"13.0":0.02047,"14.0":0.11257,"15.0":0.02047,"16.0":0.07164,"17.0":0.07164,"18.0":0.0614,"19.0":0.70615},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00099,"4.2-4.3":0.00248,"4.4":0,"4.4.3-4.4.4":0.09653},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01877,"5.5":0},J:{"7":0,"10":0.01249},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.36851},Q:{"13.1":0.00625},O:{"0":0.3123},H:{"0":5.93696},L:{"0":68.63411},S:{"2.5":0.89942}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00766,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00383,"90":0,"91":0.00766,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.08047,"99":0.00383,"100":0.00383,"101":0,"102":0.00383,"103":0,"104":0,"105":0,"106":0,"107":0.00766,"108":0.00766,"109":0.33338,"110":0.22609,"111":0.00383,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01916,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0115,"51":0,"52":0,"53":0,"54":0,"55":0.00383,"56":0.00383,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00383,"65":0,"66":0,"67":0,"68":0,"69":0.02299,"70":0.01533,"71":0.00383,"72":0.01533,"73":0,"74":0.03449,"75":0,"76":0,"77":0,"78":0.01916,"79":0.00383,"80":0.00766,"81":0.14562,"83":0.00766,"84":0,"85":0.00383,"86":0.00383,"87":0.03832,"88":0.00383,"89":0.00383,"90":0.00766,"91":0.00766,"92":0.00383,"93":0.00383,"94":0.0115,"95":0.0115,"96":0.00766,"97":0.00383,"98":0.03449,"99":0.00383,"100":0.00383,"101":0.00383,"102":0.01916,"103":0.03449,"104":0.02682,"105":0.03066,"106":0.06131,"107":0.0115,"108":0.09963,"109":3.16523,"110":1.93899,"111":0.00383,"112":0.00383,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00383,"27":0,"28":0.00766,"29":0,"30":0,"31":0,"32":0.00383,"33":0.00766,"34":0,"35":0.01533,"36":0,"37":0.01533,"38":0.00766,"39":0,"40":0,"41":0,"42":0.00383,"43":0,"44":0,"45":0,"46":0.02299,"47":0,"48":0,"49":0,"50":0,"51":0.00766,"52":0,"53":0,"54":0,"55":0.00383,"56":0.00383,"57":0.00383,"58":0.02299,"60":0.05748,"62":0,"63":0.20693,"64":0.05365,"65":0.05365,"66":0.0843,"67":0.2874,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00383,"80":0.00383,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.0115,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.14945,"95":0.26824,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00766},B:{"12":0.00383,"13":0.00383,"14":0.00383,"15":0.00383,"16":0,"17":0,"18":0.0115,"79":0,"80":0,"81":0,"83":0,"84":0.00383,"85":0,"86":0,"87":0,"88":0,"89":0.0115,"90":0.00383,"91":0.00383,"92":0.03449,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00383,"101":0,"102":0.00383,"103":0,"104":0,"105":0.00383,"106":0.0115,"107":0.00766,"108":0.02682,"109":0.41769,"110":0.59396},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.02682,"14.1":0.00383,"15.1":0,"15.2-15.3":0.00383,"15.4":0.00766,"15.5":0.00383,"15.6":0.0115,"16.0":0,"16.1":0.00766,"16.2":0.01533,"16.3":0.0115,"16.4":0},G:{"8":0.04983,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00634,"6.0-6.1":0,"7.0-7.1":0.02174,"8.1-8.4":0.00362,"9.0-9.2":0,"9.3":0.08244,"10.0-10.2":0,"10.3":0.38321,"11.0-11.2":0.00272,"11.3-11.4":0.00181,"12.0-12.1":0.01902,"12.2-12.5":1.87893,"13.0-13.1":0.10781,"13.2":0.00544,"13.3":0.10871,"13.4-13.7":0.23464,"14.0-14.4":0.59249,"14.5-14.8":0.55987,"15.0-15.1":0.14133,"15.2-15.3":0.31436,"15.4":0.27541,"15.5":0.45841,"15.6":0.47471,"16.0":0.42398,"16.1":0.69486,"16.2":0.79542,"16.3":0.71298,"16.4":0.00181},P:{"4":0.43133,"20":0.15405,"5.0-5.4":0,"6.2-6.4":0.02054,"7.2-7.4":0.16432,"8.2":0,"9.2":0.48268,"10.1":0,"11.1-11.2":0.05135,"12.0":0.02054,"13.0":0.03081,"14.0":0.05135,"15.0":0.01027,"16.0":0.06162,"17.0":0.08216,"18.0":0.04108,"19.0":0.45187},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00049,"4.2-4.3":0.00146,"4.4":0,"4.4.3-4.4.4":0.03955},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0115,"5.5":0},N:{"10":0,"11":0},S:{"2.5":1.02389,_:"3.0-3.1"},J:{"7":0,"10":0.00617},O:{"0":0.40092},H:{"0":5.16209},L:{"0":70.50522},R:{_:"0"},M:{"0":0.26522},Q:{"13.1":0.00617}}; 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 d2852459edee20..bbf9710a776c39 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.01177,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0157,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00392,"79":0,"80":0,"81":0,"82":0.00392,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00392,"100":0,"101":0.00785,"102":0.01177,"103":0,"104":0,"105":0.00392,"106":0.00392,"107":0.02747,"108":0.59252,"109":0.34139,"110":0.00392,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0157,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00392,"65":0,"66":0.00392,"67":0.00392,"68":0.00392,"69":0.00392,"70":0.00392,"71":0,"72":0,"73":0,"74":0.00785,"75":0,"76":0,"77":0.00392,"78":0.00392,"79":0.00785,"80":0.00392,"81":0.0157,"83":0,"84":0,"85":0.00392,"86":0.00785,"87":0.06671,"88":0.00785,"89":0.00785,"90":0.00392,"91":0.00785,"92":0.01177,"93":0.00392,"94":0.00392,"95":0.01177,"96":0.00392,"97":0.0157,"98":0.0157,"99":0.00392,"100":0.02354,"101":0.0157,"102":0.01177,"103":0.04709,"104":0.0157,"105":0.02354,"106":0.05101,"107":0.10987,"108":3.96716,"109":4.47336,"110":0.00785,"111":0.00392,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0157,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00392,"60":0.00785,"62":0,"63":0.02747,"64":0.00392,"65":0.00392,"66":0.02747,"67":0.02747,"68":0,"69":0.00392,"70":0,"71":0,"72":0,"73":0.00785,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00392,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00392,"90":0,"91":0,"92":0.0157,"93":0.03924,"94":0.33354,"9.5-9.6":0,"10.0-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.00392,"17":0.00392,"18":0.02354,"79":0,"80":0,"81":0,"83":0,"84":0.00392,"85":0,"86":0,"87":0,"88":0,"89":0.00392,"90":0.00392,"91":0,"92":0.02354,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00392,"101":0.0157,"102":0.01177,"103":0.00392,"104":0,"105":0.1138,"106":0.00785,"107":0.05101,"108":1.02416,"109":1.07125},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00392,"14":0.00785,"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.00392,"13.1":0.0157,"14.1":0.06278,"15.1":0.01962,"15.2-15.3":0.01962,"15.4":0.01177,"15.5":0.01962,"15.6":0.22759,"16.0":0.00785,"16.1":0.0824,"16.2":0.09418,"16.3":0.00785},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02434,"6.0-6.1":0.02704,"7.0-7.1":0.01893,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04192,"10.0-10.2":0.00406,"10.3":0.0622,"11.0-11.2":0.00135,"11.3-11.4":0,"12.0-12.1":0.00676,"12.2-12.5":0.80723,"13.0-13.1":0.00811,"13.2":0.00135,"13.3":0.03516,"13.4-13.7":0.02975,"14.0-14.4":0.43404,"14.5-14.8":0.45297,"15.0-15.1":0.49759,"15.2-15.3":0.32452,"15.4":0.16361,"15.5":0.29882,"15.6":0.93163,"16.0":1.71182,"16.1":3.64674,"16.2":2.33922,"16.3":0.18389},P:{"4":0.43658,"5.0-5.4":0,"6.2-6.4":0.01015,"7.2-7.4":0.29444,"8.2":0,"9.2":0,"10.1":0.01015,"11.1-11.2":0.02031,"12.0":0.01015,"13.0":0.05076,"14.0":0.07107,"15.0":0.02031,"16.0":0.13199,"17.0":0.29444,"18.0":0.20306,"19.0":3.13727},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00179,"4.2-4.3":0.0185,"4.4":0,"4.4.3-4.4.4":0.1068},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0824,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.44355},Q:{"13.1":0},O:{"0":0.58937},H:{"0":1.22525},L:{"0":64.4709},S:{"2.5":0.01215}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"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,"45":0,"46":0,"47":0,"48":0.00434,"49":0,"50":0,"51":0,"52":0.01303,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00434,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00868,"79":0,"80":0,"81":0,"82":0.00434,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00434,"100":0.00434,"101":0.00868,"102":0.01303,"103":0.00434,"104":0.00434,"105":0.02605,"106":0.00434,"107":0.00868,"108":0.01303,"109":0.55578,"110":0.36039,"111":0.00434,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01303,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00434,"49":0.01303,"50":0,"51":0,"52":0,"53":0.00434,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00434,"67":0.01303,"68":0,"69":0.01737,"70":0.00434,"71":0,"72":0,"73":0,"74":0.00868,"75":0.00434,"76":0,"77":0.00434,"78":0.00434,"79":0.00434,"80":0.00434,"81":0.00868,"83":0.00434,"84":0,"85":0.00434,"86":0.00868,"87":0.01737,"88":0.01303,"89":0.00434,"90":0.01303,"91":0.00434,"92":0.00868,"93":0.00434,"94":0.00434,"95":0.01303,"96":0.00868,"97":0.00434,"98":0.02171,"99":0.00434,"100":0.03474,"101":0.02171,"102":0.01303,"103":0.03474,"104":0.01737,"105":0.01303,"106":0.01737,"107":0.04342,"108":0.18236,"109":6.54339,"110":3.9903,"111":0.00434,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01303,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00434,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00868,"62":0,"63":0.00868,"64":0.00434,"65":0,"66":0.01737,"67":0.20407,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00434,"75":0,"76":0,"77":0,"78":0,"79":0.00434,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01303,"86":0.00434,"87":0,"88":0,"89":0.00434,"90":0,"91":0,"92":0,"93":0.00868,"94":0.1346,"95":0.2692,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00868,"13":0.00434,"14":0.00434,"15":0.00868,"16":0.01737,"17":0.00434,"18":0.02605,"79":0,"80":0,"81":0,"83":0,"84":0.00434,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00434,"91":0,"92":0.06947,"93":0,"94":0,"95":0.00434,"96":0.00434,"97":0.00434,"98":0,"99":0.00434,"100":0.00434,"101":0.04776,"102":0.02171,"103":0.00434,"104":0,"105":0.06947,"106":0.00868,"107":0.0521,"108":0.0521,"109":1.19405,"110":1.41549},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00434,"14":0.01303,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00434,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00434,"13.1":0.02171,"14.1":0.04342,"15.1":0.02605,"15.2-15.3":0.00868,"15.4":0.03474,"15.5":0.02171,"15.6":0.19105,"16.0":0.01303,"16.1":0.03908,"16.2":0.09987,"16.3":0.06947,"16.4":0},G:{"8":0.00124,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0261,"6.0-6.1":0.01864,"7.0-7.1":0.01367,"8.1-8.4":0.00746,"9.0-9.2":0,"9.3":0.05468,"10.0-10.2":0,"10.3":0.06586,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00497,"12.2-12.5":1.2278,"13.0-13.1":0.02113,"13.2":0,"13.3":0.04598,"13.4-13.7":0.02983,"14.0-14.4":0.44489,"14.5-14.8":0.46602,"15.0-15.1":0.23984,"15.2-15.3":0.25973,"15.4":0.12676,"15.5":0.24482,"15.6":0.69344,"16.0":1.15573,"16.1":2.34128,"16.2":2.1586,"16.3":1.38563,"16.4":0.00373},P:{"4":0.45754,"20":0.90492,"5.0-5.4":0.01017,"6.2-6.4":0.02034,"7.2-7.4":0.26436,"8.2":0,"9.2":0,"10.1":0.0305,"11.1-11.2":0.01017,"12.0":0.01017,"13.0":0.02034,"14.0":0.05084,"15.0":0.02034,"16.0":0.09151,"17.0":0.24402,"18.0":0.12201,"19.0":1.8505},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00215,"4.2-4.3":0.0158,"4.4":0,"4.4.3-4.4.4":0.09981},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0825,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.01132,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.58277},H:{"0":1.22131},L:{"0":63.23517},R:{_:"0"},M:{"0":0.2829},Q:{"13.1":0.01132}}; 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 d31296d1b7af35..d4b1b5797acdb4 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.01456,"46":0,"47":0,"48":0.00971,"49":0,"50":0,"51":0,"52":0.10193,"53":0,"54":0,"55":0,"56":0.00485,"57":0,"58":0,"59":0,"60":0.00485,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00971,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08737,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.10679,"92":0,"93":0,"94":0.01456,"95":0,"96":0,"97":0.00485,"98":0.01942,"99":0,"100":0.01456,"101":0.00485,"102":0.28639,"103":0.00485,"104":0,"105":0.00485,"106":0.00971,"107":0.04369,"108":1.99014,"109":1.13584,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03398,"50":0,"51":0,"52":0,"53":0.00485,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00485,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00485,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00485,"72":0.00971,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00485,"79":0.01456,"80":0.00971,"81":0.02427,"83":0,"84":0,"85":0,"86":0,"87":0.00485,"88":0,"89":0,"90":0.00485,"91":0.00971,"92":0.00971,"93":0,"94":0.02912,"95":0,"96":0.11164,"97":0.03883,"98":0.03883,"99":0.02427,"100":0.00971,"101":0.00485,"102":0.00485,"103":0.04369,"104":0.00971,"105":0.02912,"106":0.04854,"107":0.27182,"108":5.62579,"109":4.6113,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.20387,"94":0.30095,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00485,"14":0.00485,"15":0,"16":0,"17":0,"18":0.00971,"79":0,"80":0,"81":0,"83":0.00485,"84":0.00485,"85":0,"86":0,"87":0,"88":0.00485,"89":0.00485,"90":0,"91":0,"92":0.00485,"93":0,"94":0,"95":0,"96":0.00485,"97":0.00485,"98":0,"99":0,"100":0.00485,"101":0,"102":0,"103":0,"104":0.01456,"105":0.41259,"106":0.00485,"107":0.02912,"108":1.16496,"109":1.25233},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01942,"14":0.0631,"15":0.00971,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00485,"11.1":0,"12.1":0.02912,"13.1":0.05825,"14.1":0.18445,"15.1":0.03398,"15.2-15.3":0.13106,"15.4":0.02912,"15.5":0.09223,"15.6":0.69898,"16.0":0.11164,"16.1":0.40288,"16.2":0.49025,"16.3":0.03883},G:{"8":0.01277,"3.2":0.00255,"4.0-4.1":0,"4.2-4.3":0.00255,"5.0-5.1":0,"6.0-6.1":0.01788,"7.0-7.1":0.01788,"8.1-8.4":0.01788,"9.0-9.2":0.01788,"9.3":0.17367,"10.0-10.2":0.01022,"10.3":0.10982,"11.0-11.2":0.05874,"11.3-11.4":0.42906,"12.0-12.1":0.04597,"12.2-12.5":0.82237,"13.0-13.1":0.01532,"13.2":0,"13.3":0.37543,"13.4-13.7":0.07406,"14.0-14.4":0.1941,"14.5-14.8":0.65381,"15.0-15.1":0.34478,"15.2-15.3":0.26816,"15.4":0.61805,"15.5":0.66913,"15.6":3.01619,"16.0":3.25626,"16.1":7.03353,"16.2":4.901,"16.3":0.31158},P:{"4":0.07763,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.66538,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05545,"12.0":0.01109,"13.0":0.09981,"14.0":0.04436,"15.0":0.02218,"16.0":0.08872,"17.0":0.02218,"18.0":0.18852,"19.0":4.59113},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01257,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.16335},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01942,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.67413},Q:{"13.1":0.01029},O:{"0":0.02058},H:{"0":0.06333},L:{"0":43.26679},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.03329,"46":0,"47":0,"48":0.01902,"49":0,"50":0,"51":0,"52":0.09986,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00476,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00951,"69":0,"70":0,"71":0,"72":0.00476,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06657,"79":0,"80":0.00476,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00476,"89":0.00476,"90":0,"91":0.06657,"92":0,"93":0,"94":0.03329,"95":0,"96":0,"97":0,"98":0.00951,"99":0,"100":0.00951,"101":0,"102":0.22349,"103":0.00951,"104":0.00476,"105":0.01902,"106":0.01427,"107":0.03329,"108":0.04755,"109":1.5216,"110":1.20302,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00476,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00476,"48":0,"49":0.00476,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00951,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00476,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00951,"80":0.00951,"81":0.06182,"83":0,"84":0.00951,"85":0,"86":0.00476,"87":0.00476,"88":0,"89":0.00476,"90":0,"91":0.00476,"92":0.00476,"93":0.01427,"94":0.01902,"95":0,"96":0.05231,"97":0.06182,"98":0.02853,"99":0.02378,"100":0.01427,"101":0.01427,"102":0.00476,"103":0.0428,"104":0.00476,"105":0.0428,"106":0.02853,"107":0.1902,"108":0.19496,"109":6.51435,"110":4.48397,"111":0,"112":0.00476,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00476,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00476,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00951,"91":0,"92":0,"93":0.00951,"94":0.64193,"95":0.18069,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00476,"15":0,"16":0,"17":0.00476,"18":0.00951,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00476,"90":0.00476,"91":0,"92":0.00476,"93":0.00476,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00476,"100":0.01427,"101":0.00476,"102":0,"103":0.01902,"104":0.00951,"105":0.1379,"106":0.01427,"107":0.01427,"108":0.05706,"109":0.81786,"110":1.47405},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02378,"14":0.03329,"15":0.01427,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00476,"11.1":0,"12.1":0.02378,"13.1":0.07133,"14.1":0.16167,"15.1":0.01427,"15.2-15.3":0.01427,"15.4":0.06182,"15.5":0.07608,"15.6":0.46124,"16.0":0.09035,"16.1":0.25677,"16.2":0.46124,"16.3":0.41844,"16.4":0},G:{"8":0.00501,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01003,"5.0-5.1":0,"6.0-6.1":0.01003,"7.0-7.1":0.01003,"8.1-8.4":0.00251,"9.0-9.2":0.00251,"9.3":0.07018,"10.0-10.2":0.00251,"10.3":0.1579,"11.0-11.2":0.11529,"11.3-11.4":0.43109,"12.0-12.1":0.00501,"12.2-12.5":0.60402,"13.0-13.1":0.01253,"13.2":0.00251,"13.3":0.18045,"13.4-13.7":0.08271,"14.0-14.4":0.22557,"14.5-14.8":1.10278,"15.0-15.1":0.29324,"15.2-15.3":0.21554,"15.4":0.52883,"15.5":0.6341,"15.6":1.85216,"16.0":1.79702,"16.1":6.10036,"16.2":6.58658,"16.3":2.40355,"16.4":0.01253},P:{"4":0.06352,"20":1.1962,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.57164,"8.2":0,"9.2":0.01059,"10.1":0,"11.1-11.2":0.06352,"12.0":0.03176,"13.0":0.27523,"14.0":0.06352,"15.0":0.06352,"16.0":0.21172,"17.0":0.04234,"18.0":0.12703,"19.0":3.65211},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.24986},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02853,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02623},H:{"0":0.04469},L:{"0":44.50865},R:{_:"0"},M:{"0":0.54548},Q:{"13.1":0.01574}}; 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 493d81739071b3..1234fdbcd50819 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.00171,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00171,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00341,"73":0,"74":0,"75":0,"76":0,"77":0.00171,"78":0,"79":0,"80":0,"81":0,"82":0.00171,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00171,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00171,"99":0,"100":0,"101":0,"102":0.00683,"103":0,"104":0.00512,"105":0,"106":0.01024,"107":0.00854,"108":0.25605,"109":0.10242,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00171,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00171,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00171,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.02902,"56":0,"57":0,"58":0.00171,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00171,"66":0,"67":0,"68":0,"69":0,"70":0.00341,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00854,"80":0.00171,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00171,"88":0.00171,"89":0.00171,"90":0,"91":0,"92":0.00341,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00171,"100":0,"101":0,"102":0.00171,"103":0.00512,"104":0.00512,"105":0.00341,"106":0.02048,"107":0.05975,"108":0.49162,"109":0.42163,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00171,"25":0,"26":0.00341,"27":0.00341,"28":0.00171,"29":0,"30":0.01707,"31":0.01366,"32":0,"33":0.00171,"34":0,"35":0.00171,"36":0.00171,"37":0.01195,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00171,"47":0,"48":0,"49":0,"50":0,"51":0.00171,"52":0,"53":0,"54":0,"55":0.00171,"56":0,"57":0.00171,"58":0.00341,"60":0.05462,"62":0,"63":0.06487,"64":0.00512,"65":0.00683,"66":0.03926,"67":0.01024,"68":0,"69":0,"70":0.00171,"71":0,"72":0.00512,"73":0.00341,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00171,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00512,"91":0,"92":0,"93":0.00171,"94":0.07169,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00341},B:{"12":0.00512,"13":0.01195,"14":0.00171,"15":0.00171,"16":0.00171,"17":0.00171,"18":0.00683,"79":0,"80":0,"81":0,"83":0,"84":0.00341,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00171,"91":0,"92":0.00341,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00683,"101":0,"102":0.00512,"103":0.00171,"104":0.00512,"105":0.21508,"106":0.00171,"107":0.00683,"108":0.25946,"109":0.08706},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00171,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.02561,"6.1":0,"7.1":0.00341,"9.1":0,"10.1":0,"11.1":0.00171,"12.1":0,"13.1":0,"14.1":0.00171,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00171,"15.6":0.00683,"16.0":0,"16.1":0.00341,"16.2":0.00512,"16.3":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.00156,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05242,"10.0-10.2":0,"10.3":0.11423,"11.0-11.2":0.00861,"11.3-11.4":0,"12.0-12.1":0.14162,"12.2-12.5":0.93108,"13.0-13.1":0.00313,"13.2":0.00156,"13.3":0.04147,"13.4-13.7":0.06181,"14.0-14.4":0.4405,"14.5-14.8":0.56413,"15.0-15.1":0.3427,"15.2-15.3":0.55161,"15.4":0.16587,"15.5":0.62281,"15.6":0.52187,"16.0":0.75191,"16.1":0.82624,"16.2":1.04923,"16.3":0.06494},P:{"4":0.22918,"5.0-5.4":0.00996,"6.2-6.4":0.02989,"7.2-7.4":0.07972,"8.2":0,"9.2":0.05979,"10.1":0,"11.1-11.2":0.02989,"12.0":0,"13.0":0.1694,"14.0":0.02989,"15.0":0.00996,"16.0":0.03986,"17.0":0.03986,"18.0":0.08968,"19.0":0.46833},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00287,"4.4":0,"4.4.3-4.4.4":0.19225},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01195,"5.5":0},J:{"7":0,"10":0.00829},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14098},Q:{"13.1":0.05805},O:{"0":2.33033},H:{"0":4.9149},L:{"0":79.61374},S:{"2.5":0.01659}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0015,"69":0,"70":0,"71":0,"72":0.00451,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0015,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0015,"94":0,"95":0.0015,"96":0,"97":0,"98":0.0015,"99":0,"100":0,"101":0,"102":0.00301,"103":0,"104":0.00301,"105":0,"106":0.01052,"107":0.0015,"108":0.00902,"109":0.17886,"110":0.09018,"111":0.0015,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00301,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0015,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.02255,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0015,"67":0,"68":0,"69":0,"70":0.00301,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00752,"80":0.0015,"81":0.00601,"83":0.0015,"84":0,"85":0,"86":0,"87":0.00301,"88":0,"89":0,"90":0,"91":0,"92":0.00301,"93":0.0015,"94":0,"95":0.0015,"96":0,"97":0.0015,"98":0,"99":0,"100":0,"101":0.0015,"102":0.0015,"103":0.00301,"104":0.00601,"105":0.0015,"106":0.01353,"107":0.04058,"108":0.01954,"109":0.41633,"110":0.23898,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00301,"27":0,"28":0.0015,"29":0,"30":0.02856,"31":0.01503,"32":0,"33":0.0015,"34":0,"35":0,"36":0,"37":0.01503,"38":0.00301,"39":0,"40":0,"41":0,"42":0.0015,"43":0,"44":0,"45":0,"46":0.0015,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.0015,"58":0,"60":0.04659,"62":0,"63":0.04659,"64":0.00752,"65":0.00301,"66":0.03006,"67":0.0992,"68":0,"69":0,"70":0,"71":0.0015,"72":0,"73":0.0015,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0015,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.02405,"95":0.03908,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0015},B:{"12":0.0015,"13":0.0015,"14":0,"15":0,"16":0,"17":0,"18":0.00301,"79":0,"80":0,"81":0,"83":0,"84":0.0015,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00451,"93":0,"94":0,"95":0,"96":0.0015,"97":0,"98":0,"99":0,"100":0.00451,"101":0.0015,"102":0,"103":0,"104":0.01503,"105":0.16383,"106":0.0015,"107":0.00451,"108":0.04058,"109":0.16984,"110":0.1022},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0015,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01653,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0015,"14.1":0.00301,"15.1":0,"15.2-15.3":0,"15.4":0.0015,"15.5":0,"15.6":0.0015,"16.0":0.0015,"16.1":0.00301,"16.2":0.00601,"16.3":0.00301,"16.4":0},G:{"8":0.00292,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.2077,"10.0-10.2":0,"10.3":0.07652,"11.0-11.2":0.00364,"11.3-11.4":0,"12.0-12.1":0.0102,"12.2-12.5":0.6734,"13.0-13.1":0.00292,"13.2":0.00364,"13.3":0.03352,"13.4-13.7":0.24852,"14.0-14.4":0.438,"14.5-14.8":0.53566,"15.0-15.1":0.28423,"15.2-15.3":0.24633,"15.4":0.13337,"15.5":0.38917,"15.6":0.36585,"16.0":0.72441,"16.1":0.69308,"16.2":0.77543,"16.3":0.85195,"16.4":0.00583},P:{"4":0.7605,"20":0.17011,"5.0-5.4":0,"6.2-6.4":0.02001,"7.2-7.4":0.11007,"8.2":0,"9.2":0.02001,"10.1":0,"11.1-11.2":0.04003,"12.0":0,"13.0":0.22015,"14.0":0.01001,"15.0":0,"16.0":0.02001,"17.0":0.04003,"18.0":0.04003,"19.0":0.52034},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00607,"4.4":0,"4.4.3-4.4.4":0.57792},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00167,"9":0,"10":0,"11":0.01336,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.02549,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.66541},H:{"0":3.83718},L:{"0":81.62568},R:{_:"0"},M:{"0":0.09347},Q:{"13.1":0.04249}}; 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 6d5b11b71cc505..ae0ae527e81040 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.86251,"109":0.67769,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.03262,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.03262,"108":1.14156,"109":2.40271,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.03262,"108":0.83352,"109":0.30804},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":4.59161,"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.83352,"14.1":0.09422,"15.1":0,"15.2-15.3":0,"15.4":0.03262,"15.5":0,"15.6":0.15583,"16.0":0,"16.1":0.58709,"16.2":0,"16.3":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.23384,"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.11692,"15.0-15.1":0.11692,"15.2-15.3":0.9412,"15.4":0.11692,"15.5":0.35076,"15.6":1.40887,"16.0":17.02338,"16.1":28.05467,"16.2":7.97971,"16.3":0.11692},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.26051,"17.0":0,"18.0":0,"19.0":1.7033},I:{"0":0,"3":0,"4":0,"2.1":0,"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.18482,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":27.8339},S:{"2.5":0}}; +module.exports={C:{"109":3.82263,"110":3.82263,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 111 112 3.5 3.6"},D:{"86":0.15796,"103":0.15796,"108":0.15796,"109":6.36974,"110":5.73395,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 111 112 113"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"109":0.15796,"110":4.61638,_:"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"},E:{"4":0,"14":0.15796,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.4","12.1":0.31987,"15.6":5.25612,"16.1":0.7977,"16.2":4.45842,"16.3":0.47783},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.61563,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.17267,"14.5-14.8":0.17267,"15.0-15.1":0.34534,"15.2-15.3":0,"15.4":0,"15.5":2.0642,"15.6":0.86074,"16.0":2.0642,"16.1":2.58222,"16.2":4.99176,"16.3":5.50716,"16.4":0},P:{"4":0.2888,"20":0.71644,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.38163,"8.2":0.02044,"9.2":0.04126,"10.1":0.0217,"11.1-11.2":0.10314,"12.0":0.01031,"13.0":0.04126,"14.0":0.05157,"15.0":0.04126,"16.0":0.23723,"17.0":0.17534,"18.0":0.18566,"19.0":0.17911},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.70507,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.33799},L:{"0":37.03881},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js index 32c35ca6a61b60..f235e47145c1ba 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.00322,"44":0,"45":0,"46":0,"47":0.00161,"48":0,"49":0,"50":0,"51":0,"52":0.00161,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00161,"66":0,"67":0,"68":0.00484,"69":0,"70":0,"71":0,"72":0.00161,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00161,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00161,"90":0,"91":0.00161,"92":0,"93":0,"94":0,"95":0.00161,"96":0.00161,"97":0.00161,"98":0,"99":0.00322,"100":0.00322,"101":0.00161,"102":0.00645,"103":0.00161,"104":0.00645,"105":0.00484,"106":0.00645,"107":0.00967,"108":0.14669,"109":0.09188,"110":0.00322,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00322,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00484,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00322,"56":0,"57":0,"58":0.00161,"59":0,"60":0,"61":0,"62":0.00161,"63":0.00161,"64":0.00161,"65":0,"66":0,"67":0,"68":0.00161,"69":0.00161,"70":0.00322,"71":0.00161,"72":0,"73":0.00161,"74":0.00484,"75":0.00161,"76":0.00161,"77":0.00484,"78":0,"79":0.00484,"80":0.00484,"81":0.01451,"83":0.00161,"84":0.00161,"85":0.00484,"86":0.00322,"87":0.00322,"88":0.00322,"89":0.00161,"90":0.00161,"91":0.00806,"92":0.00161,"93":0.00806,"94":0.00322,"95":0.00645,"96":0.00645,"97":0.00322,"98":0.00322,"99":0.00322,"100":0.00322,"101":0.00322,"102":0.00484,"103":0.01128,"104":0.00645,"105":0.01128,"106":0.0129,"107":0.02902,"108":0.58193,"109":0.49488,"110":0.00161,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00161,"24":0.0274,"25":0.00161,"26":0.01612,"27":0.04514,"28":0.02096,"29":0.00322,"30":0.05481,"31":0.02418,"32":0.07254,"33":0.03385,"34":0,"35":0.00484,"36":0.00645,"37":0.01128,"38":0.02902,"39":0.00484,"40":0,"41":0.00322,"42":0.04352,"43":0.00645,"44":0.00322,"45":0.00645,"46":0.02096,"47":0.00645,"48":0,"49":0,"50":0.01451,"51":0.00967,"52":0,"53":0.00161,"54":0.01612,"55":0.0129,"56":0.00322,"57":0.01451,"58":0.03708,"60":0.24664,"62":0.00322,"63":0.29016,"64":0.07576,"65":0.03546,"66":0.28855,"67":0.03063,"68":0,"69":0.00322,"70":0.00484,"71":0.00484,"72":0.01451,"73":0.03546,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00161,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00161,"87":0,"88":0.00161,"89":0,"90":0.00161,"91":0,"92":0.01128,"93":0.00484,"94":0.04997,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03546},B:{"12":0.00322,"13":0,"14":0,"15":0.00161,"16":0,"17":0,"18":0.00645,"79":0,"80":0,"81":0,"83":0,"84":0.00161,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00161,"91":0,"92":0.00322,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00161,"102":0,"103":0.00161,"104":0.00161,"105":0.00161,"106":0.00645,"107":0.00645,"108":0.09027,"109":0.0677},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00161,"14":0.00484,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00484,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00322,"14.1":0.00484,"15.1":0.00322,"15.2-15.3":0.00161,"15.4":0.00161,"15.5":0.00322,"15.6":0.00967,"16.0":0.00322,"16.1":0.00645,"16.2":0.00806,"16.3":0},G:{"8":0.00114,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00114,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00227,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03976,"10.0-10.2":0.00227,"10.3":0.05112,"11.0-11.2":0.01477,"11.3-11.4":0.00568,"12.0-12.1":0.05226,"12.2-12.5":0.94743,"13.0-13.1":0.04885,"13.2":0.01704,"13.3":0.08861,"13.4-13.7":0.18403,"14.0-14.4":0.92243,"14.5-14.8":0.89631,"15.0-15.1":0.52483,"15.2-15.3":0.54301,"15.4":0.41805,"15.5":0.6691,"15.6":0.85995,"16.0":1.40637,"16.1":1.35866,"16.2":1.44159,"16.3":0.08747},P:{"4":0.05033,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05033,"8.2":0,"9.2":0.0302,"10.1":0,"11.1-11.2":0.02013,"12.0":0,"13.0":0.02013,"14.0":0.02013,"15.0":0.02013,"16.0":0.05033,"17.0":0.05033,"18.0":0.09059,"19.0":0.50328},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00175,"4.2-4.3":0.00263,"4.4":0,"4.4.3-4.4.4":0.05691},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00322,"5.5":0},J:{"7":0,"10":0.00839},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.31874},Q:{"13.1":0.00839},O:{"0":1.19948},H:{"0":28.2072},L:{"0":49.69384},S:{"2.5":0.05872}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00514,"44":0,"45":0,"46":0,"47":0.00171,"48":0,"49":0,"50":0,"51":0,"52":0.00171,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00171,"66":0,"67":0,"68":0.00514,"69":0,"70":0,"71":0,"72":0.00171,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00171,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00171,"92":0,"93":0,"94":0,"95":0,"96":0.00171,"97":0.00171,"98":0.00171,"99":0.00343,"100":0.00686,"101":0.00171,"102":0.00686,"103":0.00171,"104":0.00343,"105":0.00343,"106":0.00514,"107":0.00514,"108":0.01371,"109":0.1714,"110":0.10284,"111":0.00343,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00343,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00171,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00514,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00343,"56":0.00171,"57":0,"58":0.00343,"59":0,"60":0,"61":0,"62":0.00171,"63":0,"64":0.00343,"65":0,"66":0,"67":0,"68":0.00171,"69":0.00171,"70":0.00343,"71":0,"72":0.00171,"73":0.00171,"74":0.00343,"75":0.00171,"76":0.00171,"77":0.00514,"78":0,"79":0.00514,"80":0.00514,"81":0.01028,"83":0.00171,"84":0.00171,"85":0.00514,"86":0.00343,"87":0.00343,"88":0.00343,"89":0.00171,"90":0.00171,"91":0.00686,"92":0.00171,"93":0.00686,"94":0.00514,"95":0.00686,"96":0.00171,"97":0.00343,"98":0.00171,"99":0.00171,"100":0.00514,"101":0.00171,"102":0.00857,"103":0.01028,"104":0.00686,"105":0.01028,"106":0.00857,"107":0.01714,"108":0.04628,"109":0.82786,"110":0.37194,"111":0.00171,"112":0,"113":0},F:{"9":0,"11":0,"12":0.00171,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00171,"24":0.02571,"25":0,"26":0.01371,"27":0.02914,"28":0.01885,"29":0.00343,"30":0.02571,"31":0.01028,"32":0.02571,"33":0.012,"34":0,"35":0.00171,"36":0.00514,"37":0.00343,"38":0.01371,"39":0.00171,"40":0,"41":0.00171,"42":0.02228,"43":0,"44":0.00171,"45":0.00514,"46":0.01543,"47":0.00514,"48":0,"49":0,"50":0.01543,"51":0.01028,"52":0,"53":0.00171,"54":0.01543,"55":0.012,"56":0.00343,"57":0.01543,"58":0.03771,"60":0.23996,"62":0.00343,"63":0.26396,"64":0.07199,"65":0.03257,"66":0.36508,"67":0.49535,"68":0,"69":0.00343,"70":0.00686,"71":0.00514,"72":0.01371,"73":0.04114,"74":0.00514,"75":0,"76":0,"77":0,"78":0,"79":0.00171,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00171,"86":0,"87":0,"88":0.00171,"89":0,"90":0.00171,"91":0,"92":0.00343,"93":0.00171,"94":0.02914,"95":0.03085,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03942},B:{"12":0.00343,"13":0,"14":0,"15":0.00171,"16":0,"17":0,"18":0.00514,"79":0,"80":0,"81":0,"83":0,"84":0.00171,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00343,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00171,"102":0,"103":0,"104":0.00171,"105":0.00171,"106":0.00171,"107":0.00343,"108":0.012,"109":0.09084,"110":0.08399},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00171,"14":0.00343,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00343,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00343,"14.1":0.00514,"15.1":0.00171,"15.2-15.3":0.00171,"15.4":0.00171,"15.5":0.00171,"15.6":0.01028,"16.0":0.00171,"16.1":0.00514,"16.2":0.00857,"16.3":0.00686,"16.4":0},G:{"8":0.00241,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00241,"5.0-5.1":0.0012,"6.0-6.1":0.0012,"7.0-7.1":0.00602,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01807,"10.0-10.2":0.00241,"10.3":0.03614,"11.0-11.2":0.00964,"11.3-11.4":0.00482,"12.0-12.1":0.06987,"12.2-12.5":0.97697,"13.0-13.1":0.04698,"13.2":0.02048,"13.3":0.07951,"13.4-13.7":0.16865,"14.0-14.4":0.91554,"14.5-14.8":0.93722,"15.0-15.1":0.50114,"15.2-15.3":0.51198,"15.4":0.38669,"15.5":0.65292,"15.6":0.78664,"16.0":1.33355,"16.1":1.22031,"16.2":1.52991,"16.3":0.95168,"16.4":0.00361},P:{"4":0.04153,"20":0.12458,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05191,"8.2":0,"9.2":0.03114,"10.1":0,"11.1-11.2":0.02076,"12.0":0,"13.0":0.02076,"14.0":0.02076,"15.0":0.02076,"16.0":0.05191,"17.0":0.04153,"18.0":0.06229,"19.0":0.41525},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00356,"4.4":0,"4.4.3-4.4.4":0.04844},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00514,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.04972,_:"3.0-3.1"},J:{"7":0,"10":0.00829},O:{"0":1.20976},H:{"0":26.79732},L:{"0":50.26306},R:{_:"0"},M:{"0":0.33144},Q:{"13.1":0.00829}}; 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 59936f7b253185..333ff023ff98c2 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.00378,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00378,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00378,"90":0,"91":0.00378,"92":0,"93":0,"94":0,"95":0,"96":0.00378,"97":0,"98":0.00756,"99":0,"100":0.00378,"101":0,"102":0.00378,"103":0.00756,"104":0.00756,"105":0.00378,"106":0.00756,"107":0.0189,"108":0.40446,"109":0.25326,"110":0.00378,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00378,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00378,"39":0,"40":0.00756,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00756,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00378,"61":0,"62":0.00378,"63":0,"64":0,"65":0.00378,"66":0.00378,"67":0,"68":0.00378,"69":0.00378,"70":0.00378,"71":0,"72":0.00378,"73":0.00378,"74":0,"75":0.00756,"76":0.00378,"77":0.00756,"78":0,"79":0.04158,"80":0.00756,"81":0.01512,"83":0.0189,"84":0.00378,"85":0.00378,"86":0.00378,"87":0.01512,"88":0.00756,"89":0.00378,"90":0.00378,"91":0.04536,"92":0.00756,"93":0.00378,"94":0.00378,"95":0.00378,"96":0.01134,"97":0.01512,"98":0.01134,"99":0.0189,"100":0.03402,"101":0.01134,"102":0.0189,"103":0.06426,"104":0.02646,"105":0.02268,"106":0.03024,"107":0.13608,"108":4.7817,"109":4.44528,"110":0.00756,"111":0.00378,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00378,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04914,"64":0.00378,"65":0,"66":0.00378,"67":0,"68":0,"69":0,"70":0.00378,"71":0,"72":0,"73":0.01134,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.2268,"94":0.40824,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00378,"16":0,"17":0,"18":0.00378,"79":0,"80":0,"81":0,"83":0,"84":0.00378,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00756,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00756,"104":0.00378,"105":0.00756,"106":0.00378,"107":0.03024,"108":0.55566,"109":0.63504},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00756,"15":0.00378,_:"0","3.1":0,"3.2":0,"5.1":0.00378,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01134,"14.1":0.0378,"15.1":0.00378,"15.2-15.3":0.00378,"15.4":0.00756,"15.5":0.0189,"15.6":0.0945,"16.0":0.00756,"16.1":0.0378,"16.2":0.0567,"16.3":0.00378},G:{"8":0,"3.2":0,"4.0-4.1":0.00215,"4.2-4.3":0,"5.0-5.1":0.00646,"6.0-6.1":0,"7.0-7.1":0.04522,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06998,"10.0-10.2":0,"10.3":0.02584,"11.0-11.2":0.01723,"11.3-11.4":0.00431,"12.0-12.1":0.00323,"12.2-12.5":0.32943,"13.0-13.1":0.00861,"13.2":0.00323,"13.3":0.01723,"13.4-13.7":0.03014,"14.0-14.4":0.14426,"14.5-14.8":0.29928,"15.0-15.1":0.11196,"15.2-15.3":0.13672,"15.4":0.17656,"15.5":0.27452,"15.6":1.07441,"16.0":1.54917,"16.1":3.13926,"16.2":2.1542,"16.3":0.17979},P:{"4":0.23572,"5.0-5.4":0,"6.2-6.4":0.01025,"7.2-7.4":0.44069,"8.2":0,"9.2":0.0205,"10.1":0.01025,"11.1-11.2":0.13323,"12.0":0.0205,"13.0":0.07174,"14.0":0.07174,"15.0":0.06149,"16.0":0.20497,"17.0":0.18447,"18.0":0.23572,"19.0":2.25467},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01526,"4.2-4.3":0.02543,"4.4":0,"4.4.3-4.4.4":0.16272},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0189,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14306},Q:{"13.1":0},O:{"0":0.1866},H:{"0":0.41221},L:{"0":70.37006},S:{"2.5":0.00622}}; +module.exports={C:{"48":0.00757,"52":0.01136,"71":0.01514,"88":0.00757,"97":0.00379,"98":0.03029,"99":0.00757,"102":0.01136,"103":0.00757,"104":0.00757,"105":0.01514,"106":0.01514,"107":0.0265,"108":0.04543,"109":0.8935,"110":0.65119,"111":0.00379,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 100 101 112 3.5 3.6"},D:{"38":0.00379,"42":0.00757,"49":0.01136,"66":0.00757,"68":0.01136,"69":0.01136,"70":0.00757,"72":0.00379,"73":0.00757,"75":0.04543,"76":0.01136,"77":0.01136,"78":0.00379,"79":0.09465,"80":0.01136,"81":0.01136,"83":0.01893,"84":0.00757,"86":0.00379,"87":0.01514,"88":0.0265,"90":0.00379,"91":0.43539,"92":0.01136,"93":0.01136,"94":0.00757,"95":0.00757,"96":0.03029,"97":0.07951,"98":0.01893,"99":0.03407,"100":0.04922,"101":0.01893,"102":0.06058,"103":0.15523,"104":0.06815,"105":0.06058,"106":0.06058,"107":0.12115,"108":0.35967,"109":15.59832,"110":9.34006,"111":0.02272,"112":0.00757,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 71 74 85 89 113"},F:{"85":0.00379,"93":0.04543,"94":0.8935,"95":0.45053,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00379,"18":0.01514,"84":0.00757,"85":0.00757,"92":0.02272,"102":0.00757,"103":0.01514,"104":0.01136,"105":0.01136,"106":0.00757,"107":0.04922,"108":0.04165,"109":1.18123,"110":1.64312,_:"12 13 15 16 17 79 80 81 83 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101"},E:{"4":0,"14":0.01136,"15":0.00379,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 16.4","5.1":0.01514,"13.1":0.04543,"14.1":0.06058,"15.1":0.03407,"15.4":0.01893,"15.5":0.053,"15.6":0.16658,"16.0":0.04165,"16.1":0.06058,"16.2":0.14765,"16.3":0.10979},G:{"8":0,"3.2":0,"4.0-4.1":0.00821,"4.2-4.3":0,"5.0-5.1":0.00299,"6.0-6.1":0,"7.0-7.1":0.02463,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02538,"10.0-10.2":0,"10.3":0.01119,"11.0-11.2":0.00672,"11.3-11.4":0.00299,"12.0-12.1":0.00299,"12.2-12.5":0.18658,"13.0-13.1":0.00448,"13.2":0.00149,"13.3":0.00522,"13.4-13.7":0.02687,"14.0-14.4":0.09329,"14.5-14.8":0.19479,"15.0-15.1":0.05971,"15.2-15.3":0.06568,"15.4":0.11568,"15.5":0.17837,"15.6":0.43735,"16.0":0.92694,"16.1":1.56804,"16.2":1.62327,"16.3":1.08666,"16.4":0.00299},P:{"4":0.2888,"20":0.68074,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.38163,"8.2":0.02044,"9.2":0.04126,"10.1":0.0217,"11.1-11.2":0.10314,"12.0":0.01031,"13.0":0.04126,"14.0":0.05157,"15.0":0.04126,"16.0":0.23723,"17.0":0.17534,"18.0":0.18566,"19.0":1.63997},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00233,"4.2-4.3":0.00233,"4.4":0,"4.4.3-4.4.4":0.03263},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03407,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0.00622,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.15538},H:{"0":0.35892},L:{"0":54.45033},R:{_:"0"},M:{"0":0.13673},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js index 91642c4a69a780..c745f9250adc74 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,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01019,"53":0,"54":0,"55":0.0051,"56":0.0051,"57":0,"58":0,"59":0,"60":0.0051,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0051,"67":0,"68":0.0051,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02038,"79":0.0051,"80":0.0051,"81":0.01019,"82":0.0051,"83":0.0051,"84":0,"85":0,"86":0,"87":0,"88":0.0051,"89":0,"90":0,"91":0.01529,"92":0,"93":0,"94":0.0051,"95":0.0051,"96":0,"97":0,"98":0,"99":0,"100":0.0051,"101":0,"102":0.22422,"103":0.0051,"104":0.0051,"105":0.01019,"106":0.01529,"107":0.03058,"108":1.0141,"109":0.58094,"110":0.0051,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0051,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.03058,"48":0.01019,"49":0.0051,"50":0,"51":0,"52":0.05606,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.0051,"62":0,"63":0,"64":0,"65":0,"66":0.02038,"67":0.0051,"68":0.0051,"69":0,"70":0,"71":0,"72":0.04586,"73":0.05606,"74":0.0051,"75":0,"76":0.0051,"77":0.0051,"78":0.0051,"79":0.05606,"80":0.0051,"81":0.0051,"83":0.01529,"84":0.02038,"85":0.13759,"86":0.04077,"87":0.03058,"88":0.0051,"89":0.01019,"90":0.01019,"91":0.01019,"92":0.02548,"93":0.02548,"94":0.01019,"95":0.0051,"96":0.02548,"97":0.04077,"98":0.02038,"99":0.01529,"100":0.06115,"101":0.06115,"102":0.04077,"103":0.15288,"104":0.04586,"105":0.08154,"106":0.06625,"107":0.22932,"108":7.15988,"109":6.18145,"110":0.0051,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01019,"74":0,"75":0,"76":0,"77":0.0051,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0051,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0051,"93":0.19365,"94":0.30576,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0051,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0051,"93":0,"94":0,"95":0,"96":0,"97":0.0051,"98":0,"99":0,"100":0,"101":0,"102":0.0051,"103":0.01019,"104":0.0051,"105":0.01019,"106":0.02038,"107":0.05606,"108":2.00273,"109":1.98234},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01019,"14":0.07644,"15":0.01529,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03058,"13.1":0.11211,"14.1":0.21403,"15.1":0.04077,"15.2-15.3":0.03058,"15.4":0.07134,"15.5":0.16307,"15.6":1.02939,"16.0":0.11721,"16.1":0.40258,"16.2":0.85103,"16.3":0.06625},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00312,"8.1-8.4":0.00625,"9.0-9.2":0.06561,"9.3":0.06874,"10.0-10.2":0,"10.3":0.1031,"11.0-11.2":0.00312,"11.3-11.4":0.05311,"12.0-12.1":0.00625,"12.2-12.5":0.53739,"13.0-13.1":0.0125,"13.2":0.00937,"13.3":0.02187,"13.4-13.7":0.07811,"14.0-14.4":0.29369,"14.5-14.8":0.8217,"15.0-15.1":0.19683,"15.2-15.3":0.27494,"15.4":0.32806,"15.5":0.79358,"15.6":3.45239,"16.0":4.23972,"16.1":11.28823,"16.2":6.57673,"16.3":0.50614},P:{"4":0.09303,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01034,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01034,"12.0":0.01034,"13.0":0.02067,"14.0":0.02067,"15.0":0.02067,"16.0":0.03101,"17.0":0.04135,"18.0":0.1137,"19.0":4.50683},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.03581,"2.3":0,"4.1":0.00597,"4.2-4.3":0.01791,"4.4":0,"4.4.3-4.4.4":0.10147},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0063,"7":0.0063,"8":0.01889,"9":0.03777,"10":0.01259,"11":0.1322,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.54434},Q:{"13.1":0.01962},O:{"0":0.38251},H:{"0":0.36214},L:{"0":35.30375},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00515,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01031,"53":0,"54":0,"55":0.00515,"56":0,"57":0,"58":0,"59":0,"60":0.00515,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00515,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01546,"79":0.00515,"80":0.00515,"81":0.01546,"82":0.00515,"83":0.00515,"84":0,"85":0,"86":0,"87":0,"88":0.00515,"89":0,"90":0,"91":0.01546,"92":0,"93":0,"94":0.01031,"95":0,"96":0,"97":0.00515,"98":0,"99":0,"100":0.00515,"101":0,"102":0.34525,"103":0.00515,"104":0.00515,"105":0.00515,"106":0.01031,"107":0.01546,"108":0.05153,"109":0.98422,"110":0.66989,"111":0.00515,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00515,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.03607,"48":0.01031,"49":0.01031,"50":0,"51":0,"52":0.03607,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00515,"61":0.00515,"62":0,"63":0,"64":0,"65":0,"66":0.01546,"67":0.00515,"68":0.00515,"69":0,"70":0,"71":0,"72":0.03092,"73":0.00515,"74":0.00515,"75":0.00515,"76":0.00515,"77":0.00515,"78":0.01031,"79":0.06699,"80":0.01031,"81":0.00515,"83":0.01546,"84":0.03092,"85":0.14428,"86":0.06184,"87":0.03092,"88":0.01031,"89":0.01031,"90":0.01031,"91":0.01031,"92":0.02061,"93":0.02061,"94":0.00515,"95":0.00515,"96":0.02061,"97":0.01031,"98":0.02061,"99":0.01031,"100":0.0773,"101":0.0773,"102":0.05153,"103":0.15974,"104":0.05153,"105":0.05668,"106":0.05153,"107":0.09275,"108":0.64928,"109":8.03353,"110":5.05509,"111":0.00515,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00515,"67":0.02577,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00515,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00515,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03092,"94":0.29372,"95":0.19581,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01546,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00515,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00515,"93":0,"94":0,"95":0,"96":0,"97":0.00515,"98":0,"99":0,"100":0,"101":0,"102":0.00515,"103":0.00515,"104":0.00515,"105":0.00515,"106":0.01031,"107":0.02061,"108":0.10821,"109":1.70564,"110":2.2364},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00515,"14":0.07214,"15":0.01546,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01031,"10.1":0,"11.1":0,"12.1":0.03607,"13.1":0.10821,"14.1":0.18551,"15.1":0.03607,"15.2-15.3":0.03092,"15.4":0.06184,"15.5":0.12883,"15.6":0.65443,"16.0":0.0773,"16.1":0.25765,"16.2":0.91723,"16.3":0.64928,"16.4":0.03092},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0031,"8.1-8.4":0,"9.0-9.2":0.09298,"9.3":0.08988,"10.0-10.2":0,"10.3":0.10228,"11.0-11.2":0.0093,"11.3-11.4":0.04649,"12.0-12.1":0.0124,"12.2-12.5":0.51139,"13.0-13.1":0.0093,"13.2":0.0093,"13.3":0.0217,"13.4-13.7":0.08678,"14.0-14.4":0.26035,"14.5-14.8":0.68496,"15.0-15.1":0.17666,"15.2-15.3":0.25415,"15.4":0.28204,"15.5":0.63537,"15.6":2.34311,"16.0":3.3535,"16.1":8.34656,"16.2":7.95914,"16.3":4.27711,"16.4":0.0217},P:{"4":0.103,"20":1.83338,"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.0103,"12.0":0.0103,"13.0":0.0206,"14.0":0.0103,"15.0":0.0103,"16.0":0.0309,"17.0":0.0412,"18.0":0.0721,"19.0":2.61617},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.04397,"2.3":0,"4.1":0.00489,"4.2-4.3":0.0342,"4.4":0,"4.4.3-4.4.4":0.07817},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00658,"7":0,"8":0.01975,"9":0.03951,"10":0.01317,"11":0.15803,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.42654},H:{"0":0.39464},L:{"0":34.75296},R:{_:"0"},M:{"0":0.6398},Q:{"13.1":0.01454}}; 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 03846ac833f6a7..4d156621079442 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.00615,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.0246,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01845,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00615,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00615,"102":0.1476,"103":0.00615,"104":0,"105":0.01845,"106":0.0123,"107":0.01845,"108":0.94095,"109":0.42435,"110":0.00615,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00615,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0123,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00615,"65":0,"66":0.0984,"67":0.00615,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01845,"80":0.00615,"81":0.00615,"83":0,"84":0.00615,"85":2.98275,"86":0.0123,"87":0.0246,"88":0.00615,"89":0.01845,"90":0.0123,"91":0.0861,"92":0.01845,"93":0.0615,"94":0.0123,"95":0.00615,"96":0.0123,"97":0.00615,"98":0.0123,"99":0.0123,"100":0.03075,"101":0.0246,"102":0.03075,"103":0.11685,"104":0.0369,"105":0.0861,"106":0.05535,"107":0.3936,"108":13.1241,"109":8.59155,"110":0.00615,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0123,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00615,"93":0.492,"94":0.44895,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0123,"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.00615,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00615,"104":0.00615,"105":0.01845,"106":0.00615,"107":0.06765,"108":2.15865,"109":1.92495},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00615,"14":0.0738,"15":0.0246,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00615,"10.1":0,"11.1":0.01845,"12.1":0.01845,"13.1":0.09225,"14.1":0.27675,"15.1":0.04305,"15.2-15.3":0.05535,"15.4":0.15375,"15.5":0.2214,"15.6":1.3653,"16.0":0.0984,"16.1":0.6396,"16.2":0.9471,"16.3":0.0984},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05185,"10.0-10.2":0.01197,"10.3":0.09173,"11.0-11.2":0.01197,"11.3-11.4":0.15156,"12.0-12.1":0.02393,"12.2-12.5":0.40682,"13.0-13.1":0.00798,"13.2":0.00798,"13.3":0.02393,"13.4-13.7":0.05983,"14.0-14.4":0.2752,"14.5-14.8":0.98912,"15.0-15.1":0.18347,"15.2-15.3":0.40283,"15.4":0.41878,"15.5":1.08085,"15.6":4.85386,"16.0":6.07431,"16.1":15.14789,"16.2":7.69359,"16.3":0.57433},P:{"4":0.04104,"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.01026,"15.0":0,"16.0":0.01026,"17.0":0.03078,"18.0":0.04104,"19.0":2.28825},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00349,"4.2-4.3":0.05234,"4.4":0,"4.4.3-4.4.4":0.04187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05535,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.28875},Q:{"13.1":0},O:{"0":0.01925},H:{"0":0.16767},L:{"0":19.45295},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00623,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00623,"59":0.02494,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01247,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00623,"88":0,"89":0,"90":0,"91":0.00623,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01247,"102":0.14338,"103":0,"104":0,"105":0.01247,"106":0.00623,"107":0.00623,"108":0.03117,"109":0.77925,"110":0.44885,"111":0.00623,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00623,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01247,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00623,"65":0,"66":0.11845,"67":0.00623,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00623,"77":0,"78":0.00623,"79":0.01247,"80":0.00623,"81":0.00623,"83":0,"84":0.00623,"85":3.26038,"86":0.01247,"87":0.03117,"88":0.00623,"89":0.0187,"90":0.01247,"91":0.21819,"92":0.02494,"93":0.0187,"94":0.01247,"95":0.00623,"96":0.00623,"97":0.00623,"98":0.01247,"99":0.00623,"100":0.0374,"101":0.02494,"102":0.0187,"103":0.15585,"104":0.03117,"105":0.20572,"106":0.03117,"107":0.17455,"108":1.12212,"109":14.41301,"110":6.98208,"111":0.00623,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01247,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.06857,"94":0.59223,"95":0.25559,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01247,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00623,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00623,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01247,"104":0,"105":0.00623,"106":0.00623,"107":0.02494,"108":0.09974,"109":1.93254,"110":2.25047},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00623,"14":0.06857,"15":0.0187,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00623,"10.1":0,"11.1":0.02494,"12.1":0.01247,"13.1":0.08104,"14.1":0.24313,"15.1":0.04987,"15.2-15.3":0.04364,"15.4":0.11845,"15.5":0.17455,"15.6":0.86653,"16.0":0.06857,"16.1":0.3491,"16.2":0.90393,"16.3":0.88523,"16.4":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.08036,"10.0-10.2":0.00765,"10.3":0.09567,"11.0-11.2":0.01148,"11.3-11.4":0.21431,"12.0-12.1":0.01531,"12.2-12.5":0.41713,"13.0-13.1":0.00383,"13.2":0.00765,"13.3":0.01531,"13.4-13.7":0.04592,"14.0-14.4":0.22579,"14.5-14.8":0.83044,"15.0-15.1":0.16456,"15.2-15.3":0.33294,"15.4":0.32529,"15.5":0.82278,"15.6":3.26434,"16.0":4.71474,"16.1":11.03677,"16.2":9.5328,"16.3":4.88695,"16.4":0.01148},P:{"4":0.05093,"20":0.93711,"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.01019,"15.0":0,"16.0":0.02037,"17.0":0.02037,"18.0":0.04074,"19.0":1.50753},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.12076,"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.05611,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01506},H:{"0":0.1747},L:{"0":19.69754},R:{_:"0"},M:{"0":0.30128},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js index 80e3cfab70d7bb..d6e613a8d44bf5 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.00282,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0423,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00282,"87":0.27636,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00282,"101":0,"102":0.00564,"103":0.00282,"104":0,"105":0.00282,"106":0.00282,"107":0.00282,"108":0.21432,"109":0.1269,"110":0.00846,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00282,"66":0,"67":0,"68":0,"69":0.00282,"70":0.00282,"71":0,"72":0.00282,"73":0,"74":0.00282,"75":0.00282,"76":0,"77":0.00846,"78":0,"79":0.00564,"80":0,"81":0.00282,"83":0.00282,"84":0.00282,"85":0.00282,"86":0.00282,"87":0.00564,"88":0.00282,"89":0.22842,"90":0,"91":0.00282,"92":0.00282,"93":0.00282,"94":0,"95":0.00282,"96":0.00282,"97":0.00282,"98":0.00282,"99":0.00282,"100":0.00564,"101":0.00282,"102":0.00564,"103":0.02256,"104":0.00846,"105":0.00846,"106":0.0141,"107":0.0423,"108":2.8905,"109":2.82564,"110":0.00846,"111":0.00282,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00282,"64":0.00282,"65":0,"66":0.00282,"67":0.00564,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00564,"74":0,"75":0.03384,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01692,"94":0.08742,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00282,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00282,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.09588,"90":0,"91":0,"92":0.00564,"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.00282,"108":0.21714,"109":0.21432},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0423,"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.00282,"12.1":0,"13.1":0.00564,"14.1":0.01128,"15.1":0.00282,"15.2-15.3":0.00282,"15.4":0.00564,"15.5":0.01128,"15.6":0.03666,"16.0":0.00564,"16.1":0.02256,"16.2":0.03102,"16.3":0.00282},G:{"8":0,"3.2":0,"4.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.03471,"10.0-10.2":0,"10.3":0.04664,"11.0-11.2":0.01844,"11.3-11.4":0.00759,"12.0-12.1":0.01193,"12.2-12.5":0.55421,"13.0-13.1":0.00434,"13.2":0.00542,"13.3":0.02494,"13.4-13.7":0.05748,"14.0-14.4":0.17895,"14.5-14.8":0.40888,"15.0-15.1":0.06616,"15.2-15.3":0.11171,"15.4":0.13448,"15.5":0.3438,"15.6":1.37629,"16.0":0.80148,"16.1":3.06168,"16.2":1.86,"16.3":0.18654},P:{"4":0.07198,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04113,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01028,"12.0":0,"13.0":0.01028,"14.0":0,"15.0":0.01028,"16.0":0.02056,"17.0":0.04113,"18.0":0.04113,"19.0":0.5861},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01787,"4.4":0,"4.4.3-4.4.4":0.07597},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00282,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0718},Q:{"13.1":0},O:{"0":0.87596},H:{"0":0.48263},L:{"0":79.90462},S:{"2.5":0}}; +module.exports={C:{"52":0.00892,"78":0.19331,"87":1.27882,"91":0.00297,"99":0.00297,"100":0.00595,"102":0.01784,"103":0.00297,"104":0.00595,"105":0.00297,"106":0.00595,"107":0.0119,"108":0.01784,"109":0.72566,"110":0.53235,"111":0.02379,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 96 97 98 101 112 3.5 3.6"},D:{"58":0.00595,"65":0.00892,"67":0.00297,"69":0.01784,"70":0.00595,"72":0.00892,"74":0.01487,"75":0.00595,"77":0.01487,"78":0.00595,"79":0.01487,"83":0.00595,"84":0.00297,"85":0.00595,"86":0.00892,"87":0.01487,"88":0.00892,"89":1.0528,"91":0.00595,"92":0.00595,"93":0.00595,"94":0.00297,"95":0.0119,"96":0.01487,"97":0.00892,"98":0.00892,"99":0.00595,"100":0.02379,"101":0.00595,"102":0.0119,"103":0.05948,"104":0.02379,"105":0.02379,"106":0.04164,"107":0.0684,"108":0.20521,"109":13.2224,"110":7.60452,"111":0.03271,"112":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 59 60 61 62 63 64 66 68 71 73 76 80 81 90 113"},F:{"75":0.16357,"85":0.00595,"93":0.00595,"94":0.17249,"95":0.18736,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00595,"89":0.44313,"92":0.0119,"104":0.00297,"107":0.00595,"108":0.02082,"109":0.64833,"110":0.91302,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106"},E:{"4":0,"13":0.00297,"14":0.18736,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.4","11.1":0.00297,"12.1":0.00595,"13.1":0.01784,"14.1":0.03271,"15.1":0.00297,"15.2-15.3":0.00595,"15.4":0.01487,"15.5":0.02379,"15.6":0.09517,"16.0":0.0119,"16.1":0.05056,"16.2":0.09517,"16.3":0.07435},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00416,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01831,"10.0-10.2":0.00083,"10.3":0.02913,"11.0-11.2":0.01748,"11.3-11.4":0.00333,"12.0-12.1":0.00666,"12.2-12.5":0.38196,"13.0-13.1":0.0025,"13.2":0.0025,"13.3":0.01498,"13.4-13.7":0.03994,"14.0-14.4":0.12982,"14.5-14.8":0.27961,"15.0-15.1":0.04993,"15.2-15.3":0.08238,"15.4":0.08322,"15.5":0.20555,"15.6":0.7581,"16.0":0.46102,"16.1":1.67765,"16.2":1.74755,"16.3":1.15089,"16.4":0.00499},P:{"4":0.03367,"20":0.23566,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.03367,"8.2":0.02044,"9.2":0.04119,"10.1":0.0217,"11.1-11.2":0.06179,"12.0":0.0206,"13.0":0.01122,"14.0":0.07209,"15.0":0.05149,"16.0":0.01122,"17.0":0.04489,"18.0":0.03367,"19.0":0.404},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00468,"4.4":0,"4.4.3-4.4.4":0.03045},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.00595,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.81502},H:{"0":0.46562},L:{"0":61.74007},R:{_:"0"},M:{"0":0.07729},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NR.js index d0a71e39572815..bd2f8b814ac836 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.03554,"109":0.00222,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.00666,"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.01555,"103":0,"104":0.01999,"105":0,"106":0.04442,"107":0,"108":1.36147,"109":0.85953,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00888,"67":0.00222,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.10883,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00222},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.01555,"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.00666,"108":0.23321,"109":0.10883},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01555,"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.18212,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01333,"16.0":0,"16.1":0.02221,"16.2":0,"16.3":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.03441,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.20786,"13.0-13.1":0,"13.2":0,"13.3":0.01756,"13.4-13.7":0.22471,"14.0-14.4":0.46627,"14.5-14.8":0.12148,"15.0-15.1":0.15519,"15.2-15.3":0.29423,"15.4":0.31108,"15.5":0.72609,"15.6":0.31108,"16.0":2.19654,"16.1":0.91639,"16.2":0.69168,"16.3":0},P:{"4":0.07131,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.03056,"10.1":0,"11.1-11.2":0.09168,"12.0":0,"13.0":0.01019,"14.0":0.01019,"15.0":0,"16.0":0.13243,"17.0":0.01019,"18.0":0.24448,"19.0":1.5382},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00666},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":4.35624},H:{"0":0.77329},L:{"0":81.4068},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01135,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.01135,"110":0.02724,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.00681,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00454,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01816,"108":0.02497,"109":1.00107,"110":2.07478,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.01362,"66":0,"67":0.08399,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02043,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00454,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.01135,"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.00454,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.03405,"104":0,"105":0,"106":0,"107":0.01135,"108":0.01362,"109":0.23608,"110":0.30872},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.05902,"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.0908,"15.1":0.00681,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0.00681,"16.2":0,"16.3":0,"16.4":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.3263,"13.0-13.1":0,"13.2":0,"13.3":0.1153,"13.4-13.7":0,"14.0-14.4":0.03828,"14.5-14.8":0.42201,"15.0-15.1":0.3263,"15.2-15.3":0.03828,"15.4":0.03828,"15.5":0.28802,"15.6":0.26843,"16.0":0.84446,"16.1":0.59473,"16.2":0.36458,"16.3":0.42201,"16.4":0},P:{"4":0,"20":0.20421,"5.0-5.4":0,"6.2-6.4":0.07147,"7.2-7.4":0,"8.2":0,"9.2":0.03063,"10.1":0,"11.1-11.2":0.02042,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.14295,"17.0":0,"18.0":0.28589,"19.0":0.61263},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":2.06391},H:{"0":0.95869},L:{"0":86.42702},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js index 7e39719f0fc251..c0d062c730970a 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,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.11115,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.22305,"109":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.11115,"16.0":0,"16.1":0.11115,"16.2":0,"16.3":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":1.6046,"15.5":0,"15.6":3.20921,"16.0":19.24546,"16.1":40.09552,"16.2":33.68689,"16.3":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"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},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":1.60105},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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":2.11406,"109":4.46861,"110":1.88132,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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},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.23662,"15.4":0,"15.5":0,"15.6":3.76263,"16.0":0,"16.1":0.46936,"16.2":0.93872,"16.3":0.70598,"16.4":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":2.80382,"15.4":0.93461,"15.5":0.93461,"15.6":6.54225,"16.0":0.93461,"16.1":29.90743,"16.2":21.49596,"16.3":20.56136,"16.4":0},P:{"4":0,"20":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},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0.8426},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js index 15bf46f7b02415..96b279337488c7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00541,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00541,"49":0,"50":0,"51":0,"52":0.00541,"53":0,"54":0.00541,"55":0,"56":0,"57":0,"58":0,"59":0.01082,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00541,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03786,"79":0,"80":0,"81":0,"82":0.00541,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00541,"89":0,"90":0,"91":0,"92":0,"93":0.00541,"94":0,"95":0,"96":0.00541,"97":0,"98":0,"99":0.00541,"100":0,"101":0.00541,"102":0.03786,"103":0.00541,"104":0.00541,"105":0.00541,"106":0.01082,"107":0.02705,"108":1.09262,"109":0.64367,"110":0.00541,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01623,"35":0,"36":0,"37":0,"38":0.0595,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00541,"48":0,"49":0.02705,"50":0,"51":0,"52":0,"53":0.01082,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00541,"60":0,"61":0.00541,"62":0,"63":0,"64":0,"65":0.01082,"66":0.06491,"67":0.00541,"68":0,"69":0.00541,"70":0.00541,"71":0,"72":0.00541,"73":0.00541,"74":0.00541,"75":0.00541,"76":0.01623,"77":0.01082,"78":0.00541,"79":0.08114,"80":0.00541,"81":0.00541,"83":0.01623,"84":0.00541,"85":0,"86":0.01082,"87":0.03786,"88":0.00541,"89":0.01082,"90":0.03786,"91":0.00541,"92":0.01623,"93":0.04868,"94":0.01623,"95":0.00541,"96":0.03786,"97":0.03786,"98":0.02164,"99":0.04327,"100":0.03245,"101":0.02705,"102":0.03245,"103":0.22177,"104":0.06491,"105":0.07032,"106":0.09195,"107":0.33536,"108":8.19464,"109":7.08579,"110":0.01082,"111":0.00541,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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.00541,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02705,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01082,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00541,"93":0.24341,"94":0.26504,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"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,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00541,"100":0,"101":0,"102":0.00541,"103":0.00541,"104":0.00541,"105":0.00541,"106":0.00541,"107":0.09195,"108":1.74711,"109":1.73088},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00541,"13":0.02164,"14":0.11359,"15":0.02164,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01623,"12.1":0.03245,"13.1":0.20554,"14.1":0.30831,"15.1":0.04868,"15.2-15.3":0.04327,"15.4":0.12441,"15.5":0.25963,"15.6":1.61729,"16.0":0.15145,"16.1":0.44354,"16.2":1.04394,"16.3":0.07032},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01709,"7.0-7.1":0.00684,"8.1-8.4":0.01367,"9.0-9.2":0.0376,"9.3":0.21534,"10.0-10.2":0.00684,"10.3":0.23585,"11.0-11.2":0.03418,"11.3-11.4":0.16407,"12.0-12.1":0.02735,"12.2-12.5":1.08697,"13.0-13.1":0.00684,"13.2":0,"13.3":0.04444,"13.4-13.7":0.1128,"14.0-14.4":0.32131,"14.5-14.8":0.93999,"15.0-15.1":0.28029,"15.2-15.3":0.33156,"15.4":0.36916,"15.5":0.82377,"15.6":4.27953,"16.0":3.51044,"16.1":11.86441,"16.2":6.77136,"16.3":0.46487},P:{"4":0.25189,"5.0-5.4":0.02099,"6.2-6.4":0,"7.2-7.4":0.0105,"8.2":0,"9.2":0,"10.1":0.0105,"11.1-11.2":0.0105,"12.0":0,"13.0":0.03149,"14.0":0.04198,"15.0":0.02099,"16.0":0.04198,"17.0":0.04198,"18.0":0.09446,"19.0":3.04373},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00407,"4.2-4.3":0.02037,"4.4":0,"4.4.3-4.4.4":0.08964},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01442,"9":0,"10":0,"11":0.11539,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.49583},Q:{"13.1":0.00459},O:{"0":0.04591},H:{"0":0.1782},L:{"0":33.22562},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00555,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00555,"53":0,"54":0.00555,"55":0,"56":0,"57":0,"58":0,"59":0.01109,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03882,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00555,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00555,"97":0,"98":0,"99":0.00555,"100":0,"101":0.00555,"102":0.03882,"103":0,"104":0.00555,"105":0.00555,"106":0.00555,"107":0.01109,"108":0.06101,"109":1.06483,"110":0.72653,"111":0.00555,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00555,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01664,"35":0,"36":0,"37":0,"38":0.07764,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02218,"50":0,"51":0,"52":0,"53":0.01109,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00555,"60":0,"61":0.00555,"62":0,"63":0,"64":0,"65":0.01109,"66":0.06655,"67":0.00555,"68":0.00555,"69":0.00555,"70":0.00555,"71":0.00555,"72":0.00555,"73":0.00555,"74":0.01109,"75":0.00555,"76":0.01664,"77":0.00555,"78":0.00555,"79":0.09428,"80":0.00555,"81":0.00555,"83":0.01109,"84":0.01664,"85":0.00555,"86":0.00555,"87":0.03882,"88":0.00555,"89":0.01109,"90":0.02773,"91":0.00555,"92":0.02773,"93":0.04991,"94":0.01109,"95":0.00555,"96":0.01664,"97":0.02773,"98":0.02218,"99":0.04437,"100":0.02218,"101":0.02218,"102":0.02773,"103":0.23848,"104":0.04437,"105":0.05546,"106":0.06101,"107":0.16638,"108":0.94837,"109":9.35056,"110":6.16715,"111":0.01109,"112":0.00555,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00555,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00555,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03328,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00555,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03882,"94":0.32167,"95":0.14974,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00555,"18":0.00555,"79":0,"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.00555,"103":0.00555,"104":0.00555,"105":0.00555,"106":0.00555,"107":0.04991,"108":0.07764,"109":1.46414,"110":2.0853},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00555,"13":0.02773,"14":0.12756,"15":0.02218,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01664,"12.1":0.03328,"13.1":0.19411,"14.1":0.31612,"15.1":0.04437,"15.2-15.3":0.03882,"15.4":0.11647,"15.5":0.22184,"15.6":1.20348,"16.0":0.11092,"16.1":0.31612,"16.2":1.20903,"16.3":0.73207,"16.4":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.02046,"7.0-7.1":0.00682,"8.1-8.4":0.01364,"9.0-9.2":0.03751,"9.3":0.1978,"10.0-10.2":0.00341,"10.3":0.24214,"11.0-11.2":0.02728,"11.3-11.4":0.17393,"12.0-12.1":0.02387,"12.2-12.5":1.10496,"13.0-13.1":0.00682,"13.2":0,"13.3":0.05457,"13.4-13.7":0.10231,"14.0-14.4":0.3274,"14.5-14.8":0.8526,"15.0-15.1":0.25578,"15.2-15.3":0.31034,"15.4":0.32399,"15.5":0.67185,"15.6":2.9568,"16.0":2.72149,"16.1":8.95567,"16.2":8.73399,"16.3":3.93558,"16.4":0.01023},P:{"4":0.26441,"20":1.16342,"5.0-5.4":0.02115,"6.2-6.4":0,"7.2-7.4":0.01058,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01058,"12.0":0,"13.0":0.03173,"14.0":0.02115,"15.0":0.02115,"16.0":0.03173,"17.0":0.04231,"18.0":0.07404,"19.0":1.72397},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01622,"4.4":0,"4.4.3-4.4.4":0.08924},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.1331,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.04454},H:{"0":0.18554},L:{"0":32.09473},R:{_:"0"},M:{"0":0.47212},Q:{"13.1":0.00445}}; 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 5aab9a72024d16..7ec77e932557ef 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.00582,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00291,"108":0.09306,"109":0.04944,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00291,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00291,"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,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00291,"70":0.00291,"71":0.00291,"72":0.00291,"73":0.00291,"74":0.00291,"75":0.00291,"76":0.00291,"77":0,"78":0.00291,"79":0.01163,"80":0.00291,"81":0.00872,"83":0.00582,"84":0.00582,"85":0.00291,"86":0.00872,"87":0.00872,"88":0.00872,"89":0.00582,"90":0.00291,"91":0.00872,"92":0.04944,"93":0.00872,"94":0.00291,"95":0.01163,"96":0.00582,"97":0.00582,"98":0.00582,"99":0.00291,"100":0.01163,"101":0.00872,"102":0.01454,"103":0.02908,"104":0.00872,"105":0.01163,"106":0.01745,"107":0.04362,"108":3.36746,"109":2.32349,"110":0.00872,"111":0.00291,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00291,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00291,"67":0.00291,"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,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.04653,"94":0.06688,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00291,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00291,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00291,"102":0,"103":0.00291,"104":0.00291,"105":0.00291,"106":0.00582,"107":0.01163,"108":0.38095,"109":0.30243},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00291,"14":0.02908,"15":0.00582,_:"0","3.1":0,"3.2":0,"5.1":0.00582,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00291,"13.1":0.00872,"14.1":0.04071,"15.1":0.00872,"15.2-15.3":0.00582,"15.4":0.02036,"15.5":0.0349,"15.6":0.16285,"16.0":0.01163,"16.1":0.07561,"16.2":0.08724,"16.3":0.00582},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00231,"6.0-6.1":0.00462,"7.0-7.1":0.03693,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08539,"10.0-10.2":0,"10.3":0.04847,"11.0-11.2":0.00692,"11.3-11.4":0.00462,"12.0-12.1":0.01616,"12.2-12.5":0.60928,"13.0-13.1":0.01385,"13.2":0.02308,"13.3":0.06462,"13.4-13.7":0.12924,"14.0-14.4":0.42696,"14.5-14.8":0.78468,"15.0-15.1":0.20309,"15.2-15.3":0.34157,"15.4":0.48004,"15.5":1.00624,"15.6":2.58021,"16.0":3.58645,"16.1":6.04203,"16.2":4.2465,"16.3":0.36695},P:{"4":0.12307,"5.0-5.4":0,"6.2-6.4":0.01026,"7.2-7.4":0.25639,"8.2":0,"9.2":0.02051,"10.1":0,"11.1-11.2":0.15383,"12.0":0.03077,"13.0":0.14358,"14.0":0.16409,"15.0":0.14358,"16.0":0.25639,"17.0":0.1846,"18.0":0.20511,"19.0":3.14849},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01623,"4.4":0,"4.4.3-4.4.4":0.08576},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.2908,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07092},Q:{"13.1":0},O:{"0":0.99288},H:{"0":0.55057},L:{"0":62.45139},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00327,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00327,"109":0.10778,"110":0.07185,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00327,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00327,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00327,"66":0,"67":0,"68":0.00327,"69":0.00653,"70":0.00327,"71":0.00327,"72":0.00327,"73":0.00327,"74":0.00327,"75":0,"76":0.00327,"77":0,"78":0.00327,"79":0.01306,"80":0.00327,"81":0.0098,"83":0.00327,"84":0,"85":0.00327,"86":0.00327,"87":0.00653,"88":0.0098,"89":0.00327,"90":0.00327,"91":0.0098,"92":0.04246,"93":0.0098,"94":0.00327,"95":0.01306,"96":0.00327,"97":0.00327,"98":0.00653,"99":0.00327,"100":0.00653,"101":0.00653,"102":0.01306,"103":0.04899,"104":0.00653,"105":0.0098,"106":0.01306,"107":0.0196,"108":0.20902,"109":4.14129,"110":3.0831,"111":0.0098,"112":0.00327,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00653,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00327,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00327,"67":0.0098,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00327,"74":0.00327,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0098,"94":0.08492,"95":0.05879,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00327,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00327,"93":0,"94":0.00327,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00327,"102":0,"103":0.00327,"104":0,"105":0.00327,"106":0,"107":0.00653,"108":0.01633,"109":0.36906,"110":0.57482},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00327,"14":0.01306,"15":0.00653,_:"0","3.1":0,"3.2":0,"5.1":0.00653,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01306,"13.1":0.0098,"14.1":0.04572,"15.1":0.00653,"15.2-15.3":0.00653,"15.4":0.03266,"15.5":0.02939,"15.6":0.14044,"16.0":0.01306,"16.1":0.06532,"16.2":0.1633,"16.3":0.08165,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00225,"6.0-6.1":0,"7.0-7.1":0.0494,"8.1-8.4":0,"9.0-9.2":0.00449,"9.3":0.0494,"10.0-10.2":0,"10.3":0.05165,"11.0-11.2":0.00449,"11.3-11.4":0.00449,"12.0-12.1":0.01572,"12.2-12.5":0.63101,"13.0-13.1":0.01796,"13.2":0.00898,"13.3":0.04716,"13.4-13.7":0.09656,"14.0-14.4":0.35256,"14.5-14.8":0.60631,"15.0-15.1":0.15944,"15.2-15.3":0.21558,"15.4":0.35031,"15.5":0.72982,"15.6":1.67072,"16.0":2.63632,"16.1":4.23743,"16.2":4.74718,"16.3":3.8961,"16.4":0.01572},P:{"4":0.13263,"20":0.77538,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12243,"8.2":0,"9.2":0.03061,"10.1":0,"11.1-11.2":0.07142,"12.0":0.03061,"13.0":0.09182,"14.0":0.06121,"15.0":0.06121,"16.0":0.13263,"17.0":0.11223,"18.0":0.10202,"19.0":1.32631},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0224,"4.4":0,"4.4.3-4.4.4":0.15679},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00337,"9":0,"10":0.00337,"11":0.09777,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.52862},H:{"0":0.38252},L:{"0":62.52702},R:{_:"0"},M:{"0":0.06734},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PA.js index 15ab4525c3888d..fc5c326313d41b 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.00377,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00377,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00377,"73":0.02639,"74":0,"75":0,"76":0,"77":0,"78":0.00377,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01885,"98":0.03016,"99":0,"100":0,"101":0,"102":0.00377,"103":0.00754,"104":0.0377,"105":0.00377,"106":0.00377,"107":0.00754,"108":0.31291,"109":0.15834,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00377,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00377,"48":0,"49":0.00754,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00377,"58":0,"59":0,"60":0,"61":0,"62":0.00377,"63":0,"64":0,"65":0,"66":0,"67":0.00377,"68":0.01885,"69":0,"70":0.00377,"71":0,"72":0,"73":0.00754,"74":0.00377,"75":0.00377,"76":0.01508,"77":0,"78":0.00377,"79":0.04147,"80":0.00754,"81":0.02639,"83":0.01131,"84":0.00377,"85":0.00377,"86":0.00377,"87":0.03393,"88":0.00754,"89":0.00754,"90":0.00377,"91":0.00754,"92":0.02262,"93":0.01508,"94":0.32045,"95":0.01131,"96":0.00754,"97":0.02262,"98":0.02262,"99":0.02262,"100":0.02262,"101":0.01508,"102":0.01885,"103":0.04524,"104":0.02262,"105":0.06032,"106":0.03016,"107":0.18473,"108":4.04521,"109":4.16585,"110":0.00377,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00754,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00377,"64":0,"65":0,"66":0.00377,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00754,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00754,"93":0.50895,"94":0.38077,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00377,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00377,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00377,"104":0.00377,"105":0.00377,"106":0.00377,"107":0.02639,"108":0.68991,"109":0.71253},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00377,"13":0.00754,"14":0.02639,"15":0.00377,_:"0","3.1":0,"3.2":0,"5.1":0.00377,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00377,"13.1":0.02262,"14.1":0.09425,"15.1":0.00754,"15.2-15.3":0.00754,"15.4":0.01885,"15.5":0.07163,"15.6":0.29029,"16.0":0.03393,"16.1":0.09802,"16.2":0.18096,"16.3":0.02262},G:{"8":0,"3.2":0,"4.0-4.1":0.00825,"4.2-4.3":0,"5.0-5.1":0.00165,"6.0-6.1":0.01485,"7.0-7.1":0.08748,"8.1-8.4":0.00165,"9.0-9.2":0,"9.3":0.07427,"10.0-10.2":0,"10.3":0.05942,"11.0-11.2":0.0099,"11.3-11.4":0.0033,"12.0-12.1":0,"12.2-12.5":0.44893,"13.0-13.1":0.05117,"13.2":0.00165,"13.3":0.0165,"13.4-13.7":0.04951,"14.0-14.4":0.15185,"14.5-14.8":0.48855,"15.0-15.1":0.12214,"15.2-15.3":0.16175,"15.4":0.23437,"15.5":0.41097,"15.6":1.72642,"16.0":2.19021,"16.1":4.95809,"16.2":3.54692,"16.3":0.35156},P:{"4":0.21529,"5.0-5.4":0.0205,"6.2-6.4":0,"7.2-7.4":0.47158,"8.2":0,"9.2":0.03076,"10.1":0,"11.1-11.2":0.10252,"12.0":0.0205,"13.0":0.03076,"14.0":0.03076,"15.0":0.04101,"16.0":0.10252,"17.0":0.19478,"18.0":0.20503,"19.0":2.89098},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05354,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.16956},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02639,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.3738},Q:{"13.1":0},O:{"0":0.1246},H:{"0":0.20054},L:{"0":64.00381},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02673,"74":0,"75":0,"76":0,"77":0,"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,"96":0.00382,"97":0.00764,"98":0.03054,"99":0,"100":0.00382,"101":0,"102":0.00764,"103":0.00764,"104":0.03054,"105":0.00382,"106":0.00382,"107":0.00382,"108":0.02291,"109":0.2978,"110":0.21763,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00382,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00382,"48":0,"49":0.01145,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00382,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01527,"69":0.00382,"70":0,"71":0,"72":0,"73":0.01145,"74":0.01527,"75":0.00764,"76":0.01909,"77":0.00764,"78":0.00382,"79":0.04963,"80":0.00764,"81":0.01909,"83":0.01527,"84":0.00382,"85":0.00382,"86":0.00382,"87":0.05345,"88":0.00764,"89":0.00764,"90":0.00382,"91":0.00764,"92":0.01909,"93":0.01909,"94":0.00382,"95":0.01145,"96":0.01909,"97":0.01909,"98":0.01527,"99":0.01527,"100":0.01909,"101":0.02291,"102":0.01145,"103":0.042,"104":0.02291,"105":0.04963,"106":0.02673,"107":0.11836,"108":0.25962,"109":5.03594,"110":3.26439,"111":0.00764,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00764,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00382,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00764,"64":0,"65":0,"66":0.00382,"67":0.00764,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.084,"94":0.59561,"95":0.21381,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00382,"17":0,"18":0.00382,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00382,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00382,"104":0.00382,"105":0.00382,"106":0.00382,"107":0.01527,"108":0.03054,"109":0.66051,"110":0.86669},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00382,"13":0.00764,"14":0.01527,"15":0.00382,_:"0","3.1":0,"3.2":0,"5.1":0.00382,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00382,"13.1":0.03436,"14.1":0.08018,"15.1":0.00764,"15.2-15.3":0.00764,"15.4":0.01909,"15.5":0.08018,"15.6":0.16799,"16.0":0.02673,"16.1":0.08781,"16.2":0.22144,"16.3":0.19854,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00828,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01657,"7.0-7.1":0.06296,"8.1-8.4":0.00663,"9.0-9.2":0,"9.3":0.08284,"10.0-10.2":0,"10.3":0.03645,"11.0-11.2":0.01325,"11.3-11.4":0.00331,"12.0-12.1":0.02982,"12.2-12.5":0.48377,"13.0-13.1":0.03313,"13.2":0.00166,"13.3":0.02485,"13.4-13.7":0.05136,"14.0-14.4":0.13751,"14.5-14.8":0.38602,"15.0-15.1":0.15573,"15.2-15.3":0.12094,"15.4":0.19881,"15.5":0.32969,"15.6":1.0189,"16.0":1.50599,"16.1":3.76911,"16.2":4.27773,"16.3":2.48512,"16.4":0.01491},P:{"4":0.23499,"20":1.23624,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.38824,"8.2":0,"9.2":0.02043,"10.1":0,"11.1-11.2":0.08173,"12.0":0.01022,"13.0":0.04087,"14.0":0.03065,"15.0":0.03065,"16.0":0.09195,"17.0":0.17369,"18.0":0.1839,"19.0":1.85947},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02373,"4.2-4.3":0.02373,"4.4":0,"4.4.3-4.4.4":0.17799},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00764,"9":0,"10":0,"11":0.03054,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.11746},H:{"0":0.35116},L:{"0":63.41959},R:{_:"0"},M:{"0":0.34619},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PE.js index 08be61fd267744..31e945b1b1be1d 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.00483,"41":0.00483,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00483,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00483,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00483,"85":0,"86":0,"87":0,"88":0.00966,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01932,"98":0,"99":0,"100":0,"101":0,"102":0.00483,"103":0.00483,"104":0.02897,"105":0.00483,"106":0.00966,"107":0.07244,"108":0.2656,"109":0.17867,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.02415,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00483,"48":0,"49":0.01449,"50":0,"51":0,"52":0,"53":0.00966,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00483,"66":0.00483,"67":0,"68":0.01449,"69":0.00483,"70":0.00483,"71":0,"72":0,"73":0,"74":0.00483,"75":0,"76":0,"77":0.00483,"78":0.00483,"79":0.17384,"80":0.01932,"81":0.01932,"83":0.00966,"84":0.00483,"85":0.00966,"86":0.00483,"87":0.02897,"88":0.00966,"89":0.00483,"90":0.00483,"91":0.05312,"92":0.02897,"93":0.01932,"94":0.02897,"95":0.01932,"96":0.0338,"97":0.02897,"98":0.01449,"99":0.0338,"100":0.02897,"101":0.02897,"102":0.02897,"103":0.09175,"104":0.05795,"105":0.07244,"106":0.05312,"107":0.13521,"108":8.63908,"109":8.89985,"110":0.00483,"111":0.00483,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00483,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00483,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00483,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00483,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00483,"93":0.8499,"94":0.60845,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00483,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00483,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00483,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00483,"101":0,"102":0,"103":0.00483,"104":0,"105":0.00483,"106":0.00483,"107":0.02415,"108":0.66157,"109":0.67123},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01932,"15":0.00483,_:"0","3.1":0,"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.00966,"14.1":0.02415,"15.1":0.00483,"15.2-15.3":0.00483,"15.4":0.00966,"15.5":0.02415,"15.6":0.07726,"16.0":0.01932,"16.1":0.06278,"16.2":0.07244,"16.3":0.00483},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00201,"5.0-5.1":0.0067,"6.0-6.1":0.00067,"7.0-7.1":0.00268,"8.1-8.4":0,"9.0-9.2":0.00201,"9.3":0.01875,"10.0-10.2":0,"10.3":0.01406,"11.0-11.2":0.00603,"11.3-11.4":0.00402,"12.0-12.1":0.00803,"12.2-12.5":0.18612,"13.0-13.1":0.00536,"13.2":0.00536,"13.3":0.01138,"13.4-13.7":0.02946,"14.0-14.4":0.08034,"14.5-14.8":0.24437,"15.0-15.1":0.06159,"15.2-15.3":0.09976,"15.4":0.15064,"15.5":0.2919,"15.6":0.83621,"16.0":0.94132,"16.1":1.84382,"16.2":1.31558,"16.3":0.11114},P:{"4":0.32158,"5.0-5.4":0.01005,"6.2-6.4":0,"7.2-7.4":0.09044,"8.2":0,"9.2":0.01005,"10.1":0,"11.1-11.2":0.0402,"12.0":0,"13.0":0.0402,"14.0":0.03015,"15.0":0.0201,"16.0":0.07035,"17.0":0.07035,"18.0":0.09044,"19.0":0.80394},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01017,"4.2-4.3":0.00508,"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.02897,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10342},Q:{"13.1":0},O:{"0":0.02068},H:{"0":0.20072},L:{"0":67.87162},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00486,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00486,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00486,"85":0,"86":0,"87":0,"88":0.00486,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.02429,"98":0,"99":0,"100":0,"101":0,"102":0.00971,"103":0,"104":0.01943,"105":0.00971,"106":0.00971,"107":0.02429,"108":0.01457,"109":0.26714,"110":0.17971,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00486,"35":0,"36":0,"37":0,"38":0.01943,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00486,"48":0,"49":0.01457,"50":0,"51":0,"52":0,"53":0.00971,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00971,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00486,"75":0,"76":0.00486,"77":0.00486,"78":0.00486,"79":0.18942,"80":0.00486,"81":0.01943,"83":0.00486,"84":0.00486,"85":0.00486,"86":0.00486,"87":0.02429,"88":0.00971,"89":0.00486,"90":0.00971,"91":0.04857,"92":0.02914,"93":0.02914,"94":0.00971,"95":0.02429,"96":0.034,"97":0.02914,"98":0.01943,"99":0.02429,"100":0.02429,"101":0.034,"102":0.01943,"103":0.08257,"104":0.05343,"105":0.05343,"106":0.04857,"107":0.09228,"108":0.30113,"109":10.48141,"110":7.06208,"111":0.00486,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00486,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00486,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00486,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00486,"93":0.12143,"94":0.99569,"95":0.34485,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00486,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00486,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00486,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00486,"104":0,"105":0.00486,"106":0.00486,"107":0.01457,"108":0.01943,"109":0.54884,"110":0.76255},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00971,"15":0.00486,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01457,"14.1":0.02429,"15.1":0.00486,"15.2-15.3":0.00486,"15.4":0.00486,"15.5":0.01943,"15.6":0.07286,"16.0":0.01457,"16.1":0.04857,"16.2":0.07286,"16.3":0.05343,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00326,"6.0-6.1":0,"7.0-7.1":0.00131,"8.1-8.4":0,"9.0-9.2":0.00392,"9.3":0.01762,"10.0-10.2":0,"10.3":0.01306,"11.0-11.2":0.00392,"11.3-11.4":0.00261,"12.0-12.1":0.00783,"12.2-12.5":0.20105,"13.0-13.1":0.00587,"13.2":0.00131,"13.3":0.01044,"13.4-13.7":0.02872,"14.0-14.4":0.0705,"14.5-14.8":0.22128,"15.0-15.1":0.0594,"15.2-15.3":0.06854,"15.4":0.1175,"15.5":0.24152,"15.6":0.62077,"16.0":0.73369,"16.1":1.36555,"16.2":1.40472,"16.3":0.88774,"16.4":0.00392},P:{"4":0.29544,"20":0.25469,"5.0-5.4":0.01019,"6.2-6.4":0,"7.2-7.4":0.11206,"8.2":0,"9.2":0.01019,"10.1":0,"11.1-11.2":0.03056,"12.0":0,"13.0":0.04075,"14.0":0.03056,"15.0":0.02038,"16.0":0.06113,"17.0":0.06113,"18.0":0.07131,"19.0":0.60108},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01061,"4.2-4.3":0.00424,"4.4":0,"4.4.3-4.4.4":0.09972},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02914,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02057},H:{"0":0.18502},L:{"0":67.98175},R:{_:"0"},M:{"0":0.08743},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PF.js index d489b9848c23aa..16f9992106125a 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.03685,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00461,"68":0.03685,"69":0,"70":0,"71":0,"72":0.00461,"73":0,"74":0,"75":0.00921,"76":0,"77":0,"78":0.03224,"79":0,"80":0,"81":0,"82":0.02303,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00921,"89":0,"90":0,"91":0.1566,"92":0,"93":0,"94":0.00921,"95":0,"96":0,"97":0,"98":0.00921,"99":0.00921,"100":0.00461,"101":0.00461,"102":0.06909,"103":0.00461,"104":0.00921,"105":0.00921,"106":0.01842,"107":0.06909,"108":1.33574,"109":0.9212,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00461,"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,"53":0,"54":0,"55":0,"56":0,"57":0.00461,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00921,"66":0,"67":0.03685,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00461,"77":0,"78":0,"79":0.03224,"80":0.00921,"81":0.01382,"83":0.04145,"84":0.00461,"85":0.03224,"86":0.00921,"87":0.03224,"88":0.00461,"89":0,"90":0,"91":0,"92":0.02303,"93":0.00461,"94":0,"95":0.01382,"96":0.00461,"97":0.00921,"98":0,"99":0.0783,"100":0.00461,"101":0.01382,"102":0.11976,"103":0.14739,"104":0.01842,"105":0.06909,"106":0.01842,"107":0.10133,"108":4.61982,"109":3.79074,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01842,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"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,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.00461,"66":0,"67":0.00461,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00461,"93":0.13818,"94":0.14739,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.02303,"15":0,"16":0,"17":0,"18":0.00921,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00461,"91":0,"92":0.02303,"93":0.03224,"94":0,"95":0,"96":0,"97":0.01382,"98":0.00461,"99":0,"100":0,"101":0,"102":0,"103":0.00461,"104":0.00461,"105":0.00461,"106":0.01842,"107":0.02303,"108":1.17914,"109":0.90738},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00461,"13":0.01382,"14":0.11054,"15":0.03685,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.05988,"12.1":0.05067,"13.1":0.46981,"14.1":0.34545,"15.1":0.03224,"15.2-15.3":0.04606,"15.4":0.10133,"15.5":0.22109,"15.6":1.03635,"16.0":0.13357,"16.1":0.35006,"16.2":0.70472,"16.3":0.04606},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02781,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.25646,"10.0-10.2":0.00927,"10.3":0.11432,"11.0-11.2":0.00618,"11.3-11.4":0.01854,"12.0-12.1":0.01545,"12.2-12.5":0.88679,"13.0-13.1":0.11432,"13.2":0,"13.3":0.02163,"13.4-13.7":0.02781,"14.0-14.4":0.52837,"14.5-14.8":0.98258,"15.0-15.1":0.31826,"15.2-15.3":0.42949,"15.4":0.37078,"15.5":0.71376,"15.6":3.46992,"16.0":3.39576,"16.1":11.91142,"16.2":4.99013,"16.3":0.29663},P:{"4":0.05369,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12886,"8.2":0,"9.2":0,"10.1":0.01074,"11.1-11.2":0.01074,"12.0":0.01074,"13.0":0.01074,"14.0":0.02148,"15.0":0.07517,"16.0":0.08591,"17.0":0.03222,"18.0":0.25772,"19.0":3.96247},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01981,"4.4":0,"4.4.3-4.4.4":0.05546},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.11976,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.42613},Q:{"13.1":0},O:{"0":0.03776},H:{"0":0.31661},L:{"0":42.7419},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.0049,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.09808,"49":0,"50":0,"51":0,"52":0.01471,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0049,"61":0,"62":0,"63":0,"64":0.0049,"65":0,"66":0,"67":0.01471,"68":0.02452,"69":0,"70":0,"71":0,"72":0.01471,"73":0,"74":0,"75":0.06866,"76":0,"77":0,"78":0.10789,"79":0,"80":0,"81":0,"82":0.00981,"83":0.0049,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.37761,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01471,"99":0.02452,"100":0,"101":0.0049,"102":0.10789,"103":0.0049,"104":0.00981,"105":0.00981,"106":0.00981,"107":0.02452,"108":0.06866,"109":1.68207,"110":1.01513,"111":0.0049,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0049,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.02452,"68":0,"69":0.0049,"70":0.0049,"71":0.01962,"72":0,"73":0,"74":0.0049,"75":0,"76":0.01471,"77":0,"78":0.0049,"79":0.10789,"80":0.0049,"81":0.08337,"83":0.00981,"84":0.01962,"85":0.19126,"86":0.01471,"87":0.19616,"88":0.0049,"89":0,"90":0,"91":0.0049,"92":0.05394,"93":0.0049,"94":0,"95":0.0049,"96":0.0049,"97":0,"98":0.0049,"99":0.01962,"100":0.00981,"101":0.00981,"102":0.05885,"103":0.21087,"104":0.00981,"105":0.04904,"106":0.02942,"107":0.10789,"108":0.31876,"109":6.03192,"110":3.5554,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00981,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.01962,"66":0,"67":0.0049,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00981,"94":0.20106,"95":0.1226,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01471,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0049,"90":0,"91":0,"92":0.00981,"93":0.09318,"94":0,"95":0,"96":0,"97":0,"98":0.0049,"99":0.0049,"100":0,"101":0,"102":0.0049,"103":0,"104":0.0049,"105":0.0049,"106":0.0049,"107":0.00981,"108":0.13731,"109":1.14754,"110":1.07888},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01471,"14":0.1275,"15":0.01962,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00981,"12.1":0.04414,"13.1":0.13241,"14.1":0.33838,"15.1":0.05394,"15.2-15.3":0.04414,"15.4":0.08337,"15.5":0.19126,"15.6":0.84349,"16.0":0.09318,"16.1":0.18635,"16.2":0.93666,"16.3":0.52963,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01452,"6.0-6.1":0,"7.0-7.1":0.01452,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09292,"10.0-10.2":0.01452,"10.3":0.05517,"11.0-11.2":0,"11.3-11.4":0.01161,"12.0-12.1":0.04356,"12.2-12.5":0.97854,"13.0-13.1":0.0029,"13.2":0,"13.3":0.01161,"13.4-13.7":0.02904,"14.0-14.4":0.49653,"14.5-14.8":0.99305,"15.0-15.1":0.3194,"15.2-15.3":0.27294,"15.4":0.61848,"15.5":0.77818,"15.6":2.87173,"16.0":2.94722,"16.1":6.70457,"16.2":6.90202,"16.3":3.19694,"16.4":0.01452},P:{"4":0.02064,"20":1.22805,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1032,"8.2":0,"9.2":0.01032,"10.1":0,"11.1-11.2":0.04128,"12.0":0,"13.0":0.02064,"14.0":0.02064,"15.0":0.02064,"16.0":0.08256,"17.0":0.04128,"18.0":0.12384,"19.0":2.40449},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09337},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.2403,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02038},H:{"0":0.97456},L:{"0":42.41827},R:{_:"0"},M:{"0":0.31086},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js index 38ea3b37f185a1..d81fcbf3d0c4ac 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.00331,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.01324,"58":0.00331,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00331,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00331,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00331,"100":0.00331,"101":0.01324,"102":0.00331,"103":0.00662,"104":0.00331,"105":0.00662,"106":0,"107":0.03311,"108":0.2119,"109":0.12582,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00331,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00993,"41":0,"42":0,"43":0,"44":0,"45":0.00331,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00331,"56":0.00662,"57":0,"58":0,"59":0,"60":0.00331,"61":0,"62":0,"63":0.00331,"64":0.00331,"65":0.00993,"66":0,"67":0.00331,"68":0,"69":0.01987,"70":0.01324,"71":0.00331,"72":0,"73":0,"74":0.00331,"75":0,"76":0,"77":0,"78":0.00331,"79":0.01656,"80":0.00662,"81":0.01324,"83":0,"84":0,"85":0.00331,"86":0.00331,"87":0.00993,"88":0.04967,"89":0.00662,"90":0.00331,"91":0.00331,"92":0.01324,"93":0.00331,"94":0.00993,"95":0.00662,"96":0.00662,"97":0.01324,"98":0.00331,"99":0.00993,"100":0.00662,"101":0.00662,"102":0.00993,"103":0.28475,"104":0.01324,"105":0.0298,"106":0.0298,"107":0.0894,"108":1.93694,"109":1.81443,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"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,"43":0,"44":0,"45":0.00662,"46":0.00331,"47":0,"48":0,"49":0,"50":0,"51":0.00331,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00331,"62":0,"63":0.02649,"64":0.00993,"65":0.00662,"66":0.00662,"67":0.00331,"68":0,"69":0,"70":0,"71":0,"72":0.00331,"73":0.03311,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00331,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00662,"93":0.00993,"94":0.11589,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00993,"13":0.00993,"14":0,"15":0.00662,"16":0.00662,"17":0.00662,"18":0.02318,"79":0,"80":0.00662,"81":0,"83":0,"84":0.01324,"85":0,"86":0,"87":0,"88":0,"89":0.00331,"90":0.00993,"91":0,"92":0.01987,"93":0,"94":0,"95":0.00331,"96":0.00331,"97":0,"98":0.00331,"99":0,"100":0.00662,"101":0.00331,"102":0.00331,"103":0.00662,"104":0.01324,"105":0.00993,"106":0.00993,"107":0.06291,"108":0.67544,"109":0.543},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00331,"11":0,"12":0,"13":0.00662,"14":0.00662,"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.00993,"14.1":0.01324,"15.1":0,"15.2-15.3":0,"15.4":0.00331,"15.5":0.01656,"15.6":0.09271,"16.0":0.01324,"16.1":0.01324,"16.2":0.03973,"16.3":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.00033,"7.0-7.1":0.0023,"8.1-8.4":0,"9.0-9.2":0.00526,"9.3":0.01743,"10.0-10.2":0.00132,"10.3":0.0046,"11.0-11.2":0.00164,"11.3-11.4":0.02401,"12.0-12.1":0.01447,"12.2-12.5":0.11414,"13.0-13.1":0.00954,"13.2":0.01974,"13.3":0.01414,"13.4-13.7":0.11841,"14.0-14.4":0.11874,"14.5-14.8":0.0921,"15.0-15.1":0.0898,"15.2-15.3":0.15525,"15.4":0.08552,"15.5":0.37004,"15.6":0.23518,"16.0":0.25229,"16.1":0.63911,"16.2":0.54174,"16.3":0.08388},P:{"4":0.11148,"5.0-5.4":0.01013,"6.2-6.4":0.01013,"7.2-7.4":0.51685,"8.2":0.01013,"9.2":0.07094,"10.1":0,"11.1-11.2":0.11148,"12.0":0.01013,"13.0":0.07094,"14.0":0.19255,"15.0":0.13175,"16.0":0.40537,"17.0":0.17228,"18.0":0.25336,"19.0":1.94579},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00957,"4.2-4.3":0.01915,"4.4":0,"4.4.3-4.4.4":0.20107},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00372,"11":0.05587,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.22074},Q:{"13.1":0.00669},O:{"0":1.7659},H:{"0":1.83015},L:{"0":78.66631},S:{"2.5":0.05351}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00676,"56":0,"57":0.00338,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00338,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00338,"78":0.00338,"79":0,"80":0,"81":0,"82":0.00338,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00338,"93":0,"94":0.00338,"95":0,"96":0,"97":0,"98":0.00338,"99":0.00338,"100":0.00338,"101":0.00676,"102":0.00338,"103":0.00338,"104":0.00338,"105":0.00676,"106":0.00338,"107":0.02365,"108":0.03717,"109":0.2095,"110":0.11827,"111":0.00338,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00338,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01014,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00676,"56":0.00338,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01014,"66":0.00338,"67":0.00338,"68":0.00338,"69":0.02027,"70":0.03717,"71":0,"72":0,"73":0,"74":0.00338,"75":0,"76":0,"77":0,"78":0.00676,"79":0.00338,"80":0.00338,"81":0.01352,"83":0.00338,"84":0,"85":0,"86":0,"87":0.02027,"88":0.09123,"89":0.00676,"90":0.01014,"91":0.00676,"92":0.01014,"93":0,"94":0.00676,"95":0.01014,"96":0.00676,"97":0.00676,"98":0.00338,"99":0.00676,"100":0.01014,"101":0.00338,"102":0.01014,"103":0.20612,"104":0.0169,"105":0.0169,"106":0.04055,"107":0.04055,"108":0.12502,"109":2.26731,"110":1.50703,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00338,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00338,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00338,"62":0,"63":0.00338,"64":0.00676,"65":0.00338,"66":0.00338,"67":0.04731,"68":0,"69":0,"70":0,"71":0,"72":0.00676,"73":0.03717,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00338,"90":0,"91":0,"92":0.00338,"93":0.02027,"94":0.05406,"95":0.07096,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00676,"13":0.00676,"14":0.00338,"15":0.00338,"16":0.00676,"17":0.01014,"18":0.03041,"79":0,"80":0.00338,"81":0,"83":0,"84":0.02027,"85":0.00338,"86":0,"87":0,"88":0,"89":0.01352,"90":0.03379,"91":0,"92":0.03041,"93":0,"94":0,"95":0.00676,"96":0,"97":0,"98":0.01014,"99":0.00338,"100":0.00676,"101":0.00338,"102":0,"103":0.00676,"104":0.00676,"105":0.01014,"106":0.00676,"107":0.04055,"108":0.0811,"109":0.59808,"110":0.65553},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00338,"11":0,"12":0,"13":0,"14":0.00338,"15":0.00338,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00338,"13.1":0.0169,"14.1":0.0169,"15.1":0,"15.2-15.3":0.00676,"15.4":0,"15.5":0.00338,"15.6":0.05406,"16.0":0.00676,"16.1":0.01014,"16.2":0.02027,"16.3":0.02027,"16.4":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.00142,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.01494,"9.3":0.01032,"10.0-10.2":0.00071,"10.3":0.01316,"11.0-11.2":0.0064,"11.3-11.4":0.01565,"12.0-12.1":0.00854,"12.2-12.5":0.13802,"13.0-13.1":0.00462,"13.2":0.00036,"13.3":0.01316,"13.4-13.7":0.16221,"14.0-14.4":0.09213,"14.5-14.8":0.07506,"15.0-15.1":0.19885,"15.2-15.3":0.09356,"15.4":0.0996,"15.5":0.3045,"15.6":0.40233,"16.0":0.16577,"16.1":0.40233,"16.2":0.3849,"16.3":0.70221,"16.4":0},P:{"4":0.11192,"20":0.31541,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.46803,"8.2":0,"9.2":0.24419,"10.1":0.02035,"11.1-11.2":0.09157,"12.0":0.03052,"13.0":0.21367,"14.0":0.15262,"15.0":0.07122,"16.0":0.54943,"17.0":0.10175,"18.0":0.22384,"19.0":1.42444},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01015,"4.4":0,"4.4.3-4.4.4":0.18013},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00737,"11":0.03318,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.05959,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.8605},H:{"0":1.37903},L:{"0":78.89899},R:{_:"0"},M:{"0":0.19201},Q:{"13.1":0.00662}}; 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 109ee2ca799751..edf1d4934d38a4 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.0044,"53":0,"54":0,"55":0,"56":0.03963,"57":0,"58":0,"59":0.0044,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0044,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0044,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0044,"101":0,"102":0.0044,"103":0.0044,"104":0.0044,"105":0.0044,"106":0.0044,"107":0.0044,"108":0.17612,"109":0.12769,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0044,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00881,"50":0,"51":0,"52":0.00881,"53":0.0044,"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.02642,"67":0.0044,"68":0,"69":0.0044,"70":0.0044,"71":0.0044,"72":0,"73":0,"74":0.00881,"75":0.0044,"76":0.00881,"77":0.0044,"78":0.00881,"79":0.03082,"80":0.0044,"81":0.00881,"83":0.01321,"84":0.0044,"85":0.00881,"86":0.01321,"87":0.02202,"88":0.01321,"89":0.01321,"90":0.00881,"91":0.02202,"92":0.06164,"93":0.03963,"94":0.00881,"95":0.01321,"96":0.01761,"97":0.01761,"98":0.01761,"99":0.01761,"100":0.02642,"101":0.01761,"102":0.02642,"103":0.12769,"104":0.05284,"105":0.07045,"106":0.05284,"107":0.1497,"108":7.71406,"109":5.86039,"110":0.00881,"111":0.0044,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00881,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0044,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0044,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0044,"62":0,"63":0,"64":0,"65":0,"66":0.0044,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0044,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.25097,"94":0.18933,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0044,"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,"91":0,"92":0.0044,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0044,"102":0,"103":0.0044,"104":0,"105":0.0044,"106":0.0044,"107":0.02202,"108":0.93344,"109":0.7353},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0044,"14":0.01321,"15":0.0044,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0044,"12.1":0.0044,"13.1":0.01321,"14.1":0.02642,"15.1":0.00881,"15.2-15.3":0.0044,"15.4":0.01321,"15.5":0.02202,"15.6":0.11888,"16.0":0.01321,"16.1":0.06164,"16.2":0.07925,"16.3":0.0044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00647,"6.0-6.1":0.00162,"7.0-7.1":0.00971,"8.1-8.4":0.00162,"9.0-9.2":0.01942,"9.3":0.11169,"10.0-10.2":0.00486,"10.3":0.04694,"11.0-11.2":0.01133,"11.3-11.4":0.05261,"12.0-12.1":0.01295,"12.2-12.5":0.43785,"13.0-13.1":0.0089,"13.2":0.00647,"13.3":0.02347,"13.4-13.7":0.05584,"14.0-14.4":0.15944,"14.5-14.8":0.29621,"15.0-15.1":0.08903,"15.2-15.3":0.12059,"15.4":0.17886,"15.5":0.30593,"15.6":0.80771,"16.0":1.04323,"16.1":1.91569,"16.2":1.38315,"16.3":0.11654},P:{"4":0.18537,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0.0206,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0309,"12.0":0,"13.0":0.0103,"14.0":0.0206,"15.0":0.0103,"16.0":0.0309,"17.0":0.04119,"18.0":0.07209,"19.0":0.85477},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02729,"4.4":0,"4.4.3-4.4.4":0.10234},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.67806,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07836},Q:{"13.1":0},O:{"0":0.45336},H:{"0":0.4822},L:{"0":70.48524},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00401,"52":0.00401,"53":0,"54":0,"55":0,"56":0.04006,"57":0,"58":0,"59":0.00401,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00401,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00401,"89":0,"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.00401,"103":0,"104":0.00401,"105":0.00401,"106":0.00401,"107":0.00401,"108":0.00801,"109":0.23235,"110":0.14422,"111":0.00401,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00401,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00401,"50":0,"51":0,"52":0.00401,"53":0.00401,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.02404,"67":0,"68":0,"69":0.00401,"70":0.00401,"71":0,"72":0.00401,"73":0.00401,"74":0.00801,"75":0.00401,"76":0.00801,"77":0.00401,"78":0.00801,"79":0.02404,"80":0.00401,"81":0.00801,"83":0.01202,"84":0.00401,"85":0.00801,"86":0.00801,"87":0.01602,"88":0.01202,"89":0.00801,"90":0.00801,"91":0.02804,"92":0.05208,"93":0.03205,"94":0.00801,"95":0.00801,"96":0.01202,"97":0.01202,"98":0.01202,"99":0.01602,"100":0.01602,"101":0.01202,"102":0.02003,"103":0.11617,"104":0.03205,"105":0.03605,"106":0.03605,"107":0.0641,"108":0.28042,"109":5.76463,"110":4.71506,"111":0.01202,"112":0.00401,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00801,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00401,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00401,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00401,"62":0,"63":0,"64":0,"65":0,"66":0.00401,"67":0.02404,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02804,"94":0.24036,"95":0.08413,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00401,"18":0.00401,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00401,"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.00401,"106":0.00401,"107":0.00801,"108":0.02003,"109":0.49274,"110":0.79319},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00401,"14":0.00801,"15":0.00401,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00401,"12.1":0.00401,"13.1":0.01202,"14.1":0.02404,"15.1":0.00401,"15.2-15.3":0.00401,"15.4":0.01202,"15.5":0.02003,"15.6":0.08413,"16.0":0.00801,"16.1":0.04006,"16.2":0.08413,"16.3":0.06009,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00527,"6.0-6.1":0,"7.0-7.1":0.01142,"8.1-8.4":0.00176,"9.0-9.2":0.00703,"9.3":0.0984,"10.0-10.2":0.00615,"10.3":0.04481,"11.0-11.2":0.00791,"11.3-11.4":0.04744,"12.0-12.1":0.01318,"12.2-12.5":0.43664,"13.0-13.1":0.00791,"13.2":0.00703,"13.3":0.02636,"13.4-13.7":0.05711,"14.0-14.4":0.1555,"14.5-14.8":0.28465,"15.0-15.1":0.09049,"15.2-15.3":0.11597,"15.4":0.16868,"15.5":0.28729,"15.6":0.68966,"16.0":0.94971,"16.1":1.57524,"16.2":1.66046,"16.3":1.08237,"16.4":0.00439},P:{"4":0.18572,"20":0.27857,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.02064,"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.02064,"15.0":0.01032,"16.0":0.02064,"17.0":0.03095,"18.0":0.05159,"19.0":0.60873},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02364,"4.4":0,"4.4.3-4.4.4":0.10242},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.79719,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.43756},H:{"0":0.45398},L:{"0":73.56397},R:{_:"0"},M:{"0":0.07792},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PK.js index 39622244349f9e..43607c6ca16338 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.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,"74":0,"75":0,"76":0,"77":0,"78":0.00213,"79":0,"80":0.00213,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00213,"99":0,"100":0,"101":0,"102":0.00213,"103":0,"104":0.00213,"105":0.00213,"106":0.00213,"107":0.0064,"108":0.10665,"109":0.04906,"110":0.00213,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00427,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00213,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00213,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00213,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00213,"64":0.00427,"65":0.00213,"66":0,"67":0,"68":0.00213,"69":0.00213,"70":0.00213,"71":0.00213,"72":0.00427,"73":0.00213,"74":0.01067,"75":0.00427,"76":0.00213,"77":0.00213,"78":0.00213,"79":0.00427,"80":0.00427,"81":0.0064,"83":0.0064,"84":0.0128,"85":0.06399,"86":0.01067,"87":0.01067,"88":0.00213,"89":0.00427,"90":0.00427,"91":0.00427,"92":0.00427,"93":0.0064,"94":0.00427,"95":0.0064,"96":0.00427,"97":0.00427,"98":0.00427,"99":0.00213,"100":0.00427,"101":0.00427,"102":0.0064,"103":0.01706,"104":0.00853,"105":0.01493,"106":0.01706,"107":0.04266,"108":1.97729,"109":1.33952,"110":0.00427,"111":0.00213,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00213,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0064,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00213,"62":0,"63":0.0064,"64":0.00427,"65":0.00213,"66":0.01067,"67":0.0064,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00427,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00213,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00213,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0192,"94":0.09599,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00213,"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.00213,"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.00213,"107":0.00427,"108":0.10452,"109":0.07679},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00213,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00213,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00427,"14.1":0.0064,"15.1":0.00213,"15.2-15.3":0,"15.4":0.00213,"15.5":0.00427,"15.6":0.01493,"16.0":0.00213,"16.1":0.01067,"16.2":0.01067,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00049,"5.0-5.1":0.00344,"6.0-6.1":0,"7.0-7.1":0.04864,"8.1-8.4":0,"9.0-9.2":0.00197,"9.3":0.05994,"10.0-10.2":0.00147,"10.3":0.04127,"11.0-11.2":0.00639,"11.3-11.4":0.00442,"12.0-12.1":0.00786,"12.2-12.5":0.31002,"13.0-13.1":0.00442,"13.2":0.00442,"13.3":0.01376,"13.4-13.7":0.04422,"14.0-14.4":0.11399,"14.5-14.8":0.17982,"15.0-15.1":0.05896,"15.2-15.3":0.07124,"15.4":0.07517,"15.5":0.16263,"15.6":0.42548,"16.0":0.52375,"16.1":1.06862,"16.2":0.86276,"16.3":0.085},P:{"4":0.15062,"5.0-5.4":0.01004,"6.2-6.4":0.01004,"7.2-7.4":0.03012,"8.2":0,"9.2":0.02008,"10.1":0,"11.1-11.2":0.01004,"12.0":0.01004,"13.0":0.03012,"14.0":0.02008,"15.0":0.01004,"16.0":0.02008,"17.0":0.07029,"18.0":0.06025,"19.0":0.78325},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00713,"4.4":0,"4.4.3-4.4.4":0.12486},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00237,"9":0,"10":0,"11":0.01896,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.05507},Q:{"13.1":0},O:{"0":3.076},H:{"0":1.37043},L:{"0":84.18248},S:{"2.5":0.07867}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00399,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00199,"103":0,"104":0.00199,"105":0.00199,"106":0.00199,"107":0.00399,"108":0.00399,"109":0.07573,"110":0.05381,"111":0.00199,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01196,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00199,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00199,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00199,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00199,"64":0.00399,"65":0.00199,"66":0,"67":0,"68":0.00199,"69":0.00199,"70":0.00199,"71":0.00199,"72":0.00399,"73":0.00199,"74":0.00997,"75":0.00399,"76":0.00199,"77":0.00199,"78":0.00199,"79":0.00199,"80":0.00399,"81":0.00598,"83":0.00399,"84":0.00997,"85":0.06577,"86":0.00997,"87":0.00997,"88":0.00199,"89":0.00399,"90":0.00399,"91":0.00399,"92":0.00399,"93":0.00598,"94":0.00199,"95":0.00598,"96":0.00199,"97":0.00199,"98":0.00399,"99":0.00199,"100":0.00399,"101":0.00199,"102":0.00598,"103":0.01395,"104":0.00598,"105":0.01196,"106":0.01196,"107":0.01594,"108":0.0578,"109":1.80566,"110":0.9965,"111":0.00199,"112":0.00199,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00199,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00598,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00199,"62":0,"63":0.00399,"64":0.00199,"65":0.00199,"66":0.00199,"67":0.05182,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00199,"75":0,"76":0,"77":0,"78":0,"79":0.00199,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00199,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00199,"94":0.04185,"95":0.05381,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00199,"13":0,"14":0,"15":0.00199,"16":0,"17":0,"18":0.00199,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00199,"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.00199,"108":0.00399,"109":0.06577,"110":0.09168},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00199,"14":0.00199,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00199,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00199,"14.1":0.00598,"15.1":0,"15.2-15.3":0,"15.4":0.00199,"15.5":0.00199,"15.6":0.01395,"16.0":0.00199,"16.1":0.00598,"16.2":0.00997,"16.3":0.00797,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00109,"5.0-5.1":0.00602,"6.0-6.1":0,"7.0-7.1":0.06289,"8.1-8.4":0,"9.0-9.2":0.00164,"9.3":0.06945,"10.0-10.2":0.00109,"10.3":0.04648,"11.0-11.2":0.00437,"11.3-11.4":0.00656,"12.0-12.1":0.00711,"12.2-12.5":0.33085,"13.0-13.1":0.00383,"13.2":0.00219,"13.3":0.01641,"13.4-13.7":0.04812,"14.0-14.4":0.11922,"14.5-14.8":0.20343,"15.0-15.1":0.05359,"15.2-15.3":0.0689,"15.4":0.07109,"15.5":0.15093,"15.6":0.35272,"16.0":0.43694,"16.1":0.88154,"16.2":0.91654,"16.3":0.76834,"16.4":0.00273},P:{"4":0.12331,"20":0.28772,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.03083,"8.2":0,"9.2":0.02055,"10.1":0,"11.1-11.2":0.01028,"12.0":0.01028,"13.0":0.03083,"14.0":0.01028,"15.0":0.01028,"16.0":0.02055,"17.0":0.06165,"18.0":0.0411,"19.0":0.56516},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00912,"4.4":0,"4.4.3-4.4.4":0.11675},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00219,"9":0,"10":0,"11":0.01973,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.08007,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":2.75441},H:{"0":1.05369},L:{"0":85.20211},R:{_:"0"},M:{"0":0.04804},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js index 83154d58f8daea..50f502872facd4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0166,"53":0,"54":0,"55":0,"56":0.00415,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00415,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0083,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00415,"88":0.00415,"89":0.00415,"90":0,"91":0.00415,"92":0,"93":0,"94":0,"95":0.00415,"96":0,"97":0,"98":0,"99":0.00415,"100":0.00415,"101":0.00415,"102":0.0415,"103":0.00415,"104":0.0083,"105":0.01245,"106":0.01245,"107":0.02905,"108":1.2782,"109":0.7802,"110":0.00415,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0083,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00415,"79":0.1162,"80":0.00415,"81":0.00415,"83":0.00415,"84":0.0083,"85":0.0166,"86":0.01245,"87":0.0166,"88":0.00415,"89":0.0083,"90":0.00415,"91":0.00415,"92":0.0083,"93":0.00415,"94":0.0083,"95":0.01245,"96":0.0083,"97":0.0083,"98":0.0083,"99":0.0332,"100":0.0083,"101":0.0083,"102":0.0083,"103":0.0249,"104":0.01245,"105":0.0249,"106":0.02075,"107":0.0581,"108":4.19565,"109":4.29525,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0581,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0083,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00415,"92":0.0083,"93":2.20365,"94":1.8011,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00415,"105":0.00415,"106":0.00415,"107":0.0166,"108":0.58515,"109":0.5478},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0083,"15":0.00415,_:"0","3.1":0,"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.0083,"14.1":0.02075,"15.1":0.0083,"15.2-15.3":0.0083,"15.4":0.01245,"15.5":0.0249,"15.6":0.0747,"16.0":0.02075,"16.1":0.0747,"16.2":0.1079,"16.3":0.0083},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00134,"9.3":0.00941,"10.0-10.2":0,"10.3":0.0121,"11.0-11.2":0,"11.3-11.4":0.00269,"12.0-12.1":0.00269,"12.2-12.5":0.07391,"13.0-13.1":0.00269,"13.2":0,"13.3":0.00941,"13.4-13.7":0.02957,"14.0-14.4":0.11961,"14.5-14.8":0.28759,"15.0-15.1":0.06316,"15.2-15.3":0.12095,"15.4":0.14245,"15.5":0.35345,"15.6":1.21892,"16.0":1.87877,"16.1":4.85282,"16.2":3.23745,"16.3":0.36823},P:{"4":0.0103,"5.0-5.4":0,"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.0103,"12.0":0,"13.0":0.0103,"14.0":0.02059,"15.0":0.0103,"16.0":0.03089,"17.0":0.04119,"18.0":0.09267,"19.0":2.29622},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01455,"4.4":0,"4.4.3-4.4.4":0.02545},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01245,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.60255},Q:{"13.1":0},O:{"0":0.0234},H:{"0":2.37597},L:{"0":61.98655},S:{"2.5":0}}; +module.exports={C:{"52":0.04467,"68":0.00406,"78":0.01624,"87":0.02031,"88":0.00812,"89":0.00406,"91":0.01624,"93":0.01218,"94":0.01624,"95":0.00812,"97":0.00406,"99":0.00406,"100":0.00406,"101":0.00406,"102":0.0934,"103":0.00812,"104":0.01218,"105":0.00812,"106":0.01624,"107":0.02031,"108":0.08528,"109":2.65996,"110":1.85994,"111":0.00812,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 90 92 96 98 112 3.5 3.6"},D:{"49":0.02031,"60":0.00812,"66":0.00406,"78":0.00812,"79":0.30051,"80":0.00406,"83":0.00812,"84":0.01218,"85":0.04061,"86":0.03655,"87":0.02843,"88":0.00406,"89":0.03249,"90":0.01218,"91":0.27209,"92":0.01218,"93":0.00812,"94":0.01218,"95":0.04873,"96":0.02031,"97":0.01624,"98":0.01218,"99":0.06498,"100":0.01624,"101":0.00812,"102":0.01624,"103":0.05279,"104":0.02031,"105":0.03655,"106":0.02843,"107":0.05685,"108":0.29239,"109":11.517,"110":7.82555,"111":0.00406,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 81 112 113"},F:{"79":0.00406,"84":0.00406,"85":0.02031,"91":0.00406,"92":0.00812,"93":0.78377,"94":6.05495,"95":2.22137,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00406,"92":0.00406,"104":0.00812,"105":0.00406,"107":0.02031,"108":0.06092,"109":1.07617,"110":1.43759,_:"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 106"},E:{"4":0,"14":0.02031,"15":0.00812,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.4","12.1":0.00406,"13.1":0.02437,"14.1":0.04873,"15.1":0.01218,"15.2-15.3":0.01218,"15.4":0.02437,"15.5":0.04061,"15.6":0.13807,"16.0":0.03655,"16.1":0.10559,"16.2":0.21929,"16.3":0.20305},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00706,"10.0-10.2":0,"10.3":0.00883,"11.0-11.2":0,"11.3-11.4":0.00177,"12.0-12.1":0.00088,"12.2-12.5":0.05386,"13.0-13.1":0.0053,"13.2":0,"13.3":0.00618,"13.4-13.7":0.02737,"14.0-14.4":0.07241,"14.5-14.8":0.18279,"15.0-15.1":0.03974,"15.2-15.3":0.06888,"15.4":0.083,"15.5":0.1925,"15.6":0.5722,"16.0":0.94043,"16.1":2.35946,"16.2":2.19609,"16.3":1.57974,"16.4":0.00971},P:{"4":0.01043,"20":0.91754,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.71259,"8.2":0.02044,"9.2":0.03054,"10.1":0.0217,"11.1-11.2":0.02085,"12.0":0.02036,"13.0":0.01043,"14.0":0.01043,"15.0":0.01043,"16.0":0.01043,"17.0":0.04171,"18.0":0.07299,"19.0":1.54313},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00548,"4.4":0,"4.4.3-4.4.4":0.01233},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00406,"11":0.02437,_:"6 7 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02375},H:{"0":2.43982},L:{"0":46.40842},R:{_:"0"},M:{"0":0.61755},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js index 58ac41c0f2c65e..55fc4a8b48c94a 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.01686,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04497,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00562,"87":0.00562,"88":0.00562,"89":0,"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.14615,"103":0.00562,"104":0,"105":0,"106":0,"107":0.01124,"108":1.0961,"109":0.49465,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00562,"48":0,"49":0.03935,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00562,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.04497,"77":0,"78":0,"79":0.00562,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01686,"93":0,"94":0,"95":0,"96":0.02248,"97":0,"98":0,"99":0,"100":0.02811,"101":0,"102":0.1068,"103":0.06745,"104":0.00562,"105":0.01124,"106":0.05621,"107":0.39347,"108":6.91945,"109":4.56425,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01124,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.07869,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01124,"93":1.96173,"94":0.5621,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00562,"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.02811,"108":1.30969,"109":1.10734},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00562,"14":0.05621,"15":0.00562,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01124,"13.1":0.03935,"14.1":0.33164,"15.1":0.08994,"15.2-15.3":0.35412,"15.4":0.00562,"15.5":0.33164,"15.6":3.17587,"16.0":0.17987,"16.1":1.55702,"16.2":2.96789,"16.3":0.19674},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.01963,"10.3":0.12763,"11.0-11.2":0.04909,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.92774,"13.0-13.1":0.14235,"13.2":0,"13.3":0.32888,"13.4-13.7":0.04909,"14.0-14.4":0.03927,"14.5-14.8":0.45651,"15.0-15.1":0.43196,"15.2-15.3":1.81621,"15.4":0.64794,"15.5":4.18709,"15.6":4.38835,"16.0":6.59725,"16.1":17.30305,"16.2":8.85524,"16.3":0.43196},P:{"4":0.0108,"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.0108,"12.0":0,"13.0":0,"14.0":0,"15.0":0.0108,"16.0":0,"17.0":0,"18.0":0.0108,"19.0":0.74503},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.42725},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05621,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.06569},Q:{"13.1":0},O:{"0":0},H:{"0":0.1451},L:{"0":20.86472}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03585,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02561,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00512,"87":0,"88":0,"89":0,"90":0,"91":0.01537,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.05634,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.05634,"109":0.56854,"110":0.66074,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00512,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00512,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00512,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.02561,"101":0,"102":0.05634,"103":0.03585,"104":0.01537,"105":0.05122,"106":0,"107":0.01537,"108":1.19855,"109":5.55737,"110":3.58028,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.29195,"94":0.92196,"95":0.00512,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00512,"108":0,"109":0.85537,"110":1.55709},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01537,"14":0.01537,"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.01537,"12.1":0,"13.1":0.27659,"14.1":0.11268,"15.1":0.03585,"15.2-15.3":0.89123,"15.4":0.08195,"15.5":0.18951,"15.6":2.05904,"16.0":0.12805,"16.1":0.47122,"16.2":1.38294,"16.3":2.00782,"16.4":0.05122},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01155,"10.0-10.2":0.06931,"10.3":0.07508,"11.0-11.2":0.01155,"11.3-11.4":0.02888,"12.0-12.1":0,"12.2-12.5":1.50741,"13.0-13.1":0,"13.2":0,"13.3":0.43894,"13.4-13.7":0.02888,"14.0-14.4":0.06931,"14.5-14.8":0.51402,"15.0-15.1":0.24835,"15.2-15.3":1.3457,"15.4":0.5891,"15.5":3.5404,"15.6":5.4752,"16.0":5.50407,"16.1":15.07989,"16.2":12.3423,"16.3":7.25983,"16.4":0.0462},P:{"4":0.0111,"20":0.13322,"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.0111,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.05551,"19.0":0.43296},I:{"0":0,"3":0,"4":0,"2.1":0,"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.01537,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.0508},L:{"0":17.95797},R:{_:"0"},M:{"0":0.06829},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js index c3e3fddafd0775..4eadbe09918d01 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,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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},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},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"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},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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":100,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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},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},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0},P:{"4":0,"20":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},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PR.js index 1d5708f7438362..d49343e3853a63 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.21623,"39":0,"40":0,"41":0,"42":0,"43":0.22584,"44":0.93698,"45":0.21623,"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.00481,"69":0,"70":0,"71":0,"72":0,"73":0.02403,"74":0,"75":0,"76":0,"77":0,"78":0.00961,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.08649,"98":0.00481,"99":0,"100":0,"101":0,"102":0.00481,"103":0.00481,"104":0.05286,"105":0.00481,"106":0.00961,"107":0.01922,"108":0.53816,"109":0.29791,"110":0.00481,"111":0.00481,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.24025,"48":2.61392,"49":0.5718,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01442,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00481,"77":0,"78":0,"79":0.01922,"80":0,"81":0.00481,"83":0,"84":0.00961,"85":0,"86":0,"87":0.03364,"88":0.00481,"89":0.00481,"90":0,"91":0.00481,"92":0.00481,"93":0.00481,"94":0.00481,"95":0.00481,"96":0.00481,"97":0.00481,"98":0.00481,"99":0.00481,"100":0.00961,"101":0.00481,"102":0.01442,"103":0.11532,"104":0.01922,"105":0.02883,"106":0.02883,"107":0.10091,"108":3.96893,"109":4.02659,"110":0.00481,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00481,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.25947,"94":0.20662,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.07208,"13":0.07208,"14":0,"15":0,"16":0,"17":0.00481,"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.00481,"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.00481,"105":0.01442,"106":0.02403,"107":0.07208,"108":1.50397,"109":1.46072},E:{"4":0,"5":0,"6":0,"7":0,"8":0.07688,"9":0.36038,"10":0,"11":0,"12":0,"13":0.00961,"14":0.06247,"15":0.01922,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00961,"13.1":0.0913,"14.1":0.14415,"15.1":0.07688,"15.2-15.3":0.02403,"15.4":0.06727,"15.5":0.14415,"15.6":0.82646,"16.0":0.08649,"16.1":0.37479,"16.2":0.64868,"16.3":0.04805},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.15756,"9.3":0.04684,"10.0-10.2":0,"10.3":0.02981,"11.0-11.2":0.01703,"11.3-11.4":0.01703,"12.0-12.1":0.01278,"12.2-12.5":0.25977,"13.0-13.1":0.00852,"13.2":0.00852,"13.3":0.02981,"13.4-13.7":0.07239,"14.0-14.4":0.30661,"14.5-14.8":1.02204,"15.0-15.1":0.32364,"15.2-15.3":0.48121,"15.4":0.51954,"15.5":1.25199,"15.6":5.56584,"16.0":6.33237,"16.1":14.48737,"16.2":9.64547,"16.3":0.7282},P:{"4":0.20819,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03123,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03123,"12.0":0,"13.0":0.03123,"14.0":0.05205,"15.0":0.01041,"16.0":0.05205,"17.0":0.03123,"18.0":0.11451,"19.0":2.18603},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04921,"4.4":0,"4.4.3-4.4.4":0.22143},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.15376,"10":0,"11":0.33155,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.4208},Q:{"13.1":0},O:{"0":0.0052},H:{"0":0.1082},L:{"0":31.27247}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.22324,"39":0,"40":0,"41":0,"42":0,"43":0.19897,"44":0.87839,"45":0.21353,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00485,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00485,"69":0,"70":0,"71":0,"72":0,"73":0.02427,"74":0,"75":0,"76":0,"77":0,"78":0.00971,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00971,"103":0,"104":0.03882,"105":0,"106":0,"107":0.00971,"108":0.02427,"109":0.50957,"110":0.35912,"111":0.00485,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.19412,"48":2.35856,"49":0.54354,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00971,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00485,"77":0.00485,"78":0,"79":0.01456,"80":0.00485,"81":0,"83":0,"84":0.00485,"85":0,"86":0,"87":0.03882,"88":0,"89":0.00485,"90":0.01456,"91":0.01456,"92":0.00485,"93":0.00485,"94":0.00485,"95":0,"96":0.00485,"97":0.00485,"98":0.00485,"99":0.00485,"100":0.00971,"101":0.00485,"102":0.00485,"103":0.11162,"104":0.00971,"105":0.01941,"106":0.01941,"107":0.03882,"108":0.21839,"109":5.01315,"110":3.29033,"111":0.00971,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.03397,"94":0.36883,"95":0.11647,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.06794,"13":0.09221,"14":0,"15":0,"16":0,"17":0,"18":0.00485,"79":0,"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.00485,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00485,"106":0.02427,"107":0.03397,"108":0.06309,"109":1.15501,"110":1.58208},E:{"4":0,"5":0,"6":0,"7":0,"8":0.06794,"9":0.32515,"10":0,"11":0,"12":0,"13":0.00971,"14":0.04853,"15":0.01456,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00971,"13.1":0.0825,"14.1":0.17956,"15.1":0.02427,"15.2-15.3":0.03397,"15.4":0.07765,"15.5":0.1553,"15.6":0.58721,"16.0":0.0728,"16.1":0.28633,"16.2":1.09193,"16.3":0.45133,"16.4":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.01244,"9.0-9.2":0.17414,"9.3":0.04975,"10.0-10.2":0,"10.3":0.03732,"11.0-11.2":0.01244,"11.3-11.4":0.01658,"12.0-12.1":0.01244,"12.2-12.5":0.22804,"13.0-13.1":0,"13.2":0.00829,"13.3":0.02073,"13.4-13.7":0.04975,"14.0-14.4":0.31511,"14.5-14.8":0.879,"15.0-15.1":0.30267,"15.2-15.3":0.43121,"15.4":0.44365,"15.5":0.9951,"15.6":3.90575,"16.0":5.17449,"16.1":10.35728,"16.2":11.06629,"16.3":5.8296,"16.4":0.04146},P:{"4":0.23676,"20":1.00881,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04118,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03088,"12.0":0,"13.0":0.04118,"14.0":0.02059,"15.0":0.01029,"16.0":0.06176,"17.0":0.04118,"18.0":0.11323,"19.0":1.25587},I:{"0":0,"3":0,"4":0.05497,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02749,"4.4":0,"4.4.3-4.4.4":0.2199},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.13588,"10":0,"11":0.31545,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01029},H:{"0":0.09746},L:{"0":31.91576},R:{_:"0"},M:{"0":0.23162},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js index 7dad644b3acaff..64c652c2aab5b3 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.006,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.003,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.003,"100":0,"101":0,"102":0.003,"103":0,"104":0.003,"105":0.006,"106":0.006,"107":0.00899,"108":0.19187,"109":0.11992,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00899,"39":0,"40":0,"41":0,"42":0,"43":0.003,"44":0.003,"45":0.003,"46":0.00899,"47":0,"48":0,"49":0.003,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.003,"61":0,"62":0,"63":0.003,"64":0,"65":0.003,"66":0.003,"67":0.003,"68":0.003,"69":0.003,"70":0.003,"71":0.003,"72":0.003,"73":0.003,"74":0.003,"75":0,"76":0.003,"77":0.07195,"78":0.006,"79":0.02998,"80":0.003,"81":0.00899,"83":0.006,"84":0.003,"85":0.006,"86":0.01499,"87":0.00899,"88":0.003,"89":0.00899,"90":0.006,"91":0,"92":0.006,"93":0.003,"94":0.003,"95":0.02099,"96":0.00899,"97":0.006,"98":0.01199,"99":0.00899,"100":0.06895,"101":0.006,"102":0.02099,"103":0.02398,"104":0.00899,"105":0.01499,"106":0.02698,"107":0.12891,"108":3.32478,"109":3.21685,"110":0.003,"111":0.006,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.003,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.006,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.003,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.07495,"94":0.15889,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.003,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.003,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.003,"107":0.03298,"108":0.27881,"109":0.28781},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01799,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01799,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.006,"14.1":0.00899,"15.1":0.003,"15.2-15.3":0.003,"15.4":0.006,"15.5":0.01499,"15.6":0.04197,"16.0":0.01499,"16.1":0.04197,"16.2":0.04497,"16.3":0.003},G:{"8":0.00129,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00258,"6.0-6.1":0,"7.0-7.1":0.10725,"8.1-8.4":0.00388,"9.0-9.2":0.00258,"9.3":0.0168,"10.0-10.2":0.00258,"10.3":0.01034,"11.0-11.2":0.01034,"11.3-11.4":0.00646,"12.0-12.1":0.01034,"12.2-12.5":0.30367,"13.0-13.1":0.00258,"13.2":0.00517,"13.3":0.01809,"13.4-13.7":0.0504,"14.0-14.4":0.14473,"14.5-14.8":0.36182,"15.0-15.1":0.10208,"15.2-15.3":0.1331,"15.4":0.16669,"15.5":0.39025,"15.6":1.36328,"16.0":2.40868,"16.1":3.34811,"16.2":2.75111,"16.3":0.26619},P:{"4":0.08131,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08131,"8.2":0,"9.2":0.03049,"10.1":0.01016,"11.1-11.2":0.12197,"12.0":0.02033,"13.0":0.12197,"14.0":0.13213,"15.0":0.07115,"16.0":0.20328,"17.0":0.24394,"18.0":0.20328,"19.0":3.07975},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.15698},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00642,"9":0.00321,"10":0.00321,"11":0.03212,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08402},Q:{"13.1":0},O:{"0":0.07002},H:{"0":0.35797},L:{"0":72.66198},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00312,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00624,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00312,"100":0,"101":0,"102":0.00312,"103":0.06864,"104":0.00312,"105":0.00624,"106":0.00936,"107":0.00624,"108":0.01872,"109":0.24024,"110":0.1248,"111":0.00312,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00312,"39":0,"40":0,"41":0,"42":0.00312,"43":0.00312,"44":0.00624,"45":0.00312,"46":0.00624,"47":0,"48":0,"49":0.00312,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00312,"59":0,"60":0,"61":0,"62":0,"63":0.00312,"64":0,"65":0,"66":0,"67":0,"68":0.00312,"69":0.00312,"70":0,"71":0.00312,"72":0.00312,"73":0,"74":0.00312,"75":0,"76":0.00624,"77":0.05304,"78":0.00312,"79":0.02808,"80":0.00312,"81":0.00936,"83":0.00624,"84":0.00312,"85":0.00312,"86":0.00312,"87":0.01248,"88":0.00312,"89":0.00624,"90":0.00312,"91":0.00312,"92":0.00624,"93":0.00312,"94":0.00312,"95":0.02496,"96":0.00624,"97":0.00312,"98":0.00936,"99":0.00624,"100":0.07488,"101":0.00624,"102":0.0156,"103":0.02184,"104":0.01872,"105":0.02184,"106":0.01872,"107":0.0312,"108":0.24024,"109":4.32432,"110":2.5272,"111":0,"112":0.00312,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00312,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00312,"47":0,"48":0,"49":0,"50":0,"51":0,"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.04992,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00312,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00312,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0156,"94":0.11544,"95":0.08112,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00312,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00312,"79":0,"80":0,"81":0,"83":0,"84":0.00312,"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,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00312,"106":0,"107":0.02496,"108":0.00936,"109":0.2652,"110":0.3588},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00936,"15":0.00312,_:"0","3.1":0,"3.2":0,"5.1":0.0156,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00624,"14.1":0.01248,"15.1":0.00312,"15.2-15.3":0.00312,"15.4":0.00312,"15.5":0.01872,"15.6":0.05304,"16.0":0.00936,"16.1":0.08736,"16.2":0.0468,"16.3":0.03432,"16.4":0},G:{"8":0,"3.2":0.00153,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07511,"8.1-8.4":0.0092,"9.0-9.2":0,"9.3":0.01839,"10.0-10.2":0,"10.3":0.01686,"11.0-11.2":0.0046,"11.3-11.4":0.00307,"12.0-12.1":0.0092,"12.2-12.5":0.23299,"13.0-13.1":0.00153,"13.2":0.00307,"13.3":0.01839,"13.4-13.7":0.05825,"14.0-14.4":0.14715,"14.5-14.8":0.34949,"15.0-15.1":0.07204,"15.2-15.3":0.14409,"15.4":0.15482,"15.5":0.37555,"15.6":1.04541,"16.0":2.46636,"16.1":3.06418,"16.2":3.67579,"16.3":2.33607,"16.4":0.01686},P:{"4":0.08099,"20":1.0022,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08099,"8.2":0,"9.2":0.03037,"10.1":0.01012,"11.1-11.2":0.10123,"12.0":0.02025,"13.0":0.12148,"14.0":0.10123,"15.0":0.05062,"16.0":0.18222,"17.0":0.18222,"18.0":0.16197,"19.0":2.29797},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.11808},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00672,"9":0,"10":0.00336,"11":0.0336,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.0688},H:{"0":0.35824},L:{"0":69.65264},R:{_:"0"},M:{"0":0.08256},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js index e10b71c5c1d720..606b49eb10dca7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01834,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01222,"79":0,"80":0,"81":0,"82":0,"83":0.01222,"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.00611,"98":0,"99":0,"100":0.00611,"101":0,"102":0.03056,"103":0.00611,"104":0.00611,"105":0.00611,"106":0.01222,"107":0.03056,"108":1.09405,"109":0.61731,"110":0.00611,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03056,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01222,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00611,"76":0.00611,"77":0,"78":0.00611,"79":0.02445,"80":0.00611,"81":0.00611,"83":0.00611,"84":0.00611,"85":0.03667,"86":0.01222,"87":0.03056,"88":0.00611,"89":0.03667,"90":0.00611,"91":0.03056,"92":0.01222,"93":0.0489,"94":0.01222,"95":0.03056,"96":0.01222,"97":0.01222,"98":0.02445,"99":0.01222,"100":0.02445,"101":0.01834,"102":0.02445,"103":0.09779,"104":0.03667,"105":0.06112,"106":0.05501,"107":0.16502,"108":11.95507,"109":11.60669,"110":0.01222,"111":0.00611,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00611,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00611,"85":0.00611,"86":0,"87":0,"88":0,"89":0,"90":0.00611,"91":0,"92":0.00611,"93":2.20032,"94":1.4241,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00611,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00611,"90":0,"91":0,"92":0.00611,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01222,"99":0,"100":0,"101":0,"102":0.00611,"103":0.00611,"104":0.00611,"105":0.00611,"106":0.01222,"107":0.04278,"108":2.18198,"109":2.10864},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01222,"14":0.06723,"15":0.01222,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00611,"12.1":0.01222,"13.1":0.07334,"14.1":0.14058,"15.1":0.01834,"15.2-15.3":0.02445,"15.4":0.03667,"15.5":0.09168,"15.6":0.40339,"16.0":0.09779,"16.1":0.28726,"16.2":0.4584,"16.3":0.03056},G:{"8":0.00193,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00385,"9.0-9.2":0,"9.3":0.08862,"10.0-10.2":0,"10.3":0.0944,"11.0-11.2":0.00578,"11.3-11.4":0.01349,"12.0-12.1":0.01156,"12.2-12.5":0.38147,"13.0-13.1":0.00385,"13.2":0.00385,"13.3":0.01349,"13.4-13.7":0.04817,"14.0-14.4":0.17147,"14.5-14.8":0.48743,"15.0-15.1":0.10789,"15.2-15.3":0.12908,"15.4":0.22349,"15.5":0.46239,"15.6":1.93432,"16.0":2.90919,"16.1":6.27499,"16.2":4.32718,"16.3":0.51633},P:{"4":0.04098,"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.01024,"12.0":0.01024,"13.0":0.01024,"14.0":0.01024,"15.0":0.01024,"16.0":0.02049,"17.0":0.02049,"18.0":0.04098,"19.0":1.53657},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01672,"4.4":0,"4.4.3-4.4.4":0.16717},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00655,"10":0,"11":0.08513,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.18662},Q:{"13.1":0},O:{"0":0.12053},H:{"0":0.22085},L:{"0":40.56866}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00604,"49":0,"50":0,"51":0,"52":0.02416,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00604,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01812,"79":0,"80":0,"81":0,"82":0,"83":0.00604,"84":0,"85":0,"86":0,"87":0.00604,"88":0.00604,"89":0,"90":0,"91":0.01208,"92":0,"93":0,"94":0,"95":0.00604,"96":0,"97":0,"98":0,"99":0,"100":0.00604,"101":0,"102":0.0302,"103":0.00604,"104":0.00604,"105":0.00604,"106":0.00604,"107":0.00604,"108":0.05435,"109":0.9904,"110":0.65825,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00604,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0302,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01208,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00604,"77":0.00604,"78":0.00604,"79":0.02416,"80":0.00604,"81":0.00604,"83":0,"84":0.01208,"85":0.02416,"86":0.01208,"87":0.02416,"88":0.01208,"89":0.03623,"90":0.01208,"91":0.03623,"92":0.01208,"93":0.02416,"94":0.00604,"95":0.01208,"96":0.01208,"97":0.01208,"98":0.01812,"99":0.01208,"100":0.02416,"101":0.06643,"102":0.01812,"103":0.08455,"104":0.02416,"105":0.06039,"106":0.04831,"107":0.07247,"108":0.37442,"109":13.80515,"110":8.69012,"111":0.01208,"112":0.00604,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01812,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00604,"85":0.00604,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.27779,"94":2.3069,"95":0.60994,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00604,"15":0,"16":0,"17":0,"18":0.00604,"79":0,"80":0.00604,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00604,"90":0,"91":0,"92":0.00604,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00604,"103":0.00604,"104":0.00604,"105":0.00604,"106":0.00604,"107":0.02416,"108":0.06643,"109":1.96871,"110":2.46391},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00604,"14":0.04227,"15":0.01208,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00604,"12.1":0.01208,"13.1":0.07247,"14.1":0.13286,"15.1":0.01208,"15.2-15.3":0.0302,"15.4":0.0302,"15.5":0.09059,"15.6":0.31403,"16.0":0.06039,"16.1":0.16909,"16.2":0.45293,"16.3":0.32611,"16.4":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.00568,"9.0-9.2":0,"9.3":0.07765,"10.0-10.2":0,"10.3":0.0909,"11.0-11.2":0.00568,"11.3-11.4":0.00947,"12.0-12.1":0.01515,"12.2-12.5":0.38444,"13.0-13.1":0.00379,"13.2":0.00568,"13.3":0.01326,"13.4-13.7":0.04924,"14.0-14.4":0.14771,"14.5-14.8":0.44504,"15.0-15.1":0.10416,"15.2-15.3":0.1231,"15.4":0.14393,"15.5":0.36171,"15.6":1.3105,"16.0":2.193,"16.1":4.42766,"16.2":4.65302,"16.3":3.27624,"16.4":0.02841},P:{"4":0.06233,"20":0.64413,"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.01039,"12.0":0.01039,"13.0":0.01039,"14.0":0.01039,"15.0":0,"16.0":0.02078,"17.0":0.01039,"18.0":0.02078,"19.0":1.01814},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00716,"4.2-4.3":0.02147,"4.4":0,"4.4.3-4.4.4":0.15742},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.1087,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.1426},H:{"0":0.22875},L:{"0":41.76835},R:{_:"0"},M:{"0":0.17825},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PW.js index ed6b8a9213d24e..9b55c5b271d1cb 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.00478,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.11479,"107":0,"108":0.39699,"109":0.24393,"110":0.00478,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01913,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00478,"75":0,"76":0,"77":0,"78":0.02392,"79":0.09566,"80":0,"81":0.02392,"83":0.05261,"84":0,"85":0,"86":0.56918,"87":0.02392,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.14827,"94":0.00478,"95":0,"96":0.59309,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.36829,"104":0.00478,"105":0.04783,"106":0.02392,"107":0.06696,"108":8.12153,"109":5.54828,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00478,"94":0.30133,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.03348,"104":0,"105":0,"106":0,"107":0.00478,"108":0.77485,"109":0.87051},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.08609,"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.01435,"13.1":0.12436,"14.1":0.36351,"15.1":0.04783,"15.2-15.3":0.12914,"15.4":0.07653,"15.5":0.07175,"15.6":0.91834,"16.0":0.01435,"16.1":0.33959,"16.2":0.79876,"16.3":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.24804,"10.0-10.2":0,"10.3":0.24804,"11.0-11.2":0.01503,"11.3-11.4":0.01503,"12.0-12.1":0,"12.2-12.5":1.82394,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.02255,"14.0-14.4":0.16536,"14.5-14.8":0.72156,"15.0-15.1":0.18039,"15.2-15.3":0.53365,"15.4":0.86437,"15.5":0.29313,"15.6":2.38766,"16.0":4.86301,"16.1":5.24634,"16.2":4.36193,"16.3":0.07516},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.29215,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.07304,"14.0":0.01043,"15.0":0.01043,"16.0":0.02087,"17.0":0.01043,"18.0":0.04174,"19.0":1.17904},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09218},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0287,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02087},Q:{"13.1":0},O:{"0":0.67821},H:{"0":0.08397},L:{"0":52.49876},S:{"2.5":0}}; +module.exports={C:{"78":0.01798,"94":0.00449,"95":0.00899,"97":0.00449,"98":0.00449,"99":0.00899,"102":0.02247,"106":0.42244,"109":0.87184,"110":0.46288,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 100 101 103 104 105 107 108 111 112 3.5 3.6"},D:{"43":0.00449,"47":0.02696,"49":0.00449,"58":0.00899,"69":0.03595,"70":0.00449,"78":0.11684,"79":0.26515,"83":0.00449,"86":0.10336,"87":0.21122,"89":0.02696,"90":0.00449,"91":0.00899,"93":0.23818,"94":0.27413,"95":0.01798,"100":0.05842,"102":0.00449,"103":1.31674,"104":0.02696,"105":0.02696,"107":0.11235,"108":0.54377,"109":17.69737,"110":8.25098,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 71 72 73 74 75 76 77 80 81 84 85 88 92 96 97 98 99 101 106 111 112 113"},F:{"28":0.03146,"83":0.00449,"91":0.00449,"94":0.03146,"95":0.05393,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"107":0.00899,"108":0.0719,"109":1.99534,"110":4.26031,_:"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"},E:{"4":0,"11":0.02247,"12":0.00899,"14":0.09887,_:"0 5 6 7 8 9 10 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.4","12.1":0.00899,"13.1":0.00899,"14.1":0.45839,"15.1":0.00449,"15.2-15.3":0.00899,"15.4":0.00449,"15.5":0.05842,"15.6":0.91678,"16.0":0.00449,"16.1":0.55276,"16.2":2.28745,"16.3":0.18425},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00513,"10.0-10.2":0,"10.3":0.41728,"11.0-11.2":0.00513,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.07525,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.0342,"14.0-14.4":0.13339,"14.5-14.8":0.41728,"15.0-15.1":0.0342,"15.2-15.3":0.19667,"15.4":0.69091,"15.5":0.26679,"15.6":0.773,"16.0":2.70551,"16.1":2.85772,"16.2":5.82488,"16.3":1.06202,"16.4":0},P:{"4":0.2888,"20":0.80505,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.16948,"8.2":0.02044,"9.2":0.12711,"10.1":0.0217,"11.1-11.2":0.01059,"12.0":0.01031,"13.0":0.11652,"14.0":0.05157,"15.0":0.04126,"16.0":0.23723,"17.0":0.01059,"18.0":0.18566,"19.0":0.84742},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.00899,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.60015},H:{"0":0.05213},L:{"0":35.63063},R:{_:"0"},M:{"0":1.91058},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PY.js index de920fd3b5fa5e..6b4037cd33f7ca 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.00577,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00192,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01731,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00962,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00385,"89":0,"90":0,"91":0.00192,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00192,"100":0,"101":0.00192,"102":0.00385,"103":0.00192,"104":0,"105":0.00192,"106":0.00192,"107":0.00385,"108":0.11153,"109":0.06923,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00192,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00385,"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.00385,"65":0.00769,"66":0,"67":0,"68":0.00192,"69":0,"70":0,"71":0,"72":0,"73":0.00192,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01154,"80":0,"81":0.00192,"83":0.00192,"84":0,"85":0.00192,"86":0,"87":0.08846,"88":0.00192,"89":0.01154,"90":0.00192,"91":0.01538,"92":0.00192,"93":0.00192,"94":0.00192,"95":0.00962,"96":0.00385,"97":0.00577,"98":0.00385,"99":0.00192,"100":0.00577,"101":0.00192,"102":0.00577,"103":0.01346,"104":0.00769,"105":0.00769,"106":0.00962,"107":0.06154,"108":1.22495,"109":1.21341,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.00192,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00192,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.10961,"94":0.10192,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00192,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00192,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00192,"103":0,"104":0,"105":0.00192,"106":0,"107":0.00385,"108":0.125,"109":0.13461},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00385,"14":0.00385,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00385,"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.00385,"15.1":0.00192,"15.2-15.3":0.00192,"15.4":0.00192,"15.5":0.00577,"15.6":0.01538,"16.0":0.00192,"16.1":0.00962,"16.2":0.01731,"16.3":0},G:{"8":0,"3.2":0.00227,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00076,"6.0-6.1":0,"7.0-7.1":0.01364,"8.1-8.4":0,"9.0-9.2":0.00379,"9.3":0.03258,"10.0-10.2":0,"10.3":0.00758,"11.0-11.2":0.0053,"11.3-11.4":0.00303,"12.0-12.1":0.00227,"12.2-12.5":0.27352,"13.0-13.1":0.00227,"13.2":0.0053,"13.3":0.00985,"13.4-13.7":0.02046,"14.0-14.4":0.13184,"14.5-14.8":0.27883,"15.0-15.1":0.02879,"15.2-15.3":0.05001,"15.4":0.08183,"15.5":0.20003,"15.6":0.78724,"16.0":0.88801,"16.1":2.25866,"16.2":1.47067,"16.3":0.10532},P:{"4":0.34477,"5.0-5.4":0,"6.2-6.4":0.01014,"7.2-7.4":0.74024,"8.2":0,"9.2":0.02028,"10.1":0.01014,"11.1-11.2":0.11154,"12.0":0.02028,"13.0":0.07098,"14.0":0.25351,"15.0":0.06084,"16.0":0.18253,"17.0":0.31435,"18.0":0.22309,"19.0":2.28158},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.14384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00385,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08885},Q:{"13.1":0},O:{"0":0.03231},H:{"0":0.16058},L:{"0":83.3759},S:{"2.5":0}}; +module.exports={C:{"17":0.00221,"24":0.00221,"30":0.00221,"35":0.02868,"43":0.00221,"45":0.01765,"52":0.10809,"61":0.00221,"65":0.00441,"69":0.00221,"71":0.00662,"73":0.05515,"82":0.00441,"88":0.01765,"91":0.00441,"99":0.00662,"101":0.00441,"102":0.00882,"103":0.00662,"104":0.01103,"105":0.00662,"106":0.01103,"107":0.01765,"108":0.02206,"109":0.58459,"110":0.39267,_:"2 3 4 5 6 7 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 42 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 66 67 68 70 72 74 75 76 77 78 79 80 81 83 84 85 86 87 89 90 92 93 94 95 96 97 98 100 111 112 3.5 3.6"},D:{"11":0.00221,"27":0.00441,"38":0.00441,"44":0.00441,"47":0.03309,"49":0.02427,"56":0.00221,"63":0.00221,"64":0.01765,"65":0.03309,"66":0.00221,"68":0.01103,"69":0.00441,"70":0.00662,"71":0.00441,"73":0.00882,"74":0.00221,"75":0.00441,"76":0.00221,"77":0.00882,"78":0.00221,"79":0.0728,"80":0.00662,"81":0.02647,"83":0.00441,"85":0.00662,"86":0.00441,"87":0.55591,"88":0.00441,"89":0.0728,"90":0.00441,"91":0.10589,"92":0.01103,"93":0.00441,"94":0.00662,"95":0.01765,"96":0.02206,"97":0.02427,"98":0.01765,"99":0.01324,"100":0.0353,"101":0.00882,"102":0.02868,"103":0.05515,"104":0.04633,"105":0.05074,"106":0.04633,"107":0.39267,"108":0.24928,"109":8.56149,"110":5.42676,"111":0.00441,_:"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 31 32 33 34 35 36 37 39 40 41 42 43 45 46 48 50 51 52 53 54 55 57 58 59 60 61 62 67 72 84 112 113"},F:{"85":0.00221,"93":0.09265,"94":0.76989,"95":0.27796,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00221,"17":0.00221,"18":0.00882,"80":0.01765,"84":0.00221,"92":0.00441,"94":0.01324,"102":0.01103,"103":0.00662,"104":0.00662,"105":0.00662,"106":0.00221,"107":0.01324,"108":0.02206,"109":0.65518,"110":0.94858,_:"13 14 15 16 79 81 83 85 86 87 88 89 90 91 93 95 96 97 98 99 100 101"},E:{"4":0,"13":0.02206,"14":0.01544,"15":0.00441,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.4","5.1":0.01765,"12.1":0.00441,"13.1":0.01985,"14.1":0.02427,"15.1":0.00221,"15.2-15.3":0.00221,"15.4":0.01324,"15.5":0.04633,"15.6":0.07942,"16.0":0.00882,"16.1":0.05956,"16.2":0.10368,"16.3":0.09265},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00067,"6.0-6.1":0,"7.0-7.1":0.03232,"8.1-8.4":0.00067,"9.0-9.2":0.00404,"9.3":0.02828,"10.0-10.2":0,"10.3":0.00337,"11.0-11.2":0.00269,"11.3-11.4":0.00269,"12.0-12.1":0.00067,"12.2-12.5":0.19662,"13.0-13.1":0.00135,"13.2":0.00404,"13.3":0.00404,"13.4-13.7":0.02357,"14.0-14.4":0.10302,"14.5-14.8":0.21076,"15.0-15.1":0.03232,"15.2-15.3":0.0404,"15.4":0.06128,"15.5":0.14679,"15.6":0.51647,"16.0":0.6774,"16.1":1.39991,"16.2":1.59451,"16.3":0.84843,"16.4":0.00269},P:{"4":0.41738,"20":0.78385,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.71259,"8.2":0.02044,"9.2":0.03054,"10.1":0.0217,"11.1-11.2":0.07126,"12.0":0.02036,"13.0":0.08144,"14.0":0.09162,"15.0":0.04072,"16.0":0.14252,"17.0":0.33594,"18.0":0.1527,"19.0":1.60843},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00408,"4.2-4.3":0.02041,"4.4":0,"4.4.3-4.4.4":0.06124},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00882,"11":0.0375,_:"6 7 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.04676},H:{"0":0.21399},L:{"0":67.73316},R:{_:"0"},M:{"0":0.10132},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js index 214bcf72237d5b..e96d01285fb601 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.03964,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00305,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00305,"79":0,"80":0.00305,"81":0,"82":0.00305,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00305,"89":0,"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.0061,"103":0,"104":0.0061,"105":0,"106":0.00305,"107":0.00305,"108":0.11891,"109":0.06708,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"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.00305,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00305,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00305,"68":0.00305,"69":0,"70":0,"71":0.00305,"72":0,"73":0,"74":0.00305,"75":0.00305,"76":0.00305,"77":0,"78":0.00305,"79":0.01525,"80":0.00305,"81":0.00305,"83":0,"84":0.00915,"85":0.00305,"86":0.00915,"87":0.00915,"88":0.00305,"89":0.0061,"90":0,"91":0.00305,"92":0.00915,"93":0.0061,"94":0.00305,"95":0.00305,"96":0.00305,"97":0.00305,"98":0.00305,"99":0.0061,"100":0.0061,"101":0.00305,"102":0.0061,"103":0.02744,"104":0.00915,"105":0.01829,"106":0.02439,"107":0.07013,"108":3.1984,"109":2.84167,"110":0.00305,"111":0.00305,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0061,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0061,"64":0,"65":0,"66":0.00305,"67":0.00305,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01829,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00305,"93":0.10976,"94":0.12501,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00305,"18":0.00305,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00305,"93":0.00305,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00305,"100":0,"101":0,"102":0,"103":0.00305,"104":0.00305,"105":0.00305,"106":0.00305,"107":0.0122,"108":0.52443,"109":0.49394},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00305,"14":0.01829,"15":0.00305,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00305,"13.1":0.01525,"14.1":0.04269,"15.1":0.00915,"15.2-15.3":0.00915,"15.4":0.03049,"15.5":0.03659,"15.6":0.18599,"16.0":0.01829,"16.1":0.08842,"16.2":0.1433,"16.3":0.01525},G:{"8":0.0124,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02687,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04134,"10.0-10.2":0,"10.3":0.05374,"11.0-11.2":0.02067,"11.3-11.4":0.00413,"12.0-12.1":0.0062,"12.2-12.5":0.2501,"13.0-13.1":0.00413,"13.2":0.00207,"13.3":0.01447,"13.4-13.7":0.07028,"14.0-14.4":0.2129,"14.5-14.8":0.4134,"15.0-15.1":0.13435,"15.2-15.3":0.16536,"15.4":0.2253,"15.5":0.48987,"15.6":1.76313,"16.0":2.52585,"16.1":5.60772,"16.2":6.1658,"16.3":0.86606},P:{"4":0.01051,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03152,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01051,"12.0":0.01051,"13.0":0.02101,"14.0":0.02101,"15.0":0.01051,"16.0":0.03152,"17.0":0.04203,"18.0":0.08405,"19.0":2.00676},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01392,"4.4":0,"4.4.3-4.4.4":0.03828},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.1616,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.11122},Q:{"13.1":0},O:{"0":3.67708},H:{"0":0.86208},L:{"0":62.95414}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0.03458,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00314,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00314,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00314,"103":0,"104":0,"105":0,"106":0,"107":0.01572,"108":0.00314,"109":0.13205,"110":0.07546,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00314,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00314,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00314,"67":0.00314,"68":0.00314,"69":0,"70":0,"71":0.00314,"72":0,"73":0,"74":0.00314,"75":0,"76":0.00314,"77":0,"78":0.00314,"79":0.00943,"80":0.00314,"81":0,"83":0,"84":0.00314,"85":0.00629,"86":0.00629,"87":0.00629,"88":0.00314,"89":0.00629,"90":0,"91":0.00314,"92":0.00943,"93":0.00629,"94":0,"95":0,"96":0.00314,"97":0.00314,"98":0.00314,"99":0.00314,"100":0.00314,"101":0.00314,"102":0.00629,"103":0.03144,"104":0.00943,"105":0.01258,"106":0.01572,"107":0.02515,"108":0.16663,"109":3.67848,"110":2.43974,"111":0.00314,"112":0.00314,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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.00314,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00314,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00314,"64":0,"65":0,"66":0.00314,"67":0.06288,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00314,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01886,"94":0.27038,"95":0.08803,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"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,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00314,"100":0,"101":0,"102":0,"103":0.00314,"104":0,"105":0.00314,"106":0,"107":0.00629,"108":0.02201,"109":0.4433,"110":0.53448},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00314,"14":0.01572,"15":0.00314,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00314,"13.1":0.01886,"14.1":0.03773,"15.1":0.00943,"15.2-15.3":0.00629,"15.4":0.0283,"15.5":0.03458,"15.6":0.1572,"16.0":0.01258,"16.1":0.06288,"16.2":0.15406,"16.3":0.14777,"16.4":0},G:{"8":0.01023,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00205,"6.0-6.1":0,"7.0-7.1":0.01841,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03068,"10.0-10.2":0,"10.3":0.03682,"11.0-11.2":0.01227,"11.3-11.4":0,"12.0-12.1":0.00614,"12.2-12.5":0.2618,"13.0-13.1":0.00409,"13.2":0.00205,"13.3":0.01227,"13.4-13.7":0.05932,"14.0-14.4":0.20044,"14.5-14.8":0.32726,"15.0-15.1":0.10636,"15.2-15.3":0.17795,"15.4":0.18408,"15.5":0.38043,"15.6":1.32538,"16.0":1.87558,"16.1":3.59981,"16.2":4.77793,"16.3":5.5388,"16.4":0.02863},P:{"4":0.03072,"20":0.81916,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03072,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.01024,"12.0":0.01024,"13.0":0.02048,"14.0":0.03072,"15.0":0.01024,"16.0":0.03072,"17.0":0.04096,"18.0":0.07168,"19.0":1.24922},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00282,"4.2-4.3":0.00563,"4.4":0,"4.4.3-4.4.4":0.03098},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00319,"9":0,"10":0,"11":0.22318,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":3.81879},H:{"0":0.86328},L:{"0":62.30744},R:{_:"0"},M:{"0":0.08227},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RE.js index 75efc2505e82ef..5f4815bd729808 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.03423,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00428,"49":0.01712,"50":0,"51":0,"52":0.00428,"53":0,"54":0,"55":0,"56":0.00428,"57":0,"58":0,"59":0,"60":0.00856,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00428,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06846,"79":0,"80":0,"81":0.00428,"82":0,"83":0,"84":0,"85":0.00856,"86":0,"87":0,"88":0.00428,"89":0.01712,"90":0,"91":0.04707,"92":0,"93":0.00428,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00856,"101":0,"102":0.05991,"103":0.01284,"104":0.00428,"105":0.00856,"106":0.00856,"107":0.04279,"108":1.27086,"109":0.73171,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01284,"48":0,"49":0.01284,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.03851,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01712,"66":0,"67":0.00428,"68":0,"69":0,"70":0.05135,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00428,"77":0.00428,"78":0,"79":0.03851,"80":0,"81":0.00428,"83":0.01284,"84":0.00428,"85":0,"86":0.03423,"87":0.01284,"88":0,"89":0.00428,"90":0,"91":0.00428,"92":0.00428,"93":0,"94":0.00428,"95":0.00428,"96":0.00428,"97":0.00428,"98":0.00428,"99":0.00428,"100":0.01284,"101":0.00428,"102":0.00428,"103":0.06419,"104":0.0214,"105":0.01284,"106":0.03423,"107":0.11981,"108":4.71974,"109":4.28328,"110":0,"111":0.00428,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0214,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.3252,"94":0.64613,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00428,"18":0.00856,"79":0,"80":0,"81":0,"83":0,"84":0.00428,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00428,"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.00428,"106":0.00428,"107":0.05991,"108":1.24519,"109":1.16389},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00428,"12":0,"13":0.00428,"14":0.02567,"15":0.00856,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02567,"13.1":0.17544,"14.1":0.20111,"15.1":0.01284,"15.2-15.3":0.01712,"15.4":0.04707,"15.5":0.20111,"15.6":0.44074,"16.0":0.04707,"16.1":0.17116,"16.2":0.38083,"16.3":0.01712},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00513,"8.1-8.4":0,"9.0-9.2":0.00513,"9.3":0.1616,"10.0-10.2":0,"10.3":0.09235,"11.0-11.2":0.0077,"11.3-11.4":0.00257,"12.0-12.1":0.02052,"12.2-12.5":0.95423,"13.0-13.1":0.01026,"13.2":0,"13.3":0.02822,"13.4-13.7":0.08208,"14.0-14.4":0.23599,"14.5-14.8":0.77467,"15.0-15.1":0.118,"15.2-15.3":0.17186,"15.4":0.46942,"15.5":0.73363,"15.6":2.6498,"16.0":3.63994,"16.1":8.16743,"16.2":5.7408,"16.3":0.43864},P:{"4":0.12327,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05136,"8.2":0.01027,"9.2":0,"10.1":0,"11.1-11.2":0.04109,"12.0":0,"13.0":0.03082,"14.0":0.03082,"15.0":0.02054,"16.0":0.08218,"17.0":0.06163,"18.0":0.2568,"19.0":2.95838},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02303,"4.4":0,"4.4.3-4.4.4":0.15548},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0214,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.38331},Q:{"13.1":0},O:{"0":0.08582},H:{"0":0.24373},L:{"0":51.41772}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05165,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0043,"49":0.00861,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0043,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00861,"69":0,"70":0.0043,"71":0,"72":0.01722,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06026,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0043,"86":0,"87":0,"88":0,"89":0.01722,"90":0,"91":0.03443,"92":0,"93":0.0043,"94":0.0043,"95":0,"96":0,"97":0,"98":0.0043,"99":0.0043,"100":0.0043,"101":0,"102":0.08608,"103":0.0043,"104":0.0043,"105":0.01291,"106":0.0043,"107":0.00861,"108":0.08608,"109":1.23094,"110":0.87802,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0043,"39":0,"40":0,"41":0,"42":0.00861,"43":0,"44":0,"45":0,"46":0,"47":0.01291,"48":0,"49":0.01722,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.12482,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0043,"64":0.00861,"65":0.0043,"66":0,"67":0.0043,"68":0,"69":0,"70":0.05165,"71":0,"72":0,"73":0.0043,"74":0,"75":0.00861,"76":0,"77":0,"78":0.0043,"79":0.05595,"80":0,"81":0.0043,"83":0.01291,"84":0.0043,"85":0,"86":0.02582,"87":0.01722,"88":0.0043,"89":0,"90":0,"91":0,"92":0.0043,"93":0,"94":0.01291,"95":0.0043,"96":0.0043,"97":0.0043,"98":0.0043,"99":0.00861,"100":0.01291,"101":0.0043,"102":0.0043,"103":0.06456,"104":0.02582,"105":0.01291,"106":0.01291,"107":0.04304,"108":0.18507,"109":5.3757,"110":3.43459,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.03443,"94":0.55091,"95":0.40888,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0043,"18":0.0043,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0043,"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.0043,"106":0.0043,"107":0.02152,"108":0.08608,"109":0.98992,"110":1.43754},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.0043,"13":0.0043,"14":0.09038,"15":0.01291,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0043,"12.1":0.01722,"13.1":0.11621,"14.1":0.15494,"15.1":0.00861,"15.2-15.3":0.01722,"15.4":0.06886,"15.5":0.07747,"15.6":0.31419,"16.0":0.03013,"16.1":0.1076,"16.2":0.38306,"16.3":0.27115,"16.4":0},G:{"8":0.00492,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09589,"10.0-10.2":0.00246,"10.3":0.10818,"11.0-11.2":0.00492,"11.3-11.4":0.00983,"12.0-12.1":0.01967,"12.2-12.5":0.79909,"13.0-13.1":0.00738,"13.2":0.00246,"13.3":0.02705,"13.4-13.7":0.05901,"14.0-14.4":0.31718,"14.5-14.8":0.45733,"15.0-15.1":0.17457,"15.2-15.3":0.21391,"15.4":0.39832,"15.5":0.64911,"15.6":1.93749,"16.0":2.85459,"16.1":5.88376,"16.2":6.01653,"16.3":3.44715,"16.4":0.0418},P:{"4":0.03097,"20":1.13541,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04129,"8.2":0.01032,"9.2":0,"10.1":0,"11.1-11.2":0.03097,"12.0":0,"13.0":0.01032,"14.0":0.06193,"15.0":0.02064,"16.0":0.0929,"17.0":0.03097,"18.0":0.14451,"19.0":1.96117},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00568,"4.2-4.3":0.02273,"4.4":0,"4.4.3-4.4.4":0.17615},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01722,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.06266},H:{"0":0.2157},L:{"0":52.46363},R:{_:"0"},M:{"0":0.35885},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js index 5ecfb75c03cb26..89153f2957548f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03872,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0043,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0043,"79":0,"80":0,"81":0,"82":0,"83":0.0043,"84":0,"85":0,"86":0,"87":0,"88":0.0043,"89":0,"90":0,"91":0.0043,"92":0,"93":0,"94":0,"95":0.0043,"96":0,"97":0,"98":0,"99":0.0043,"100":0,"101":0,"102":0.09895,"103":0.33125,"104":0.0043,"105":0.0086,"106":0.0086,"107":0.04732,"108":2.04345,"109":0.95074,"110":0.0043,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02581,"50":0,"51":0,"52":0,"53":0.0043,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.15917,"61":0.0086,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.03011,"71":0.0086,"72":0,"73":0,"74":0.0043,"75":0.0043,"76":0.0043,"77":0.0043,"78":0,"79":0.02151,"80":0.0043,"81":0.01291,"83":0.0043,"84":0.0043,"85":0.01721,"86":0.0086,"87":0.0086,"88":0.0086,"89":0.0043,"90":0.0043,"91":0.0086,"92":0.01721,"93":0.01291,"94":0.0043,"95":0.0086,"96":0.0086,"97":0.0086,"98":0.0086,"99":0.0086,"100":0.01721,"101":0.0086,"102":0.01291,"103":0.03011,"104":0.01721,"105":0.03011,"106":0.03011,"107":0.09464,"108":5.44203,"109":5.43343,"110":0.0043,"111":0.0043,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0043,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0043,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0086,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01291,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0043,"93":0.49473,"94":0.65821,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0043,"16":0,"17":0,"18":0.0043,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0043,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.0043,"105":0.0043,"106":0.0043,"107":0.01291,"108":0.52484,"109":0.52054},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01291,"15":0.0043,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0043,"13.1":0.01721,"14.1":0.03442,"15.1":0.0043,"15.2-15.3":0.01291,"15.4":0.01291,"15.5":0.02581,"15.6":0.09034,"16.0":0.01721,"16.1":0.06453,"16.2":0.12046,"16.3":0.01291},G:{"8":0,"3.2":0.03042,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.11356,"6.0-6.1":0,"7.0-7.1":0.00406,"8.1-8.4":0,"9.0-9.2":0.00203,"9.3":0.03244,"10.0-10.2":0,"10.3":0.05069,"11.0-11.2":0.00203,"11.3-11.4":0.00203,"12.0-12.1":0.01014,"12.2-12.5":0.20075,"13.0-13.1":0.00811,"13.2":0.00811,"13.3":0.02231,"13.4-13.7":0.07503,"14.0-14.4":0.26564,"14.5-14.8":0.59617,"15.0-15.1":0.12369,"15.2-15.3":0.18047,"15.4":0.27172,"15.5":0.53331,"15.6":2.07239,"16.0":3.40465,"16.1":6.36116,"16.2":4.35771,"16.3":0.47247},P:{"4":0.17248,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01015,"8.2":0,"9.2":0.04058,"10.1":0,"11.1-11.2":0.04058,"12.0":0.01015,"13.0":0.04058,"14.0":0.05073,"15.0":0.02029,"16.0":0.07102,"17.0":0.07102,"18.0":0.14204,"19.0":3.30757},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03673,"4.4":0,"4.4.3-4.4.4":0.20466},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01032,"9":0.00516,"10":0.00516,"11":0.03097,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},H:{"0":0.28591},L:{"0":55.71249},S:{"2.5":0},R:{_:"0"},M:{"0":0.19373},Q:{"13.1":0},O:{"0":0.03419}}; +module.exports={C:{"52":0.09902,"68":0.009,"72":0.02701,"78":0.0135,"83":0.009,"88":0.0045,"91":0.009,"95":0.0045,"99":0.0045,"100":0.0045,"102":0.06752,"103":1.66537,"104":0.0135,"105":0.0135,"106":0.009,"107":0.018,"108":0.04051,"109":5.89181,"110":3.42076,"111":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 30 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 84 85 86 87 89 90 92 93 94 96 97 98 101 112 3.5 3.6"},D:{"39":0.0045,"49":0.04951,"51":0.0045,"53":0.009,"60":0.32857,"61":0.009,"66":0.0045,"71":0.0135,"74":0.009,"75":0.009,"76":0.009,"77":0.009,"79":0.05401,"80":0.009,"81":0.018,"83":0.009,"84":0.0135,"85":0.03151,"86":0.02251,"87":0.02701,"88":0.0135,"89":0.0135,"90":0.0135,"91":0.02251,"92":0.02251,"94":0.009,"95":0.0045,"96":0.0135,"97":0.018,"98":0.0135,"99":0.018,"100":0.04051,"101":0.009,"102":0.02251,"103":0.06301,"104":0.02701,"105":0.08102,"106":0.03601,"107":0.09902,"108":0.41859,"109":14.99283,"110":9.51962,"111":0.009,"112":0.0135,_:"4 5 6 7 8 9 10 11 12 13 14 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 52 54 55 56 57 58 59 62 63 64 65 67 68 69 70 72 73 78 93 113"},F:{"46":0.009,"85":0.02251,"93":0.13503,"94":1.43132,"95":0.8867,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.009,"92":0.009,"107":0.018,"108":0.05851,"109":1.00372,"110":1.31879,_:"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"},E:{"4":0,"14":0.03151,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.4","12.1":0.0045,"13.1":0.04051,"14.1":0.05401,"15.1":0.009,"15.2-15.3":0.009,"15.4":0.02251,"15.5":0.06752,"15.6":0.15303,"16.0":0.02701,"16.1":0.10802,"16.2":0.22955,"16.3":0.19354},G:{"8":0,"3.2":0.01705,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.06425,"6.0-6.1":0,"7.0-7.1":0.00393,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01442,"10.0-10.2":0,"10.3":0.02754,"11.0-11.2":0.00524,"11.3-11.4":0.00262,"12.0-12.1":0.01049,"12.2-12.5":0.13637,"13.0-13.1":0.00393,"13.2":0.00393,"13.3":0.01442,"13.4-13.7":0.04589,"14.0-14.4":0.14948,"14.5-14.8":0.35534,"15.0-15.1":0.07474,"15.2-15.3":0.10883,"15.4":0.16653,"15.5":0.28322,"15.6":1.02407,"16.0":1.73869,"16.1":3.10761,"16.2":3.0132,"16.3":2.056,"16.4":0.01967},P:{"4":0.1535,"20":1.11542,"5.0-5.4":0.01042,"6.2-6.4":0.0206,"7.2-7.4":0.71259,"8.2":0.02044,"9.2":0.0307,"10.1":0.0217,"11.1-11.2":0.0307,"12.0":0.02036,"13.0":0.0307,"14.0":0.05117,"15.0":0.02047,"16.0":0.0614,"17.0":0.05117,"18.0":0.10233,"19.0":2.26153},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01814,"4.4":0,"4.4.3-4.4.4":0.10281},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01492,"9":0.00497,"11":0.07462,_:"6 7 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.04398},H:{"0":0.27067},L:{"0":38.94551},R:{_:"0"},M:{"0":0.20892},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js index 8eabd4988aaaf3..99216c761069a6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03636,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00364,"66":0,"67":0,"68":0.00364,"69":0,"70":0,"71":0,"72":0.00364,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01091,"79":0.00364,"80":0.00364,"81":0.00364,"82":0.00364,"83":0,"84":0.00364,"85":0,"86":0,"87":0.00364,"88":0.01091,"89":0,"90":0,"91":0.00364,"92":0.06908,"93":0.00364,"94":0.00364,"95":0.00364,"96":0.00364,"97":0.00364,"98":0,"99":0.01091,"100":0.00364,"101":0.00364,"102":0.01454,"103":0.00364,"104":0.00727,"105":0.00727,"106":0.01091,"107":0.02182,"108":0.76356,"109":0.49813,"110":0.00727,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00364,"39":0,"40":0,"41":0,"42":0,"43":0.00364,"44":0,"45":0,"46":0,"47":0.00364,"48":0.01091,"49":0.02909,"50":0,"51":0,"52":0.06908,"53":0.00727,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01454,"69":0,"70":0.00364,"71":0.00364,"72":0.00364,"73":0,"74":0.00364,"75":0.00727,"76":0.00364,"77":0.00364,"78":0,"79":0.0509,"80":0.00364,"81":0.01818,"83":0.01091,"84":0.01454,"85":0.01818,"86":0.01454,"87":0.02182,"88":0.00727,"89":0.01091,"90":0.00727,"91":0.00364,"92":0.02182,"93":0.00364,"94":0.00727,"95":0.01091,"96":0.01454,"97":0.01818,"98":0.01091,"99":0.01091,"100":0.02182,"101":0.00727,"102":0.01091,"103":0.04,"104":0.02182,"105":0.02545,"106":0.03272,"107":0.07999,"108":4.16322,"109":4.22867,"110":0.00364,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00727,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00364,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00364,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00727,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00364,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02182,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00364,"93":0.24361,"94":0.57449,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00364,"16":0,"17":0,"18":0.00364,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00364,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00364,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00364,"105":0,"106":0,"107":0.01091,"108":0.3236,"109":0.33088},E:{"4":0.00364,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01091,"15":0.00364,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00364,"12.1":0.00364,"13.1":0.01818,"14.1":0.02182,"15.1":0.00364,"15.2-15.3":0.00364,"15.4":0.00727,"15.5":0.01454,"15.6":0.06545,"16.0":0.01091,"16.1":0.02545,"16.2":0.06545,"16.3":0.00727},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00487,"6.0-6.1":0,"7.0-7.1":0.03653,"8.1-8.4":0.00731,"9.0-9.2":0.00487,"9.3":0.04627,"10.0-10.2":0.00731,"10.3":0.08523,"11.0-11.2":0.02435,"11.3-11.4":0.00974,"12.0-12.1":0.00731,"12.2-12.5":0.50892,"13.0-13.1":0.01218,"13.2":0.00487,"13.3":0.03409,"13.4-13.7":0.13636,"14.0-14.4":0.37986,"14.5-14.8":1.28325,"15.0-15.1":0.15341,"15.2-15.3":0.27759,"15.4":0.37499,"15.5":0.81086,"15.6":3.19718,"16.0":3.63061,"16.1":6.62325,"16.2":4.41225,"16.3":0.3823},P:{"4":0.10155,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01015,"8.2":0,"9.2":0.02031,"10.1":0,"11.1-11.2":0.05077,"12.0":0.01015,"13.0":0.04062,"14.0":0.04062,"15.0":0.02031,"16.0":0.03046,"17.0":0.05077,"18.0":0.1117,"19.0":2.32546},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03285,"4.2-4.3":0.00852,"4.4":0,"4.4.3-4.4.4":0.03772},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03588,"9":0.00897,"10":0.01345,"11":0.07623,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.21638},Q:{"13.1":0},O:{"0":0.03818},H:{"0":0.34343},L:{"0":60.02001}}; +module.exports={C:{"35":0.00387,"50":0.00387,"52":0.11229,"56":0.00387,"60":0.00387,"66":0.00387,"68":0.01549,"73":0.00774,"78":0.01936,"81":0.00387,"82":0.00774,"83":0.00387,"84":0.01549,"88":0.02323,"89":0.00774,"91":0.00774,"92":0.16262,"93":0.01549,"94":0.00387,"95":0.00387,"97":0.00774,"99":0.03485,"100":0.00774,"101":0.00387,"102":0.07357,"103":0.00774,"104":0.01936,"105":0.0271,"106":0.01936,"107":0.03485,"108":0.09293,"109":2.27286,"110":1.57203,"111":0.00774,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 72 74 75 76 77 79 80 85 86 87 90 96 98 112 3.5 3.6"},D:{"38":0.00774,"43":0.00774,"47":0.00387,"48":0.01936,"49":0.07357,"52":0.0968,"53":0.01162,"56":0.00387,"58":0.00387,"64":0.00387,"67":0.00387,"68":0.03872,"69":0.00387,"70":0.00387,"71":0.00387,"72":0.01162,"73":0.00774,"74":0.00774,"75":0.01936,"76":0.01162,"77":0.00774,"78":0.00774,"79":0.13939,"80":0.01162,"81":0.01936,"83":0.01936,"84":0.02323,"85":0.03872,"86":0.03485,"87":0.06582,"88":0.01549,"89":0.03098,"90":0.01936,"91":0.01549,"92":0.03485,"93":0.00774,"94":0.0271,"95":0.01936,"96":0.03872,"97":0.04259,"98":0.02323,"99":0.04259,"100":0.06195,"101":0.01936,"102":0.0271,"103":0.10842,"104":0.04646,"105":0.05808,"106":0.0697,"107":0.15101,"108":0.5111,"109":16.00298,"110":8.59584,"111":0.00774,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 50 51 54 55 57 59 60 61 62 63 65 66 112 113"},F:{"28":0.01549,"46":0.00774,"79":0.01162,"85":0.05034,"89":0.00387,"93":0.07357,"94":1.08029,"95":1.04931,_:"9 11 12 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 86 87 88 90 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00774,"92":0.00387,"104":0.00387,"107":0.01162,"108":0.03872,"109":0.73568,"110":1.01446,_:"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 105 106"},E:{"4":0.00387,"14":0.02323,"15":0.00774,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.4","11.1":0.00387,"12.1":0.00774,"13.1":0.05034,"14.1":0.05421,"15.1":0.01162,"15.2-15.3":0.00774,"15.4":0.01936,"15.5":0.02323,"15.6":0.14326,"16.0":0.02323,"16.1":0.05034,"16.2":0.17424,"16.3":0.15101},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,"7.0-7.1":0.02036,"8.1-8.4":0.00582,"9.0-9.2":0,"9.3":0.03344,"10.0-10.2":0.00436,"10.3":0.04798,"11.0-11.2":0.01599,"11.3-11.4":0.00582,"12.0-12.1":0.00436,"12.2-12.5":0.27772,"13.0-13.1":0.00727,"13.2":0.00291,"13.3":0.02036,"13.4-13.7":0.07561,"14.0-14.4":0.22101,"14.5-14.8":0.69066,"15.0-15.1":0.07561,"15.2-15.3":0.15267,"15.4":0.20647,"15.5":0.40858,"15.6":1.51217,"16.0":1.86404,"16.1":3.07233,"16.2":3.02144,"16.3":1.71719,"16.4":0.01018},P:{"4":0.0521,"20":0.94821,"5.0-5.4":0.03048,"6.2-6.4":0.04064,"7.2-7.4":0.26414,"8.2":0.01016,"9.2":0.0307,"10.1":0.03048,"11.1-11.2":0.04168,"12.0":0.03048,"13.0":0.02084,"14.0":0.04168,"15.0":0.01042,"16.0":0.03126,"17.0":0.04168,"18.0":0.07294,"19.0":1.5213},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00497,"4.2-4.3":0.00414,"4.4":0,"4.4.3-4.4.4":0.02153},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06695,"9":0.01339,"10":0.02232,"11":0.21871,_:"6 7 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02451},H:{"0":0.32489},L:{"0":46.03818},R:{_:"0"},M:{"0":0.25125},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js index 96c1db43a5da28..67ccc78c486032 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00605,"51":0.0242,"52":0.10888,"53":0,"54":0,"55":0.00605,"56":0.00605,"57":0,"58":0,"59":0,"60":0.00605,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01815,"69":0.00605,"70":0.0121,"71":0.0121,"72":0.03025,"73":0.00605,"74":0.0121,"75":0.0121,"76":0.0121,"77":0.0121,"78":0.0242,"79":0.01815,"80":0.01815,"81":0.01815,"82":0.0121,"83":0.0121,"84":0.00605,"85":0,"86":0,"87":0,"88":0.00605,"89":0.00605,"90":0.00605,"91":0.0121,"92":0.00605,"93":0.00605,"94":0.00605,"95":0.00605,"96":0.00605,"97":0.0121,"98":0.00605,"99":0.0242,"100":0.04839,"101":0.0121,"102":0.05444,"103":0.0121,"104":0.0242,"105":0.01815,"106":0.03629,"107":0.04234,"108":0.84081,"109":0.51417,"110":0.0121,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.0121,"26":0.00605,"27":0,"28":0,"29":0,"30":0.03629,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00605,"39":0,"40":0,"41":0.00605,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01815,"49":0.05444,"50":0,"51":0.03025,"52":0.04234,"53":0.00605,"54":0,"55":0.00605,"56":0.03025,"57":0,"58":0,"59":0.00605,"60":0,"61":0.00605,"62":0,"63":0,"64":0.00605,"65":0,"66":0.0121,"67":0.00605,"68":0.04839,"69":0.03025,"70":0.03629,"71":0.03025,"72":0.04839,"73":0.01815,"74":0.04839,"75":0.03629,"76":0.04839,"77":0.03629,"78":0.04839,"79":0.16332,"80":0.07864,"81":0.07259,"83":0.07864,"84":0.09074,"85":0.13308,"86":0.15727,"87":0.10888,"88":0.10283,"89":0.07259,"90":0.44763,"91":0.40528,"92":0.40528,"93":0.38714,"94":0.40528,"95":0.04234,"96":0.03025,"97":0.06049,"98":0.07259,"99":0.04839,"100":0.06654,"101":0.04234,"102":0.09074,"103":0.10283,"104":0.42343,"105":0.15123,"106":0.26616,"107":0.88315,"108":6.39984,"109":5.01462,"110":0.00605,"111":0.00605,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.04839,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00605,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00605,"54":0.0121,"55":0.0121,"56":0,"57":0,"58":0,"60":0.00605,"62":0,"63":0.00605,"64":0.00605,"65":0.00605,"66":0.00605,"67":0.00605,"68":0.00605,"69":0.00605,"70":0.00605,"71":0.00605,"72":0.00605,"73":0.03025,"74":0,"75":0.00605,"76":0.00605,"77":0.00605,"78":0,"79":0.01815,"80":0,"81":0.00605,"82":0.01815,"83":0.01815,"84":0.0242,"85":0.07864,"86":0.03025,"87":0.01815,"88":0.00605,"89":0.0121,"90":0.0121,"91":0.0121,"92":0.01815,"93":0.76217,"94":2.47404,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01815},B:{"12":0,"13":0.00605,"14":0,"15":0,"16":0,"17":0.00605,"18":0.01815,"79":0.00605,"80":0.01815,"81":0.01815,"83":0.01815,"84":0.0242,"85":0.0121,"86":0.01815,"87":0.0121,"88":0.0121,"89":0.01815,"90":0.0121,"91":0,"92":0.00605,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00605,"99":0.00605,"100":0,"101":0,"102":0.00605,"103":0.00605,"104":0.00605,"105":0.00605,"106":0.0121,"107":0.0242,"108":0.81662,"109":0.82266},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.06049,"14":0.09074,"15":0.01815,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.24196,"10.1":0,"11.1":0.00605,"12.1":0.00605,"13.1":0.09678,"14.1":0.12098,"15.1":0.03025,"15.2-15.3":0.04234,"15.4":0.04234,"15.5":0.06049,"15.6":0.23591,"16.0":0.0242,"16.1":0.12098,"16.2":0.18147,"16.3":0.01815},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.01193,"8.1-8.4":0.00682,"9.0-9.2":0.05965,"9.3":0.10566,"10.0-10.2":0.02556,"10.3":0.10396,"11.0-11.2":0.0818,"11.3-11.4":0.05113,"12.0-12.1":0.05794,"12.2-12.5":0.54366,"13.0-13.1":0.05283,"13.2":0.03068,"13.3":0.07328,"13.4-13.7":0.16872,"14.0-14.4":0.48401,"14.5-14.8":0.87258,"15.0-15.1":0.4005,"15.2-15.3":0.78395,"15.4":0.34426,"15.5":0.54706,"15.6":1.25262,"16.0":2.63818,"16.1":3.79536,"16.2":3.14434,"16.3":0.3221},P:{"4":0.06176,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07205,"8.2":0,"9.2":0.01029,"10.1":0,"11.1-11.2":0.02059,"12.0":0.01029,"13.0":0.03088,"14.0":0.02059,"15.0":0.01029,"16.0":0.03088,"17.0":0.04117,"18.0":0.05146,"19.0":0.86457},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00772,"4.2-4.3":0.02317,"4.4":0,"4.4.3-4.4.4":0.13516},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00674,"7":0.00674,"8":0.03368,"9":0.01347,"10":0.01347,"11":0.2223,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.40449},S:{"2.5":0},R:{_:"0"},M:{"0":0.22521},Q:{"13.1":0},O:{"0":0.12643},H:{"0":0.62093}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00591,"52":0.10642,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00591,"60":0.00591,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02956,"69":0.01182,"70":0.01182,"71":0.01182,"72":0.04138,"73":0.01182,"74":0.01182,"75":0.01182,"76":0.01182,"77":0.01182,"78":0.02956,"79":0.01182,"80":0.01774,"81":0.01774,"82":0.01774,"83":0.01182,"84":0,"85":0,"86":0,"87":0,"88":0.00591,"89":0.00591,"90":0.00591,"91":0.01774,"92":0,"93":0.00591,"94":0.00591,"95":0.00591,"96":0.00591,"97":0.00591,"98":0.00591,"99":0.01774,"100":0.01182,"101":0.00591,"102":0.05912,"103":0.01182,"104":0.02365,"105":0.01182,"106":0.01774,"107":0.02365,"108":0.04138,"109":0.79221,"110":0.51434,"111":0.00591,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01182,"26":0.00591,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00591,"39":0,"40":0,"41":0.00591,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01774,"49":0.0473,"50":0,"51":0.03547,"52":0.01774,"53":0.00591,"54":0,"55":0.00591,"56":0.03547,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00591,"64":0.00591,"65":0.00591,"66":0.01774,"67":0.00591,"68":0.06503,"69":0.0473,"70":0.0473,"71":0.04138,"72":0.07094,"73":0.02365,"74":0.07094,"75":0.0473,"76":0.06503,"77":0.0473,"78":0.07094,"79":0.10642,"80":0.10642,"81":0.10642,"83":0.08868,"84":0.07686,"85":0.11233,"86":0.1478,"87":0.1005,"88":0.10642,"89":0.08868,"90":0.51434,"91":0.44931,"92":0.43749,"93":0.42566,"94":0.42566,"95":0.01774,"96":0.02365,"97":0.04138,"98":0.05321,"99":0.04138,"100":0.0473,"101":0.03547,"102":0.07094,"103":0.07094,"104":0.30742,"105":0.09459,"106":0.41384,"107":0.46705,"108":0.69762,"109":6.56823,"110":3.42305,"111":0.00591,"112":0.00591,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02956,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00591,"47":0.00591,"48":0,"49":0.00591,"50":0,"51":0,"52":0,"53":0.01182,"54":0.01774,"55":0.01774,"56":0.00591,"57":0,"58":0.00591,"60":0.00591,"62":0,"63":0.00591,"64":0.00591,"65":0.00591,"66":0.00591,"67":0.01182,"68":0.00591,"69":0,"70":0.00591,"71":0.00591,"72":0.00591,"73":0.01182,"74":0.00591,"75":0.00591,"76":0.00591,"77":0.00591,"78":0,"79":0.01774,"80":0,"81":0.00591,"82":0.00591,"83":0.00591,"84":0.01774,"85":0.06503,"86":0.02365,"87":0.00591,"88":0.00591,"89":0.02365,"90":0.01182,"91":0.01182,"92":0.01182,"93":0.1005,"94":1.46026,"95":1.31838,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01182},B:{"12":0,"13":0.00591,"14":0,"15":0,"16":0,"17":0.00591,"18":0.01774,"79":0.01182,"80":0.02956,"81":0.02365,"83":0.02365,"84":0.02956,"85":0.01774,"86":0.02365,"87":0.01774,"88":0.01774,"89":0.02365,"90":0.01774,"91":0,"92":0.00591,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00591,"99":0.00591,"100":0.00591,"101":0,"102":0,"103":0.00591,"104":0.00591,"105":0,"106":0.00591,"107":0.01182,"108":0.02956,"109":0.68579,"110":0.86906},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03547,"14":0.06503,"15":0.02365,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.36654,"10.1":0,"11.1":0.00591,"12.1":0.01182,"13.1":0.07094,"14.1":0.1005,"15.1":0.02365,"15.2-15.3":0.02956,"15.4":0.02956,"15.5":0.0473,"15.6":0.1951,"16.0":0.01774,"16.1":0.1005,"16.2":0.1478,"16.3":0.15962,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00357,"6.0-6.1":0,"7.0-7.1":0.00892,"8.1-8.4":0.00357,"9.0-9.2":0.04284,"9.3":0.10888,"10.0-10.2":0.03213,"10.3":0.1071,"11.0-11.2":0.10174,"11.3-11.4":0.06069,"12.0-12.1":0.07318,"12.2-12.5":0.55334,"13.0-13.1":0.05355,"13.2":0.04284,"13.3":0.06783,"13.4-13.7":0.16779,"14.0-14.4":0.43553,"14.5-14.8":0.81573,"15.0-15.1":0.40876,"15.2-15.3":0.75861,"15.4":0.31237,"15.5":0.49086,"15.6":0.98351,"16.0":2.30617,"16.1":3.23792,"16.2":3.06121,"16.3":2.46325,"16.4":0.01785},P:{"4":0.05239,"20":0.32481,"5.0-5.4":0,"6.2-6.4":0.01048,"7.2-7.4":0.05239,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02096,"12.0":0.01048,"13.0":0.02096,"14.0":0.02096,"15.0":0.01048,"16.0":0.03143,"17.0":0.03143,"18.0":0.04191,"19.0":0.61818},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00856,"4.2-4.3":0.01284,"4.4":0,"4.4.3-4.4.4":0.13269},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00658,"7":0.00658,"8":0.0395,"9":0.01317,"10":0.01317,"11":0.21068,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.1349},H:{"0":0.64246},L:{"0":39.26494},R:{_:"0"},M:{"0":0.28616},Q:{"13.1":0.00409}}; 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 e3cd69b6d72333..8062de41dc2b78 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.00463,"32":0,"33":0,"34":0.00463,"35":0,"36":0,"37":0.00463,"38":0,"39":0,"40":0,"41":0.00463,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00463,"50":0.00463,"51":0,"52":0.00925,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00463,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00463,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00463,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00463,"93":0,"94":0,"95":0,"96":0.00463,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.037,"103":0.00925,"104":0.00463,"105":0.00925,"106":0.00463,"107":0.037,"108":0.63363,"109":0.40238,"110":0.02775,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00463,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00463,"35":0,"36":0,"37":0,"38":0.0185,"39":0,"40":0,"41":0,"42":0,"43":0.02313,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00463,"51":0,"52":0,"53":0,"54":0,"55":0.00463,"56":0.00463,"57":0,"58":0.00463,"59":0,"60":0.00463,"61":0.00463,"62":0,"63":0,"64":0.00463,"65":0.00925,"66":0,"67":0,"68":0.00463,"69":0.00463,"70":0,"71":0.00463,"72":0,"73":0,"74":0.02313,"75":0.00463,"76":0.00463,"77":0.01388,"78":0,"79":0.01388,"80":0.01388,"81":0.01388,"83":0.00925,"84":0.03238,"85":0.00463,"86":0.0185,"87":0.02313,"88":0.00463,"89":0.02775,"90":0.00463,"91":0.0185,"92":0.00925,"93":0.0185,"94":0.00463,"95":0.02775,"96":0.01388,"97":0.00925,"98":0.02313,"99":0.02775,"100":0.0185,"101":0.01388,"102":0.01388,"103":0.11563,"104":0.037,"105":0.0925,"106":0.06013,"107":0.26363,"108":7.511,"109":6.42413,"110":0.0185,"111":0.00925,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00463,"29":0,"30":0.00463,"31":0.00463,"32":0.00463,"33":0.00463,"34":0,"35":0,"36":0,"37":0.00463,"38":0,"39":0,"40":0,"41":0,"42":0.00463,"43":0,"44":0,"45":0,"46":0,"47":0.00463,"48":0,"49":0,"50":0,"51":0.00925,"52":0,"53":0.00925,"54":0,"55":0.00463,"56":0.00925,"57":0.00463,"58":0.00463,"60":0.15263,"62":0,"63":0.24975,"64":0.06475,"65":0.00925,"66":0.28213,"67":0.01388,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03238,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00463,"86":0,"87":0,"88":0,"89":0.00463,"90":0.0185,"91":0,"92":0,"93":0.05088,"94":0.32838,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00463},B:{"12":0.06938,"13":0.04163,"14":0.01388,"15":0.00463,"16":0.01388,"17":0.00925,"18":0.074,"79":0,"80":0,"81":0,"83":0,"84":0.00925,"85":0.01388,"86":0,"87":0,"88":0,"89":0.01388,"90":0.00463,"91":0,"92":0.0555,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00463,"101":0.00463,"102":0,"103":0.00463,"104":0.00463,"105":0.0185,"106":0.02313,"107":0.0555,"108":0.87413,"109":0.95738},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00463,"14":0.00925,"15":0.00463,_:"0","3.1":0,"3.2":0,"5.1":0.00925,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00925,"13.1":0.02313,"14.1":0.04163,"15.1":0.00463,"15.2-15.3":0,"15.4":0.01388,"15.5":0.01388,"15.6":0.06475,"16.0":0.00925,"16.1":0.05088,"16.2":0.0555,"16.3":0.00463},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00519,"6.0-6.1":0,"7.0-7.1":0.02206,"8.1-8.4":0,"9.0-9.2":0.0013,"9.3":0.04671,"10.0-10.2":0.00389,"10.3":0.23226,"11.0-11.2":0.02206,"11.3-11.4":0.00389,"12.0-12.1":0.0506,"12.2-12.5":1.33257,"13.0-13.1":0.00649,"13.2":0.0026,"13.3":0.03114,"13.4-13.7":0.16349,"14.0-14.4":0.42949,"14.5-14.8":0.43727,"15.0-15.1":0.17517,"15.2-15.3":0.27248,"15.4":0.26729,"15.5":0.55405,"15.6":0.97964,"16.0":0.90568,"16.1":2.15392,"16.2":2.2668,"16.3":0.16219},P:{"4":0.09233,"5.0-5.4":0.04103,"6.2-6.4":0.01026,"7.2-7.4":0.11284,"8.2":0,"9.2":0.02052,"10.1":0,"11.1-11.2":0.02052,"12.0":0,"13.0":0.01026,"14.0":0.02052,"15.0":0.01026,"16.0":0.04103,"17.0":0.20517,"18.0":0.1231,"19.0":1.08741},I:{"0":0,"3":0,"4":0.0026,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0026,"4.2-4.3":0.0039,"4.4":0,"4.4.3-4.4.4":0.11714},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0555,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.0645},R:{_:"0"},M:{"0":0.215},Q:{"13.1":0.00538},O:{"0":0.215},H:{"0":6.78833},L:{"0":56.07938}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00472,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00472,"53":0,"54":0,"55":0,"56":0.00943,"57":0,"58":0,"59":0,"60":0.00472,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00472,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00472,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00472,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00472,"99":0.00472,"100":0,"101":0,"102":0.02829,"103":0.00472,"104":0.00472,"105":0.00472,"106":0.00472,"107":0.00943,"108":0.02829,"109":0.59409,"110":0.5328,"111":0.02829,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00472,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00472,"35":0,"36":0,"37":0,"38":0.00472,"39":0,"40":0.00472,"41":0,"42":0,"43":0.00472,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00472,"50":0.00472,"51":0,"52":0,"53":0,"54":0,"55":0.00472,"56":0,"57":0,"58":0.00472,"59":0,"60":0,"61":0.00472,"62":0,"63":0,"64":0.00472,"65":0.01886,"66":0,"67":0.00472,"68":0,"69":0.01415,"70":0,"71":0.00472,"72":0.00472,"73":0,"74":0.01886,"75":0.00472,"76":0,"77":0.00472,"78":0,"79":0.01415,"80":0.03772,"81":0.00472,"83":0.01415,"84":0.03301,"85":0.00472,"86":0.00472,"87":0.01886,"88":0.00472,"89":0.00472,"90":0.00943,"91":0.01886,"92":0.00943,"93":0.01886,"94":0.00472,"95":0.04715,"96":0.00472,"97":0.01415,"98":0.02358,"99":0.01886,"100":0.02358,"101":0.00472,"102":0.02358,"103":0.07073,"104":0.02358,"105":0.04715,"106":0.05187,"107":0.14617,"108":0.44793,"109":8.49643,"110":5.87018,"111":0.01886,"112":0.00943,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00472,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00472,"31":0,"32":0,"33":0.00472,"34":0,"35":0.01415,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00943,"47":0.00472,"48":0,"49":0,"50":0,"51":0.00943,"52":0,"53":0.00943,"54":0,"55":0.00943,"56":0.00943,"57":0,"58":0.00472,"60":0.05658,"62":0,"63":0.25461,"64":0.05658,"65":0.01415,"66":0.23575,"67":0.35363,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0613,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00943,"94":0.16031,"95":0.21689,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00472},B:{"12":0.03301,"13":0.04244,"14":0.01415,"15":0.00472,"16":0.00943,"17":0.00472,"18":0.09902,"79":0,"80":0,"81":0,"83":0,"84":0.00943,"85":0.00943,"86":0,"87":0,"88":0,"89":0.02358,"90":0.00472,"91":0,"92":0.04244,"93":0.00472,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00472,"101":0,"102":0.00472,"103":0,"104":0.00472,"105":0.00472,"106":0.02358,"107":0.03772,"108":0.04715,"109":0.99487,"110":1.01373},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00943,"14":0.00943,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00472,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00472,"13.1":0.01415,"14.1":0.02829,"15.1":0.00943,"15.2-15.3":0,"15.4":0.00472,"15.5":0.00943,"15.6":0.0613,"16.0":0.00472,"16.1":0.03301,"16.2":0.03301,"16.3":0.04715,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00833,"6.0-6.1":0,"7.0-7.1":0.06422,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04401,"10.0-10.2":0.00119,"10.3":0.02498,"11.0-11.2":0.00238,"11.3-11.4":0.00476,"12.0-12.1":0.01427,"12.2-12.5":1.06328,"13.0-13.1":0.0107,"13.2":0.00119,"13.3":0.0226,"13.4-13.7":0.08088,"14.0-14.4":0.27593,"14.5-14.8":0.30804,"15.0-15.1":0.15343,"15.2-15.3":0.28782,"15.4":0.24144,"15.5":0.41627,"15.6":0.7933,"16.0":0.65771,"16.1":1.44506,"16.2":2.89964,"16.3":1.33445,"16.4":0.00238},P:{"4":0.11506,"20":0.23012,"5.0-5.4":0.02092,"6.2-6.4":0,"7.2-7.4":0.09414,"8.2":0,"9.2":0.01046,"10.1":0,"11.1-11.2":0.01046,"12.0":0,"13.0":0.01046,"14.0":0,"15.0":0.01046,"16.0":0.08368,"17.0":0.08368,"18.0":0.03138,"19.0":0.80541},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00524,"4.2-4.3":0.00699,"4.4":0,"4.4.3-4.4.4":0.09606},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04244,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.05285,_:"3.0-3.1"},J:{"7":0,"10":0.00529},O:{"0":0.22726},H:{"0":6.76473},L:{"0":55.93957},R:{_:"0"},M:{"0":0.06342},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js index d0c0f6598a546e..a917e305f4b603 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.00236,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00236,"103":0,"104":0,"105":0.00236,"106":0.00236,"107":0.00236,"108":0.09656,"109":0.05652,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00236,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00471,"66":0,"67":0,"68":0.00236,"69":0.00236,"70":0,"71":0,"72":0.00236,"73":0,"74":0.00236,"75":0,"76":0.00236,"77":0,"78":0.00236,"79":0.00707,"80":0.00236,"81":0.00236,"83":0.00236,"84":0.00236,"85":0.00707,"86":0.00471,"87":0.00471,"88":0.00471,"89":0.00236,"90":0.00236,"91":0.00471,"92":0.02355,"93":0.00471,"94":0.00471,"95":0.00471,"96":0.00471,"97":0.00236,"98":0.00236,"99":0.01178,"100":0.00236,"101":0.00236,"102":0.00707,"103":0.01649,"104":0.00707,"105":0.01178,"106":0.01178,"107":0.04004,"108":1.80393,"109":1.7639,"110":0.00236,"111":0.00236,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00236,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00236,"74":0,"75":0.00236,"76":0,"77":0,"78":0,"79":0.00236,"80":0,"81":0,"82":0.00236,"83":0.00236,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03062,"94":0.03297,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00236,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00236,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00236,"100":0,"101":0,"102":0.00236,"103":0.00236,"104":0.00236,"105":0.00471,"106":0.00236,"107":0.02826,"108":0.3038,"109":0.24728},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00471,"14":0.01649,"15":0.00471,_:"0","3.1":0,"3.2":0,"5.1":0.00942,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00942,"14.1":0.04239,"15.1":0.01178,"15.2-15.3":0.00707,"15.4":0.01884,"15.5":0.04475,"15.6":0.18134,"16.0":0.0212,"16.1":0.08714,"16.2":0.11775,"16.3":0.00707},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01488,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04836,"10.0-10.2":0,"10.3":0.08557,"11.0-11.2":0,"11.3-11.4":0.00372,"12.0-12.1":0.04092,"12.2-12.5":0.49109,"13.0-13.1":0.05208,"13.2":0.02976,"13.3":0.10045,"13.4-13.7":0.28275,"14.0-14.4":1.2798,"14.5-14.8":1.7188,"15.0-15.1":0.61758,"15.2-15.3":0.6957,"15.4":0.97101,"15.5":1.88249,"15.6":4.39001,"16.0":5.93767,"16.1":8.69073,"16.2":7.28444,"16.3":0.6585},P:{"4":0.0308,"5.0-5.4":0.01027,"6.2-6.4":0,"7.2-7.4":0.06159,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.02053,"12.0":0.01027,"13.0":0.0308,"14.0":0.04106,"15.0":0.02053,"16.0":0.08212,"17.0":0.06159,"18.0":0.09239,"19.0":1.70401},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08884},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01884,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.06881},Q:{"13.1":0},O:{"0":1.20791},H:{"0":0.18818},L:{"0":54.69576}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00224,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00224,"103":0,"104":0,"105":0,"106":0,"107":0.00224,"108":0.00447,"109":0.09168,"110":0.04919,"111":0.00224,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00224,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00224,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00224,"69":0.00224,"70":0,"71":0.00224,"72":0.00224,"73":0,"74":0.00224,"75":0,"76":0.00224,"77":0,"78":0,"79":0.00671,"80":0,"81":0.00224,"83":0.00224,"84":0.00224,"85":0.00224,"86":0.00447,"87":0.00447,"88":0.00447,"89":0.00224,"90":0,"91":0.00224,"92":0.02012,"93":0.00447,"94":0.00224,"95":0.00224,"96":0.00224,"97":0.00224,"98":0.00224,"99":0.00671,"100":0.00224,"101":0.00224,"102":0.00447,"103":0.01342,"104":0.00447,"105":0.00894,"106":0.00894,"107":0.02012,"108":0.06708,"109":1.95203,"110":1.14036,"111":0.00224,"112":0.00224,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00224,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00447,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00224,"80":0,"81":0,"82":0.00224,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00447,"94":0.03801,"95":0.01789,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00224,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00224,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00224,"104":0,"105":0.00224,"106":0.00224,"107":0.01342,"108":0.03801,"109":0.23254,"110":0.26385},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00447,"14":0.01789,"15":0.00447,_:"0","3.1":0,"3.2":0,"5.1":0.00671,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00894,"14.1":0.03354,"15.1":0.01118,"15.2-15.3":0.00447,"15.4":0.01565,"15.5":0.04472,"15.6":0.12298,"16.0":0.01565,"16.1":0.0805,"16.2":0.10733,"16.3":0.08273,"16.4":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.01604,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05214,"10.0-10.2":0,"10.3":0.08423,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.04011,"12.2-12.5":0.50941,"13.0-13.1":0.04011,"13.2":0.02808,"13.3":0.09627,"13.4-13.7":0.24869,"14.0-14.4":1.24746,"14.5-14.8":1.68467,"15.0-15.1":0.60969,"15.2-15.3":0.68189,"15.4":0.90651,"15.5":1.70071,"15.6":3.77847,"16.0":5.39093,"16.1":7.40451,"16.2":7.68128,"16.3":6.00864,"16.4":0.01203},P:{"4":0.04078,"20":0.60149,"5.0-5.4":0.01019,"6.2-6.4":0,"7.2-7.4":0.06117,"8.2":0,"9.2":0.01019,"10.1":0,"11.1-11.2":0.02039,"12.0":0,"13.0":0.04078,"14.0":0.03058,"15.0":0.02039,"16.0":0.06117,"17.0":0.05097,"18.0":0.07136,"19.0":1.16221},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07789},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02012,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.26553},H:{"0":0.20581},L:{"0":52.26376},R:{_:"0"},M:{"0":0.06988},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SB.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SB.js index fa71f27e5c97de..73b2354705131f 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.00327,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00327,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00654,"82":0,"83":0,"84":0.00327,"85":0,"86":0,"87":0.00327,"88":0.00654,"89":0,"90":0,"91":0,"92":0.00981,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.27133,"102":0,"103":0,"104":0,"105":0.01308,"106":0,"107":0.00327,"108":0.33344,"109":0.19287,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00327,"38":0,"39":0,"40":0.02942,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00327,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02288,"70":0.00327,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00327,"79":0.00654,"80":0,"81":0.00327,"83":0.00327,"84":0,"85":0,"86":0.01635,"87":0.00981,"88":0,"89":0.03596,"90":0.01308,"91":0,"92":0.00327,"93":0,"94":0.00654,"95":0,"96":0.00654,"97":0.00327,"98":0,"99":0.01635,"100":0.10788,"101":0,"102":0.00654,"103":1.69988,"104":0.00981,"105":0.00981,"106":0.00327,"107":0.0425,"108":2.03005,"109":1.71949,"110":0.00327,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0.00327,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00327,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00327,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.02288,"60":0,"62":0,"63":0.00327,"64":0,"65":0,"66":0.00654,"67":0.00981,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.10788,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00654,"92":0.00327,"93":0,"94":0.07519,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00327,"13":0.45112,"14":0.00327,"15":0.01635,"16":0.01961,"17":0.00981,"18":0.01308,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00327,"86":0,"87":0,"88":0,"89":0.00327,"90":0,"91":0,"92":0.00654,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00327,"101":0.02942,"102":0,"103":0.00654,"104":0,"105":0.01308,"106":0.00327,"107":0.02288,"108":0.54919,"109":0.37267},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.00327,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.09153,"13.1":0.00327,"14.1":0.00981,"15.1":0.00327,"15.2-15.3":0,"15.4":0.00327,"15.5":0.00327,"15.6":0.15364,"16.0":0.00327,"16.1":0.01635,"16.2":0.01961,"16.3":0},G:{"8":0,"3.2":0.01067,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00229,"8.1-8.4":0,"9.0-9.2":0.00838,"9.3":0.01067,"10.0-10.2":0,"10.3":0.01486,"11.0-11.2":0,"11.3-11.4":0.00419,"12.0-12.1":0.00229,"12.2-12.5":0.13104,"13.0-13.1":0,"13.2":0.00419,"13.3":0.01676,"13.4-13.7":0.05295,"14.0-14.4":0.1459,"14.5-14.8":0.23846,"15.0-15.1":0.08228,"15.2-15.3":0.12647,"15.4":0.04647,"15.5":0.13066,"15.6":0.4114,"16.0":0.76338,"16.1":0.44492,"16.2":0.95537,"16.3":0.05066},P:{"4":0.20383,"5.0-5.4":0,"6.2-6.4":0.02038,"7.2-7.4":0.08153,"8.2":0,"9.2":0.15287,"10.1":0,"11.1-11.2":0.04077,"12.0":0,"13.0":0.03057,"14.0":0.05096,"15.0":0.03057,"16.0":0.17325,"17.0":0.08153,"18.0":0.18345,"19.0":2.20135},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00971,"4.4":0,"4.4.3-4.4.4":0.24279},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00654,"11":0.11442,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":1.05004},Q:{"13.1":0.00673},O:{"0":6.57619},H:{"0":2.0838},L:{"0":70.12755}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00792,"48":0,"49":0,"50":0,"51":0,"52":0,"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,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"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.03961,"102":0.01584,"103":0,"104":0,"105":0,"106":0,"107":0.00792,"108":0.00396,"109":0.50305,"110":0.87538,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00792,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"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,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00792,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00396,"76":0,"77":0,"78":0.01188,"79":0.00396,"80":0,"81":0.00792,"83":0,"84":0,"85":0,"86":0,"87":0.01981,"88":0.00396,"89":0,"90":0.19013,"91":0,"92":0.00396,"93":0.00396,"94":0.01188,"95":0.00792,"96":0.00792,"97":0.00396,"98":0,"99":0.01188,"100":0.14656,"101":0,"102":0.01188,"103":2.85192,"104":0.04753,"105":0.01981,"106":0.01584,"107":0.02377,"108":0.21389,"109":3.21633,"110":2.29738,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00396,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00792,"64":0.00396,"65":0.01981,"66":0,"67":0.05942,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.13071,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00792,"90":0,"91":0,"92":0,"93":0,"94":0.03961,"95":0.05942,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00396},B:{"12":0,"13":0.08714,"14":0.00792,"15":0.00792,"16":0.01981,"17":0.06338,"18":0.02773,"79":0,"80":0.00396,"81":0,"83":0,"84":0.00792,"85":0,"86":0,"87":0,"88":0,"89":0.00792,"90":0,"91":0,"92":0.01981,"93":0,"94":0.00396,"95":0.00396,"96":0.00792,"97":0,"98":0,"99":0.00792,"100":0.01584,"101":0.05149,"102":0.00792,"103":0.02773,"104":0.01584,"105":0.01188,"106":0.00396,"107":0.04753,"108":0.07922,"109":0.60603,"110":0.75259},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.00396,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02773,"13.1":0,"14.1":0.00792,"15.1":0.00396,"15.2-15.3":0,"15.4":0.00396,"15.5":0.01981,"15.6":0.16636,"16.0":0.00396,"16.1":0.00792,"16.2":0.0911,"16.3":0.03961,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0.0079,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00276,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00513,"10.0-10.2":0,"10.3":0.02567,"11.0-11.2":0.00276,"11.3-11.4":0.00276,"12.0-12.1":0,"12.2-12.5":0.25868,"13.0-13.1":0.00513,"13.2":0,"13.3":0.02054,"13.4-13.7":0.10624,"14.0-14.4":0.12164,"14.5-14.8":0.13704,"15.0-15.1":0.06437,"15.2-15.3":0.08531,"15.4":0.24051,"15.5":0.16824,"15.6":0.35702,"16.0":0.27922,"16.1":0.47589,"16.2":0.65164,"16.3":0.42692,"16.4":0},P:{"4":0.07077,"20":0.24264,"5.0-5.4":0,"6.2-6.4":0.07077,"7.2-7.4":0.11121,"8.2":0.01011,"9.2":0.07077,"10.1":0,"11.1-11.2":0.06066,"12.0":0.01011,"13.0":0.02022,"14.0":0.07077,"15.0":0.06066,"16.0":0.21231,"17.0":0.06066,"18.0":0.11121,"19.0":1.98156},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09942},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.36441,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":4.99425},H:{"0":1.72664},L:{"0":67.84386},R:{_:"0"},M:{"0":1.0689},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SC.js index 37e08a8e63beeb..87999282492257 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.00555,"18":0.0111,"19":0.0111,"20":0.00555,"21":0.11102,"22":0.0222,"23":0.01665,"24":0.0222,"25":0.01665,"26":0,"27":0.00555,"28":0.01665,"29":0.0111,"30":0,"31":0.0222,"32":0,"33":0.0111,"34":0,"35":0,"36":0.00555,"37":0,"38":0.0111,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00555,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0111,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00555,"60":0.0111,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01665,"69":0.00555,"70":0.00555,"71":0.00555,"72":0.0111,"73":0.00555,"74":0.00555,"75":0.00555,"76":0.00555,"77":0.00555,"78":0.0222,"79":0.00555,"80":0.0111,"81":0.00555,"82":0.00555,"83":0.00555,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05551,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00555,"99":0.00555,"100":0.00555,"101":0,"102":0.79379,"103":0.01665,"104":0.01665,"105":0.28865,"106":0.0222,"107":0.02776,"108":0.47739,"109":0.19429,"110":0.03331,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.14988,"25":0,"26":0,"27":0.37192,"28":0.11657,"29":0.10547,"30":0.03331,"31":0.06661,"32":0.09437,"33":0.03331,"34":0.06106,"35":0.12212,"36":0.14433,"37":0.11102,"38":0.0111,"39":0,"40":0.02776,"41":0.2498,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0111,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00555,"57":0,"58":0,"59":0.13322,"60":0.01665,"61":0,"62":0,"63":0.00555,"64":0.00555,"65":0,"66":0,"67":0,"68":0.02776,"69":0.0222,"70":0.01665,"71":0.0222,"72":0.48294,"73":0.0111,"74":0.04441,"75":0.0222,"76":0.01665,"77":0.0222,"78":0.02776,"79":0.03886,"80":0.03886,"81":0.03886,"83":0.36637,"84":0.07771,"85":0.2609,"86":0.272,"87":0.03331,"88":0.04441,"89":0.04996,"90":1.48212,"91":1.44881,"92":1.47657,"93":1.45991,"94":1.48212,"95":0.00555,"96":0.00555,"97":0.01665,"98":0.18318,"99":0.21649,"100":0.11102,"101":0.02776,"102":0.10547,"103":0.09437,"104":0.05551,"105":0.09992,"106":0.33861,"107":0.15543,"108":5.94512,"109":5.06251,"110":0.00555,"111":0,"112":0},F:{"9":0,"11":0.0111,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0111,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00555,"54":0.0111,"55":0.0111,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01665,"64":0.00555,"65":0,"66":0.00555,"67":0.00555,"68":0.00555,"69":0,"70":0.00555,"71":0,"72":0,"73":0.00555,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00555,"85":0,"86":0,"87":0.00555,"88":0,"89":0.00555,"90":0.00555,"91":0,"92":0,"93":0.09437,"94":0.32751,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0.00555,"11.6":0,"12.1":0.00555},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00555,"18":0.0111,"79":0.00555,"80":0.0111,"81":0.0111,"83":0.0111,"84":0.0111,"85":0.00555,"86":0.0111,"87":0.0111,"88":0.00555,"89":0.0111,"90":0.0111,"91":0,"92":0.00555,"93":0,"94":0.00555,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.05551,"101":0.00555,"102":0.00555,"103":0,"104":0.00555,"105":0.03886,"106":0.00555,"107":0.0111,"108":0.62171,"109":0.41633},E:{"4":0,"5":0.07216,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01665,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00555,"6.1":0,"7.1":0,"9.1":0.14433,"10.1":0,"11.1":0,"12.1":0.19429,"13.1":0.01665,"14.1":0.08327,"15.1":0.07216,"15.2-15.3":0.11102,"15.4":0.0111,"15.5":0.01665,"15.6":0.09992,"16.0":0.04996,"16.1":0.06661,"16.2":0.06661,"16.3":0.0111},G:{"8":0,"3.2":0.1026,"4.0-4.1":0,"4.2-4.3":0.0019,"5.0-5.1":0.00095,"6.0-6.1":0.00095,"7.0-7.1":0.0076,"8.1-8.4":0.00095,"9.0-9.2":0.0323,"9.3":0.0893,"10.0-10.2":0.02945,"10.3":0.095,"11.0-11.2":0.07885,"11.3-11.4":0.03135,"12.0-12.1":0.08645,"12.2-12.5":0.40565,"13.0-13.1":0.0475,"13.2":0.03705,"13.3":0.02185,"13.4-13.7":0.1254,"14.0-14.4":0.19665,"14.5-14.8":0.3135,"15.0-15.1":0.28215,"15.2-15.3":0.2774,"15.4":0.10925,"15.5":0.247,"15.6":0.91199,"16.0":1.15709,"16.1":2.27523,"16.2":1.75179,"16.3":0.10925},P:{"4":0.04112,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03084,"8.2":0,"9.2":0,"10.1":0.01028,"11.1-11.2":0.01028,"12.0":0.01028,"13.0":0.07197,"14.0":0.02056,"15.0":0,"16.0":0.03084,"17.0":0.08225,"18.0":0.06168,"19.0":1.14117},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03605,"4.4":0,"4.4.3-4.4.4":0.19828},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00978,"7":0.00978,"8":0.0489,"9":0.0489,"10":0.02934,"11":0.26407,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.0089},R:{_:"0"},M:{"0":0.76078},Q:{"13.1":0.0089},O:{"0":0.98323},H:{"0":0.42541},L:{"0":55.63972}}; +module.exports={C:{"2":0.01662,"3":0.01108,"4":0.00554,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00554,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01662,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00554,"46":0.01108,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01108,"53":0.00554,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01108,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01662,"69":0,"70":0,"71":0.00554,"72":0.00554,"73":0,"74":0.00554,"75":0,"76":0,"77":0.00554,"78":0.01662,"79":0,"80":0.00554,"81":0.00554,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.04985,"92":0,"93":0.00554,"94":0,"95":0.00554,"96":0.00554,"97":0,"98":0.00554,"99":0,"100":0.00554,"101":0.00554,"102":0.94163,"103":0.01108,"104":0.05539,"105":0.24372,"106":0.06647,"107":0.03323,"108":0.21048,"109":0.32126,"110":0.1994,"111":0,"112":0,"3.5":0.00554,"3.6":0.01108},D:{"4":0.00554,"5":0.00554,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00554,"25":0,"26":0,"27":0,"28":0,"29":0.00554,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00554,"42":0,"43":0.01108,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00554,"57":0,"58":0,"59":0.09416,"60":0,"61":0,"62":0,"63":0,"64":0.00554,"65":0,"66":0.00554,"67":0,"68":0.01662,"69":0.01108,"70":0.01662,"71":0.01108,"72":0.5816,"73":0.00554,"74":0.02216,"75":0.00554,"76":0.01108,"77":0.01108,"78":0.02216,"79":0.01662,"80":0.01662,"81":0.01662,"83":0.06647,"84":0.05539,"85":0.28803,"86":0.4265,"87":0.02216,"88":0.0277,"89":0.12186,"90":1.79464,"91":1.82233,"92":1.85557,"93":1.81679,"94":1.82787,"95":0.01108,"96":0.01108,"97":0.0277,"98":0.03323,"99":0.03323,"100":1.00256,"101":0.02216,"102":0.0997,"103":0.05539,"104":0.02216,"105":0.09416,"106":0.29357,"107":0.10524,"108":0.27695,"109":7.58843,"110":3.51173,"111":0.00554,"112":0,"113":0},F:{"9":0.00554,"11":0.00554,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00554,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00554,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00554,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0.01108,"67":0.11632,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00554,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00554,"88":0,"89":0.00554,"90":0,"91":0,"92":0,"93":0.00554,"94":0.20494,"95":0.11632,"9.5-9.6":0.00554,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00554,"13":0.00554,"14":0.0277,"15":0,"16":0,"17":0.01108,"18":0.04431,"79":0,"80":0.00554,"81":0.00554,"83":0.00554,"84":0.01108,"85":0.00554,"86":0.00554,"87":0,"88":0.00554,"89":0.01108,"90":0.00554,"91":0,"92":0.00554,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.04985,"101":0.00554,"102":0,"103":0.00554,"104":0.00554,"105":0.03877,"106":0.00554,"107":0.01662,"108":0.1274,"109":0.38219,"110":0.52621},E:{"4":0.00554,"5":0.00554,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01108,"15":0.00554,_:"0","3.1":0.00554,"3.2":0.00554,"5.1":0.00554,"6.1":0,"7.1":0,"9.1":0.06647,"10.1":0,"11.1":0,"12.1":0.36557,"13.1":0.02216,"14.1":0.12186,"15.1":0.08309,"15.2-15.3":0.06647,"15.4":0.01108,"15.5":0.01662,"15.6":0.13848,"16.0":0.06647,"16.1":0.07201,"16.2":0.11078,"16.3":0.11632,"16.4":0},G:{"8":0.00204,"3.2":0.00407,"4.0-4.1":0,"4.2-4.3":0.00305,"5.0-5.1":0.00102,"6.0-6.1":0,"7.0-7.1":0.00814,"8.1-8.4":0,"9.0-9.2":0.00916,"9.3":0.06412,"10.0-10.2":0.01018,"10.3":0.02443,"11.0-11.2":0.02951,"11.3-11.4":0.0112,"12.0-12.1":0.02951,"12.2-12.5":0.3959,"13.0-13.1":0.02341,"13.2":0.01628,"13.3":0.01221,"13.4-13.7":0.08142,"14.0-14.4":0.20456,"14.5-14.8":0.30939,"15.0-15.1":0.24934,"15.2-15.3":0.28395,"15.4":0.24527,"15.5":0.1893,"15.6":0.73175,"16.0":1.04521,"16.1":1.92454,"16.2":2.1291,"16.3":1.29049,"16.4":0.00407},P:{"4":0.0408,"20":0.39781,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0306,"8.2":0,"9.2":0.0102,"10.1":0,"11.1-11.2":0.0102,"12.0":0.0306,"13.0":0.0816,"14.0":0.0204,"15.0":0.0102,"16.0":0.0204,"17.0":0.1428,"18.0":0.0306,"19.0":0.91803},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0623,"4.4":0,"4.4.3-4.4.4":0.10064},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02216,"7":0.01108,"8":0.04431,"9":0.02216,"10":0.01108,"11":0.0997,"5.5":0.01108},N:{"10":0,"11":0},S:{"2.5":0.00446,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.76729},H:{"0":0.56593},L:{"0":54.44368},R:{_:"0"},M:{"0":0.75837},Q:{"13.1":0.00892}}; 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 881afdf69888fd..a4bf703dcbc7b3 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.00148,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00148,"48":0.00444,"49":0.00148,"50":0,"51":0,"52":0.00296,"53":0,"54":0,"55":0,"56":0.00148,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00148,"69":0,"70":0,"71":0,"72":0.00444,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00148,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00148,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00148,"92":0,"93":0,"94":0.00148,"95":0,"96":0,"97":0,"98":0,"99":0.00148,"100":0.00148,"101":0.00148,"102":0.00741,"103":0.00148,"104":0.00296,"105":0.00592,"106":0.00592,"107":0.01037,"108":0.1718,"109":0.09627,"110":0.00296,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00148,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00148,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00148,"38":0,"39":0,"40":0.00296,"41":0,"42":0,"43":0.00444,"44":0,"45":0,"46":0,"47":0.00148,"48":0.00148,"49":0,"50":0.00296,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00148,"58":0.00148,"59":0,"60":0.00148,"61":0,"62":0.00296,"63":0.00296,"64":0.00148,"65":0,"66":0,"67":0.00148,"68":0.00148,"69":0.00444,"70":0.00444,"71":0.00148,"72":0,"73":0,"74":0.00148,"75":0,"76":0.00148,"77":0.00148,"78":0.00592,"79":0.00444,"80":0.00148,"81":0.00148,"83":0.00148,"84":0,"85":0.00296,"86":0.00148,"87":0.00444,"88":0.00592,"89":0.00148,"90":0.00148,"91":0.00296,"92":0.00592,"93":0.00296,"94":0.00148,"95":0.00296,"96":0.00296,"97":0.00148,"98":0.00148,"99":0.00592,"100":0.00148,"101":0.00741,"102":0.00444,"103":0.00741,"104":0.00592,"105":0.01037,"106":0.00741,"107":0.02666,"108":0.51687,"109":0.37321,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00148,"25":0,"26":0.00296,"27":0,"28":0.01185,"29":0,"30":0.00592,"31":0,"32":0.00148,"33":0.00444,"34":0,"35":0,"36":0,"37":0,"38":0.00148,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00148,"52":0,"53":0.00148,"54":0.00296,"55":0.00148,"56":0,"57":0,"58":0.00444,"60":0.00741,"62":0,"63":0.01481,"64":0.01777,"65":0.00444,"66":0.01629,"67":0.00444,"68":0,"69":0,"70":0,"71":0,"72":0.01037,"73":0.00889,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01185,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00296,"86":0.00148,"87":0,"88":0,"89":0,"90":0.00148,"91":0,"92":0.00148,"93":0.00741,"94":0.06072,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.00148,"11.1":0,"11.5":0.00148,"11.6":0,"12.1":0.00741},B:{"12":0.00148,"13":0.00148,"14":0.00148,"15":0,"16":0.00148,"17":0.00148,"18":0.00889,"79":0,"80":0,"81":0,"83":0,"84":0.00296,"85":0.00148,"86":0,"87":0,"88":0,"89":0.01185,"90":0.00148,"91":0,"92":0.00741,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00148,"101":0,"102":0,"103":0,"104":0.00148,"105":0.00296,"106":0.00296,"107":0.00889,"108":0.1244,"109":0.09034},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00296,"15":0.00148,_:"0","3.1":0,"3.2":0,"5.1":0.11256,"6.1":0,"7.1":0,"9.1":0.00148,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00148,"14.1":0.00444,"15.1":0.00148,"15.2-15.3":0.00148,"15.4":0.00592,"15.5":0.00889,"15.6":0.01629,"16.0":0.00444,"16.1":0.03554,"16.2":0.00741,"16.3":0},G:{"8":0,"3.2":0.0016,"4.0-4.1":0,"4.2-4.3":0.0016,"5.0-5.1":0.00481,"6.0-6.1":0.00321,"7.0-7.1":0.00802,"8.1-8.4":0,"9.0-9.2":0.00241,"9.3":0.03049,"10.0-10.2":0.00241,"10.3":0.01284,"11.0-11.2":0.00562,"11.3-11.4":0.00401,"12.0-12.1":0.0714,"12.2-12.5":0.48457,"13.0-13.1":0.06579,"13.2":0.01444,"13.3":0.03209,"13.4-13.7":0.08263,"14.0-14.4":0.61695,"14.5-14.8":0.43002,"15.0-15.1":0.22624,"15.2-15.3":0.29604,"15.4":0.29684,"15.5":0.41157,"15.6":0.67792,"16.0":1.01006,"16.1":1.16169,"16.2":1.21063,"16.3":0.12596},P:{"4":0.47413,"5.0-5.4":0.03026,"6.2-6.4":0.04035,"7.2-7.4":0.34298,"8.2":0,"9.2":0.05044,"10.1":0.02018,"11.1-11.2":0.07061,"12.0":0.03026,"13.0":0.10088,"14.0":0.24211,"15.0":0.13114,"16.0":0.6557,"17.0":0.29255,"18.0":0.3329,"19.0":1.51317},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00673,"4.2-4.3":0.01263,"4.4":0,"4.4.3-4.4.4":0.06397},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00159,"9":0.00159,"10":0,"11":0.01904,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.01704},R:{_:"0"},M:{"0":0.15334},Q:{"13.1":0.00852},O:{"0":1.49083},H:{"0":8.1217},L:{"0":73.72496}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0.00168,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00168,"32":0,"33":0,"34":0,"35":0,"36":0.00168,"37":0.00168,"38":0.00168,"39":0,"40":0,"41":0,"42":0,"43":0.00168,"44":0.00168,"45":0,"46":0,"47":0.00168,"48":0.00168,"49":0.00168,"50":0,"51":0,"52":0.00337,"53":0,"54":0,"55":0,"56":0.00168,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00168,"69":0,"70":0,"71":0,"72":0.00505,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00168,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00505,"92":0,"93":0.00168,"94":0.00168,"95":0,"96":0.00337,"97":0,"98":0,"99":0.00168,"100":0.00168,"101":0,"102":0.00674,"103":0.00168,"104":0.00674,"105":0.00842,"106":0.01179,"107":0.0101,"108":0.02189,"109":0.2105,"110":0.14651,"111":0.00337,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00168,"30":0,"31":0,"32":0,"33":0.00337,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00168,"41":0,"42":0,"43":0.00505,"44":0.00168,"45":0,"46":0.00168,"47":0.00168,"48":0.00168,"49":0.00168,"50":0.00337,"51":0,"52":0,"53":0,"54":0,"55":0.00168,"56":0.00168,"57":0.00168,"58":0.00168,"59":0,"60":0,"61":0,"62":0,"63":0.00168,"64":0.00168,"65":0.00168,"66":0.00168,"67":0,"68":0.00168,"69":0.00337,"70":0.00505,"71":0.00337,"72":0.00168,"73":0,"74":0.00168,"75":0.00168,"76":0.00168,"77":0.00168,"78":0.00505,"79":0.01179,"80":0.00674,"81":0.00337,"83":0.00168,"84":0.00168,"85":0.00505,"86":0.00337,"87":0.00505,"88":0.00842,"89":0.00168,"90":0.00337,"91":0.00168,"92":0.00674,"93":0.00337,"94":0.00168,"95":0.00168,"96":0.00337,"97":0.00168,"98":0.00168,"99":0.00505,"100":0.00842,"101":0.00337,"102":0.01684,"103":0.02021,"104":0.00842,"105":0.0101,"106":0.00842,"107":0.02021,"108":0.06231,"109":0.73591,"110":0.33006,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00337,"25":0,"26":0.00168,"27":0,"28":0.00842,"29":0,"30":0.00168,"31":0,"32":0,"33":0.00337,"34":0,"35":0,"36":0.00337,"37":0,"38":0.00168,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00168,"52":0,"53":0,"54":0.00168,"55":0.00168,"56":0.00168,"57":0,"58":0.00505,"60":0.00842,"62":0,"63":0.0101,"64":0.01852,"65":0.00505,"66":0.01347,"67":0.09262,"68":0,"69":0,"70":0,"71":0.00168,"72":0.00168,"73":0.00842,"74":0.00168,"75":0,"76":0,"77":0,"78":0,"79":0.00674,"80":0.00168,"81":0,"82":0,"83":0,"84":0,"85":0.00168,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00168,"93":0.00168,"94":0.04378,"95":0.05894,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00168,"10.6":0.00168,"11.1":0,"11.5":0.00168,"11.6":0,"12.1":0.00842},B:{"12":0.00505,"13":0.00168,"14":0.00168,"15":0,"16":0.00337,"17":0.00168,"18":0.00842,"79":0,"80":0,"81":0,"83":0,"84":0.00337,"85":0,"86":0,"87":0,"88":0,"89":0.00505,"90":0.00337,"91":0,"92":0.0101,"93":0,"94":0,"95":0,"96":0.00168,"97":0,"98":0,"99":0,"100":0.00337,"101":0,"102":0.00337,"103":0.00168,"104":0.00168,"105":0.00337,"106":0.00505,"107":0.00842,"108":0.01347,"109":0.14146,"110":0.13304},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00168,"14":0.00337,"15":0.00337,_:"0","3.1":0,"3.2":0,"5.1":0.12125,"6.1":0,"7.1":0,"9.1":0.00168,"10.1":0,"11.1":0.00168,"12.1":0.00168,"13.1":0.00337,"14.1":0.02021,"15.1":0.00337,"15.2-15.3":0.00168,"15.4":0.00337,"15.5":0.00842,"15.6":0.02358,"16.0":0.00674,"16.1":0.01347,"16.2":0.02021,"16.3":0.0101,"16.4":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.00181,"7.0-7.1":0.00815,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02897,"10.0-10.2":0.00272,"10.3":0.01177,"11.0-11.2":0.00815,"11.3-11.4":0.00543,"12.0-12.1":0.01629,"12.2-12.5":0.49242,"13.0-13.1":0.00815,"13.2":0.00724,"13.3":0.03078,"13.4-13.7":0.08599,"14.0-14.4":0.75492,"14.5-14.8":0.40643,"15.0-15.1":0.14392,"15.2-15.3":0.22629,"15.4":0.29871,"15.5":0.35392,"15.6":0.57841,"16.0":0.98665,"16.1":1.25096,"16.2":1.23014,"16.3":1.28354,"16.4":0.00543},P:{"4":0.44597,"20":0.30407,"5.0-5.4":0.03041,"6.2-6.4":0.04054,"7.2-7.4":0.24326,"8.2":0,"9.2":0.05068,"10.1":0.01014,"11.1-11.2":0.07095,"12.0":0.01014,"13.0":0.10136,"14.0":0.21285,"15.0":0.10136,"16.0":0.61828,"17.0":0.23312,"18.0":0.24326,"19.0":1.26697},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00309,"4.2-4.3":0.00927,"4.4":0,"4.4.3-4.4.4":0.07111},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0018,"9":0,"10":0,"11":0.02346,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00832,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.53014},H:{"0":9.18785},L:{"0":70.86625},R:{_:"0"},M:{"0":0.23285},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SE.js index a05ea49c9864f9..f0c88ecb5009c5 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.00991,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00496,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00496,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01983,"79":0.00496,"80":0.00496,"81":0.00496,"82":0.00496,"83":0.00496,"84":0,"85":0,"86":0,"87":0,"88":0.00496,"89":0,"90":0,"91":0.00496,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02974,"103":0.00496,"104":0.00496,"105":0.00991,"106":0.00991,"107":0.02479,"108":0.70885,"109":0.3916,"110":0.00496,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00496,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01487,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00991,"59":0,"60":0,"61":0,"62":0,"63":0.00496,"64":0,"65":0,"66":0.02974,"67":0.00496,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00496,"76":0.00496,"77":0.00991,"78":0,"79":0.02974,"80":0.01487,"81":0.00496,"83":0.01487,"84":0.0347,"85":0.0347,"86":0.04461,"87":0.05453,"88":0.00496,"89":0.02974,"90":0.00496,"91":0.00496,"92":0.00496,"93":0.07931,"94":0.00991,"95":0.00496,"96":0.01487,"97":0.01487,"98":0.00991,"99":0.00991,"100":0.01983,"101":0.0347,"102":0.04957,"103":0.15862,"104":0.04461,"105":0.05948,"106":0.07436,"107":0.42135,"108":7.50986,"109":6.10702,"110":0.00991,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00496,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00496,"70":0,"71":0,"72":0,"73":0.00496,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00496,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00496,"93":0.29246,"94":0.24785,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00496,"18":0.00496,"79":0,"80":0.00496,"81":0,"83":0,"84":0.00496,"85":0,"86":0.00496,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00496,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00496,"102":0.01487,"103":0.00496,"104":0.00496,"105":0.00496,"106":0.01487,"107":0.05948,"108":1.85888,"109":1.90845},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00991,"14":0.07436,"15":0.01487,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00991,"12.1":0.01983,"13.1":0.09418,"14.1":0.24289,"15.1":0.02479,"15.2-15.3":0.03966,"15.4":0.09914,"15.5":0.17845,"15.6":0.98644,"16.0":0.08923,"16.1":0.34699,"16.2":0.63945,"16.3":0.04957},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00444,"8.1-8.4":0.00888,"9.0-9.2":0.01776,"9.3":0.10654,"10.0-10.2":0,"10.3":0.11985,"11.0-11.2":0.01332,"11.3-11.4":0.09322,"12.0-12.1":0.02663,"12.2-12.5":0.66141,"13.0-13.1":0.01332,"13.2":0.01332,"13.3":0.03995,"13.4-13.7":0.15093,"14.0-14.4":0.46165,"14.5-14.8":1.70013,"15.0-15.1":0.23083,"15.2-15.3":0.39507,"15.4":0.46165,"15.5":1.22516,"15.6":6.07697,"16.0":4.88288,"16.1":16.17566,"16.2":8.38968,"16.3":0.53268},P:{"4":0.07251,"5.0-5.4":0.01036,"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.01036,"13.0":0.01036,"14.0":0.02072,"15.0":0.01036,"16.0":0.04143,"17.0":0.05179,"18.0":0.09322,"19.0":3.52167},I:{"0":0,"3":0,"4":0.02598,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02227,"4.2-4.3":0.00742,"4.4":0,"4.4.3-4.4.4":0.05938},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00496,"9":0,"10":0,"11":0.0347,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.30762},Q:{"13.1":0},O:{"0":0.01513},H:{"0":0.13846},L:{"0":27.63984},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01065,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00532,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00532,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01597,"79":0.00532,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00532,"89":0,"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.03194,"103":0.00532,"104":0.00532,"105":0.00532,"106":0.00532,"107":0.01065,"108":0.04258,"109":0.70264,"110":0.43649,"111":0.00532,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00532,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01065,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00532,"64":0,"65":0,"66":0.02662,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00532,"75":0.01065,"76":0.00532,"77":0.00532,"78":0.00532,"79":0.02662,"80":0.00532,"81":0.00532,"83":0.01065,"84":0.01065,"85":0.01597,"86":0.02662,"87":0.04258,"88":0.00532,"89":0.03194,"90":0.00532,"91":0.01065,"92":0.01597,"93":0.09049,"94":0.00532,"95":0.00532,"96":0.03194,"97":0.01597,"98":0.01065,"99":0.01065,"100":0.02129,"101":0.09581,"102":0.05855,"103":0.2076,"104":0.02662,"105":0.05323,"106":0.03726,"107":0.24486,"108":1.55432,"109":9.06507,"110":6.16403,"111":0.01065,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00532,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00532,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00532,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.04258,"94":0.33535,"95":0.14372,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00532,"18":0.00532,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00532,"89":0,"90":0.00532,"91":0,"92":0.00532,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00532,"102":0,"103":0.00532,"104":0.00532,"105":0.00532,"106":0.01065,"107":0.02662,"108":0.19163,"109":1.79917,"110":2.42197},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01065,"14":0.06388,"15":0.01065,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00532,"10.1":0,"11.1":0.00532,"12.1":0.01597,"13.1":0.08517,"14.1":0.23954,"15.1":0.02662,"15.2-15.3":0.02662,"15.4":0.08517,"15.5":0.14904,"15.6":0.71861,"16.0":0.05855,"16.1":0.22889,"16.2":0.72393,"16.3":0.54827,"16.4":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.00418,"8.1-8.4":0.00418,"9.0-9.2":0.00836,"9.3":0.09616,"10.0-10.2":0,"10.3":0.1296,"11.0-11.2":0.02508,"11.3-11.4":0.07525,"12.0-12.1":0.02927,"12.2-12.5":0.63129,"13.0-13.1":0.01254,"13.2":0.01672,"13.3":0.04181,"13.4-13.7":0.1296,"14.0-14.4":0.39717,"14.5-14.8":1.35875,"15.0-15.1":0.20486,"15.2-15.3":0.34282,"15.4":0.39299,"15.5":0.94067,"15.6":4.03443,"16.0":3.69997,"16.1":11.20025,"16.2":10.12162,"16.3":5.50606,"16.4":0.01672},P:{"4":0.07256,"20":1.39936,"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.01037,"14.0":0.02073,"15.0":0.01037,"16.0":0.04146,"17.0":0.04146,"18.0":0.06219,"19.0":2.03166},I:{"0":0,"3":0,"4":0.02867,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0041,"4.2-4.3":0.02048,"4.4":0,"4.4.3-4.4.4":0.06143},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03726,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.01403},H:{"0":0.13284},L:{"0":26.49896},R:{_:"0"},M:{"0":0.29933},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js index 0f6593b13d247a..838b341f2906e6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00224,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00672,"79":0,"80":0.00224,"81":0.00224,"82":0,"83":0.00224,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00224,"90":0.00224,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.02911,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00672,"103":0.00448,"104":0.00224,"105":0.00448,"106":0.00224,"107":0.00448,"108":0.17688,"109":0.10076,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00448,"35":0,"36":0,"37":0,"38":0.01567,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00224,"48":0,"49":0.00224,"50":0,"51":0,"52":0,"53":0.00448,"54":0,"55":0,"56":0.00224,"57":0,"58":0,"59":0,"60":0.00448,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00224,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00224,"75":0,"76":0,"77":0.00224,"78":0.00448,"79":0.0403,"80":0.00448,"81":0.00448,"83":0.0112,"84":0.01567,"85":0.02463,"86":0.02015,"87":0.02239,"88":0,"89":0.00224,"90":0,"91":0.00224,"92":0.00896,"93":0.00448,"94":0.00224,"95":0.00224,"96":0.00448,"97":0.00224,"98":0.00672,"99":0.00224,"100":0.0112,"101":0.00896,"102":0.0112,"103":0.02911,"104":0.01567,"105":0.01567,"106":0.01567,"107":0.04926,"108":1.50013,"109":1.3434,"110":0.00224,"111":0.00224,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00224,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00224,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00672,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00224,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00224,"73":0.00448,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00224,"93":0.02463,"94":0.05821,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00224,"79":0,"80":0,"81":0,"83":0,"84":0.00224,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00224,"106":0.00224,"107":0.00672,"108":0.22614,"109":0.19927},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00224,"9":0,"10":0,"11":0,"12":0,"13":0.00448,"14":0.01343,"15":0.00224,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00224,"13.1":0.01343,"14.1":0.03135,"15.1":0.00448,"15.2-15.3":0.00448,"15.4":0.01567,"15.5":0.03135,"15.6":0.18808,"16.0":0.02463,"16.1":0.08284,"16.2":0.13434,"16.3":0.0112},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0018,"6.0-6.1":0,"7.0-7.1":0.00899,"8.1-8.4":0.00359,"9.0-9.2":0.00359,"9.3":0.0665,"10.0-10.2":0,"10.3":0.04493,"11.0-11.2":0.01438,"11.3-11.4":0.01078,"12.0-12.1":0.00899,"12.2-12.5":0.23724,"13.0-13.1":0.00719,"13.2":0.0018,"13.3":0.02696,"13.4-13.7":0.07908,"14.0-14.4":0.18871,"14.5-14.8":0.39001,"15.0-15.1":0.11862,"15.2-15.3":0.13659,"15.4":0.17793,"15.5":0.33789,"15.6":1.71281,"16.0":2.09383,"16.1":6.48998,"16.2":4.61901,"16.3":0.37923},P:{"4":0.33006,"5.0-5.4":0.01031,"6.2-6.4":0,"7.2-7.4":0.01031,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01031,"13.0":0.02063,"14.0":0.01031,"15.0":0,"16.0":0.02063,"17.0":0.02063,"18.0":0.06189,"19.0":2.66109},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":46.42037},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00704,"9":0.00704,"10":0.00352,"11":0.03167,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.40357},Q:{"13.1":0.00776},O:{"0":0.45014},H:{"0":0.39677},L:{"0":20.47569}}; +module.exports={C:{"2":0,"3":0.00251,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00251,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00754,"79":0.00251,"80":0.00251,"81":0.00251,"82":0.00251,"83":0.00251,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00251,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00503,"103":0.00251,"104":0,"105":0.00251,"106":0.00251,"107":0.00251,"108":0.01006,"109":0.19861,"110":0.12319,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00754,"30":0,"31":0,"32":0,"33":0,"34":0.00503,"35":0,"36":0,"37":0,"38":0.02011,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00503,"48":0,"49":0.00251,"50":0,"51":0,"52":0,"53":0.00251,"54":0,"55":0,"56":0.00251,"57":0,"58":0,"59":0,"60":0.00754,"61":0,"62":0,"63":0,"64":0,"65":0.00251,"66":0,"67":0.00251,"68":0,"69":0.00251,"70":0,"71":0,"72":0,"73":0,"74":0.00251,"75":0,"76":0.00251,"77":0.00251,"78":0.00503,"79":0.05028,"80":0.00503,"81":0.01257,"83":0.01508,"84":0.0352,"85":0.03017,"86":0.0352,"87":0.0352,"88":0,"89":0.00251,"90":0.00251,"91":0.00503,"92":0.01006,"93":0.00251,"94":0.00251,"95":0.00251,"96":0.00251,"97":0.00503,"98":0.00754,"99":0.00251,"100":0.01508,"101":0.01006,"102":0.01257,"103":0.02263,"104":0.01508,"105":0.01508,"106":0.01508,"107":0.02514,"108":0.24889,"109":1.90058,"110":1.32488,"111":0.00251,"112":0.00251,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00503,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00251,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00754,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02765,"68":0,"69":0,"70":0,"71":0.00251,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00503,"94":0.04777,"95":0.03268,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00251,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00251,"86":0.00251,"87":0,"88":0,"89":0,"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.00251,"107":0.00251,"108":0.01508,"109":0.20866,"110":0.27654},E:{"4":0.00503,"5":0,"6":0,"7":0,"8":0.00251,"9":0,"10":0,"11":0,"12":0,"13":0.00503,"14":0.01508,"15":0.00251,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00251,"13.1":0.0176,"14.1":0.0352,"15.1":0.00754,"15.2-15.3":0.00503,"15.4":0.0176,"15.5":0.03268,"15.6":0.16341,"16.0":0.02263,"16.1":0.06788,"16.2":0.16592,"16.3":0.11816,"16.4":0},G:{"8":0,"3.2":0.00181,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00181,"7.0-7.1":0.01266,"8.1-8.4":0.00904,"9.0-9.2":0.00542,"9.3":0.07052,"10.0-10.2":0,"10.3":0.05605,"11.0-11.2":0.01627,"11.3-11.4":0.01266,"12.0-12.1":0.01627,"12.2-12.5":0.27303,"13.0-13.1":0.00723,"13.2":0.00362,"13.3":0.03074,"13.4-13.7":0.12657,"14.0-14.4":0.1989,"14.5-14.8":0.3544,"15.0-15.1":0.11211,"15.2-15.3":0.11934,"15.4":0.15008,"15.5":0.29111,"15.6":1.24039,"16.0":1.65265,"16.1":4.65418,"16.2":4.76267,"16.3":3.16969,"16.4":0.01447},P:{"4":0.36245,"20":1.12876,"5.0-5.4":0.03107,"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.01036,"13.0":0.02071,"14.0":0,"15.0":0,"16.0":0.02071,"17.0":0.02071,"18.0":0.04142,"19.0":1.4705},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":14.99568,"4.4":0,"4.4.3-4.4.4":29.99137},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.06926,"9":0.01889,"10":0.02204,"11":0.22668,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.45665},H:{"0":0.41815},L:{"0":20.43523},R:{_:"0"},M:{"0":0.41173},Q:{"13.1":0.00749}}; 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 5cc98c33627505..c8580aafb630cc 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,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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":8,"109":0,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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},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},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"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},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":92}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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":25,"110":0,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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},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},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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":9.375,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":65.625,"16.3":0,"16.4":0},P:{"4":0,"20":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},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SI.js index 8319a978bcdd9c..cab9e910847b0f 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.03869,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00553,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01105,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00553,"77":0,"78":0.03869,"79":0,"80":0,"81":0,"82":0,"83":0.00553,"84":0.00553,"85":0,"86":0,"87":0,"88":0.01105,"89":0.00553,"90":0,"91":0.00553,"92":0.01105,"93":0,"94":0,"95":0,"96":0.01105,"97":0.00553,"98":0,"99":0.00553,"100":0.01105,"101":0,"102":0.05527,"103":0.01105,"104":0.00553,"105":0.01105,"106":0.02211,"107":0.06632,"108":2.4153,"109":1.22699,"110":0.00553,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02211,"50":0,"51":0.01658,"52":0,"53":0.00553,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01105,"74":0,"75":0,"76":0.00553,"77":0,"78":0.01658,"79":0.02211,"80":0.00553,"81":0.00553,"83":0.00553,"84":0.00553,"85":0.01105,"86":0.01105,"87":0.03869,"88":0.00553,"89":0.00553,"90":0.00553,"91":0.01105,"92":0.02211,"93":0,"94":0.00553,"95":0.00553,"96":0.00553,"97":0.03316,"98":0.01658,"99":0.01105,"100":0.01658,"101":0.00553,"102":0.02211,"103":0.06632,"104":0.06632,"105":0.04974,"106":0.06632,"107":0.19345,"108":9.88228,"109":9.44564,"110":0.00553,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01658,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00553,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02211,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01105,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.45874,"94":0.60797,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00553,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01105,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00553,"102":0,"103":0.00553,"104":0.00553,"105":0.01105,"106":0.00553,"107":0.04422,"108":1.48676,"109":1.55861},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00553,"14":0.04422,"15":0.01105,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00553,"13.1":0.07185,"14.1":0.12159,"15.1":0.02764,"15.2-15.3":0.02764,"15.4":0.03316,"15.5":0.06632,"15.6":0.31504,"16.0":0.08291,"16.1":0.23766,"16.2":0.34267,"16.3":0.03316},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02823,"10.0-10.2":0,"10.3":0.02419,"11.0-11.2":0.00403,"11.3-11.4":0.00403,"12.0-12.1":0.00403,"12.2-12.5":0.17541,"13.0-13.1":0.00403,"13.2":0.01008,"13.3":0.01815,"13.4-13.7":0.07863,"14.0-14.4":0.27017,"14.5-14.8":0.65929,"15.0-15.1":0.12097,"15.2-15.3":0.1613,"15.4":0.26412,"15.5":0.54437,"15.6":2.5283,"16.0":3.85898,"16.1":6.20784,"16.2":3.78438,"16.3":0.47985},P:{"4":0.11285,"5.0-5.4":0.03078,"6.2-6.4":0,"7.2-7.4":0.02052,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01026,"12.0":0,"13.0":0.02052,"14.0":0.0513,"15.0":0.03078,"16.0":0.06156,"17.0":0.06156,"18.0":0.11285,"19.0":2.84179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04866,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0524},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03869,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.47861},Q:{"13.1":0},O:{"0":0.01342},H:{"0":0.18633},L:{"0":44.3418}}; +module.exports={C:{"52":0.12074,"60":0.10976,"68":0.02195,"76":0.00549,"78":0.13171,"83":0.01098,"88":0.01098,"91":0.01098,"97":0.01098,"99":0.01646,"100":0.01098,"102":0.1372,"103":0.01098,"104":0.01098,"105":0.01646,"106":0.03842,"107":0.02195,"108":0.89454,"109":3.96234,"110":2.40374,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 98 101 111 112 3.5 3.6"},D:{"49":0.0439,"51":0.03293,"70":0.00549,"78":0.02744,"79":0.03842,"80":0.01098,"81":0.00549,"83":0.02195,"84":0.01098,"85":0.06037,"86":0.01646,"87":0.01646,"88":0.01098,"89":0.02744,"90":0.01098,"91":0.01098,"92":0.08781,"94":0.01098,"96":0.01098,"97":0.02744,"98":0.10427,"99":0.01098,"100":0.02195,"101":0.01098,"102":0.02744,"103":0.10976,"104":0.10427,"105":0.04939,"106":0.06586,"107":0.0933,"108":0.69698,"109":20.22328,"110":13.29742,"111":0.01098,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 65 66 67 68 69 71 72 73 74 75 76 77 93 95 112 113"},F:{"28":0.01098,"36":0.00549,"46":0.01646,"49":0.00549,"93":0.12074,"94":1.07565,"95":0.64758,_:"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 51 52 53 54 55 56 57 58 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"92":0.00549,"98":0.00549,"103":0.01098,"104":0.00549,"105":0.01098,"107":0.05488,"108":0.0933,"109":2.40923,"110":3.08426,_:"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 106"},E:{"4":0,"13":0.01646,"14":0.05488,"15":0.01098,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.4","12.1":0.01098,"13.1":0.12622,"14.1":0.19757,"15.1":0.01098,"15.2-15.3":0.04939,"15.4":0.05488,"15.5":0.0933,"15.6":0.38965,"16.0":0.12622,"16.1":0.25245,"16.2":0.53234,"16.3":0.55978},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01332,"10.0-10.2":0,"10.3":0.01211,"11.0-11.2":0.00363,"11.3-11.4":0.00242,"12.0-12.1":0.00847,"12.2-12.5":0.09686,"13.0-13.1":0.00363,"13.2":0.00484,"13.3":0.00726,"13.4-13.7":0.05327,"14.0-14.4":0.14407,"14.5-14.8":0.37653,"15.0-15.1":0.06538,"15.2-15.3":0.08354,"15.4":0.15376,"15.5":0.30025,"15.6":1.07389,"16.0":1.84995,"16.1":3.03765,"16.2":2.54974,"16.3":1.68045,"16.4":0.00969},P:{"4":0.08272,"20":1.05474,"5.0-5.4":0.03048,"6.2-6.4":0.04064,"7.2-7.4":0.26414,"8.2":0.01016,"9.2":0.02068,"10.1":0.03048,"11.1-11.2":0.01034,"12.0":0.03048,"13.0":0.01034,"14.0":0.04136,"15.0":0.03102,"16.0":0.04136,"17.0":0.0517,"18.0":0.12409,"19.0":1.97505},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00376,"4.2-4.3":0.01128,"4.4":0,"4.4.3-4.4.4":0.03009},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06586,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.00903},H:{"0":0.188},L:{"0":30.45174},R:{_:"0"},M:{"0":0.36104},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js index 0911c5b6037d0a..2ee1d3470e47e1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js @@ -1 +1 @@ -module.exports={C:{"33":0.00483,"47":0.00965,"52":0.08685,"57":0.02413,"66":0.00483,"68":0.02413,"69":0.00483,"75":0.00965,"78":0.04825,"80":0.00965,"81":0.00483,"88":0.01448,"91":0.00965,"92":0.00483,"98":0.00483,"99":0.02413,"101":0.00483,"102":0.1158,"103":0.01448,"104":0.01448,"105":0.00965,"106":0.03378,"107":0.08685,"108":3.03975,"109":1.82868,"110":0.00965,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 67 70 71 72 73 74 76 77 79 82 83 84 85 86 87 89 90 93 94 95 96 97 100 111 3.5 3.6"},D:{"34":0.00965,"38":0.06755,"47":0.01448,"49":0.08685,"53":0.02413,"63":0.08203,"68":0.03378,"69":0.0193,"70":0.0193,"71":0.02413,"72":0.03378,"73":0.00965,"74":0.02895,"75":0.0193,"76":0.0193,"77":0.0193,"78":0.0386,"79":0.386,"80":0.0386,"81":0.05308,"83":0.04343,"84":0.03378,"85":0.06273,"86":0.06273,"87":0.07238,"88":0.04343,"89":0.05308,"90":0.1158,"91":0.09168,"92":0.10133,"93":0.13028,"94":0.11098,"95":0.02413,"96":0.0193,"97":0.13993,"98":0.00965,"99":0.0193,"100":0.02895,"101":0.00965,"102":0.01448,"103":0.10615,"104":0.02895,"105":0.1158,"106":0.0579,"107":0.20748,"108":13.5679,"109":13.2591,"110":0.00483,"111":0.00483,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 67 112"},F:{"28":0.04343,"36":0.0193,"40":0.00483,"46":0.01448,"55":0.00483,"79":0.00965,"85":0.04343,"90":0.06755,"91":0.01448,"92":0.0193,"93":1.11458,"94":2.22915,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00965,"80":0.00965,"81":0.00965,"83":0.00965,"84":0.00965,"85":0.00965,"86":0.00965,"87":0.00483,"88":0.00483,"89":0.00965,"90":0.00483,"91":0.01448,"92":0.00965,"101":0.00483,"103":0.00483,"105":0.00965,"106":0.01448,"107":0.08203,"108":2.22915,"109":2.13265,_:"12 13 14 15 16 17 79 93 94 95 96 97 98 99 100 102 104"},E:{"4":0,"13":0.00483,"14":0.0772,"15":0.02413,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.13993,"11.1":0.00483,"12.1":0.00965,"13.1":0.0772,"14.1":0.14958,"15.1":0.03378,"15.2-15.3":0.02895,"15.4":0.06755,"15.5":0.12063,"15.6":0.44873,"16.0":0.08685,"16.1":0.34258,"16.2":0.6176,"16.3":0.06273},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0152,"6.0-6.1":0,"7.0-7.1":0.0038,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0266,"10.0-10.2":0,"10.3":0.06967,"11.0-11.2":0.01267,"11.3-11.4":0.00887,"12.0-12.1":0.00887,"12.2-12.5":0.1748,"13.0-13.1":0.0076,"13.2":0.0152,"13.3":0.0114,"13.4-13.7":0.05193,"14.0-14.4":0.12667,"14.5-14.8":0.3268,"15.0-15.1":0.08613,"15.2-15.3":0.11653,"15.4":0.1558,"15.5":0.32047,"15.6":1.09947,"16.0":1.84807,"16.1":4.06981,"16.2":2.97161,"16.3":0.33313},P:{"4":0.45618,"5.0-5.4":0.01037,"6.2-6.4":0,"7.2-7.4":0.01031,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02074,"12.0":0.01031,"13.0":0.02074,"14.0":0.02074,"15.0":0,"16.0":0.02074,"17.0":0.0311,"18.0":0.06221,"19.0":2.37421},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00398,"4.2-4.3":0.01592,"4.4":0,"4.4.3-4.4.4":0.05772},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00483,"11":0.09168,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.2691},Q:{"13.1":0},O:{"0":0.05175},H:{"0":0.46054},L:{"0":37.90568}}; +module.exports={C:{"33":0.00985,"47":0.00985,"52":0.08863,"66":0.00492,"68":0.02954,"69":0.00985,"70":0.00492,"72":0.00492,"73":0.00492,"74":0.00492,"75":0.00492,"76":0.00492,"78":0.03447,"79":0.00985,"80":0.02462,"81":0.00492,"82":0.00492,"83":0.00492,"88":0.01477,"91":0.00985,"97":0.00492,"99":0.02462,"101":0.00985,"102":0.10833,"103":0.00985,"104":0.00985,"105":0.00985,"106":0.02462,"107":0.02462,"108":0.09848,"109":2.94948,"110":2.0927,"111":0.00985,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 71 77 84 85 86 87 89 90 92 93 94 95 96 98 100 112 3.5 3.6"},D:{"34":0.01477,"38":0.05909,"47":0.01477,"49":0.06894,"53":0.02462,"63":0.08371,"65":0.00985,"68":0.05416,"69":0.03447,"70":0.02954,"71":0.03939,"72":0.04924,"73":0.01477,"74":0.04432,"75":0.03447,"76":0.02954,"77":0.02462,"78":0.04924,"79":0.43331,"80":0.05909,"81":0.06401,"83":0.05416,"84":0.06894,"85":0.09356,"86":0.12802,"87":0.1231,"88":0.06894,"89":0.06894,"90":0.15757,"91":0.10833,"92":0.10833,"93":0.1428,"94":0.09848,"95":0.00492,"96":0.0197,"97":0.01477,"98":0.0197,"99":0.0197,"100":0.02954,"101":0.00985,"102":0.01477,"103":0.08863,"104":0.02462,"105":0.09848,"106":0.03939,"107":0.07386,"108":0.56134,"109":16.58403,"110":9.76922,"111":0.00985,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 67 112 113"},F:{"28":0.02462,"36":0.01477,"46":0.05416,"53":0.00985,"54":0.00985,"55":0.00985,"58":0.00985,"70":0.00985,"85":0.04432,"90":0.03939,"91":0.00985,"93":0.14772,"94":1.72832,"95":1.3738,_:"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 56 57 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00985,"79":0.00492,"80":0.0197,"81":0.00985,"83":0.00985,"84":0.01477,"85":0.00492,"86":0.02462,"87":0.00985,"88":0.00985,"89":0.01477,"90":0.00985,"91":0.00985,"92":0.00492,"105":0.00492,"107":0.04432,"108":0.10833,"109":1.81696,"110":2.3586,_:"12 13 14 15 16 17 93 94 95 96 97 98 99 100 101 102 103 104 106"},E:{"4":0,"13":0.00492,"14":0.07878,"15":0.02462,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 16.4","9.1":0.25605,"12.1":0.01477,"13.1":0.05909,"14.1":0.1428,"15.1":0.02954,"15.2-15.3":0.02954,"15.4":0.04924,"15.5":0.09356,"15.6":0.3693,"16.0":0.04924,"16.1":0.21666,"16.2":0.4727,"16.3":0.43824},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01239,"6.0-6.1":0,"7.0-7.1":0.00248,"8.1-8.4":0,"9.0-9.2":0.00248,"9.3":0.08427,"10.0-10.2":0.00372,"10.3":0.07559,"11.0-11.2":0.01735,"11.3-11.4":0.00867,"12.0-12.1":0.01363,"12.2-12.5":0.18093,"13.0-13.1":0.00991,"13.2":0.01115,"13.3":0.01115,"13.4-13.7":0.06692,"14.0-14.4":0.13508,"14.5-14.8":0.26148,"15.0-15.1":0.08303,"15.2-15.3":0.10286,"15.4":0.1388,"15.5":0.25652,"15.6":0.73735,"16.0":1.4115,"16.1":2.98038,"16.2":2.99897,"16.3":2.04971,"16.4":0.02355},P:{"4":0.46046,"20":0.94184,"5.0-5.4":0.03107,"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.01036,"13.0":0.01046,"14.0":0.01046,"15.0":0,"16.0":0.02093,"17.0":0.03139,"18.0":0.04186,"19.0":1.53834},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00338,"4.2-4.3":0.01523,"4.4":0,"4.4.3-4.4.4":0.0626},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07386,_:"6 7 8 9 10 5.5"},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.04061},H:{"0":0.45173},L:{"0":37.74819},R:{_:"0"},M:{"0":0.28933},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js index eed34d430d3e04..73baefc74edbcf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00182,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.0091,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"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.00364,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00182,"103":0.00182,"104":0,"105":0.00182,"106":0.00182,"107":0.0091,"108":0.09823,"109":0.04366,"110":0.00546,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00364,"39":0,"40":0,"41":0,"42":0,"43":0.00546,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00182,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00182,"59":0,"60":0,"61":0,"62":0,"63":0.00182,"64":0.00182,"65":0.00182,"66":0,"67":0,"68":0.00364,"69":0.00182,"70":0.00182,"71":0,"72":0.00182,"73":0,"74":0.00182,"75":0.00364,"76":0.00182,"77":0,"78":0,"79":0,"80":0.00182,"81":0.01819,"83":0.00182,"84":0.00182,"85":0,"86":0.00546,"87":0.00364,"88":0.00182,"89":0,"90":0.00546,"91":0.00182,"92":0.00182,"93":0.00728,"94":0.00182,"95":0.00182,"96":0.00182,"97":0.00182,"98":0.00182,"99":0.00182,"100":0.00364,"101":0.00546,"102":0.00364,"103":0.02001,"104":0.00546,"105":0.0091,"106":0.01455,"107":0.01819,"108":0.47112,"109":0.43292,"110":0.00182,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.06185,"25":0,"26":0.01819,"27":0.00728,"28":0.00364,"29":0,"30":0.01637,"31":0.00182,"32":0.01819,"33":0.00182,"34":0,"35":0,"36":0.00182,"37":0.00364,"38":0,"39":0,"40":0,"41":0,"42":0.00182,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00182,"51":0,"52":0,"53":0,"54":0.00546,"55":0.00182,"56":0.00182,"57":0.00546,"58":0.00546,"60":0.24738,"62":0,"63":0.55661,"64":0.06548,"65":0.05275,"66":0.22192,"67":0.00364,"68":0,"69":0,"70":0,"71":0.00364,"72":0.00182,"73":0.00182,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00182,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00182,"93":0.00364,"94":0.12733,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.05639},B:{"12":0.00728,"13":0.00546,"14":0.00182,"15":0.00364,"16":0.00728,"17":0,"18":0.01091,"79":0,"80":0,"81":0,"83":0,"84":0.00182,"85":0,"86":0,"87":0,"88":0,"89":0.00182,"90":0.00182,"91":0,"92":0.00728,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00182,"103":0.00182,"104":0.00182,"105":0.00364,"106":0.00182,"107":0.00728,"108":0.17644,"109":0.16371},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00182,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0091,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00182,"13.1":0.00364,"14.1":0.00182,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00364,"15.6":0.00728,"16.0":0.00364,"16.1":0.08549,"16.2":0.02729,"16.3":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.0254,"7.0-7.1":0.00876,"8.1-8.4":0.00438,"9.0-9.2":0,"9.3":0.07269,"10.0-10.2":0,"10.3":0.18303,"11.0-11.2":0,"11.3-11.4":0.00963,"12.0-12.1":0.07093,"12.2-12.5":0.52457,"13.0-13.1":0.02715,"13.2":0.01226,"13.3":0.15063,"13.4-13.7":0.08582,"14.0-14.4":0.69008,"14.5-14.8":1.34163,"15.0-15.1":0.2995,"15.2-15.3":0.31264,"15.4":0.31351,"15.5":0.34066,"15.6":0.49479,"16.0":0.62265,"16.1":1.09292,"16.2":1.25493,"16.3":0.12961},P:{"4":0.27653,"5.0-5.4":0.04097,"6.2-6.4":0,"7.2-7.4":0.11266,"8.2":0,"9.2":0.02048,"10.1":0,"11.1-11.2":0.06145,"12.0":0,"13.0":0.02048,"14.0":0.04097,"15.0":0.10242,"16.0":0.05121,"17.0":0.05121,"18.0":0.09218,"19.0":0.47113},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00425,"4.2-4.3":0.00372,"4.4":0,"4.4.3-4.4.4":0.11841},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0091,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.06545},R:{_:"0"},M:{"0":0.08999},Q:{"13.1":0},O:{"0":1.1208},H:{"0":16.08687},L:{"0":66.54675}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00836,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00167,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00167,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00334,"103":0,"104":0,"105":0,"106":0,"107":0.00167,"108":0.00334,"109":0.05514,"110":0.02841,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00167,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00334,"41":0,"42":0,"43":0.00167,"44":0,"45":0,"46":0,"47":0,"48":0.00167,"49":0,"50":0.00167,"51":0,"52":0,"53":0.00167,"54":0,"55":0,"56":0,"57":0,"58":0.00167,"59":0,"60":0.00167,"61":0,"62":0,"63":0.01003,"64":0.00334,"65":0,"66":0,"67":0,"68":0.00167,"69":0,"70":0.00167,"71":0,"72":0,"73":0,"74":0.00668,"75":0,"76":0.00167,"77":0.00501,"78":0,"79":0.00167,"80":0.00167,"81":0.01003,"83":0.00501,"84":0,"85":0.00167,"86":0.00167,"87":0.00501,"88":0.00334,"89":0,"90":0.00501,"91":0.00167,"92":0,"93":0.00501,"94":0.00167,"95":0.00167,"96":0.00167,"97":0.00167,"98":0.00334,"99":0.00334,"100":0.00167,"101":0.00167,"102":0.00334,"103":0.00836,"104":0.00334,"105":0.00334,"106":0.00334,"107":0.00501,"108":0.02172,"109":0.45117,"110":0.24062,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.04178,"25":0,"26":0.00836,"27":0.00668,"28":0.00334,"29":0,"30":0.00501,"31":0.00167,"32":0.02339,"33":0.00167,"34":0,"35":0,"36":0,"37":0.00167,"38":0,"39":0,"40":0,"41":0,"42":0.00167,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00334,"51":0,"52":0,"53":0,"54":0.00668,"55":0.00334,"56":0.00167,"57":0.00334,"58":0.00501,"60":0.42611,"62":0,"63":0.42109,"64":0.04178,"65":0.07185,"66":0.20888,"67":0.18381,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00167,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00167,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00167,"91":0.00167,"92":0,"93":0,"94":0.03008,"95":0.0635,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03676},B:{"12":0.00334,"13":0.00167,"14":0.00167,"15":0.00334,"16":0.00167,"17":0,"18":0.00668,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00167,"90":0.00167,"91":0,"92":0.00668,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00167,"104":0.00167,"105":0.00167,"106":0,"107":0.00334,"108":0.00668,"109":0.12365,"110":0.127},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00167,"12":0,"13":0,"14":0.00167,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00668,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00501,"13.1":0.00334,"14.1":0.00334,"15.1":0.00167,"15.2-15.3":0.00167,"15.4":0,"15.5":0.00501,"15.6":0.00668,"16.0":0,"16.1":0.00334,"16.2":0.03509,"16.3":0.00334,"16.4":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.01472,"8.1-8.4":0.01227,"9.0-9.2":0,"9.3":0.02781,"10.0-10.2":0,"10.3":0.29446,"11.0-11.2":0.00164,"11.3-11.4":0.02208,"12.0-12.1":0.05235,"12.2-12.5":0.43188,"13.0-13.1":0.04417,"13.2":0.03599,"13.3":0.09815,"13.4-13.7":0.08588,"14.0-14.4":0.85312,"14.5-14.8":0.67971,"15.0-15.1":0.31164,"15.2-15.3":0.37544,"15.4":0.27892,"15.5":0.44333,"15.6":0.46132,"16.0":0.4695,"16.1":0.71161,"16.2":0.93818,"16.3":0.88665,"16.4":0.00245},P:{"4":0.29728,"20":0.13326,"5.0-5.4":0.09226,"6.2-6.4":0,"7.2-7.4":0.17427,"8.2":0,"9.2":0.05126,"10.1":0,"11.1-11.2":0.041,"12.0":0,"13.0":0.13326,"14.0":0.0205,"15.0":0.11276,"16.0":0.06151,"17.0":0.041,"18.0":0.05126,"19.0":0.38954},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00212,"4.2-4.3":0.01133,"4.4":0,"4.4.3-4.4.4":0.05663},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00836,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.14159,_:"3.0-3.1"},J:{"7":0,"10":0.00833},O:{"0":0.8912},H:{"0":15.28183},L:{"0":68.5562},R:{_:"0"},M:{"0":0.09162},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js index e9e8b558969194..ea8caf4bf4cb2c 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.00647,"44":0,"45":0,"46":0,"47":0.00647,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.09705,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01294,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01941,"103":0,"104":0,"105":0.00647,"106":0.00647,"107":0.11646,"108":1.44281,"109":0.81522,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01294,"54":0,"55":0.00647,"56":0,"57":0,"58":0,"59":0.00647,"60":0,"61":0,"62":0,"63":0.01294,"64":0,"65":0,"66":0,"67":0.00647,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.05176,"77":0,"78":0,"79":0.01941,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.08411,"88":0,"89":0,"90":0,"91":0,"92":0.00647,"93":0,"94":0.03235,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01941,"101":0,"102":0.00647,"103":0.08411,"104":0.07764,"105":0.2588,"106":0.01294,"107":0.23292,"108":14.42163,"109":15.34684,"110":0.01294,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00647,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.00647,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01294,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05823,"90":0,"91":0,"92":0,"93":1.00932,"94":0.18116,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00647,"108":1.53339,"109":1.6822},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00647,"12":0,"13":0.00647,"14":0.15528,"15":0.01294,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00647,"11.1":0.01294,"12.1":0.0647,"13.1":0.15528,"14.1":0.09058,"15.1":0.01294,"15.2-15.3":0.00647,"15.4":0.01941,"15.5":0.76993,"15.6":0.70523,"16.0":0.22645,"16.1":0.23292,"16.2":0.74405,"16.3":0.01294},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00585,"8.1-8.4":0,"9.0-9.2":0.03508,"9.3":0.00585,"10.0-10.2":0.00974,"10.3":0.02144,"11.0-11.2":0.00585,"11.3-11.4":0,"12.0-12.1":0.02534,"12.2-12.5":0.56518,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.00585,"14.0-14.4":0.50476,"14.5-14.8":0.29233,"15.0-15.1":0.13447,"15.2-15.3":0.08185,"15.4":0.03118,"15.5":0.30208,"15.6":2.82979,"16.0":2.31138,"16.1":4.9911,"16.2":5.83302,"16.3":0.46189},P:{"4":0.0811,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01014,"9.2":0,"10.1":0,"11.1-11.2":0.02028,"12.0":0,"13.0":0,"14.0":0.02028,"15.0":0.01014,"16.0":0,"17.0":0.01014,"18.0":0.02028,"19.0":4.339},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.05529,"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.00647,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.24357},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":32.35505}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02444,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.11611,"79":0,"80":0,"81":0,"82":0,"83":0,"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.00611,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.03056,"103":0,"104":0.00611,"105":0.00611,"106":0.00611,"107":0.02444,"108":0.055,"109":1.19165,"110":0.8861,"111":0.03667,"112":0.00611,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01222,"50":0,"51":0,"52":0,"53":0,"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.00611,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01222,"77":0,"78":0,"79":0.23833,"80":0,"81":0.00611,"83":0,"84":0,"85":0,"86":0,"87":0.06111,"88":0,"89":0,"90":0,"91":0,"92":0.00611,"93":0,"94":0,"95":0,"96":0,"97":0.00611,"98":0.00611,"99":0,"100":0.03667,"101":0,"102":0.00611,"103":0.03056,"104":0.09167,"105":0.48888,"106":0.01833,"107":0.00611,"108":0.165,"109":14.6114,"110":10.57203,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.06722,"90":0,"91":0,"92":0,"93":0.23222,"94":0.29333,"95":0.04889,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.01222,"109":1.59497,"110":1.99219},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00611,"14":0.26888,"15":0.01222,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03056,"13.1":0.07333,"14.1":0.25055,"15.1":0,"15.2-15.3":0.02444,"15.4":0.02444,"15.5":0.25055,"15.6":0.40333,"16.0":0.17111,"16.1":0.22,"16.2":0.87387,"16.3":1.0022,"16.4":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.06657,"9.3":0.01712,"10.0-10.2":0,"10.3":0.02853,"11.0-11.2":0.01141,"11.3-11.4":0,"12.0-12.1":0.02853,"12.2-12.5":0.47359,"13.0-13.1":0.01141,"13.2":0.01712,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.87109,"14.5-14.8":0.60292,"15.0-15.1":0.16737,"15.2-15.3":0.18449,"15.4":0.12743,"15.5":0.24535,"15.6":1.29333,"16.0":2.55432,"16.1":4.28889,"16.2":4.31172,"16.3":3.14012,"16.4":0},P:{"4":0.05112,"20":1.20644,"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.02045,"19.0":1.61541},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00202,"4.4":0,"4.4.3-4.4.4":0.19965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01222,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.0405},L:{"0":39.08209},R:{_:"0"},M:{"0":0.34612},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SN.js index 33eefea691b16e..9df51158b2abec 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.01858,"53":0,"54":0,"55":0,"56":0,"57":0.00465,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00232,"69":0.00232,"70":0.00465,"71":0,"72":0.00232,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00697,"79":0,"80":0,"81":0.00232,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00232,"92":0,"93":0,"94":0,"95":0.00232,"96":0,"97":0,"98":0,"99":0.00232,"100":0.00232,"101":0,"102":0.00697,"103":0.00232,"104":0.00232,"105":0.00232,"106":0.00232,"107":0.00929,"108":0.26947,"109":0.1719,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00232,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00232,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00232,"32":0,"33":0.00232,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00232,"41":0,"42":0.00232,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00697,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00232,"61":0,"62":0,"63":0,"64":0.00232,"65":0.00465,"66":0,"67":0,"68":0.00232,"69":0.00465,"70":0.00232,"71":0.00232,"72":0,"73":0,"74":0.00232,"75":0.00232,"76":0.00232,"77":0.00232,"78":0,"79":0.00697,"80":0.00232,"81":0.01626,"83":0,"84":0,"85":0.00232,"86":0.00232,"87":0.00465,"88":0.00465,"89":0,"90":0.00465,"91":0.00465,"92":0.00232,"93":0.01162,"94":0.00232,"95":0.00232,"96":0.00232,"97":0.00232,"98":0.00232,"99":0.00232,"100":0.00232,"101":0.00232,"102":0.00697,"103":0.04646,"104":0.00465,"105":0.00697,"106":0.00697,"107":0.01858,"108":1.22887,"109":1.35896,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00465,"47":0,"48":0,"49":0,"50":0.00697,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00232,"64":0.00232,"65":0,"66":0.00232,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00465,"80":0,"81":0,"82":0,"83":0,"84":0.00232,"85":0.00232,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00465,"94":0.08595,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00232,"10.6":0.00232,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00232,"13":0.00232,"14":0.00232,"15":0.01394,"16":0,"17":0.00232,"18":0.01162,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00232,"92":0.00232,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00232,"101":0,"102":0,"103":0,"104":0.00232,"105":0.00232,"106":0.00697,"107":0.01394,"108":0.27411,"109":0.31825},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00232,"14":0.00697,"15":0.00232,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00465,"13.1":0.01162,"14.1":0.01626,"15.1":0,"15.2-15.3":0.00232,"15.4":0.00232,"15.5":0.00929,"15.6":0.03949,"16.0":0.00697,"16.1":0.01626,"16.2":0.03485,"16.3":0.00232},G:{"8":0.02514,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07263,"8.1-8.4":0,"9.0-9.2":0.06146,"9.3":0.0866,"10.0-10.2":0.06984,"10.3":0.32963,"11.0-11.2":0.07822,"11.3-11.4":0.00838,"12.0-12.1":0.18716,"12.2-12.5":1.94145,"13.0-13.1":0.05028,"13.2":0.05308,"13.3":0.14805,"13.4-13.7":0.41622,"14.0-14.4":1.44142,"14.5-14.8":2.12023,"15.0-15.1":0.68719,"15.2-15.3":0.65925,"15.4":0.69278,"15.5":1.27102,"15.6":2.46382,"16.0":2.35767,"16.1":5.10643,"16.2":4.15945,"16.3":0.39108},P:{"4":0.40348,"5.0-5.4":0.02017,"6.2-6.4":0.03026,"7.2-7.4":0.37322,"8.2":0,"9.2":0.04035,"10.1":0.02017,"11.1-11.2":0.12104,"12.0":0.02017,"13.0":0.06052,"14.0":0.05043,"15.0":0.05043,"16.0":0.13113,"17.0":0.14122,"18.0":0.16139,"19.0":1.49287},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00185,"4.2-4.3":0.00296,"4.4":0,"4.4.3-4.4.4":0.07538},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01858,"5.5":0},J:{"7":0,"10":0.00768},N:{"10":0,"11":0},S:{"2.5":0.06142},R:{_:"0"},M:{"0":0.15354},Q:{"13.1":0},O:{"0":0.03071},H:{"0":0.3634},L:{"0":65.99809}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01001,"53":0,"54":0,"55":0,"56":0,"57":0.005,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0025,"69":0,"70":0.00751,"71":0,"72":0.005,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01001,"79":0,"80":0.0025,"81":0.0025,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.005,"96":0,"97":0,"98":0,"99":0.0025,"100":0,"101":0,"102":0.01001,"103":0.005,"104":0.0025,"105":0.0025,"106":0,"107":0.0025,"108":0.02002,"109":0.27022,"110":0.23269,"111":0.0025,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.005,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.0025,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.0025,"34":0,"35":0,"36":0,"37":0,"38":0.0025,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00751,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.0025,"63":0,"64":0,"65":0.005,"66":0,"67":0,"68":0.0025,"69":0.0025,"70":0,"71":0,"72":0.0025,"73":0,"74":0.0025,"75":0.005,"76":0.005,"77":0.0025,"78":0,"79":0.01001,"80":0,"81":0.01501,"83":0.0025,"84":0,"85":0.0025,"86":0.0025,"87":0.01751,"88":0.0025,"89":0.0025,"90":0.00751,"91":0.01251,"92":0.0025,"93":0.00751,"94":0.0025,"95":0.005,"96":0.0025,"97":0.0025,"98":0.0025,"99":0.0025,"100":0.0025,"101":0.0025,"102":0.005,"103":0.03503,"104":0.0025,"105":0.01501,"106":0.005,"107":0.01001,"108":0.05254,"109":1.80895,"110":1.17594,"111":0.0025,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00751,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.0025,"65":0,"66":0.0025,"67":0.00751,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.005,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0025,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.04754,"95":0.09007,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.0025,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0025,"13":0,"14":0,"15":0.01001,"16":0,"17":0.0025,"18":0.01251,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0025,"92":0.005,"93":0.0025,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0025,"101":0,"102":0,"103":0,"104":0.0025,"105":0.005,"106":0.00751,"107":0.005,"108":0.01501,"109":0.28773,"110":0.3703},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.005,"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.0025,"13.1":0.01501,"14.1":0.01251,"15.1":0,"15.2-15.3":0.0025,"15.4":0.0025,"15.5":0.005,"15.6":0.03503,"16.0":0.01251,"16.1":0.00751,"16.2":0.04253,"16.3":0.03253,"16.4":0},G:{"8":0.01377,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07437,"8.1-8.4":0,"9.0-9.2":0.03581,"9.3":0.11568,"10.0-10.2":0.03305,"10.3":0.23962,"11.0-11.2":0.04958,"11.3-11.4":0.01377,"12.0-12.1":0.23687,"12.2-12.5":2.28883,"13.0-13.1":0.06886,"13.2":0.03305,"13.3":0.15149,"13.4-13.7":0.47649,"14.0-14.4":1.25321,"14.5-14.8":1.86191,"15.0-15.1":0.75743,"15.2-15.3":0.58942,"15.4":0.56188,"15.5":1.08244,"15.6":1.84538,"16.0":1.83712,"16.1":3.76513,"16.2":3.97722,"16.3":2.70748,"16.4":0.01928},P:{"4":0.48458,"20":0.4341,"5.0-5.4":0,"6.2-6.4":0.02019,"7.2-7.4":0.35334,"8.2":0,"9.2":0.03029,"10.1":0.02019,"11.1-11.2":0.11105,"12.0":0.03029,"13.0":0.05048,"14.0":0.05048,"15.0":0.04038,"16.0":0.15143,"17.0":0.12114,"18.0":0.13124,"19.0":1.06001},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00153,"4.2-4.3":0.0044,"4.4":0,"4.4.3-4.4.4":0.09161},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02002,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.06748,_:"3.0-3.1"},J:{"7":0,"10":0.0075},O:{"0":0.02999},H:{"0":0.36913},L:{"0":65.90712},R:{_:"0"},M:{"0":0.12747},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js index 057db9f864723f..0057fb5954123d 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.00662,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00221,"102":0.00221,"103":0,"104":0,"105":0,"106":0,"107":0.00221,"108":0.14339,"109":0.09706,"110":0.00662,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00221,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00441,"34":0,"35":0,"36":0,"37":0.00221,"38":0.00221,"39":0,"40":0,"41":0,"42":0,"43":0.00221,"44":0,"45":0.00441,"46":0,"47":0.01544,"48":0,"49":0.00221,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00221,"65":0.00221,"66":0.00221,"67":0,"68":0.01324,"69":0.01103,"70":0.00221,"71":0,"72":0.00221,"73":0,"74":0.00662,"75":0.00221,"76":0,"77":0.00221,"78":0,"79":0.01324,"80":0.00221,"81":0.01324,"83":0.02427,"84":0,"85":0,"86":0.00221,"87":0.05515,"88":0.00221,"89":0,"90":0,"91":0.00441,"92":0.00221,"93":0.00662,"94":0.00662,"95":0.00662,"96":0.02647,"97":0.00441,"98":0.00221,"99":0.0353,"100":0.00441,"101":0.00662,"102":0.01103,"103":0.02868,"104":0.01324,"105":0.02647,"106":0.01544,"107":0.04191,"108":1.72289,"109":1.44272,"110":0.01103,"111":0.01544,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00221,"60":0.00662,"62":0,"63":0.02427,"64":0.00662,"65":0.00662,"66":0.01103,"67":0.02647,"68":0,"69":0,"70":0,"71":0,"72":0.00221,"73":0.01324,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01765,"94":0.10809,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00441,"13":0,"14":0,"15":0,"16":0.00221,"17":0.00221,"18":0.01324,"79":0,"80":0,"81":0,"83":0,"84":0.00221,"85":0,"86":0,"87":0,"88":0,"89":0.00221,"90":0,"91":0,"92":0.00882,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00221,"104":0,"105":0.00221,"106":0.00221,"107":0.01103,"108":0.28016,"109":0.20736},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00441,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00662,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00662,"14.1":0.04412,"15.1":0.01324,"15.2-15.3":0.00441,"15.4":0.00662,"15.5":0.00662,"15.6":0.03088,"16.0":0.00221,"16.1":0.01103,"16.2":0.02868,"16.3":0.00221},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01595,"8.1-8.4":0.00368,"9.0-9.2":0,"9.3":0.01718,"10.0-10.2":0,"10.3":0.02454,"11.0-11.2":0.00245,"11.3-11.4":0.0184,"12.0-12.1":0.01227,"12.2-12.5":0.66253,"13.0-13.1":0.02331,"13.2":0.00491,"13.3":0.04785,"13.4-13.7":0.22084,"14.0-14.4":0.65762,"14.5-14.8":0.93613,"15.0-15.1":0.40611,"15.2-15.3":0.3509,"15.4":0.26256,"15.5":0.53984,"15.6":0.8208,"16.0":1.85754,"16.1":2.11028,"16.2":1.62565,"16.3":0.30059},P:{"4":0.24205,"5.0-5.4":0.03026,"6.2-6.4":0.04034,"7.2-7.4":0.827,"8.2":0,"9.2":0.02017,"10.1":0.01009,"11.1-11.2":0.09077,"12.0":0.01009,"13.0":0.0706,"14.0":0.12102,"15.0":0.09077,"16.0":0.4135,"17.0":0.20171,"18.0":0.45384,"19.0":2.05742},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04197,"4.4":0,"4.4.3-4.4.4":0.16788},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00441,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.03118},Q:{"13.1":0},O:{"0":1.65233},H:{"0":1.94802},L:{"0":73.57389}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00658,"106":0,"107":0,"108":0.00658,"109":0.1097,"110":0.1097,"111":0.00878,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00219,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00219,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00219,"65":0,"66":0,"67":0.00219,"68":0.02413,"69":0.01316,"70":0.00439,"71":0,"72":0.00219,"73":0,"74":0.00878,"75":0.04169,"76":0,"77":0.00439,"78":0,"79":0.01097,"80":0.00219,"81":0.01755,"83":0.00439,"84":0,"85":0,"86":0,"87":0.05704,"88":0.00219,"89":0,"90":0.00219,"91":0.00878,"92":0.00658,"93":0.00878,"94":0.01755,"95":0.00219,"96":0.01975,"97":0,"98":0.00219,"99":0.0373,"100":0.00219,"101":0.00658,"102":0.01097,"103":0.04169,"104":0.02413,"105":0.01755,"106":0.00878,"107":0.03072,"108":0.13164,"109":1.63453,"110":1.38661,"111":0.00439,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00219,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01097,"60":0.01097,"62":0,"63":0.01316,"64":0.00439,"65":0.00219,"66":0.00658,"67":0.1821,"68":0.00219,"69":0,"70":0,"71":0,"72":0.00219,"73":0.00219,"74":0.00439,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00658,"94":0.05046,"95":0.05266,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00439,"13":0,"14":0,"15":0,"16":0,"17":0.00219,"18":0.00658,"79":0,"80":0,"81":0,"83":0,"84":0.00219,"85":0,"86":0,"87":0,"88":0,"89":0.00219,"90":0.00219,"91":0,"92":0.00878,"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.00219,"106":0.00219,"107":0.00439,"108":0.01316,"109":0.17991,"110":0.23256},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00219,"14":0.00658,"15":0.00439,_:"0","3.1":0,"3.2":0,"5.1":0.00658,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00219,"14.1":0.02413,"15.1":0.00219,"15.2-15.3":0.00219,"15.4":0.00439,"15.5":0.00439,"15.6":0.04827,"16.0":0.00439,"16.1":0.01097,"16.2":0.01536,"16.3":0.02413,"16.4":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.00258,"7.0-7.1":0.00258,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02453,"10.0-10.2":0,"10.3":0.03614,"11.0-11.2":0.00516,"11.3-11.4":0.01678,"12.0-12.1":0.02065,"12.2-12.5":0.70865,"13.0-13.1":0.02582,"13.2":0.01162,"13.3":0.07616,"13.4-13.7":0.20136,"14.0-14.4":0.67509,"14.5-14.8":0.78997,"15.0-15.1":0.38595,"15.2-15.3":0.29172,"15.4":0.33044,"15.5":0.63378,"15.6":0.74092,"16.0":1.56315,"16.1":1.85745,"16.2":1.76193,"16.3":1.6548,"16.4":0.01033},P:{"4":0.16247,"20":0.49756,"5.0-5.4":0.02031,"6.2-6.4":0.05077,"7.2-7.4":0.86311,"8.2":0,"9.2":0.19293,"10.1":0,"11.1-11.2":0.08123,"12.0":0.01015,"13.0":0.06093,"14.0":0.15231,"15.0":0.15231,"16.0":0.27417,"17.0":0.22339,"18.0":0.29447,"19.0":1.85823},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.049,"4.4":0,"4.4.3-4.4.4":0.17294},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00219,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.56901},H:{"0":2.16533},L:{"0":72.3238},R:{_:"0"},M:{"0":0.04684},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js index cb1285fdd9972c..d1008a2f67b487 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00308,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00308,"89":0,"90":0,"91":0.00616,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00308,"100":0,"101":0,"102":0.00308,"103":0.00308,"104":0,"105":0,"106":0.00308,"107":0.00308,"108":0.40937,"109":0.24008,"110":0.00308,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00616,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00923,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00616,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00308,"62":0,"63":0,"64":0,"65":0.00308,"66":0,"67":0,"68":0,"69":0.03078,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01847,"77":0.00308,"78":0,"79":0.00616,"80":0,"81":0.01231,"83":0.00308,"84":0,"85":0,"86":0.01847,"87":0.00923,"88":0.00308,"89":0.00923,"90":0,"91":0,"92":0.00308,"93":0.00308,"94":0,"95":0.00923,"96":0.00923,"97":0.00308,"98":0.03694,"99":0,"100":0.01539,"101":0,"102":0.01539,"103":0.07695,"104":0.00616,"105":0.00616,"106":0.01231,"107":0.03694,"108":3.14264,"109":2.4901,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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.00308,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00308,"92":0,"93":0.05233,"94":0.16313,"9.5-9.6":0,"10.0-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,"14":0,"15":0.00308,"16":0.00308,"17":0.00308,"18":0.00308,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00308,"87":0,"88":0.00308,"89":0,"90":0,"91":0,"92":0.00616,"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.00308,"107":0.01847,"108":0.65561,"109":0.51403},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.05233,"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.00923,"14.1":0.07079,"15.1":0.00308,"15.2-15.3":0,"15.4":0.02462,"15.5":0.05233,"15.6":0.11081,"16.0":0.01539,"16.1":0.03078,"16.2":0.0985,"16.3":0.01231},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02361,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01771,"10.0-10.2":0,"10.3":0.20663,"11.0-11.2":0,"11.3-11.4":0.0059,"12.0-12.1":0.00394,"12.2-12.5":0.74978,"13.0-13.1":0.0059,"13.2":0.00394,"13.3":0.34242,"13.4-13.7":0.08659,"14.0-14.4":0.18695,"14.5-14.8":1.79868,"15.0-15.1":0.15153,"15.2-15.3":0.10627,"15.4":0.24009,"15.5":0.41129,"15.6":1.81639,"16.0":2.30837,"16.1":4.27235,"16.2":3.49305,"16.3":0.24205},P:{"4":0.63901,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.4638,"8.2":0,"9.2":0.12368,"10.1":0,"11.1-11.2":0.05153,"12.0":0.04123,"13.0":0.18552,"14.0":0.18552,"15.0":0.05153,"16.0":0.1546,"17.0":0.44318,"18.0":0.3092,"19.0":6.21489},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02932,"4.4":0,"4.4.3-4.4.4":0.26386},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00923,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.24227},Q:{"13.1":0},O:{"0":0.6299},H:{"0":0.24903},L:{"0":61.50399}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00336,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00673,"92":0.00673,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00336,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00336,"109":0.53824,"110":0.34313,"111":0.00336,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00673,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00673,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00673,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00336,"78":0,"79":0.01009,"80":0,"81":0.00673,"83":0.00673,"84":0,"85":0.00336,"86":0.00336,"87":0.00336,"88":0,"89":0.00336,"90":0.00336,"91":0.00336,"92":0,"93":0.00336,"94":0,"95":0.00673,"96":0.01346,"97":0.01009,"98":0.04037,"99":0.00336,"100":0.00336,"101":0.00336,"102":0.02355,"103":0.08746,"104":0.00336,"105":0.00673,"106":0.00336,"107":0.02691,"108":0.21193,"109":3.84842,"110":2.45908,"111":0.00336,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00336,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01346,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01009,"94":0.0841,"95":0.08074,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00336,"17":0,"18":0.00673,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00336,"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.00673,"107":0.01346,"108":0.01682,"109":0.6728,"110":0.69635},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00336,"14":0.0841,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00336,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00336,"13.1":0.00673,"14.1":0.0471,"15.1":0,"15.2-15.3":0.00336,"15.4":0.01009,"15.5":0.21866,"15.6":0.0841,"16.0":0.01009,"16.1":0.02355,"16.2":0.13792,"16.3":0.0841,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00225,"6.0-6.1":0.00225,"7.0-7.1":0.04727,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02026,"10.0-10.2":0,"10.3":0.08779,"11.0-11.2":0,"11.3-11.4":0.02926,"12.0-12.1":0.01125,"12.2-12.5":0.76531,"13.0-13.1":0.0045,"13.2":0,"13.3":0.45468,"13.4-13.7":0.21158,"14.0-14.4":0.39616,"14.5-14.8":1.69268,"15.0-15.1":0.39166,"15.2-15.3":0.18457,"15.4":0.33088,"15.5":0.28586,"15.6":1.29877,"16.0":1.8885,"16.1":3.2458,"16.2":3.99534,"16.3":2.20813,"16.4":0.02251},P:{"4":0.69846,"20":2.58842,"5.0-5.4":0.01027,"6.2-6.4":0.01027,"7.2-7.4":0.56493,"8.2":0,"9.2":0.10272,"10.1":0,"11.1-11.2":0.0719,"12.0":0.02054,"13.0":0.19516,"14.0":0.12326,"15.0":0.06163,"16.0":0.22597,"17.0":0.26706,"18.0":0.25679,"19.0":3.3896},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02037,"4.4":0,"4.4.3-4.4.4":0.32594},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02018,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.47779},H:{"0":0.16335},L:{"0":59.37362},R:{_:"0"},M:{"0":0.15926},Q:{"13.1":0.00664}}; 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 0c0d4afd0ed371..da930e14c3b5d2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ST.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ST.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00585,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00585,"50":0,"51":0,"52":0.00585,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00585,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.52092,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.02927,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00585,"103":0,"104":0,"105":0,"106":0,"107":0.00585,"108":0.22827,"109":0.1873,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00585,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.08194,"44":0,"45":0,"46":0,"47":0.01756,"48":0,"49":0,"50":0,"51":0,"52":0.00585,"53":0,"54":0.01171,"55":0,"56":0.00585,"57":0,"58":0,"59":0.01171,"60":0,"61":0,"62":0,"63":0,"64":0.00585,"65":0,"66":0,"67":0,"68":0.00585,"69":0,"70":0.01171,"71":0,"72":0,"73":0,"74":0.00585,"75":0,"76":0,"77":0,"78":0,"79":0.02341,"80":0.05853,"81":0.02341,"83":0.01171,"84":0,"85":0.01756,"86":0,"87":0.02927,"88":0.04097,"89":2.90894,"90":0.01171,"91":0.06438,"92":0.04097,"93":0,"94":0,"95":0,"96":0.01171,"97":0.02341,"98":0,"99":0.00585,"100":0,"101":0.01171,"102":0.04097,"103":0.03512,"104":0.04682,"105":0,"106":0.12877,"107":0.33362,"108":11.51285,"109":11.03876,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00585,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00585,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00585,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00585,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00585,"86":0,"87":0,"88":0,"89":0,"90":0.00585,"91":0,"92":0,"93":0.0995,"94":0.36874,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.01171,"15":0,"16":0,"17":0,"18":0.00585,"79":0,"80":0.00585,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.01171,"88":0,"89":0.00585,"90":0.00585,"91":0,"92":0.01171,"93":0,"94":0,"95":0.00585,"96":0,"97":0.00585,"98":0.01756,"99":0,"100":0,"101":0.01171,"102":0,"103":0.01171,"104":0.00585,"105":0.01171,"106":0,"107":0.04097,"108":1.11207,"109":0.77845},E:{"4":0.00585,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02341,"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.00585,"15.1":0,"15.2-15.3":0,"15.4":0.00585,"15.5":0.02341,"15.6":0.20486,"16.0":0.02341,"16.1":0.02927,"16.2":0.02341,"16.3":0.00585},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04634,"6.0-6.1":0,"7.0-7.1":0.05533,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00899,"10.0-10.2":0,"10.3":0.074,"11.0-11.2":0.00899,"11.3-11.4":0.00899,"12.0-12.1":0.03665,"12.2-12.5":0.14731,"13.0-13.1":0,"13.2":0.00899,"13.3":0.00899,"13.4-13.7":0.00899,"14.0-14.4":0.074,"14.5-14.8":0.19295,"15.0-15.1":0.03734,"15.2-15.3":0.10166,"15.4":0.09198,"15.5":0.28562,"15.6":0.42393,"16.0":0.66322,"16.1":1.36309,"16.2":0.86585,"16.3":1.53806},P:{"4":0.17996,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.71985,"8.2":0,"9.2":0.02999,"10.1":0.02,"11.1-11.2":0.02999,"12.0":0.01,"13.0":0.06999,"14.0":0.01,"15.0":0.01,"16.0":0.02999,"17.0":0.04999,"18.0":0.06999,"19.0":0.77984},I:{"0":0,"3":0,"4":0.00968,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03065,"4.2-4.3":0.08872,"4.4":0,"4.4.3-4.4.4":0.16777},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07609,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.15344},Q:{"13.1":0},O:{"0":2.43844},H:{"0":0.65173},L:{"0":53.50165}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.33666,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00543,"89":0.00543,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00543,"96":0.00543,"97":0,"98":0,"99":0,"100":0.00543,"101":0.00543,"102":0.01629,"103":0,"104":0.00543,"105":0.00543,"106":0,"107":0,"108":0.01086,"109":0.29865,"110":0.14118,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.01086,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01086,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01086,"50":0,"51":0,"52":0,"53":0,"54":0.01086,"55":0,"56":0,"57":0.02172,"58":0.03801,"59":0.00543,"60":0,"61":0,"62":0,"63":0.02715,"64":0.01086,"65":0.00543,"66":0,"67":0,"68":0.00543,"69":0,"70":0.03258,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02715,"80":0.01086,"81":0,"83":0,"84":0,"85":0,"86":0.00543,"87":0.02172,"88":0.02172,"89":1.31406,"90":0.00543,"91":0.00543,"92":0.00543,"93":0.00543,"94":0,"95":0.00543,"96":0.07059,"97":0.01086,"98":0,"99":0.01086,"100":0,"101":0.00543,"102":0.02172,"103":0.00543,"104":0.01629,"105":0.01086,"106":0.00543,"107":0.0543,"108":0.22263,"109":14.65014,"110":5.63091,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01629,"64":0.00543,"65":0,"66":0,"67":0.01629,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00543,"80":0,"81":0,"82":0,"83":0.00543,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00543,"94":0.13032,"95":0.1629,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00543,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01086,"91":0,"92":0.01086,"93":0,"94":0,"95":0,"96":0,"97":0.02172,"98":0.00543,"99":0,"100":0,"101":0,"102":0,"103":0.02172,"104":0,"105":0,"106":0.00543,"107":0.01629,"108":0.02715,"109":0.72219,"110":0.96111},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00543,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00543,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00543,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.03801,"16.0":0.01086,"16.1":0.02172,"16.2":0.07059,"16.3":0.09774,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00881,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.32957,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.00881,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00881,"12.2-12.5":0.04257,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01688,"14.0-14.4":0,"14.5-14.8":0.42279,"15.0-15.1":0.03376,"15.2-15.3":0.05065,"15.4":0.04257,"15.5":0.05945,"15.6":0.33838,"16.0":0.00881,"16.1":1.60673,"16.2":2.33413,"16.3":1.58104,"16.4":0},P:{"4":0.16277,"20":0.34588,"5.0-5.4":0,"6.2-6.4":0.02035,"7.2-7.4":0.1119,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.02035,"12.0":0.02035,"13.0":0.01017,"14.0":0,"15.0":0.01017,"16.0":0.01017,"17.0":0.01017,"18.0":0.3764,"19.0":0.3764},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.00139,"2.3":0,"4.1":0.0347,"4.2-4.3":0.05829,"4.4":0,"4.4.3-4.4.4":0.13879},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04344,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":2.9248},H:{"0":0.22931},L:{"0":58.83212},R:{_:"0"},M:{"0":0.11425},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js index b8c077b53d0172..7b6a85b8292d8d 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.00378,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00757,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00378,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00378,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.03026,"85":0,"86":0,"87":0,"88":0.00378,"89":0,"90":0,"91":0.00378,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00378,"100":0,"101":0,"102":0.02648,"103":0.00757,"104":0.08701,"105":0.00378,"106":0.01135,"107":0.01513,"108":0.3783,"109":0.23076,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00378,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0227,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00378,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00378,"66":0,"67":0,"68":0,"69":0,"70":0.00378,"71":0,"72":0,"73":0,"74":0,"75":0.00378,"76":0.00378,"77":0.00378,"78":0.00378,"79":0.05675,"80":0.01135,"81":0.00757,"83":0.00378,"84":0.00757,"85":0.00378,"86":0.00757,"87":0.01513,"88":0.00757,"89":0.00378,"90":0.00378,"91":0.09836,"92":0.01135,"93":0.00757,"94":0.00378,"95":0.00757,"96":0.01135,"97":0.01135,"98":0.00757,"99":0.00757,"100":0.01892,"101":0.02648,"102":0.03783,"103":0.07188,"104":0.02648,"105":0.07566,"106":0.04161,"107":0.13241,"108":4.52069,"109":4.56986,"110":0.00378,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00378,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00378,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.00378,"63":0,"64":0,"65":0,"66":0.00378,"67":0,"68":0,"69":0,"70":0,"71":0.00378,"72":0,"73":0.00757,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00378,"93":0.41235,"94":0.36695,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00378,"15":0.00757,"16":0,"17":0,"18":0.00757,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00378,"91":0,"92":0.00378,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00378,"100":0.00378,"101":0,"102":0,"103":0.00378,"104":0.00378,"105":0.00757,"106":0.00757,"107":0.03405,"108":0.68094,"109":0.66959},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00378,"14":0.01513,"15":0.00378,_:"0","3.1":0,"3.2":0,"5.1":0.00757,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00378,"13.1":0.00757,"14.1":0.03026,"15.1":0.00378,"15.2-15.3":0.00378,"15.4":0.01135,"15.5":0.01892,"15.6":0.11349,"16.0":0.01513,"16.1":0.04918,"16.2":0.07188,"16.3":0.00757},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00567,"6.0-6.1":0.03059,"7.0-7.1":0.01813,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03966,"10.0-10.2":0,"10.3":0.02719,"11.0-11.2":0.00113,"11.3-11.4":0.00453,"12.0-12.1":0.00453,"12.2-12.5":0.27759,"13.0-13.1":0.00453,"13.2":0.01473,"13.3":0.01133,"13.4-13.7":0.04419,"14.0-14.4":0.19714,"14.5-14.8":0.34217,"15.0-15.1":0.06232,"15.2-15.3":0.07931,"15.4":0.12463,"15.5":0.22434,"15.6":1.0401,"16.0":1.59527,"16.1":3.25739,"16.2":2.77927,"16.3":0.20961},P:{"4":0.13274,"5.0-5.4":0.01021,"6.2-6.4":0,"7.2-7.4":0.16337,"8.2":0,"9.2":0.02042,"10.1":0,"11.1-11.2":0.0919,"12.0":0,"13.0":0.15316,"14.0":0.08169,"15.0":0.03063,"16.0":0.15316,"17.0":0.0919,"18.0":0.14295,"19.0":2.0013},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0712,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.18986},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01135,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.2922},Q:{"13.1":0},O:{"0":0.14299},H:{"0":0.32372},L:{"0":70.56725},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01292,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01722,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00861,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00861,"79":0,"80":0,"81":0,"82":0.00431,"83":0,"84":0.03014,"85":0,"86":0,"87":0,"88":0.00431,"89":0,"90":0,"91":0.01292,"92":0,"93":0,"94":0,"95":0.00431,"96":0,"97":0,"98":0,"99":0.00861,"100":0.00431,"101":0,"102":0.03444,"103":0.01292,"104":0.07749,"105":0.00431,"106":0.00861,"107":0.01292,"108":0.01292,"109":0.52521,"110":0.50799,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02153,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00431,"66":0,"67":0.00431,"68":0.00431,"69":0,"70":0.00431,"71":0,"72":0,"73":0,"74":0.00861,"75":0.00431,"76":0.00861,"77":0,"78":0,"79":0.04305,"80":0.01292,"81":0.00861,"83":0,"84":0.00861,"85":0.00431,"86":0.00431,"87":0.01722,"88":0.00861,"89":0.00431,"90":0.00431,"91":0.06458,"92":0.02153,"93":0.03014,"94":0.00861,"95":0.00431,"96":0.01292,"97":0.01722,"98":0.00431,"99":0.00861,"100":0.02583,"101":0.03875,"102":0.03444,"103":0.06027,"104":0.02583,"105":0.03014,"106":0.04305,"107":0.06458,"108":0.26261,"109":6.65123,"110":5.46735,"111":0.00431,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"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.00431,"63":0,"64":0,"65":0,"66":0.00431,"67":0.03014,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.04736,"94":0.46925,"95":0.21525,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00431,"15":0.00861,"16":0,"17":0,"18":0.01292,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00431,"91":0,"92":0.00861,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00431,"99":0,"100":0.00431,"101":0.00431,"102":0.00431,"103":0.00431,"104":0.00431,"105":0.00861,"106":0.01292,"107":0.02153,"108":0.04305,"109":0.58979,"110":1.0289},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00861,"15":0.00431,_:"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.00431,"13.1":0.01722,"14.1":0.03444,"15.1":0.00431,"15.2-15.3":0.00431,"15.4":0.01292,"15.5":0.01292,"15.6":0.0861,"16.0":0.01292,"16.1":0.04736,"16.2":0.0861,"16.3":0.06888,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00325,"6.0-6.1":0.03796,"7.0-7.1":0.00759,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02928,"10.0-10.2":0,"10.3":0.0282,"11.0-11.2":0.01193,"11.3-11.4":0.00108,"12.0-12.1":0.00217,"12.2-12.5":0.26136,"13.0-13.1":0.00542,"13.2":0.00542,"13.3":0.01084,"13.4-13.7":0.04121,"14.0-14.4":0.15616,"14.5-14.8":0.27003,"15.0-15.1":0.05422,"15.2-15.3":0.07917,"15.4":0.07591,"15.5":0.20605,"15.6":0.80468,"16.0":1.07145,"16.1":2.29473,"16.2":2.86408,"16.3":1.61803,"16.4":0.01301},P:{"4":0.09186,"20":0.888,"5.0-5.4":0.01021,"6.2-6.4":0,"7.2-7.4":0.13269,"8.2":0,"9.2":0.01021,"10.1":0,"11.1-11.2":0.05103,"12.0":0.01021,"13.0":0.11228,"14.0":0.05103,"15.0":0.03062,"16.0":0.1531,"17.0":0.05103,"18.0":0.06124,"19.0":1.24524},I:{"0":0,"3":0,"4":0.01381,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01381,"4.4":0,"4.4.3-4.4.4":0.20722},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01292,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.0057,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.1196},H:{"0":0.32889},L:{"0":67.23856},R:{_:"0"},M:{"0":0.23919},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js index 1759a131e4806c..0150d79002ace1 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.00188,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00188,"49":0,"50":0,"51":0,"52":0.01126,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00563,"69":0,"70":0,"71":0,"72":0.00188,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00188,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00563,"85":0,"86":0,"87":0,"88":0.00188,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00188,"97":0,"98":0,"99":0.00188,"100":0.00188,"101":0.00188,"102":0.00563,"103":0.00188,"104":0.00563,"105":0.00563,"106":0.00375,"107":0.00751,"108":0.15204,"109":0.0732,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00188,"36":0,"37":0,"38":0.00188,"39":0,"40":0.00375,"41":0,"42":0,"43":0.00188,"44":0,"45":0,"46":0.00188,"47":0.00939,"48":0,"49":0.00188,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00188,"56":0,"57":0.00188,"58":0.00563,"59":0,"60":0,"61":0,"62":0,"63":0.00375,"64":0.00375,"65":0.00375,"66":0,"67":0,"68":0.00375,"69":0.00188,"70":0.04693,"71":0.00188,"72":0.00375,"73":0,"74":0.00188,"75":0.00188,"76":0,"77":0,"78":0.00188,"79":0.00751,"80":0.00563,"81":0.01126,"83":0.00375,"84":0.00375,"85":0.00188,"86":0.00563,"87":0.00563,"88":0.00375,"89":0.00751,"90":0.00375,"91":0.00375,"92":0.00751,"93":0.00188,"94":0.00375,"95":0.01314,"96":0.00375,"97":0.00188,"98":0.00375,"99":0.00375,"100":0.00751,"101":0.00563,"102":0.00751,"103":0.01689,"104":0.01126,"105":0.01126,"106":0.01877,"107":0.03942,"108":1.09054,"109":0.75268,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00188,"29":0,"30":0,"31":0,"32":0,"33":0.00188,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00188,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00188,"58":0.00188,"60":0.00188,"62":0,"63":0.00563,"64":0.00188,"65":0.00188,"66":0.00563,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00188,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00563,"80":0,"81":0,"82":0,"83":0.00188,"84":0,"85":0.00188,"86":0.00188,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00188,"93":0.01126,"94":0.06194,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00188,"15":0,"16":0,"17":0.00188,"18":0.01502,"79":0,"80":0,"81":0,"83":0,"84":0.00188,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00375,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00188,"106":0.00188,"107":0.00563,"108":0.10324,"109":0.08259},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00188,"15":0.00375,_:"0","3.1":0,"3.2":0,"5.1":0.38666,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00188,"11.1":0,"12.1":0,"13.1":0.00188,"14.1":0.00563,"15.1":0.00375,"15.2-15.3":0,"15.4":0,"15.5":0.00188,"15.6":0.00751,"16.0":0,"16.1":0.00188,"16.2":0.00375,"16.3":0},G:{"8":0,"3.2":0.0007,"4.0-4.1":0,"4.2-4.3":0.0007,"5.0-5.1":0.00419,"6.0-6.1":0.0014,"7.0-7.1":0.03248,"8.1-8.4":0.0007,"9.0-9.2":0.00314,"9.3":0.06112,"10.0-10.2":0.00105,"10.3":0.05134,"11.0-11.2":0.00244,"11.3-11.4":0.01257,"12.0-12.1":0.022,"12.2-12.5":0.34996,"13.0-13.1":0.00978,"13.2":0.00279,"13.3":0.0255,"13.4-13.7":0.05972,"14.0-14.4":0.2574,"14.5-14.8":0.25147,"15.0-15.1":0.12294,"15.2-15.3":0.1198,"15.4":0.09046,"15.5":0.27033,"15.6":0.23505,"16.0":0.38838,"16.1":0.36532,"16.2":0.37825,"16.3":0.04401},P:{"4":1.50755,"5.0-5.4":0.06238,"6.2-6.4":0.24953,"7.2-7.4":0.31191,"8.2":0.04159,"9.2":0.16635,"10.1":0.15595,"11.1-11.2":0.19754,"12.0":0.07278,"13.0":0.25992,"14.0":0.37429,"15.0":0.13516,"16.0":0.44707,"17.0":0.62381,"18.0":0.59262,"19.0":1.22684},I:{"0":0,"3":0,"4":0.0062,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02273,"4.2-4.3":0.08265,"4.4":0,"4.4.3-4.4.4":0.71081},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01689,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.14621},Q:{"13.1":0},O:{"0":1.29968},H:{"0":1.42271},L:{"0":81.26658}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00197,"53":0.00098,"54":0,"55":0,"56":0,"57":0,"58":0.00098,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00295,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00098,"85":0,"86":0,"87":0,"88":0.00098,"89":0,"90":0.00098,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00098,"98":0,"99":0.00098,"100":0,"101":0.00098,"102":0.00098,"103":0,"104":0.00098,"105":0.00098,"106":0.00098,"107":0.00098,"108":0.00393,"109":0.05701,"110":0.04718,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00098,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00098,"41":0,"42":0,"43":0.00098,"44":0,"45":0,"46":0,"47":0.00098,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00098,"56":0.00098,"57":0,"58":0.00197,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00098,"66":0,"67":0,"68":0,"69":0.00098,"70":0.0059,"71":0.00197,"72":0,"73":0,"74":0,"75":0.00197,"76":0,"77":0,"78":0,"79":0.00098,"80":0.00098,"81":0.00393,"83":0.00098,"84":0,"85":0,"86":0,"87":0.00197,"88":0.00098,"89":0.00295,"90":0.00197,"91":0.00098,"92":0.00197,"93":0,"94":0.00098,"95":0.00197,"96":0.00098,"97":0,"98":0.00295,"99":0.00098,"100":0.00492,"101":0.00098,"102":0.00197,"103":0.00295,"104":0.00295,"105":0.00295,"106":0.00295,"107":0.0059,"108":0.01278,"109":0.32341,"110":0.1563,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00098,"55":0,"56":0,"57":0,"58":0.00098,"60":0,"62":0,"63":0.00098,"64":0.00098,"65":0.00197,"66":0.00197,"67":0.00393,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00098,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01081,"95":0.02851,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00098,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00098,"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.00098,"108":0.00295,"109":0.02458,"110":0.02556},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00098,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.05407,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00295,"15.1":0,"15.2-15.3":0,"15.4":0.00098,"15.5":0,"15.6":0.00098,"16.0":0,"16.1":0.00098,"16.2":0.00098,"16.3":0.00098,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00574,"5.0-5.1":0.00096,"6.0-6.1":0,"7.0-7.1":0.0086,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01912,"10.0-10.2":0,"10.3":0.03633,"11.0-11.2":0.00096,"11.3-11.4":0.02103,"12.0-12.1":0.07935,"12.2-12.5":0.78972,"13.0-13.1":0.04398,"13.2":0.03251,"13.3":0.13767,"13.4-13.7":0.27248,"14.0-14.4":0.70749,"14.5-14.8":0.76868,"15.0-15.1":0.32793,"15.2-15.3":0.27535,"15.4":0.27631,"15.5":0.43406,"15.6":0.44075,"16.0":1.23238,"16.1":0.91305,"16.2":1.16641,"16.3":0.99145,"16.4":0},P:{"4":0.50828,"20":0.52861,"5.0-5.4":0.06099,"6.2-6.4":0.08133,"7.2-7.4":0.21348,"8.2":0.05083,"9.2":0.18298,"10.1":0.24398,"11.1-11.2":0.24398,"12.0":0.13215,"13.0":0.43712,"14.0":0.48795,"15.0":0.20331,"16.0":0.55911,"17.0":0.9759,"18.0":0.49812,"19.0":2.57191},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00517,"4.2-4.3":0.02239,"4.4":0,"4.4.3-4.4.4":0.12057},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00098,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.8476},H:{"0":0.77684},L:{"0":79.12116},R:{_:"0"},M:{"0":0.15329},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SZ.js index a94e9ab8860657..3f2bc1ef3b9373 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,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00218,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00218,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00218,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00655,"103":0,"104":0.00218,"105":0.00218,"106":0,"107":0.00437,"108":0.1223,"109":0.13541,"110":0,"111":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.00218,"43":0,"44":0,"45":0,"46":0.00437,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00218,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00655,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00437,"71":0,"72":0,"73":0,"74":0.00218,"75":0,"76":0,"77":0.00218,"78":0.00874,"79":0.00218,"80":0,"81":0.09828,"83":0,"84":0,"85":0,"86":0.00218,"87":0.00437,"88":0.00218,"89":0.00218,"90":0,"91":0,"92":0.01092,"93":0,"94":0.01092,"95":0.07207,"96":0,"97":0.00437,"98":0.00218,"99":0.00218,"100":0.00218,"101":0.00218,"102":0.00437,"103":0.01966,"104":0.0131,"105":0.02621,"106":0.01092,"107":0.04368,"108":0.79061,"109":0.90199,"110":0,"111":0.00218,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00437,"24":0.00218,"25":0.00437,"26":0.06115,"27":0,"28":0.01092,"29":0,"30":0.00218,"31":0,"32":0.01092,"33":0.00218,"34":0,"35":0.06334,"36":0.00655,"37":0.00218,"38":0.00655,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.01966,"45":0,"46":0.01092,"47":0.26426,"48":0.00218,"49":0,"50":0.01092,"51":0.03494,"52":0,"53":0,"54":0.00874,"55":0.00655,"56":0.00874,"57":0.04368,"58":0.08081,"60":0.02839,"62":0,"63":0.22058,"64":0.06989,"65":0.05023,"66":0.09828,"67":0.01092,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01092,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00218,"91":0,"92":0,"93":0.01529,"94":0.11575,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03276},B:{"12":0.00655,"13":0.00218,"14":0,"15":0.00437,"16":0.00218,"17":0.00218,"18":0.00655,"79":0,"80":0,"81":0,"83":0,"84":0.00218,"85":0,"86":0.00437,"87":0,"88":0,"89":0,"90":0.00218,"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.00218,"106":0.00655,"107":0.0131,"108":0.23587,"109":0.24679},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00218,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01092,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00655,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.01529,"15.6":0.00655,"16.0":0.00437,"16.1":0.00437,"16.2":0.03058,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00354,"5.0-5.1":0.00118,"6.0-6.1":0.00118,"7.0-7.1":0,"8.1-8.4":0.00177,"9.0-9.2":0,"9.3":0.01886,"10.0-10.2":0,"10.3":0.0165,"11.0-11.2":0.00118,"11.3-11.4":0.00118,"12.0-12.1":0.00295,"12.2-12.5":0.49857,"13.0-13.1":0,"13.2":0,"13.3":0.02298,"13.4-13.7":0.05775,"14.0-14.4":0.06424,"14.5-14.8":0.18741,"15.0-15.1":0.06836,"15.2-15.3":0.3371,"15.4":0.08958,"15.5":0.28759,"15.6":0.83862,"16.0":0.60053,"16.1":1.62537,"16.2":0.54454,"16.3":0.03536},P:{"4":0.24424,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":1.76058,"8.2":0,"9.2":0.03053,"10.1":0,"11.1-11.2":0.04071,"12.0":0.01018,"13.0":0.05088,"14.0":0.07124,"15.0":0.1323,"16.0":0.12212,"17.0":0.15265,"18.0":0.10177,"19.0":2.26942},I:{"0":0,"3":0,"4":0.00166,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00166,"4.2-4.3":0.01382,"4.4":0,"4.4.3-4.4.4":0.06908},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01092,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.07034},R:{_:"0"},M:{"0":0.51586},Q:{"13.1":0},O:{"0":1.35998},H:{"0":13.23063},L:{"0":66.04406}}; +module.exports={C:{"52":0.01378,"60":0.01149,"78":0.0023,"88":0.0023,"91":0.01608,"102":0.01378,"103":0.00459,"105":0.00459,"106":0.0023,"107":0.00689,"109":0.6868,"110":0.19065,"111":0.0023,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 104 108 112 3.5 3.6"},D:{"41":0.0023,"59":0.0023,"68":0.00459,"70":0.00689,"71":0.00459,"74":0.00459,"78":0.01378,"79":0.01608,"81":0.05972,"83":0.0023,"85":0.0023,"86":0.0023,"87":0.02297,"88":0.00459,"89":0.00459,"91":0.00919,"92":0.06202,"93":0.00689,"94":0.01608,"95":0.12174,"96":0.0023,"97":0.01149,"99":0.00919,"100":0.00919,"102":0.04135,"103":0.14701,"104":0.01608,"105":0.14701,"106":0.01149,"107":0.03675,"108":0.22511,"109":5.86424,"110":3.16527,"111":0.00689,"112":0.00459,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 72 73 75 76 77 80 84 90 98 101 113"},F:{"42":0.01149,"79":0.00689,"85":0.00689,"90":0.0023,"94":0.28483,"95":0.37671,_:"9 11 12 15 16 17 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 91 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02986,"14":0.0023,"15":0.00919,"17":0.00459,"18":0.02527,"84":0.01149,"89":0.00459,"90":0.10337,"92":0.03446,"96":0.00919,"97":0.0023,"98":0.0023,"100":0.0023,"103":0.00919,"104":0.01608,"105":0.01378,"106":0.01149,"107":0.02986,"108":0.02986,"109":0.92569,"110":0.92569,_:"13 16 79 80 81 83 85 86 87 88 91 93 94 95 99 101 102"},E:{"4":0,"14":0.0023,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 15.4 16.0 16.4","5.1":0.02756,"9.1":0.0023,"12.1":0.00689,"13.1":0.00919,"14.1":0.01838,"15.1":0.01149,"15.2-15.3":0.00459,"15.5":0.01608,"15.6":0.05972,"16.1":0.11255,"16.2":0.0758,"16.3":0.04594},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00042,"7.0-7.1":0.00294,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00126,"10.0-10.2":0,"10.3":0.02145,"11.0-11.2":0,"11.3-11.4":0.00042,"12.0-12.1":0,"12.2-12.5":0.22669,"13.0-13.1":0.00547,"13.2":0.00421,"13.3":0.00631,"13.4-13.7":0.01682,"14.0-14.4":0.06014,"14.5-14.8":0.08243,"15.0-15.1":0.08201,"15.2-15.3":0.50805,"15.4":0.06561,"15.5":0.19599,"15.6":0.51225,"16.0":0.20145,"16.1":0.85165,"16.2":0.77427,"16.3":0.33856,"16.4":0.00042},P:{"4":0.24363,"20":0.4974,"5.0-5.4":0.03048,"6.2-6.4":0.04064,"7.2-7.4":1.21813,"8.2":0.01016,"9.2":0.02068,"10.1":0.03048,"11.1-11.2":0.0203,"12.0":0.0203,"13.0":0.05076,"14.0":0.09136,"15.0":0.10151,"16.0":0.11166,"17.0":0.07106,"18.0":0.06091,"19.0":2.14188},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00046,"4.4":0,"4.4.3-4.4.4":0.02264},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02297,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0.09242,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.73939},H:{"0":13.9783},L:{"0":60.70481},R:{_:"0"},M:{"0":0.45442},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js index 2b4361be72f4f5..44922f0c53b8a9 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.01864,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00466,"104":0,"105":0,"106":0.00466,"107":0.00466,"108":0.34491,"109":0.22373,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00932,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00466,"71":0,"72":0,"73":0,"74":0,"75":1.86906,"76":0.00932,"77":0,"78":0,"79":0.02797,"80":0.00466,"81":0.00932,"83":0.02331,"84":0,"85":0,"86":0.00466,"87":0.00466,"88":0.00932,"89":0.00466,"90":0,"91":0,"92":0,"93":0.00932,"94":0.00466,"95":0,"96":0.00932,"97":0.01864,"98":0,"99":0,"100":0.01398,"101":0,"102":0.00466,"103":0.04195,"104":0.00932,"105":0.01864,"106":0.02331,"107":0.42881,"108":5.39744,"109":4.14363,"110":0.04195,"111":0.00466,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00466,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.05127,"94":0.08856,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.03263,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00466,"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.00466,"106":0.00466,"107":0.06992,"108":1.71525,"109":1.32372},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00932,"14":0.05127,"15":0.01864,_:"0","3.1":0,"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.14915,"14.1":0.27034,"15.1":0.02331,"15.2-15.3":0.04661,"15.4":0.06992,"15.5":0.26102,"15.6":1.24449,"16.0":0.18178,"16.1":0.52203,"16.2":0.69915,"16.3":0.1072},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.49702,"10.0-10.2":0,"10.3":0.0557,"11.0-11.2":0.00857,"11.3-11.4":0,"12.0-12.1":0.00857,"12.2-12.5":1.53821,"13.0-13.1":0,"13.2":0,"13.3":0.00857,"13.4-13.7":0.03856,"14.0-14.4":0.32135,"14.5-14.8":0.56558,"15.0-15.1":0.17139,"15.2-15.3":0.26565,"15.4":0.29136,"15.5":1.22971,"15.6":6.69698,"16.0":4.03619,"16.1":14.91075,"16.2":9.18211,"16.3":0.92978},P:{"4":0.06327,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09491,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.07382,"12.0":0,"13.0":0,"14.0":0.03164,"15.0":0.02109,"16.0":0.02109,"17.0":0.02109,"18.0":0.02109,"19.0":4.32375},I:{"0":0,"3":0,"4":0.01565,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.90265},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00466,"11":0.02331,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.04805},Q:{"13.1":0},O:{"0":0.02136},H:{"0":0.06066},L:{"0":31.24063}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0053,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.01591,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.0053,"109":0.29691,"110":0.48778,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.0053,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0053,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.02121,"75":0.82711,"76":0.0053,"77":0,"78":0,"79":0.05302,"80":0.01591,"81":0.0053,"83":0.01591,"84":0,"85":0,"86":0,"87":0.0106,"88":0.0053,"89":0.01591,"90":0,"91":0,"92":0.0053,"93":0.06893,"94":0,"95":0,"96":0,"97":0.0053,"98":0,"99":0.0106,"100":0.0106,"101":0,"102":0,"103":0.03711,"104":0,"105":0.04242,"106":0.01591,"107":0.31282,"108":0.91194,"109":6.08139,"110":3.22362,"111":0.04772,"112":0.0053,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01591,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.0053,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.05302,"95":0.08483,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.0053,"14":0,"15":0,"16":0,"17":0,"18":0.04242,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0053,"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.0053,"106":0.0053,"107":0.02651,"108":0.15906,"109":1.36261,"110":2.07308},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0053,"14":0.03711,"15":0.02651,_:"0","3.1":0,"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.2545,"14.1":0.2704,"15.1":0.0106,"15.2-15.3":0.05832,"15.4":0.02121,"15.5":0.12195,"15.6":0.70517,"16.0":0.05832,"16.1":0.37644,"16.2":1.53758,"16.3":0.59382,"16.4":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.61418,"10.0-10.2":0,"10.3":0.04014,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00401,"12.2-12.5":0.65433,"13.0-13.1":0.02007,"13.2":0,"13.3":0,"13.4-13.7":0.15656,"14.0-14.4":0.18466,"14.5-14.8":0.74264,"15.0-15.1":0.23684,"15.2-15.3":0.17663,"15.4":0.17663,"15.5":0.80285,"15.6":3.2074,"16.0":2.9264,"16.1":12.05083,"16.2":10.83049,"16.3":5.10213,"16.4":0.12444},P:{"4":0.09539,"20":0.8055,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0318,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06359,"12.0":0,"13.0":0.0106,"14.0":0.0212,"15.0":0.0106,"16.0":0.0106,"17.0":0.04239,"18.0":0.04239,"19.0":1.51561},I:{"0":0,"3":0,"4":0.08369,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.04611},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":5.18005,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.02349},H:{"0":0.06227},L:{"0":30.43876},R:{_:"0"},M:{"0":0.12215},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TD.js index 5b4b264a204737..f3e074cf1a3676 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,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00145,"102":0.00145,"103":0,"104":0,"105":0,"106":0,"107":0.00291,"108":0.10026,"109":0.0712,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00145,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00291,"49":0.00291,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00145,"71":0,"72":0,"73":0,"74":0.00145,"75":0,"76":0,"77":0.00145,"78":0,"79":0,"80":0.00291,"81":0.00145,"83":0,"84":0,"85":0,"86":0,"87":0.00145,"88":0.00145,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01308,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00436,"103":0.00145,"104":0.00291,"105":0,"106":0.00145,"107":0.00872,"108":0.41992,"109":0.20633,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00145,"58":0.00145,"60":0.00145,"62":0,"63":0.00436,"64":0.00145,"65":0.02034,"66":0.00436,"67":0.00145,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00291,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00145,"93":0,"94":0.02906,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00145,"13":0.00291,"14":0.00145,"15":0,"16":0,"17":0,"18":0.00436,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00727,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00436,"93":0,"94":0,"95":0.00581,"96":0,"97":0,"98":0,"99":0,"100":0.00145,"101":0.01308,"102":0,"103":0,"104":0,"105":0.00145,"106":0,"107":0.00145,"108":0.13368,"109":0.05521},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.00872,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00145,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0.00145,"15.5":0,"15.6":0.01017,"16.0":0,"16.1":0.00145,"16.2":0.00727,"16.3":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.01388,"10.0-10.2":0,"10.3":0.04077,"11.0-11.2":0.01995,"11.3-11.4":0.53865,"12.0-12.1":0.04163,"12.2-12.5":2.27778,"13.0-13.1":0.03209,"13.2":0,"13.3":0.00434,"13.4-13.7":0.02515,"14.0-14.4":0.43457,"14.5-14.8":0.32874,"15.0-15.1":0.15526,"15.2-15.3":0.24634,"15.4":0.63667,"15.5":0.22466,"15.6":1.45376,"16.0":0.56467,"16.1":0.69565,"16.2":0.72775,"16.3":0.07546},P:{"4":0.3763,"5.0-5.4":0.01017,"6.2-6.4":0,"7.2-7.4":0.29494,"8.2":0,"9.2":0.08136,"10.1":0,"11.1-11.2":0.1017,"12.0":0,"13.0":0.02034,"14.0":0.21358,"15.0":0.02034,"16.0":0.478,"17.0":0.1017,"18.0":0.14238,"19.0":0.78311},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00339,"4.4":0,"4.4.3-4.4.4":0.04824},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00814,"9":0.00203,"10":0.00203,"11":0.01831,"5.5":0},J:{"7":0,"10":0.10256},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08547},Q:{"13.1":0.07692},O:{"0":0.23077},H:{"0":0.87391},L:{"0":85.31179},S:{"2.5":0.03419}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00155,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00155,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00155,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00155,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00155,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00155,"102":0,"103":0,"104":0,"105":0.00311,"106":0,"107":0.00155,"108":0.00621,"109":0.09629,"110":0.07144,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00311,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00155,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00155,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00155,"81":0.00155,"83":0,"84":0,"85":0,"86":0.01242,"87":0.00155,"88":0,"89":0,"90":0,"91":0,"92":0.00155,"93":0,"94":0.00932,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00311,"103":0.00155,"104":0,"105":0,"106":0,"107":0.00311,"108":0.00932,"109":0.24072,"110":0.18325,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00155,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00777,"62":0,"63":0.00466,"64":0,"65":0.03106,"66":0.01708,"67":0.00777,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00311,"74":0.00466,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00777,"95":0.01864,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00155,"13":0,"14":0,"15":0,"16":0.00155,"17":0,"18":0.00466,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00155,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.01398,"109":0.09007,"110":0.03106},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00155,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00621,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00155,"15.1":0,"15.2-15.3":0,"15.4":0.00155,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0.00311,"16.3":0.00621,"16.4":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.00712,"10.0-10.2":0,"10.3":0.00089,"11.0-11.2":0.00445,"11.3-11.4":1.3096,"12.0-12.1":0.06939,"12.2-12.5":1.82828,"13.0-13.1":0.14947,"13.2":0,"13.3":0.00178,"13.4-13.7":0.02402,"14.0-14.4":0.20729,"14.5-14.8":0.36833,"15.0-15.1":0.17794,"15.2-15.3":0.19128,"15.4":0.26868,"15.5":0.33452,"15.6":1.40124,"16.0":0.55249,"16.1":0.49733,"16.2":0.65213,"16.3":0.73932,"16.4":0.00089},P:{"4":0.24576,"20":0.09216,"5.0-5.4":0.02048,"6.2-6.4":0.03072,"7.2-7.4":0.13312,"8.2":0,"9.2":0.17408,"10.1":0,"11.1-11.2":0.04096,"12.0":0,"13.0":0.01024,"14.0":0.08192,"15.0":0.01024,"16.0":0.52224,"17.0":0.0512,"18.0":0.1536,"19.0":0.60416},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00445,"4.4":0,"4.4.3-4.4.4":0.02021},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.02534,_:"3.0-3.1"},J:{"7":0,"10":0.00845},O:{"0":0.43924},H:{"0":1.20756},L:{"0":85.41028},R:{_:"0"},M:{"0":0.05913},Q:{"13.1":0.10136}}; 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 5542a820fc7e82..681414e8a81fdc 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.01179,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01965,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00393,"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.00393,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00393,"80":0.00393,"81":0.00393,"82":0,"83":0,"84":0,"85":0,"86":0.00393,"87":0,"88":0.00393,"89":0,"90":0,"91":0.00393,"92":0.01179,"93":0.00786,"94":0,"95":0.00393,"96":0,"97":0.00393,"98":0,"99":0.00393,"100":0.01572,"101":0.00786,"102":0.04322,"103":0.00393,"104":0.03536,"105":0.00786,"106":0.00786,"107":0.01572,"108":1.25335,"109":0.68365,"110":0.01965,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00393,"29":0,"30":0,"31":0,"32":0,"33":0.00393,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00393,"44":0,"45":0,"46":0,"47":0.00393,"48":0.00393,"49":0.07072,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00786,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00786,"66":0,"67":0,"68":0.00393,"69":0.00393,"70":0.00393,"71":0,"72":0.00393,"73":0.00393,"74":0.00393,"75":0.11001,"76":0.01179,"77":0.00393,"78":0,"79":0.05894,"80":0.01179,"81":0.11787,"83":0.00393,"84":0.00393,"85":0.00786,"86":0.01572,"87":0.01572,"88":0.00393,"89":0.00393,"90":0,"91":0.01965,"92":0.01572,"93":0.0275,"94":0.01965,"95":0.03929,"96":0.05108,"97":0.00786,"98":0.00393,"99":0.00786,"100":0.01179,"101":0.0943,"102":0.31039,"103":0.11394,"104":0.03929,"105":0.0275,"106":0.03536,"107":0.08251,"108":3.19821,"109":3.43788,"110":0.00393,"111":0,"112":0},F:{"9":0,"11":0,"12":0.00393,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.02357,"62":0,"63":0.03929,"64":0.00393,"65":0.01572,"66":0.03143,"67":0.01179,"68":0,"69":0,"70":0.00393,"71":0,"72":0,"73":0.00786,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00786,"80":0,"81":0,"82":0.0275,"83":0,"84":0,"85":0.03143,"86":0,"87":0.00393,"88":0,"89":0,"90":0,"91":0.01965,"92":0,"93":0.0275,"94":0.4872,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01572,"13":0.00393,"14":0.00393,"15":0.00393,"16":0,"17":0.00393,"18":0.01572,"79":0,"80":0,"81":0,"83":0,"84":0.00393,"85":0.00393,"86":0,"87":0,"88":0,"89":0.00393,"90":0,"91":0,"92":0.01179,"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.00786,"107":0.02357,"108":0.82902,"109":0.88795},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.00786,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00786,"14.1":0.00393,"15.1":0,"15.2-15.3":0,"15.4":0.00393,"15.5":0.00786,"15.6":0.01965,"16.0":0.00393,"16.1":0.0275,"16.2":0.04322,"16.3":0},G:{"8":0.0023,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0023,"6.0-6.1":0.01381,"7.0-7.1":0.03454,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.16692,"10.0-10.2":0.00115,"10.3":0.30852,"11.0-11.2":0.06677,"11.3-11.4":0.0046,"12.0-12.1":0.07828,"12.2-12.5":2.77551,"13.0-13.1":0.02072,"13.2":0.07137,"13.3":0.13239,"13.4-13.7":0.1416,"14.0-14.4":0.43169,"14.5-14.8":0.46393,"15.0-15.1":0.29355,"15.2-15.3":0.13008,"15.4":0.0944,"15.5":0.24405,"15.6":0.65042,"16.0":0.8277,"16.1":1.04528,"16.2":1.63238,"16.3":0.18879},P:{"4":1.00127,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.04087,"8.2":0,"9.2":0.02043,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01022,"14.0":0,"15.0":0.01022,"16.0":0,"17.0":0.03065,"18.0":0.02043,"19.0":0.53129},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02244,"4.2-4.3":0.01683,"4.4":0,"4.4.3-4.4.4":0.33324},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04715,"5.5":0},J:{"7":0,"10":0.08499},N:{"10":0,"11":0},S:{"2.5":0.01821},R:{_:"0"},M:{"0":0.08499},Q:{"13.1":0.03643},O:{"0":0.45533},H:{"0":2.08639},L:{"0":70.216}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00399,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03988,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00798,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00399,"72":0.00798,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00399,"79":0,"80":0.00399,"81":0.01196,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00399,"89":0,"90":0,"91":0,"92":0.07178,"93":0,"94":0,"95":0.00798,"96":0,"97":0.00399,"98":0.00399,"99":0.00399,"100":0,"101":0.00399,"102":0.03988,"103":0.00399,"104":0.00399,"105":0.00399,"106":0.00798,"107":0.05583,"108":0.04387,"109":1.15253,"110":1.10866,"111":0.00798,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00399,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00399,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00798,"44":0,"45":0,"46":0,"47":0.00399,"48":0.00399,"49":0.03988,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00798,"56":0,"57":0,"58":0.00399,"59":0,"60":0.01196,"61":0,"62":0,"63":0.00798,"64":0.00399,"65":0.00399,"66":0,"67":0,"68":0,"69":0.00399,"70":0.01196,"71":0,"72":0,"73":0,"74":0.00798,"75":0.08774,"76":0.01196,"77":0,"78":0.00399,"79":0.05184,"80":0.01595,"81":0.01595,"83":0.00399,"84":0.00399,"85":0.01196,"86":0,"87":0.01595,"88":0,"89":0.00399,"90":0,"91":0.00399,"92":0.00399,"93":0.01196,"94":0.01196,"95":0.05583,"96":0.02393,"97":0.00399,"98":0.00399,"99":0.00399,"100":0.00399,"101":0.00399,"102":0.11565,"103":0.0319,"104":0.0997,"105":0.01595,"106":0.02393,"107":0.10768,"108":0.2991,"109":4.5543,"110":2.34494,"111":0,"112":0.00399,"113":0},F:{"9":0,"11":0,"12":0.00399,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01196,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00399,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01196,"62":0,"63":0.01595,"64":0,"65":0,"66":0.01994,"67":0.15952,"68":0,"69":0,"70":0.00399,"71":0,"72":0,"73":0,"74":0.00399,"75":0,"76":0,"77":0,"78":0.00399,"79":0,"80":0,"81":0,"82":0,"83":0.00399,"84":0,"85":0.00399,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00798,"94":0.21535,"95":0.39481,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00798,"15":0,"16":0,"17":0,"18":0.00798,"79":0,"80":0,"81":0,"83":0,"84":0.00399,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.02792,"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.00399,"106":0.00399,"107":0.01196,"108":0.02393,"109":0.77367,"110":0.91724},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00399,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00399,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01196,"14.1":0.00399,"15.1":0,"15.2-15.3":0,"15.4":0.00399,"15.5":0.00798,"15.6":0.01196,"16.0":0.00399,"16.1":0.00798,"16.2":0.01994,"16.3":0.01994,"16.4":0},G:{"8":0.00234,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00234,"6.0-6.1":0.02925,"7.0-7.1":0.06317,"8.1-8.4":0,"9.0-9.2":0.00468,"9.3":0.2562,"10.0-10.2":0,"10.3":0.29715,"11.0-11.2":0.0117,"11.3-11.4":0,"12.0-12.1":0.15325,"12.2-12.5":2.01571,"13.0-13.1":0.01989,"13.2":0.43286,"13.3":0.00585,"13.4-13.7":0.09125,"14.0-14.4":0.34395,"14.5-14.8":0.48316,"15.0-15.1":0.52528,"15.2-15.3":0.20824,"15.4":0.09476,"15.5":0.27375,"15.6":0.4972,"16.0":0.61536,"16.1":0.84231,"16.2":1.4448,"16.3":1.30091,"16.4":0.00468},P:{"4":0.13332,"20":0.1846,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0.02051,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01026,"12.0":0.01026,"13.0":0.01026,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01026,"18.0":0.01026,"19.0":0.29742},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0167,"4.2-4.3":0.01909,"4.4":0,"4.4.3-4.4.4":0.2398},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01196,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00601,_:"3.0-3.1"},J:{"7":0,"10":0.00601},O:{"0":0.47495},H:{"0":1.96366},L:{"0":71.43765},R:{_:"0"},M:{"0":0.07214},Q:{"13.1":0.00601}}; 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 d8c6b0c2ec852f..f7bdeb418ad166 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.00671,"53":0,"54":0,"55":0,"56":0.04694,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00335,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00335,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00335,"89":0,"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.00335,"103":0,"104":0,"105":0.00335,"106":0.00335,"107":0.00671,"108":0.20453,"109":0.11736,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00335,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00335,"39":0,"40":0,"41":0,"42":0,"43":0.00335,"44":0,"45":0,"46":0,"47":0,"48":0.00335,"49":0.01341,"50":0,"51":0,"52":0,"53":0.00335,"54":0,"55":0,"56":0.00335,"57":0,"58":0,"59":0,"60":0.00335,"61":0,"62":0,"63":0,"64":0,"65":0.00335,"66":0,"67":0,"68":0.00335,"69":0.00335,"70":0.00335,"71":0.00335,"72":0.06371,"73":0.00335,"74":0.00671,"75":0.00335,"76":0.00335,"77":0.00335,"78":0.00335,"79":0.02682,"80":0.00671,"81":0.00671,"83":0.01006,"84":0.01006,"85":0.01006,"86":0.01006,"87":0.01341,"88":0.01006,"89":0.00671,"90":0.00671,"91":0.02012,"92":0.02347,"93":0.00335,"94":0.01006,"95":0.00671,"96":0.01006,"97":0.01341,"98":0.00335,"99":0.00671,"100":0.01677,"101":0.01341,"102":0.00671,"103":0.02682,"104":0.01677,"105":0.02347,"106":0.03018,"107":0.0503,"108":3.37647,"109":3.53742,"110":0.00335,"111":0.00335,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00335,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00335,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00335,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00335,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03353,"94":0.08383,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00335,"79":0,"80":0,"81":0,"83":0,"84":0.00335,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00335,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00335,"105":0.00335,"106":0.00335,"107":0.01006,"108":0.4426,"109":0.46607},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00335,"14":0.01341,"15":0.00671,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01006,"10.1":0,"11.1":0,"12.1":0.00335,"13.1":0.01341,"14.1":0.04694,"15.1":0.00671,"15.2-15.3":0.00671,"15.4":0.02347,"15.5":0.06035,"15.6":0.33865,"16.0":0.01677,"16.1":0.23806,"16.2":0.25148,"16.3":0.01677},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00565,"8.1-8.4":0,"9.0-9.2":0.00283,"9.3":0.05372,"10.0-10.2":0.00565,"10.3":0.04806,"11.0-11.2":0.01131,"11.3-11.4":0.01131,"12.0-12.1":0.01696,"12.2-12.5":0.52302,"13.0-13.1":0.01414,"13.2":0.07916,"13.3":0.0311,"13.4-13.7":0.10178,"14.0-14.4":0.4269,"14.5-14.8":0.95275,"15.0-15.1":0.26575,"15.2-15.3":0.29402,"15.4":0.48627,"15.5":0.86511,"15.6":3.00808,"16.0":4.82028,"16.1":7.93862,"16.2":5.39136,"16.3":0.47496},P:{"4":0.13368,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.08227,"8.2":0,"9.2":0.01028,"10.1":0,"11.1-11.2":0.05142,"12.0":0.01028,"13.0":0.04113,"14.0":0.05142,"15.0":0.03085,"16.0":0.09255,"17.0":0.08227,"18.0":0.16453,"19.0":2.18003},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04677},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00724,"9":0.00362,"10":0.00362,"11":0.07605,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.113},Q:{"13.1":0},O:{"0":0.17282},H:{"0":0.20137},L:{"0":59.25204}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00681,"53":0,"54":0,"55":0.00341,"56":0.03748,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00341,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00341,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00341,"88":0,"89":0,"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.00341,"103":0.00341,"104":0,"105":0,"106":0,"107":0.00341,"108":0.00681,"109":0.19079,"110":0.12606,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00341,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00341,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00341,"49":0.01363,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00341,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00341,"66":0,"67":0,"68":0.00341,"69":0.00341,"70":0.00341,"71":0.00341,"72":0.01363,"73":0.00341,"74":0.00681,"75":0.00341,"76":0.00341,"77":0.00341,"78":0.00341,"79":0.02044,"80":0.00681,"81":0.00341,"83":0.00681,"84":0.01022,"85":0.00681,"86":0.01022,"87":0.01022,"88":0.00681,"89":0.01022,"90":0.00681,"91":0.02044,"92":0.02385,"93":0.00341,"94":0.00341,"95":0.00681,"96":0.01022,"97":0.01363,"98":0.00341,"99":0.00681,"100":0.01363,"101":0.01704,"102":0.01022,"103":0.02726,"104":0.01363,"105":0.02044,"106":0.01704,"107":0.03066,"108":0.09199,"109":4.38481,"110":2.73923,"111":0.00341,"112":0.00341,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00341,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00341,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00341,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00341,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00341,"94":0.06133,"95":0.05451,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00341,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00341,"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.00341,"106":0.00341,"107":0.00681,"108":0.02044,"109":0.36796,"110":0.48379},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00341,"14":0.01363,"15":0.00681,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00681,"10.1":0,"11.1":0,"12.1":0.00341,"13.1":0.01704,"14.1":0.04429,"15.1":0.00681,"15.2-15.3":0.00681,"15.4":0.02385,"15.5":0.05111,"15.6":0.21805,"16.0":0.01704,"16.1":0.18398,"16.2":0.31004,"16.3":0.16354,"16.4":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.00833,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06107,"10.0-10.2":0,"10.3":0.04441,"11.0-11.2":0.00833,"11.3-11.4":0.00833,"12.0-12.1":0.01388,"12.2-12.5":0.49688,"13.0-13.1":0.0111,"13.2":0.09438,"13.3":0.03053,"13.4-13.7":0.08605,"14.0-14.4":0.37197,"14.5-14.8":0.83832,"15.0-15.1":0.2304,"15.2-15.3":0.26926,"15.4":0.4025,"15.5":0.71063,"15.6":2.16519,"16.0":3.80852,"16.1":5.69612,"16.2":5.92929,"16.3":4.02226,"16.4":0.01388},P:{"4":0.12374,"20":0.76305,"5.0-5.4":0.01031,"6.2-6.4":0,"7.2-7.4":0.08249,"8.2":0,"9.2":0.01031,"10.1":0,"11.1-11.2":0.04125,"12.0":0.01031,"13.0":0.03093,"14.0":0.05156,"15.0":0.03093,"16.0":0.0928,"17.0":0.07218,"18.0":0.13405,"19.0":1.52611},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04704},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00741,"9":0,"10":0.0037,"11":0.07407,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.17142},H:{"0":0.20598},L:{"0":59.51315},R:{_:"0"},M:{"0":0.10549},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TJ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TJ.js index 85139508ecb55d..84e4175129ab10 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.00496,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00496,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00248,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00248,"101":0.00248,"102":0.00745,"103":0,"104":0,"105":0,"106":0.00248,"107":0.00496,"108":0.09928,"109":0.09928,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00248,"41":0,"42":0,"43":0,"44":0.01241,"45":0.00248,"46":0.00248,"47":0.00248,"48":0,"49":0.00248,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00248,"62":0,"63":0.00248,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00496,"70":0.00248,"71":0.00248,"72":0,"73":0,"74":0,"75":0.00993,"76":0,"77":0,"78":0,"79":0.00993,"80":0.00248,"81":0.00496,"83":0.00248,"84":0.03475,"85":0.00248,"86":0.00993,"87":0.04964,"88":0.00248,"89":0.00745,"90":0.01986,"91":0.00248,"92":0.00248,"93":0.00248,"94":1.00273,"95":0,"96":0.00993,"97":0.00248,"98":0.00745,"99":0.00248,"100":0.00496,"101":0.00248,"102":0.00993,"103":0.00496,"104":0.03723,"105":0.01737,"106":0.04468,"107":0.03475,"108":1.27327,"109":1.25837,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0.00248,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00248,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00248,"51":0,"52":0,"53":0,"54":0.00248,"55":0,"56":0,"57":0,"58":0.00248,"60":0.00248,"62":0,"63":0.03971,"64":0.00745,"65":0.00745,"66":0.01241,"67":0.00496,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01489,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01737,"80":0.00248,"81":0,"82":0,"83":0,"84":0,"85":0.00248,"86":0,"87":0,"88":0.00248,"89":0,"90":0,"91":0,"92":0,"93":0.0273,"94":0.21842,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00993},B:{"12":0,"13":0,"14":0.00248,"15":0.00496,"16":0.00248,"17":0,"18":0.00745,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00745,"86":0,"87":0,"88":0,"89":0,"90":0.00248,"91":0.00248,"92":0.00248,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00248,"101":0.00248,"102":0,"103":0,"104":0.00248,"105":0,"106":0,"107":0.00248,"108":0.12906,"109":0.10673},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00248,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.21593,"6.1":0,"7.1":0,"9.1":0.03971,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00248,"14.1":0.00993,"15.1":0.00248,"15.2-15.3":0.00248,"15.4":0.00248,"15.5":0.00248,"15.6":0.01986,"16.0":0.00248,"16.1":0.01241,"16.2":0.03723,"16.3":0.00745},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01564,"5.0-5.1":0.0012,"6.0-6.1":0,"7.0-7.1":0.00241,"8.1-8.4":0.00241,"9.0-9.2":0.00481,"9.3":0.10225,"10.0-10.2":0,"10.3":0.06977,"11.0-11.2":0.01564,"11.3-11.4":0.00962,"12.0-12.1":0.04331,"12.2-12.5":0.85288,"13.0-13.1":0.01444,"13.2":0.00962,"13.3":0.08541,"13.4-13.7":0.12029,"14.0-14.4":0.40058,"14.5-14.8":0.27788,"15.0-15.1":0.27668,"15.2-15.3":0.38494,"15.4":0.2466,"15.5":0.58703,"15.6":0.62793,"16.0":2.16649,"16.1":2.46602,"16.2":2.03657,"16.3":0.18766},P:{"4":0.69992,"5.0-5.4":0.09129,"6.2-6.4":0.08115,"7.2-7.4":0.3246,"8.2":0.01014,"9.2":0.15216,"10.1":0.02029,"11.1-11.2":0.15216,"12.0":0.03043,"13.0":0.10144,"14.0":0.1623,"15.0":0.24345,"16.0":0.34489,"17.0":0.11158,"18.0":0.40575,"19.0":1.94762},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00281,"4.2-4.3":0.00561,"4.4":0,"4.4.3-4.4.4":0.05895},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03227,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.03007},Q:{"13.1":0.00752},O:{"0":1.57126},H:{"0":2.07833},L:{"0":71.1465},S:{"2.5":0}}; +module.exports={C:{"35":0.00216,"52":0.01297,"72":0.03243,"78":0.06702,"80":0.14269,"96":0.00216,"99":0.00216,"101":0.05837,"102":0.02594,"105":0.00649,"108":0.03027,"109":0.47564,"110":0.25512,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 100 103 104 106 107 111 112 3.5 3.6"},D:{"27":0.00216,"32":0.00432,"35":0.00865,"38":0.00649,"39":0.00216,"41":0.00432,"44":0.0454,"47":0.00649,"49":0.0173,"56":0.00216,"59":0.00216,"62":0.01081,"63":0.00216,"65":0.00216,"67":0.00216,"68":0.00216,"69":0.0173,"70":0.00649,"71":0.0173,"74":0.00649,"75":0.02594,"76":0.00432,"78":0.00865,"79":0.05837,"80":0.00432,"81":0.01081,"83":0.00432,"84":0.03243,"85":0.01297,"86":0.29619,"87":0.2335,"88":0.00865,"89":0.02811,"90":0.01513,"91":0.00432,"92":0.01297,"93":0.01081,"94":0.00432,"95":0.01297,"96":0.04324,"97":0.01513,"98":0.01946,"99":0.0173,"100":0.02594,"101":0.00649,"102":0.03892,"103":0.02378,"104":0.01081,"105":0.03027,"106":0.1535,"107":0.07135,"108":0.14702,"109":7.98643,"110":2.95978,_:"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 33 34 36 37 40 42 43 45 46 48 50 51 52 53 54 55 57 58 60 61 64 66 72 73 77 111 112 113"},F:{"36":0.0173,"62":0.00649,"68":0.00432,"71":0.00216,"72":0.00432,"74":0.00432,"79":0.05621,"80":0.00432,"82":0.00649,"84":0.00216,"85":0.01297,"86":0.00865,"87":0.00216,"88":0.00649,"89":0.00432,"91":0.00216,"92":0.00432,"93":0.00865,"94":0.32862,"95":0.58374,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 69 70 73 75 76 77 78 81 83 90 9.5-9.6 10.6 11.1 11.5 11.6","10.0-10.1":0,"10.5":0.03459,"12.1":0.00432},B:{"13":0.01081,"14":0.00649,"16":0.01081,"18":0.0454,"84":0.00432,"89":0.00649,"92":0.0173,"98":0.00649,"100":0.00649,"103":0.00649,"106":0.00216,"107":0.00865,"108":0.01946,"109":0.65725,"110":0.42159,_:"12 15 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 99 101 102 104 105"},E:{"4":0,"13":0.00216,"14":0.02594,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.4","5.1":0.4497,"12.1":0.00432,"13.1":0.00649,"14.1":0.04324,"15.1":0.0173,"15.2-15.3":0.03459,"15.4":0.00432,"15.5":0.0173,"15.6":0.09513,"16.0":0.03459,"16.1":0.03459,"16.2":0.07999,"16.3":0.18161},G:{"8":0.00281,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01687,"6.0-6.1":0.00094,"7.0-7.1":0.01312,"8.1-8.4":0,"9.0-9.2":0.00094,"9.3":0.08436,"10.0-10.2":0,"10.3":0.02625,"11.0-11.2":0.0225,"11.3-11.4":0.01031,"12.0-12.1":0.0225,"12.2-12.5":0.53993,"13.0-13.1":0.01968,"13.2":0.00469,"13.3":0.05718,"13.4-13.7":0.08905,"14.0-14.4":0.31965,"14.5-14.8":0.25872,"15.0-15.1":0.15186,"15.2-15.3":0.25215,"15.4":0.17998,"15.5":0.33746,"15.6":0.55399,"16.0":1.32264,"16.1":1.37232,"16.2":1.13798,"16.3":1.73415,"16.4":0.01031},P:{"4":0.57071,"20":0.2344,"5.0-5.4":0.09172,"6.2-6.4":0.09172,"7.2-7.4":0.4688,"8.2":0.01016,"9.2":0.10191,"10.1":0.01019,"11.1-11.2":0.09172,"12.0":0.07134,"13.0":0.1223,"14.0":0.14268,"15.0":0.14268,"16.0":0.41784,"17.0":0.2344,"18.0":0.48918,"19.0":1.67138},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00748,"4.2-4.3":0.00641,"4.4":0,"4.4.3-4.4.4":0.03313},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11459,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.18339},H:{"0":1.86231},L:{"0":63.04335},R:{_:"0"},M:{"0":0.04702},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js index 1e6d217df5245b..8c01b3fa7cc391 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js @@ -1 +1 @@ -module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 3.5 3.6"},D:{"107":0.0906,"108":0.0906,"109":0.44474,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 110 111 112"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"108":0.0906,_:"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 109"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.4 15.5 15.6 16.0 16.3","15.1":43.20606,"15.2-15.3":27.33528,"16.1":0.88125,"16.2":0.44474},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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":2.02478,"15.2-15.3":4.22579,"15.4":0,"15.5":0.08748,"15.6":0.08748,"16.0":0.26372,"16.1":4.40202,"16.2":1.23236,"16.3":0.35247},P:{"4":1.00127,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.04087,"8.2":0,"9.2":0.02043,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.09117,"14.0":0,"15.0":0.01022,"16.0":0,"17.0":0.03065,"18.0":0.02043,"19.0":0.26339},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":4.60933}}; +module.exports={C:{"110":0.11064,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 111 112 3.5 3.6"},D:{"109":1.46045,"110":0.11064,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 111 112 113"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"90":0.22866,"92":0.22866,"109":0.11064,"110":1.12853,_:"12 13 14 15 16 17 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 106 107 108"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.5 15.6 16.0 16.4","15.1":22.40829,"15.2-15.3":27.8149,"15.4":1.46045,"16.1":0.11064,"16.2":1.12853,"16.3":0.67859},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":1.34775,"15.2-15.3":1.796,"15.4":1.45906,"15.5":0,"15.6":0,"16.0":1.01081,"16.1":3.25506,"16.2":1.01081,"16.3":5.16388,"16.4":0},P:{"4":0.1133,"20":0.78283,"5.0-5.4":0.09172,"6.2-6.4":0.09172,"7.2-7.4":0.0824,"8.2":0.01016,"9.2":0.0103,"10.1":0.01019,"11.1-11.2":0.0412,"12.0":0.07134,"13.0":0.34105,"14.0":0.0515,"15.0":0.0309,"16.0":0.0927,"17.0":0.0824,"18.0":0.1339,"19.0":0.45139},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":10.40678},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js index 792d790210752b..a5404d05978c6e 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.01504,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02005,"35":0,"36":0,"37":0.00501,"38":0,"39":0,"40":0.01002,"41":0.01002,"42":0,"43":0,"44":0.00501,"45":0,"46":0.00501,"47":0.00501,"48":0.0401,"49":0.00501,"50":0.00501,"51":0,"52":0.00501,"53":0,"54":0,"55":0,"56":0.01504,"57":0.00501,"58":0,"59":0,"60":0,"61":0.01002,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01002,"68":0.00501,"69":0,"70":0,"71":0,"72":0.01504,"73":0,"74":0,"75":0.00501,"76":0,"77":0,"78":0.05513,"79":0.25561,"80":0,"81":0,"82":0,"83":0.00501,"84":0.00501,"85":0,"86":0,"87":0,"88":0.03007,"89":0.00501,"90":0,"91":0,"92":0,"93":0,"94":0.00501,"95":0.08019,"96":0,"97":0,"98":0.01002,"99":0.07518,"100":0.00501,"101":0.00501,"102":0.03007,"103":0.00501,"104":0.01002,"105":0.03007,"106":0.05012,"107":0.23556,"108":2.4208,"109":1.35825,"110":0.05012,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01002,"32":0,"33":0,"34":0.01504,"35":0,"36":0,"37":0,"38":0.01002,"39":0,"40":0.00501,"41":0,"42":0,"43":0.01504,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01002,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.17041,"59":0,"60":0.00501,"61":0,"62":0.00501,"63":0.01504,"64":0.00501,"65":0,"66":0,"67":0.00501,"68":0.07017,"69":0.00501,"70":0,"71":0,"72":0.00501,"73":0,"74":0.02506,"75":0.01504,"76":0,"77":0,"78":0,"79":0.00501,"80":0.10525,"81":0.00501,"83":0,"84":0.04511,"85":0.01504,"86":0.02005,"87":0.03007,"88":0.00501,"89":0,"90":0.00501,"91":0.00501,"92":0.00501,"93":0.00501,"94":0.00501,"95":0,"96":0.01504,"97":0.01504,"98":0.02005,"99":0.02506,"100":0.00501,"101":0.01002,"102":0.02005,"103":0.11026,"104":0.0401,"105":0.05513,"106":0.04511,"107":1.51864,"108":5.79387,"109":6.67598,"110":0.00501,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00501,"29":0,"30":0,"31":0,"32":0.00501,"33":0,"34":0,"35":0,"36":0,"37":0.02506,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.01002,"55":0,"56":0.00501,"57":0,"58":0.00501,"60":0.01002,"62":0,"63":0.01002,"64":0.01002,"65":0.03508,"66":0.01504,"67":0.01504,"68":0,"69":0,"70":0,"71":0,"72":0.00501,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00501,"85":0,"86":0,"87":0,"88":0.00501,"89":0.00501,"90":0,"91":0,"92":0,"93":0.01504,"94":0.39094,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00501},B:{"12":0.04511,"13":0.01504,"14":0,"15":0,"16":0.01002,"17":0.00501,"18":0.02005,"79":0,"80":0,"81":0,"83":0,"84":0.00501,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01504,"91":0.01002,"92":0.01504,"93":0.02506,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01002,"100":0.02005,"101":0.02506,"102":0,"103":0.01002,"104":0.02005,"105":0.03508,"106":0.0401,"107":0.09022,"108":1.43844,"109":1.40336},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02506,"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.02506,"13.1":0.06014,"14.1":0.0852,"15.1":0.01504,"15.2-15.3":0.00501,"15.4":0.02005,"15.5":0.05513,"15.6":0.03508,"16.0":0.01002,"16.1":0.01002,"16.2":0.0852,"16.3":0.01504},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00089,"10.0-10.2":0,"10.3":0.11177,"11.0-11.2":0,"11.3-11.4":0.00177,"12.0-12.1":0.05766,"12.2-12.5":0.81347,"13.0-13.1":0.02839,"13.2":0.01331,"13.3":0.12863,"13.4-13.7":0.16678,"14.0-14.4":0.77799,"14.5-14.8":1.04767,"15.0-15.1":0.24839,"15.2-15.3":0.53137,"15.4":0.37879,"15.5":0.68662,"15.6":0.62186,"16.0":0.86492,"16.1":1.05299,"16.2":0.77976,"16.3":0.0621},P:{"4":0.23182,"5.0-5.4":0.02016,"6.2-6.4":0,"7.2-7.4":0.10079,"8.2":0,"9.2":0,"10.1":0.01008,"11.1-11.2":0.06048,"12.0":0.01008,"13.0":0.03024,"14.0":0.0504,"15.0":0.02016,"16.0":0.20158,"17.0":0.0504,"18.0":0.13103,"19.0":0.54428},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03005},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04511,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.19952},Q:{"13.1":0},O:{"0":1.00259},H:{"0":0.95863},L:{"0":61.90145}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.03517,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00502,"34":0,"35":0,"36":0,"37":0.00502,"38":0.00502,"39":0,"40":0.00502,"41":0.0201,"42":0,"43":0.00502,"44":0.00502,"45":0,"46":0.00502,"47":0.01005,"48":0.09043,"49":0,"50":0.00502,"51":0,"52":0,"53":0.00502,"54":0.00502,"55":0,"56":0.0201,"57":0.01005,"58":0,"59":0.00502,"60":0,"61":0.01005,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01005,"68":0.00502,"69":0,"70":0,"71":0,"72":0.01005,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05526,"79":0.17584,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.01507,"87":0,"88":0.02512,"89":0.01005,"90":0.00502,"91":0,"92":0,"93":0,"94":0,"95":0.05526,"96":0,"97":0.00502,"98":0.01005,"99":0.01507,"100":0.00502,"101":0.01005,"102":0.01507,"103":0.01507,"104":0,"105":0.01005,"106":0.05024,"107":0.04522,"108":0.2512,"109":1.95936,"110":1.25098,"111":0.22106,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01507,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.04019,"43":0.00502,"44":0,"45":0.02512,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00502,"55":0,"56":0,"57":0,"58":0.14067,"59":0.01005,"60":0.01507,"61":0,"62":0.00502,"63":0.01005,"64":0.01507,"65":0.03517,"66":0.00502,"67":0.01507,"68":0.03014,"69":0,"70":0,"71":0,"72":0.01005,"73":0.00502,"74":0.05526,"75":0.0201,"76":0,"77":0.00502,"78":0,"79":0.00502,"80":0.1256,"81":0.01005,"83":0.01507,"84":0.00502,"85":0.01507,"86":0.00502,"87":0.02512,"88":0.00502,"89":0.00502,"90":0.01005,"91":0.01005,"92":0.00502,"93":0.00502,"94":0,"95":0.01005,"96":0.02512,"97":0.0201,"98":0.01507,"99":0.02512,"100":0.01507,"101":0.01005,"102":0.0201,"103":0.11053,"104":0.04522,"105":0.03517,"106":0.03014,"107":0.06531,"108":0.31651,"109":9.90733,"110":3.66752,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.03014,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00502,"55":0,"56":0,"57":0,"58":0.01005,"60":0.01005,"62":0,"63":0.01005,"64":0.01005,"65":0,"66":0.01005,"67":0.17584,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.01005,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00502,"91":0.00502,"92":0.01005,"93":0.01005,"94":0.26627,"95":0.21101,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00502},B:{"12":0.01005,"13":0.00502,"14":0.00502,"15":0,"16":0.01005,"17":0.01005,"18":0.0201,"79":0,"80":0,"81":0,"83":0,"84":0.01005,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01507,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01507,"97":0,"98":0.01507,"99":0.01005,"100":0.01507,"101":0.01005,"102":0,"103":0.01507,"104":0.02512,"105":0.0201,"106":0.03517,"107":0.05526,"108":0.18086,"109":1.1505,"110":1.256},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00502,"13":0.00502,"14":0.0201,"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.00502,"12.1":0.0201,"13.1":0.04019,"14.1":0.06531,"15.1":0.07034,"15.2-15.3":0.01005,"15.4":0.04522,"15.5":0.06029,"15.6":0.01507,"16.0":0,"16.1":0.01507,"16.2":0.06531,"16.3":0.03517,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00085,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00507,"9.3":0.01099,"10.0-10.2":0.00507,"10.3":0.08457,"11.0-11.2":0.00085,"11.3-11.4":0.00423,"12.0-12.1":0.08203,"12.2-12.5":0.73914,"13.0-13.1":0.04059,"13.2":0.00592,"13.3":0.06512,"13.4-13.7":0.13193,"14.0-14.4":0.60637,"14.5-14.8":0.67149,"15.0-15.1":0.75944,"15.2-15.3":0.24102,"15.4":0.19451,"15.5":0.55309,"15.6":0.99285,"16.0":0.57592,"16.1":0.62666,"16.2":0.97002,"16.3":0.61736,"16.4":0.00254},P:{"4":0.14147,"20":0.09095,"5.0-5.4":0.01011,"6.2-6.4":0.01011,"7.2-7.4":0.12126,"8.2":0,"9.2":0.03032,"10.1":0,"11.1-11.2":0.09095,"12.0":0.01011,"13.0":0.02021,"14.0":0.07074,"15.0":0.02021,"16.0":0.18189,"17.0":0.05053,"18.0":0.09095,"19.0":0.37389},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01716,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04289},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05024,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.69166},H:{"0":0.9893},L:{"0":63.63792},R:{_:"0"},M:{"0":0.1443},Q:{"13.1":0.00498}}; 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 beded2a73caeaf..59950f9050fe25 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TM.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00715,"48":0,"49":0,"50":0,"51":0.00238,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00477,"68":1.15386,"69":0.00477,"70":0.00238,"71":0,"72":0.00954,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00477,"86":0.00477,"87":0.00477,"88":0,"89":0,"90":0,"91":0.04053,"92":0,"93":0,"94":0.00238,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00238,"104":0,"105":0,"106":0.00238,"107":0.00715,"108":0.13827,"109":0.05483,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00238,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00954,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00715,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00238,"65":0.00238,"66":0,"67":0,"68":0,"69":0.00238,"70":0,"71":0.00238,"72":0.00477,"73":0.00954,"74":0.00238,"75":0,"76":0,"77":0.00238,"78":0.08344,"79":0.04291,"80":0.00715,"81":0.00238,"83":0.00477,"84":0.00238,"85":0.00238,"86":0.00954,"87":0,"88":0.00715,"89":0.00238,"90":0,"91":0.00954,"92":0.00238,"93":0,"94":0.00477,"95":0,"96":0.01669,"97":0.00477,"98":0.00954,"99":0.00238,"100":0.03814,"101":0.00715,"102":0.00715,"103":0.03338,"104":0.01669,"105":0.01669,"106":0.02384,"107":0.08344,"108":1.44947,"109":1.4304,"110":0.00238,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00238,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00477,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00477,"77":0,"78":0,"79":0,"80":0.00238,"81":0,"82":0,"83":0,"84":0,"85":0.00238,"86":0.00238,"87":0,"88":0,"89":0.00715,"90":0.00477,"91":0,"92":0,"93":0.00954,"94":0.01907,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00238},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0.00477,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00477,"90":0.00715,"91":0,"92":0.00477,"93":0,"94":0,"95":0,"96":0.00238,"97":0,"98":0,"99":0.00715,"100":0.00238,"101":0,"102":0.00238,"103":0.00238,"104":0,"105":0.00238,"106":0.00477,"107":0,"108":0.02861,"109":0.02384},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.00477,"16.0":0.00238,"16.1":0.00477,"16.2":0.01669,"16.3":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.01572,"12.2-12.5":0.1933,"13.0-13.1":0,"13.2":0,"13.3":0.00805,"13.4-13.7":0.00767,"14.0-14.4":0.01572,"14.5-14.8":0.01151,"15.0-15.1":0.01994,"15.2-15.3":1.25068,"15.4":0.03145,"15.5":0.07479,"15.6":0.28419,"16.0":0.44182,"16.1":0.71796,"16.2":0.3237,"16.3":0.10662},P:{"4":0.05925,"5.0-5.4":0,"6.2-6.4":0.00987,"7.2-7.4":0.22711,"8.2":0,"9.2":0.01975,"10.1":0,"11.1-11.2":0.0395,"12.0":0,"13.0":0.24686,"14.0":0.05925,"15.0":0.0395,"16.0":0.23698,"17.0":0.08887,"18.0":0.04937,"19.0":0.62208},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00925,"4.4":0,"4.4.3-4.4.4":0.01028},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.09139},Q:{"13.1":0},O:{"0":0.21325},H:{"0":0.21631},L:{"0":87.44651}}; +module.exports={C:{"41":0.01098,"43":0.00732,"46":0.0183,"48":0.0183,"50":0.04757,"51":0.04025,"63":0.00732,"65":0.00732,"67":0.01464,"68":0.00732,"70":0.02195,"78":0.0183,"85":0.17197,"88":0.01464,"90":0.01464,"91":0.0183,"102":0.00732,"104":0.00732,"108":0.00732,"109":0.34761,"110":0.06586,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 44 45 47 49 52 53 54 55 56 57 58 59 60 61 62 64 66 69 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 89 92 93 94 95 96 97 98 99 100 101 103 105 106 107 111 112 3.5 3.6"},D:{"44":0.00732,"49":0.01464,"61":0.02927,"65":0.00732,"66":0.00732,"67":0.00732,"73":0.05123,"77":0.03293,"78":0.01098,"79":0.12807,"80":0.02195,"81":0.0183,"84":0.01464,"86":0.03293,"87":0.00732,"88":0.15368,"89":0.01464,"91":0.03293,"92":0.02195,"93":0.0183,"94":0.02927,"95":0.00732,"96":0.0183,"97":0.02927,"98":0.04757,"99":0.0183,"100":0.13904,"101":0.03659,"102":0.04757,"103":0.05123,"104":0.01098,"105":0.12441,"106":0.06586,"107":0.33663,"108":0.53056,"109":24.60678,"110":3.63339,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 50 51 52 53 54 55 56 57 58 59 60 62 63 64 68 69 70 71 72 74 75 76 83 85 90 111 112 113"},F:{"42":0.00732,"62":0.00732,"65":0.00732,"73":0.01464,"75":0.00732,"79":0.00732,"82":0.00732,"85":0.06586,"86":0.00732,"93":0.0183,"94":0.10977,"95":0.15734,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 66 67 68 69 70 71 72 74 76 77 78 80 81 83 84 87 88 89 90 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"84":0.01098,"88":0.00732,"89":0.04757,"90":0.00732,"92":0.03293,"99":0.04025,"108":0.00732,"109":0.05123,"110":0.09879,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 91 93 94 95 96 97 98 100 101 102 103 104 105 106 107"},E:{"4":0,"8":0.01098,"9":0.00732,_:"0 5 6 7 10 11 12 13 14 15 3.1 3.2 5.1 7.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.4","6.1":0.00732,"9.1":0.01098,"14.1":0.00732,"15.6":0.0183,"16.0":0.01464,"16.1":0.04025,"16.2":0.01098,"16.3":0.13538},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.00285,"12.2-12.5":0.13858,"13.0-13.1":0,"13.2":0,"13.3":0.00285,"13.4-13.7":0.00285,"14.0-14.4":0.01397,"14.5-14.8":0.01397,"15.0-15.1":0.01369,"15.2-15.3":0.53523,"15.4":0.03336,"15.5":0.01397,"15.6":0.06644,"16.0":1.01513,"16.1":0.35786,"16.2":0.20531,"16.3":0.3744,"16.4":0},P:{"4":0.11125,"20":0.21239,"5.0-5.4":0.01011,"6.2-6.4":0.03084,"7.2-7.4":0.23262,"8.2":0.01016,"9.2":0.0103,"10.1":0.01011,"11.1-11.2":0.03034,"12.0":0.07134,"13.0":0.12137,"14.0":0.04112,"15.0":0.03034,"16.0":0.13148,"17.0":0.09103,"18.0":0.06068,"19.0":0.5057},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00149,"4.4":0,"4.4.3-4.4.4":0.01119},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0805,_:"6 7 8 9 11 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.20294},H:{"0":0.07805},L:{"0":60.48154},R:{_:"0"},M:{"0":0.01903},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js index c8013adec28cb6..0bf4be3e2d46cb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04136,"53":0,"54":0,"55":0,"56":0.00414,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00414,"73":0,"74":0,"75":0.00414,"76":0,"77":0,"78":0.00414,"79":0,"80":0,"81":0,"82":0.00414,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00414,"100":0,"101":0,"102":0.01241,"103":0.00827,"104":0.01654,"105":0.01241,"106":0.00414,"107":0.00827,"108":0.46323,"109":0.20266,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00414,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00414,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0455,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00827,"57":0,"58":0,"59":0.00414,"60":0.00414,"61":0,"62":0,"63":0.00414,"64":0.00414,"65":0.00827,"66":0.00414,"67":0.00827,"68":0.00414,"69":0.00414,"70":0.00827,"71":0.00414,"72":0.00827,"73":0.00414,"74":0.00827,"75":0.00414,"76":0,"77":0.00414,"78":0.00827,"79":0.01654,"80":0.00827,"81":0.02068,"83":0.01241,"84":0.01241,"85":0.02068,"86":0.02895,"87":0.03722,"88":0.01241,"89":0.02068,"90":0.00827,"91":0.00827,"92":0.02068,"93":0.00414,"94":0.01241,"95":0.01654,"96":0.01654,"97":0.01654,"98":0.02482,"99":0.00827,"100":0.01654,"101":0.01654,"102":0.02895,"103":0.06618,"104":0.04136,"105":0.07858,"106":0.04963,"107":0.11167,"108":6.02202,"109":5.38507,"110":0.00414,"111":0.00827,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00414,"64":0,"65":0,"66":0.00414,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00414,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00414,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01241,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00414,"92":0,"93":0.75689,"94":0.74448,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00414},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00827,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00414,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00827,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00414,"104":0,"105":0.00414,"106":0.00414,"107":0.02068,"108":0.55422,"109":0.50873},E:{"4":0.00414,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02482,"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.00414,"13.1":0.00827,"14.1":0.01654,"15.1":0,"15.2-15.3":0,"15.4":0.00827,"15.5":0.00827,"15.6":0.0455,"16.0":0.01241,"16.1":0.02895,"16.2":0.02895,"16.3":0.00414},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00311,"6.0-6.1":0.00389,"7.0-7.1":0.06067,"8.1-8.4":0.00233,"9.0-9.2":0.00467,"9.3":0.04511,"10.0-10.2":0.00467,"10.3":0.05289,"11.0-11.2":0.00622,"11.3-11.4":0.00389,"12.0-12.1":0.01011,"12.2-12.5":0.59189,"13.0-13.1":0.07078,"13.2":0.00311,"13.3":0.06378,"13.4-13.7":0.07078,"14.0-14.4":0.392,"14.5-14.8":0.36245,"15.0-15.1":0.10967,"15.2-15.3":0.14933,"15.4":0.18745,"15.5":0.31034,"15.6":0.75912,"16.0":0.79645,"16.1":1.56179,"16.2":1.26157,"16.3":0.11511},P:{"4":0.39997,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.25639,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.05128,"12.0":0.01026,"13.0":0.04102,"14.0":0.04102,"15.0":0.03077,"16.0":0.05128,"17.0":0.16409,"18.0":0.12307,"19.0":1.14862},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01234,"4.2-4.3":0.02467,"4.4":0,"4.4.3-4.4.4":0.18503},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03831,"9":0.00958,"10":0.01437,"11":0.11973,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.09382},Q:{"13.1":0},O:{"0":0.21697},H:{"0":0.35531},L:{"0":72.17986}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0.00405,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00405,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04855,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00405,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00405,"76":0,"77":0,"78":0.00405,"79":0,"80":0,"81":0,"82":0,"83":0.00405,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00405,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00405,"100":0.00405,"101":0,"102":0.01618,"103":0.00405,"104":0.00809,"105":0.02023,"106":0.00809,"107":0.00405,"108":0.01214,"109":0.37628,"110":0.29131,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00405,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00405,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04451,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00809,"57":0,"58":0,"59":0,"60":0.00405,"61":0,"62":0,"63":0.00405,"64":0,"65":0.00809,"66":0,"67":0.00809,"68":0.00405,"69":0.00405,"70":0.01214,"71":0.00405,"72":0.00405,"73":0.00405,"74":0.00809,"75":0.00405,"76":0.00405,"77":0.00809,"78":0.00405,"79":0.01618,"80":0.00809,"81":0.02428,"83":0.01214,"84":0.00809,"85":0.01618,"86":0.01618,"87":0.04046,"88":0.01214,"89":0.02023,"90":0.01214,"91":0.00809,"92":0.01618,"93":0.00405,"94":0.00809,"95":0.01618,"96":0.01214,"97":0.01618,"98":0.01618,"99":0.01214,"100":0.01214,"101":0.02023,"102":0.02023,"103":0.0526,"104":0.02428,"105":0.04451,"106":0.04046,"107":0.06474,"108":0.2549,"109":7.1776,"110":3.45933,"111":0.00405,"112":0.00405,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00405,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0.00405,"67":0.01618,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01214,"80":0,"81":0,"82":0,"83":0.00405,"84":0,"85":0.01214,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.10924,"94":0.87798,"95":0.39246,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00809,"79":0,"80":0,"81":0,"83":0,"84":0.00405,"85":0,"86":0.00405,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00809,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00405,"104":0,"105":0.00405,"106":0,"107":0.01214,"108":0.02023,"109":0.42078,"110":0.57453},E:{"4":0.00405,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01618,"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.00405,"14.1":0.02023,"15.1":0.00405,"15.2-15.3":0.00405,"15.4":0.00809,"15.5":0.00809,"15.6":0.03641,"16.0":0.00809,"16.1":0.01618,"16.2":0.03237,"16.3":0.02023,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00325,"6.0-6.1":0.00649,"7.0-7.1":0.08197,"8.1-8.4":0.00325,"9.0-9.2":0.00081,"9.3":0.056,"10.0-10.2":0.00487,"10.3":0.03896,"11.0-11.2":0.00487,"11.3-11.4":0.00974,"12.0-12.1":0.01461,"12.2-12.5":0.47398,"13.0-13.1":0.00406,"13.2":0.00243,"13.3":0.0138,"13.4-13.7":0.08116,"14.0-14.4":0.30517,"14.5-14.8":0.37334,"15.0-15.1":0.10307,"15.2-15.3":0.13067,"15.4":0.15664,"15.5":0.24917,"15.6":0.68176,"16.0":0.73532,"16.1":1.31157,"16.2":1.39273,"16.3":0.91631,"16.4":0.00243},P:{"4":0.25974,"20":0.37403,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.3013,"8.2":0,"9.2":0.01039,"10.1":0,"11.1-11.2":0.04156,"12.0":0.01039,"13.0":0.03117,"14.0":0.03117,"15.0":0.02078,"16.0":0.04156,"17.0":0.09351,"18.0":0.08312,"19.0":0.77923},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01453,"4.2-4.3":0.02179,"4.4":0,"4.4.3-4.4.4":0.13437},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03709,"9":0.00927,"10":0.01391,"11":0.16226,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00595,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.14885},H:{"0":0.2593},L:{"0":73.34077},R:{_:"0"},M:{"0":0.1429},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js index d3e721b3eda146..93ff21af3aade4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00534,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.01069,"87":0,"88":0,"89":0,"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.01069,"108":0.49699,"109":0.24048,"110":0.04275,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.01069,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00534,"64":0,"65":0.00534,"66":0,"67":0.00534,"68":0,"69":0,"70":0.09619,"71":0,"72":0,"73":0,"74":0,"75":0.06947,"76":0.00534,"77":0,"78":0,"79":0,"80":0.00534,"81":0.01069,"83":0,"84":0.01603,"85":0,"86":0,"87":0.06413,"88":0,"89":0,"90":0,"91":0.00534,"92":0.00534,"93":0.01603,"94":0,"95":0.00534,"96":0.00534,"97":0,"98":0.00534,"99":0.00534,"100":0.03206,"101":0.00534,"102":0.01603,"103":0.37408,"104":0.28858,"105":0.02138,"106":0.01603,"107":0.08016,"108":11.08346,"109":7.50832,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00534,"94":0.06413,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00534,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.04275,"91":0,"92":0.09085,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00534,"103":0.00534,"104":0.00534,"105":0.02672,"106":0.00534,"107":0.05878,"108":1.83834,"109":3.19571},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00534,"13":0,"14":0.03741,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00534,"10.1":0,"11.1":0.00534,"12.1":0.00534,"13.1":0.01603,"14.1":0.05878,"15.1":0.00534,"15.2-15.3":0.00534,"15.4":0.20307,"15.5":0.01069,"15.6":0.07482,"16.0":0.01069,"16.1":0.03206,"16.2":0.0481,"16.3":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.29316,"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.5831,"13.0-13.1":0.05638,"13.2":0,"13.3":0.08698,"13.4-13.7":0.08376,"14.0-14.4":0.39786,"14.5-14.8":1.30795,"15.0-15.1":0.26417,"15.2-15.3":0.20135,"15.4":1.21775,"15.5":1.61722,"15.6":2.39361,"16.0":1.7493,"16.1":2.20032,"16.2":2.59013,"16.3":0.32054},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09206,"8.2":0,"9.2":0.02046,"10.1":0.04092,"11.1-11.2":0.06137,"12.0":0,"13.0":0.01023,"14.0":0.06137,"15.0":0.01023,"16.0":0.06137,"17.0":0.02046,"18.0":0.11252,"19.0":0.85924},I:{"0":0,"3":0,"4":0,"2.1":0,"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.01603,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.05587},Q:{"13.1":0},O:{"0":0.21418},H:{"0":0.00441},L:{"0":55.49264}}; +module.exports={C:{"47":0.0057,"61":0.0114,"88":0.22238,"91":0.0057,"92":0.0057,"102":0.0057,"104":0.0057,"107":0.01711,"108":0.0114,"109":1.06057,"110":1.54524,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 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 93 94 95 96 97 98 99 100 101 103 105 106 111 112 3.5 3.6"},D:{"58":0.0114,"65":0.02281,"67":0.01711,"70":0.60441,"74":0.0057,"75":0.05702,"81":0.0114,"84":0.0057,"88":0.10264,"91":0.0114,"92":0.0114,"93":0.07413,"96":0.0114,"97":0.0057,"98":0.03991,"99":0.01711,"100":0.0057,"101":0.07413,"102":0.15966,"103":0.35352,"104":0.11404,"105":0.06842,"106":0.05132,"107":0.09693,"108":0.68994,"109":21.25706,"110":8.70695,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 66 68 69 71 72 73 76 77 78 79 80 83 85 86 87 89 90 94 95 111 112 113"},F:{"80":0.01711,"90":0.0114,"94":0.2908,"95":0.72986,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 91 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0114,"15":0.0114,"91":0.0057,"92":0.0057,"96":0.0057,"102":0.0114,"104":0.0114,"105":0.02851,"106":0.31361,"107":0.09123,"108":0.34782,"109":9.53374,"110":5.91868,_:"13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 93 94 95 97 98 99 100 101 103"},E:{"4":0,"13":0.0114,"14":0.02851,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1 12.1 15.1 15.2-15.3 15.4 16.4","9.1":0.0057,"11.1":0.05132,"13.1":0.0114,"14.1":0.01711,"15.5":0.07983,"15.6":0.46756,"16.0":0.0114,"16.1":0.02851,"16.2":0.07983,"16.3":0.06842},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00684,"9.0-9.2":0,"9.3":0.04221,"10.0-10.2":0,"10.3":0.00342,"11.0-11.2":0,"11.3-11.4":0.00684,"12.0-12.1":0,"12.2-12.5":0.90347,"13.0-13.1":0.00342,"13.2":0,"13.3":0.11293,"13.4-13.7":0.13005,"14.0-14.4":0.18366,"14.5-14.8":0.18822,"15.0-15.1":0.09582,"15.2-15.3":0.61486,"15.4":0.79054,"15.5":0.40268,"15.6":1.79325,"16.0":0.72323,"16.1":0.96393,"16.2":1.20007,"16.3":1.4727,"16.4":0},P:{"4":0.1133,"20":0.28781,"5.0-5.4":0.09172,"6.2-6.4":0.03084,"7.2-7.4":0.0514,"8.2":0.01016,"9.2":0.0103,"10.1":0.02056,"11.1-11.2":0.0412,"12.0":0.07134,"13.0":0.34105,"14.0":0.04112,"15.0":0.0514,"16.0":0.0514,"17.0":0.03084,"18.0":0.1339,"19.0":0.48312},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03164,"4.4":0,"4.4.3-4.4.4":0.00703},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04562,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.1375},H:{"0":0.02848},L:{"0":34.99439},R:{_:"0"},M:{"0":0.07305},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js index 8d905095fb0ea3..a4631ecdce632a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00265,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00265,"79":0.00265,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00265,"103":0,"104":0,"105":0,"106":0.00265,"107":0.00265,"108":0.10059,"109":0.06088,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00265,"23":0,"24":0,"25":0,"26":0.00529,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01324,"35":0,"36":0,"37":0,"38":0.01324,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00794,"48":0,"49":0.04235,"50":0,"51":0,"52":0,"53":0.00265,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00265,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00265,"66":0,"67":0,"68":0.00794,"69":0.00265,"70":0.00265,"71":0.00529,"72":0,"73":0.00529,"74":0.00265,"75":0.00529,"76":0.00265,"77":0,"78":0.00265,"79":0.045,"80":0.00794,"81":0.00529,"83":0.01588,"84":0.01059,"85":0.02118,"86":0.01324,"87":0.01588,"88":0.00529,"89":0.00265,"90":0.00265,"91":0.00529,"92":0.02647,"93":0.00265,"94":0.00265,"95":0.00529,"96":0.01059,"97":0.00794,"98":0.00529,"99":0.00529,"100":0.00794,"101":0.00529,"102":0.00794,"103":0.02118,"104":0.01324,"105":0.01324,"106":0.01853,"107":0.045,"108":2.37965,"109":2.21025,"110":0,"111":0.00265,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00794,"29":0,"30":0,"31":0,"32":0.00265,"33":0,"34":0,"35":0,"36":0.00265,"37":0,"38":0,"39":0,"40":0.01324,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02647,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00265,"64":0.00265,"65":0.00265,"66":0.00529,"67":0.01059,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00794,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00265,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00265,"93":0.1747,"94":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,"18":0.00529,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00265,"88":0,"89":0,"90":0,"91":0,"92":0.00265,"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.00794,"108":0.20382,"109":0.19323},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00529,"15":0.00265,_:"0","3.1":0,"3.2":0,"5.1":0.00265,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00265,"13.1":0.00794,"14.1":0.01324,"15.1":0.00265,"15.2-15.3":0.00265,"15.4":0.00529,"15.5":0.01059,"15.6":0.04765,"16.0":0.00529,"16.1":0.02912,"16.2":0.03706,"16.3":0.00265},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00135,"7.0-7.1":0.02433,"8.1-8.4":0.00135,"9.0-9.2":0.0027,"9.3":0.05542,"10.0-10.2":0.00811,"10.3":0.10408,"11.0-11.2":0.01081,"11.3-11.4":0.01081,"12.0-12.1":0.02027,"12.2-12.5":1.23271,"13.0-13.1":0.01487,"13.2":0.00541,"13.3":0.04055,"13.4-13.7":0.12165,"14.0-14.4":0.26087,"14.5-14.8":0.62852,"15.0-15.1":0.10137,"15.2-15.3":0.15139,"15.4":0.18788,"15.5":0.369,"15.6":1.16648,"16.0":1.18,"16.1":3.10205,"16.2":2.30052,"16.3":0.21897},P:{"4":0.33593,"5.0-5.4":0.01018,"6.2-6.4":0,"7.2-7.4":0.20359,"8.2":0,"9.2":0.02036,"10.1":0.01018,"11.1-11.2":0.06108,"12.0":0.02036,"13.0":0.1018,"14.0":0.03054,"15.0":0.03054,"16.0":0.1018,"17.0":0.22395,"18.0":0.16287,"19.0":2.58562},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00231,"4.2-4.3":0.00519,"4.4":0,"4.4.3-4.4.4":0.03574},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07676,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},H:{"0":1.00243},L:{"0":74.57159},S:{"2.5":0},R:{_:"0"},M:{"0":0.10294},Q:{"13.1":0},O:{"0":0.16912}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00255,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00255,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00255,"103":0,"104":0,"105":0,"106":0.00255,"107":0.00255,"108":0.00509,"109":0.08653,"110":0.06108,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00255,"23":0,"24":0,"25":0,"26":0.00255,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00764,"35":0,"36":0,"37":0,"38":0.00764,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01018,"48":0,"49":0.01273,"50":0,"51":0,"52":0,"53":0.00255,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01527,"61":0,"62":0,"63":0,"64":0,"65":0.00255,"66":0,"67":0,"68":0.00509,"69":0.00255,"70":0.00255,"71":0.00255,"72":0,"73":0.00255,"74":0,"75":0.00255,"76":0,"77":0,"78":0.00255,"79":0.03818,"80":0.00764,"81":0.00509,"83":0.01273,"84":0.01018,"85":0.01527,"86":0.01273,"87":0.01273,"88":0.00509,"89":0.00255,"90":0.00255,"91":0.00509,"92":0.02036,"93":0.00255,"94":0.00255,"95":0.00509,"96":0.00764,"97":0.00509,"98":0.00255,"99":0.00509,"100":0.01018,"101":0.00255,"102":0.00509,"103":0.01782,"104":0.00764,"105":0.01018,"106":0.01273,"107":0.02291,"108":0.0789,"109":2.66971,"110":1.39975,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00509,"29":0,"30":0,"31":0,"32":0.00255,"33":0,"34":0,"35":0,"36":0.00255,"37":0,"38":0,"39":0,"40":0.00764,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02036,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00255,"67":0.05599,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00255,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00255,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.028,"94":0.25959,"95":0.15016,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00509,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00255,"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.00255,"107":0.00509,"108":0.00764,"109":0.16034,"110":0.23923},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00509,"15":0.00255,_:"0","3.1":0,"3.2":0,"5.1":0.00255,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00255,"13.1":0.00764,"14.1":0.01273,"15.1":0.00255,"15.2-15.3":0.00255,"15.4":0.00509,"15.5":0.00764,"15.6":0.03818,"16.0":0.00509,"16.1":0.02036,"16.2":0.03818,"16.3":0.03054,"16.4":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.01864,"8.1-8.4":0,"9.0-9.2":0.00373,"9.3":0.03541,"10.0-10.2":0.00559,"10.3":0.1081,"11.0-11.2":0.00932,"11.3-11.4":0.01118,"12.0-12.1":0.0205,"12.2-12.5":1.43696,"13.0-13.1":0.01677,"13.2":0.00559,"13.3":0.04659,"13.4-13.7":0.16028,"14.0-14.4":0.32802,"14.5-14.8":0.75109,"15.0-15.1":0.11369,"15.2-15.3":0.17706,"15.4":0.2162,"15.5":0.42307,"15.6":1.17789,"16.0":1.42577,"16.1":3.38085,"16.2":3.5635,"16.3":2.33715,"16.4":0.00932},P:{"4":0.26302,"20":0.97115,"5.0-5.4":0.02023,"6.2-6.4":0,"7.2-7.4":0.16186,"8.2":0.01012,"9.2":0.03035,"10.1":0.01012,"11.1-11.2":0.0607,"12.0":0.02023,"13.0":0.08093,"14.0":0.03035,"15.0":0.02023,"16.0":0.07081,"17.0":0.19221,"18.0":0.11128,"19.0":1.80067},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00132,"4.2-4.3":0.00659,"4.4":0,"4.4.3-4.4.4":0.03228},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06872,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.15656},H:{"0":0.86107},L:{"0":70.94851},R:{_:"0"},M:{"0":0.11183},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TT.js index 72839f187d0566..53d93e67c5013f 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,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00404,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00404,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00807,"88":0.00404,"89":0,"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.00807,"103":0,"104":0,"105":0.00404,"106":0.00404,"107":0.00807,"108":0.36324,"109":0.15337,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00404,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00807,"48":0,"49":0.00807,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00807,"71":0,"72":0,"73":0,"74":0.02422,"75":0.00807,"76":0.00807,"77":0.00807,"78":0,"79":0.04036,"80":0,"81":0.01211,"83":0.00807,"84":0.00404,"85":0,"86":0.00404,"87":0.02422,"88":0.00404,"89":0.00404,"90":0,"91":0.01211,"92":0.00404,"93":0.02825,"94":0.00404,"95":0.00807,"96":0.00807,"97":0.00404,"98":0.00404,"99":0.02422,"100":0.00807,"101":0.01211,"102":0.01614,"103":0.20584,"104":0.01614,"105":0.03632,"106":0.0444,"107":0.12108,"108":5.22258,"109":4.09654,"110":0.00807,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01211,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00807,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00807,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.12108,"94":0.21794,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00807,"16":0,"17":0,"18":0.00807,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00404,"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.00404,"107":0.06054,"108":1.08972,"109":1.07761},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00404,"14":0.00807,"15":0.00807,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00404,"12.1":0.00807,"13.1":0.06458,"14.1":0.07265,"15.1":0.00404,"15.2-15.3":0.00404,"15.4":0.01614,"15.5":0.05247,"15.6":0.29059,"16.0":0.08476,"16.1":0.10897,"16.2":0.23409,"16.3":0.01211},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01093,"6.0-6.1":0,"7.0-7.1":0.06997,"8.1-8.4":0,"9.0-9.2":0.00656,"9.3":0.14869,"10.0-10.2":0,"10.3":0.10933,"11.0-11.2":0.00875,"11.3-11.4":0.00219,"12.0-12.1":0.01968,"12.2-12.5":0.41327,"13.0-13.1":0,"13.2":0.00437,"13.3":0.01093,"13.4-13.7":0.06341,"14.0-14.4":0.24272,"14.5-14.8":0.31706,"15.0-15.1":0.10933,"15.2-15.3":0.15525,"15.4":0.40234,"15.5":0.50074,"15.6":2.45777,"16.0":3.41332,"16.1":5.79456,"16.2":5.22822,"16.3":0.36517},P:{"4":0.3182,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.24395,"8.2":0,"9.2":0.01061,"10.1":0,"11.1-11.2":0.03182,"12.0":0.01061,"13.0":0.02121,"14.0":0.05303,"15.0":0.02121,"16.0":0.05303,"17.0":0.13789,"18.0":0.1591,"19.0":4.25326},I:{"0":0,"3":0,"4":0.04288,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02859,"4.2-4.3":0.20012,"4.4":0,"4.4.3-4.4.4":0.68614},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.02422,"11":0.01211,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.16103},Q:{"13.1":0},O:{"0":0.05368},H:{"0":0.23715},L:{"0":56.6429}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00429,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00429,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00859,"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,"100":0,"101":0,"102":0.00859,"103":0,"104":0,"105":0,"106":0,"107":0.00429,"108":0.00859,"109":0.39075,"110":0.2147,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00859,"48":0,"49":0.00859,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00429,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00429,"66":0,"67":0.00429,"68":0.00429,"69":0,"70":0.00859,"71":0,"72":0,"73":0,"74":0.02147,"75":0.01718,"76":0.00859,"77":0.00429,"78":0.00429,"79":0.09017,"80":0.00429,"81":0.03865,"83":0.00859,"84":0.00429,"85":0.00429,"86":0.00429,"87":0.01718,"88":0.00429,"89":0.00429,"90":0.00429,"91":0.00859,"92":0.00859,"93":0.03006,"94":0.00429,"95":0.01718,"96":0.00429,"97":0.00429,"98":0.01718,"99":0.03435,"100":0.00859,"101":0.01288,"102":0.01288,"103":0.24476,"104":0.01288,"105":0.01718,"106":0.04294,"107":0.03865,"108":0.45087,"109":6.06313,"110":3.99342,"111":0.00429,"112":0.00429,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01288,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00859,"64":0,"65":0,"66":0,"67":0.00859,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01718,"94":0.25335,"95":0.12453,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00429,"16":0,"17":0,"18":0.00429,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00429,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00429,"107":0.11594,"108":0.02576,"109":1.21091,"110":1.24955},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00859,"15":0.00859,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00859,"10.1":0,"11.1":0,"12.1":0.00429,"13.1":0.0687,"14.1":0.06012,"15.1":0.00429,"15.2-15.3":0.00429,"15.4":0.02147,"15.5":0.03435,"15.6":0.24476,"16.0":0.03865,"16.1":0.09876,"16.2":0.32205,"16.3":0.15888,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0117,"6.0-6.1":0,"7.0-7.1":0.06241,"8.1-8.4":0,"9.0-9.2":0.00585,"9.3":0.15018,"10.0-10.2":0,"10.3":0.11703,"11.0-11.2":0.0078,"11.3-11.4":0.00195,"12.0-12.1":0.0156,"12.2-12.5":0.44079,"13.0-13.1":0.0039,"13.2":0,"13.3":0.0156,"13.4-13.7":0.07022,"14.0-14.4":0.16188,"14.5-14.8":0.34327,"15.0-15.1":0.04876,"15.2-15.3":0.13263,"15.4":0.29451,"15.5":0.36863,"15.6":1.67346,"16.0":2.36391,"16.1":3.69019,"16.2":4.79412,"16.3":2.84956,"16.4":0.0117},P:{"4":0.3512,"20":1.77728,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.30863,"8.2":0,"9.2":0.01064,"10.1":0,"11.1-11.2":0.05321,"12.0":0,"13.0":0.04257,"14.0":0.02128,"15.0":0.01064,"16.0":0.04257,"17.0":0.12771,"18.0":0.11707,"19.0":2.6606},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05336,"4.2-4.3":0.33348,"4.4":0,"4.4.3-4.4.4":0.65361},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00859,"11":0.01288,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.03994},H:{"0":0.2485},L:{"0":56.50369},R:{_:"0"},M:{"0":0.16547},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TV.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TV.js index 6653b1b8cbc99b..bccd8c9f69ea58 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.35684,"109":0.12662,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.12662,"99":0,"100":0,"101":0,"102":0,"103":0.02686,"104":0,"105":0,"106":0.02686,"107":0,"108":4.33965,"109":1.86478,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02686,"64":0,"65":0.07674,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.02686,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"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.02686,"107":0,"108":1.27772,"109":0.5602},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.18034,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.12662,"15.6":0.18034,"16.0":0,"16.1":0.02686,"16.2":0,"16.3":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.37658,"14.5-14.8":0.18922,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.56579,"15.6":0.37658,"16.0":0.37658,"16.1":5.83786,"16.2":10.6406,"16.3":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.07168,"19.0":1.22872},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.99378},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0.25673},L:{"0":68.73861}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01755,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01755,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.28329,"110":0,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.03259,"104":0,"105":0,"106":0.05014,"107":0,"108":0.06769,"109":2.59224,"110":1.11311,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.01755,"108":0.01755,"109":0.08273,"110":0.34847},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03259,"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.01755,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.05014,"16.0":0.03259,"16.1":0.05014,"16.2":0,"16.3":0,"16.4":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.15672,"12.0-12.1":0,"12.2-12.5":0.15672,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.07879,"14.5-14.8":0.2355,"15.0-15.1":0,"15.2-15.3":0.07879,"15.4":0,"15.5":1.02166,"15.6":0.54979,"16.0":0,"16.1":0.54979,"16.2":5.65722,"16.3":0.07879,"16.4":0},P:{"4":0,"20":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.07039,"19.0":2.60461},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.06384},L:{"0":83.04303},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js index 93856cbe058f23..e5a8763c8ec8e4 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.01573,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00524,"46":0.00524,"47":0.00524,"48":0.01049,"49":0.01049,"50":0.00524,"51":0.01049,"52":0.00524,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00524,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00524,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00524,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01049,"96":0,"97":0,"98":0,"99":0.00524,"100":0,"101":0,"102":0.00524,"103":0.00524,"104":0.00524,"105":0.00524,"106":0.01049,"107":0.01049,"108":0.43525,"109":0.22025,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00524,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00524,"31":0,"32":0,"33":0,"34":0.01573,"35":0,"36":0,"37":0,"38":0.06293,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07866,"50":0.00524,"51":0.00524,"52":0.00524,"53":0.05768,"54":0.00524,"55":0.01049,"56":0.02098,"57":0,"58":0.00524,"59":0,"60":0,"61":0.02622,"62":0.00524,"63":0.00524,"64":0.00524,"65":0.00524,"66":0.00524,"67":0.01049,"68":0.00524,"69":0.00524,"70":0.00524,"71":0.01049,"72":0.00524,"73":0.00524,"74":0.01049,"75":0.00524,"76":0.00524,"77":0.00524,"78":0.00524,"79":0.3094,"80":0.01049,"81":0.02622,"83":0.02098,"84":0.01049,"85":0.01049,"86":0.02098,"87":0.05768,"88":0.00524,"89":0.02622,"90":0.01049,"91":0.01573,"92":0.02098,"93":0.00524,"94":0.01049,"95":0.01049,"96":0.02098,"97":0.04195,"98":0.02098,"99":0.02098,"100":0.02098,"101":0.02098,"102":0.03146,"103":0.10488,"104":0.03671,"105":0.06817,"106":0.07866,"107":0.16781,"108":8.85187,"109":7.54612,"110":0.01049,"111":0.00524,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01573,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01049,"37":0.00524,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.05244,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00524,"94":0.06293,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00524,"18":0.01049,"79":0,"80":0,"81":0,"83":0,"84":0.00524,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00524,"102":0,"103":0.00524,"104":0.00524,"105":0.00524,"106":0.00524,"107":0.02622,"108":1.1799,"109":1.01734},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.04195,"14":0.1311,"15":0.02098,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00524,"12.1":0.02622,"13.1":0.09439,"14.1":0.35659,"15.1":0.04195,"15.2-15.3":0.03671,"15.4":0.14683,"15.5":0.3094,"15.6":1.43161,"16.0":0.0472,"16.1":0.24122,"16.2":0.51391,"16.3":0.02622},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04534,"6.0-6.1":0.01889,"7.0-7.1":0.17001,"8.1-8.4":0.06801,"9.0-9.2":0.02645,"9.3":0.35136,"10.0-10.2":0.02267,"10.3":0.37781,"11.0-11.2":0.04156,"11.3-11.4":0.04912,"12.0-12.1":0.09823,"12.2-12.5":1.07676,"13.0-13.1":0.06801,"13.2":0.03022,"13.3":0.1209,"13.4-13.7":0.26069,"14.0-14.4":1.5528,"14.5-14.8":2.2782,"15.0-15.1":0.84252,"15.2-15.3":0.91052,"15.4":1.26944,"15.5":1.91928,"15.6":5.53115,"16.0":3.82345,"16.1":8.81055,"16.2":5.4027,"16.3":0.32492},P:{"4":0.67075,"5.0-5.4":0.04398,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.011,"9.2":0.03299,"10.1":0.011,"11.1-11.2":0.04398,"12.0":0.02199,"13.0":0.10996,"14.0":0.05498,"15.0":0.05498,"16.0":0.12095,"17.0":0.15394,"18.0":0.25291,"19.0":2.54005},I:{"0":0,"3":0,"4":0.00833,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00417,"4.2-4.3":0.02083,"4.4":0,"4.4.3-4.4.4":0.09582},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08915,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.4734},S:{"2.5":0},R:{_:"0"},M:{"0":0.10463},Q:{"13.1":0.00951},O:{"0":0.10939},H:{"0":0.1756}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01576,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00525,"46":0.0105,"47":0.0105,"48":0.00525,"49":0.00525,"50":0.0105,"51":0.00525,"52":0.0105,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"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,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00525,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00525,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00525,"100":0,"101":0,"102":0.00525,"103":0,"104":0.00525,"105":0.00525,"106":0.00525,"107":0.00525,"108":0.02101,"109":0.33088,"110":0.23634,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00525,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00525,"31":0,"32":0,"33":0,"34":0.01576,"35":0,"36":0,"37":0,"38":0.06302,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07353,"50":0.00525,"51":0.00525,"52":0.00525,"53":0.05777,"54":0.00525,"55":0.0105,"56":0.02101,"57":0,"58":0,"59":0,"60":0,"61":0.02626,"62":0.00525,"63":0.00525,"64":0.00525,"65":0.0105,"66":0.00525,"67":0.01576,"68":0.00525,"69":0.00525,"70":0.00525,"71":0.0105,"72":0.00525,"73":0.00525,"74":0.01576,"75":0.00525,"76":0.00525,"77":0.00525,"78":0.00525,"79":0.31512,"80":0.0105,"81":0.02626,"83":0.02101,"84":0.0105,"85":0.0105,"86":0.02101,"87":0.06302,"88":0.00525,"89":0.02626,"90":0.00525,"91":0.0105,"92":0.02101,"93":0.0105,"94":0.00525,"95":0.0105,"96":0.02101,"97":0.03676,"98":0.01576,"99":0.01576,"100":0.02101,"101":0.02101,"102":0.02626,"103":0.09454,"104":0.03151,"105":0.04202,"106":0.05777,"107":0.09454,"108":0.3834,"109":10.25716,"110":5.89274,"111":0.00525,"112":0.00525,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01576,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0105,"37":0.00525,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.05252,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02626,"95":0.03676,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00525,"18":0.0105,"79":0,"80":0,"81":0,"83":0,"84":0.00525,"85":0.00525,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00525,"102":0,"103":0.00525,"104":0.00525,"105":0.00525,"106":0.00525,"107":0.01576,"108":0.04202,"109":0.9191,"110":1.30775},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03676,"14":0.12605,"15":0.02101,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00525,"10.1":0.00525,"11.1":0.00525,"12.1":0.02626,"13.1":0.08928,"14.1":0.34138,"15.1":0.03676,"15.2-15.3":0.03151,"15.4":0.13655,"15.5":0.26785,"15.6":1.0504,"16.0":0.03676,"16.1":0.20483,"16.2":0.7983,"16.3":0.32562,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04603,"6.0-6.1":0.02301,"7.0-7.1":0.18027,"8.1-8.4":0.06904,"9.0-9.2":0.02301,"9.3":0.34519,"10.0-10.2":0.02685,"10.3":0.37587,"11.0-11.2":0.04603,"11.3-11.4":0.04603,"12.0-12.1":0.09589,"12.2-12.5":1.08927,"13.0-13.1":0.0652,"13.2":0.03068,"13.3":0.10739,"13.4-13.7":0.26081,"14.0-14.4":1.43446,"14.5-14.8":2.121,"15.0-15.1":0.80928,"15.2-15.3":0.82462,"15.4":1.15831,"15.5":1.6991,"15.6":4.08092,"16.0":3.41355,"16.1":7.11859,"16.2":7.06873,"16.3":3.64751,"16.4":0.00384},P:{"4":0.68925,"20":0.919,"5.0-5.4":0.04376,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01094,"9.2":0.03282,"10.1":0.01094,"11.1-11.2":0.04376,"12.0":0.02188,"13.0":0.09846,"14.0":0.0547,"15.0":0.0547,"16.0":0.09846,"17.0":0.14223,"18.0":0.19693,"19.0":1.71766},I:{"0":0,"3":0,"4":0.01149,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02299,"4.4":0,"4.4.3-4.4.4":0.0843},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08928,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.1092},H:{"0":0.17081},L:{"0":31.75257},R:{_:"0"},M:{"0":0.09021},Q:{"13.1":0.0095}}; 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 3841c037ac1c35..ddd57aa1d2047b 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.00527,"39":0.00351,"43":0.00527,"45":0.00351,"47":0.00703,"49":0.00176,"52":0.00527,"58":0.00176,"66":0.00351,"68":0.00176,"72":0.00527,"78":0.0246,"82":0.00176,"84":0.00176,"89":0.00527,"91":0.01757,"94":0.00176,"95":0.00527,"96":0.00351,"97":0.00351,"98":0.00176,"99":0.00703,"100":0.00176,"101":0.00703,"102":0.02284,"103":0.00703,"104":0.01757,"105":0.00703,"106":0.01406,"107":0.02636,"108":0.89431,"109":0.60441,"110":0.0369,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 44 46 48 50 51 53 54 55 56 57 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 83 85 86 87 88 90 92 93 111 3.5 3.6"},D:{"11":0.0123,"32":0.00176,"33":0.00176,"37":0.00176,"49":0.00351,"55":0.00527,"58":0.04393,"61":0.00527,"62":0.00176,"63":0.00527,"64":0.00176,"65":0.00527,"66":0.00176,"67":0.00351,"68":0.00176,"69":0.00703,"70":0.00703,"71":0.00527,"72":0.00527,"73":0.00527,"74":0.05271,"75":0.00351,"76":0.00527,"77":0.01054,"78":0.00351,"79":0.08609,"80":0.0123,"81":0.00351,"83":0.01581,"84":0.01406,"85":0.00351,"86":0.00527,"87":0.01757,"88":0.02108,"89":0.0123,"90":0.00879,"91":0.00879,"92":0.00879,"93":0.00351,"94":0.22665,"95":0.00879,"96":0.03163,"97":0.00527,"98":0.01757,"99":0.21787,"100":0.01054,"101":0.01406,"102":0.02811,"103":0.07204,"104":0.03514,"105":0.05271,"106":0.06325,"107":0.1757,"108":4.18166,"109":3.98839,"110":0.00527,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 35 36 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 59 60 111 112"},F:{"46":0.00176,"56":0.00703,"73":0.00176,"79":0.00703,"90":0.00176,"92":0.05622,"93":0.03514,"94":0.56575,_:"9 11 12 15 16 17 18 19 20 21 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 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01757,"13":0.01933,"14":0.00527,"15":0.00879,"16":0.0123,"17":0.00703,"18":0.07028,"84":0.00527,"85":0.00176,"89":0.0123,"90":0.0123,"92":0.02811,"99":0.00527,"100":0.00351,"101":0.00176,"102":0.00176,"103":0.00351,"104":0.00351,"105":0.01581,"106":0.01581,"107":0.04744,"108":0.66766,"109":0.55697,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98"},E:{"4":0,"13":0.01054,"14":0.01406,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00176,"12.1":0.0123,"13.1":0.02636,"14.1":0.03865,"15.1":0.00703,"15.2-15.3":0.00527,"15.4":0.01581,"15.5":0.02284,"15.6":0.09136,"16.0":0.01406,"16.1":0.06501,"16.2":0.07731,"16.3":0.00527},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00131,"6.0-6.1":0,"7.0-7.1":0.13813,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02619,"10.0-10.2":0,"10.3":0.13355,"11.0-11.2":0.00196,"11.3-11.4":0.00131,"12.0-12.1":0.02291,"12.2-12.5":0.86936,"13.0-13.1":0.00982,"13.2":0.00393,"13.3":0.04386,"13.4-13.7":0.0851,"14.0-14.4":0.32601,"14.5-14.8":0.35743,"15.0-15.1":0.17937,"15.2-15.3":0.21472,"15.4":0.22585,"15.5":0.31619,"15.6":0.508,"16.0":0.62452,"16.1":0.9525,"16.2":0.92893,"16.3":0.06219},P:{"4":0.12693,"5.0-5.4":0.05289,"6.2-6.4":0.24953,"7.2-7.4":0.29616,"8.2":0.04159,"9.2":0.05289,"10.1":0.15595,"11.1-11.2":0.05289,"12.0":0.07278,"13.0":0.03173,"14.0":0.05289,"15.0":0.03173,"16.0":0.12693,"17.0":0.08462,"18.0":0.11635,"19.0":0.87791},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00085,"4.2-4.3":0.00682,"4.4":0,"4.4.3-4.4.4":0.0665},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00176,"11":0.03514,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":1.16212},R:{_:"0"},M:{"0":0.14011},Q:{"13.1":0.00824},O:{"0":0.98904},H:{"0":13.75668},L:{"0":60.86666}}; +module.exports={C:{"33":0.0019,"39":0.00571,"52":0.00761,"66":0.0019,"68":0.00381,"72":0.00381,"78":0.00571,"79":0.0019,"88":0.00381,"89":0.0019,"91":0.03616,"95":0.0019,"99":0.0019,"100":0.0019,"101":0.0019,"102":0.03045,"103":0.00571,"104":0.00571,"105":0.00381,"106":0.00381,"107":0.01142,"108":0.02284,"109":0.81829,"110":0.55948,"111":0.05328,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 80 81 82 83 84 85 86 87 90 92 93 94 96 97 98 112 3.5 3.6"},D:{"11":0.00381,"33":0.00381,"38":0.00381,"49":0.00761,"55":0.00381,"58":0.02664,"59":0.00381,"62":0.0019,"63":0.00381,"64":0.0019,"65":0.00381,"67":0.00381,"68":0.00381,"69":0.00381,"70":0.00381,"72":0.00571,"73":0.00571,"74":0.02093,"76":0.0019,"77":0.00952,"78":0.00381,"79":0.05138,"80":0.02093,"81":0.00571,"83":0.00952,"84":0.00952,"85":0.00571,"86":0.00571,"87":0.00952,"88":0.01903,"89":0.01332,"90":0.00761,"91":0.00952,"92":0.01142,"93":0.00952,"94":0.70221,"95":0.02664,"96":0.01332,"97":0.00952,"98":0.01332,"99":0.45482,"100":0.02474,"101":0.01332,"102":0.08754,"103":0.0609,"104":0.01903,"105":0.03425,"106":0.03045,"107":0.0609,"108":0.18079,"109":5.36836,"110":3.09428,"111":0.00571,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 60 61 66 71 75 112 113"},F:{"46":0.0019,"56":0.0019,"73":0.01142,"79":0.00761,"85":0.00381,"92":0.01332,"93":0.01332,"94":0.24739,"95":0.46243,_:"9 11 12 15 16 17 18 19 20 21 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 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01142,"13":0.00571,"15":0.00381,"16":0.01142,"17":0.00381,"18":0.0647,"84":0.00571,"89":0.00571,"90":0.00761,"92":0.02093,"99":0.00381,"100":0.0019,"103":0.00381,"104":0.0019,"105":0.00571,"106":0.00381,"107":0.01522,"108":0.03616,"109":0.60325,"110":0.80116,_:"14 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 101 102"},E:{"4":0,"13":0.00571,"14":0.01522,"15":0.00381,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.4","11.1":0.00381,"12.1":0.01522,"13.1":0.02093,"14.1":0.04758,"15.1":0.00761,"15.2-15.3":0.00381,"15.4":0.04948,"15.5":0.02664,"15.6":0.07231,"16.0":0.01332,"16.1":0.03806,"16.2":0.07422,"16.3":0.05519},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00662,"6.0-6.1":0,"7.0-7.1":0.08605,"8.1-8.4":0.0006,"9.0-9.2":0.0006,"9.3":0.02587,"10.0-10.2":0.00301,"10.3":0.14201,"11.0-11.2":0.0012,"11.3-11.4":0.00181,"12.0-12.1":0.02166,"12.2-12.5":0.78225,"13.0-13.1":0.00842,"13.2":0.01023,"13.3":0.04032,"13.4-13.7":0.08906,"14.0-14.4":0.2425,"14.5-14.8":0.278,"15.0-15.1":0.1372,"15.2-15.3":0.19496,"15.4":0.19556,"15.5":0.23768,"15.6":0.3833,"16.0":0.49222,"16.1":0.71185,"16.2":0.80151,"16.3":0.64265,"16.4":0.0012},P:{"4":0.15458,"20":0.22672,"5.0-5.4":0.02061,"6.2-6.4":0.09028,"7.2-7.4":0.23702,"8.2":0.02006,"9.2":0.05153,"10.1":0.02006,"11.1-11.2":0.04122,"12.0":0.03092,"13.0":0.03092,"14.0":0.05153,"15.0":0.02061,"16.0":0.11336,"17.0":0.09275,"18.0":0.06183,"19.0":0.56679},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00132,"4.2-4.3":0.00617,"4.4":0,"4.4.3-4.4.4":0.05728},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03616,_:"6 7 8 9 10 5.5"},N:{"10":0,"11":0},S:{"2.5":1.19026,_:"3.0-3.1"},J:{"7":0,"10":0.02429},O:{"0":0.92306},H:{"0":14.18158},L:{"0":59.99825},R:{_:"0"},M:{"0":0.11336},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js index 37f9c3e57e8f58..ebc8ea6ee06797 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0959,"53":0,"54":0,"55":0.00599,"56":0,"57":0,"58":0,"59":0,"60":0.02398,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.16783,"69":0,"70":0,"71":0.00599,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.10789,"79":0.01199,"80":0.00599,"81":0.04196,"82":0.01199,"83":0.01798,"84":0.00599,"85":0,"86":0,"87":0,"88":0.00599,"89":0.00599,"90":0,"91":0.00599,"92":0,"93":0,"94":0,"95":0.01798,"96":0.00599,"97":0.01199,"98":0.00599,"99":0.01199,"100":0.01199,"101":0.01199,"102":0.06593,"103":0.02997,"104":0.02997,"105":0.02398,"106":0.02997,"107":0.04795,"108":1.18681,"109":0.60539,"110":0.00599,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00599,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00599,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00599,"49":0.08392,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00599,"57":0.00599,"58":0,"59":0.07792,"60":0,"61":0.01199,"62":0,"63":0.00599,"64":0,"65":0,"66":0,"67":0,"68":0.00599,"69":0.00599,"70":0.00599,"71":0.01199,"72":0.00599,"73":0.00599,"74":0.01199,"75":0.00599,"76":0.00599,"77":0.00599,"78":0.00599,"79":0.02398,"80":0.01798,"81":0.03596,"83":0.03596,"84":0.18581,"85":0.07193,"86":0.0959,"87":0.04795,"88":0.02997,"89":0.01798,"90":0.14985,"91":0.13786,"92":0.14386,"93":0.13786,"94":0.13786,"95":0.02997,"96":0.05994,"97":0.05994,"98":0.06593,"99":0.04196,"100":0.06593,"101":0.04795,"102":0.10789,"103":0.1019,"104":0.10789,"105":0.08991,"106":0.10789,"107":0.26973,"108":9.45254,"109":7.71428,"110":0.01199,"111":0.01199,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01798,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00599,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.00599,"63":0,"64":0.00599,"65":0,"66":0,"67":0.00599,"68":0.01199,"69":0.01199,"70":0.00599,"71":0.01199,"72":0.02997,"73":0.25774,"74":0.00599,"75":0,"76":0,"77":0.00599,"78":0,"79":0.05395,"80":0.01199,"81":0.00599,"82":0.02398,"83":0.02398,"84":0.02997,"85":0.14386,"86":0.04196,"87":0.01798,"88":0.00599,"89":0.01199,"90":0.01199,"91":0.01199,"92":0.04795,"93":1.07293,"94":6.76123,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02398},B:{"12":0,"13":0,"14":0.00599,"15":0,"16":0,"17":0,"18":0.00599,"79":0,"80":0,"81":0,"83":0,"84":0.00599,"85":0.00599,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00599,"93":0,"94":0,"95":0.00599,"96":0.02997,"97":0.01199,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.01798,"107":0.01798,"108":0.47952,"109":0.3956},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00599,"14":0.05994,"15":0.00599,_:"0","3.1":0,"3.2":0,"5.1":0.01798,"6.1":0,"7.1":0,"9.1":0.00599,"10.1":0,"11.1":0,"12.1":0.00599,"13.1":0.03596,"14.1":0.05395,"15.1":0.01199,"15.2-15.3":0.00599,"15.4":0.01798,"15.5":0.04795,"15.6":0.19181,"16.0":0.02997,"16.1":0.14386,"16.2":0.22777,"16.3":0.02398},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0044,"6.0-6.1":0.00586,"7.0-7.1":0.03077,"8.1-8.4":0.00586,"9.0-9.2":0.00733,"9.3":0.05568,"10.0-10.2":0.00147,"10.3":0.03517,"11.0-11.2":0.02491,"11.3-11.4":0.02051,"12.0-12.1":0.00879,"12.2-12.5":0.26228,"13.0-13.1":0.01026,"13.2":0.01172,"13.3":0.03224,"13.4-13.7":0.08792,"14.0-14.4":0.20807,"14.5-14.8":0.4264,"15.0-15.1":0.11136,"15.2-15.3":0.18756,"15.4":0.19488,"15.5":0.32236,"15.6":1.24402,"16.0":2.87341,"16.1":3.83463,"16.2":3.30274,"16.3":0.31357},P:{"4":0.05286,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06343,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01057,"12.0":0.01057,"13.0":0.01057,"14.0":0.02114,"15.0":0.01057,"16.0":0.02114,"17.0":0.02114,"18.0":0.06343,"19.0":0.85628},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00658,"4.1":0.00439,"4.2-4.3":0.02851,"4.4":0,"4.4.3-4.4.4":0.09649},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01262,"9":0.00631,"10":0.00631,"11":0.21452,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},Q:{"13.1":0},O:{"0":0.14822},H:{"0":5.45},L:{"0":38.30579},S:{"2.5":0},R:{_:"0"},M:{"0":0.15223}}; +module.exports={C:{"52":0.16127,"60":0.0657,"68":0.31657,"78":0.17322,"80":0.01195,"81":0.04778,"82":0.01195,"83":0.02987,"84":0.00597,"88":0.01792,"91":0.01195,"95":0.00597,"96":0.01195,"97":0.02389,"99":0.01792,"100":0.01195,"101":0.02389,"102":0.11349,"103":0.04181,"104":0.02987,"105":0.02389,"106":0.04778,"107":0.03584,"108":0.07168,"109":1.68439,"110":1.1946,"111":0.00597,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 85 86 87 89 90 92 93 94 98 112 3.5 3.6"},D:{"31":0.00597,"39":0.00597,"49":0.18516,"59":0.13738,"61":0.02389,"63":0.01195,"66":0.00597,"68":0.00597,"69":0.01195,"70":0.01195,"71":0.01792,"72":0.01792,"73":0.01195,"74":0.02389,"75":0.00597,"76":0.00597,"77":0.01195,"78":0.00597,"79":0.04778,"80":0.04181,"81":0.04181,"83":0.05973,"84":0.09557,"85":0.12543,"86":0.12543,"87":0.0896,"88":0.02389,"89":0.04181,"90":0.35838,"91":0.34046,"92":0.33449,"93":0.33449,"94":0.32852,"95":0.05376,"96":0.07765,"97":0.0896,"98":0.10751,"99":0.0657,"100":0.10751,"101":0.08362,"102":0.19114,"103":0.16127,"104":0.09557,"105":0.10154,"106":0.1553,"107":0.28073,"108":0.65106,"109":17.73981,"110":10.39899,"111":0.02389,"112":0.02389,_:"4 5 6 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 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 64 65 67 113"},F:{"36":0.01792,"45":0.00597,"46":0.00597,"68":0.01195,"69":0.01195,"70":0.00597,"71":0.00597,"72":0.01195,"74":0.00597,"77":0.01195,"79":0.0896,"80":0.00597,"82":0.03584,"83":0.04778,"84":0.04778,"85":0.25684,"86":0.05973,"87":0.05376,"88":0.01195,"89":0.01792,"90":0.01792,"91":0.03584,"92":0.01195,"93":0.26281,"94":5.60865,"95":6.86895,_:"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 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 75 76 78 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.04778},B:{"18":0.01792,"85":0.01195,"92":0.00597,"96":0.04778,"97":0.01792,"106":0.02389,"107":0.01792,"108":0.01195,"109":0.61522,"110":0.92582,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 98 99 100 101 102 103 104 105"},E:{"4":0,"14":0.07168,"15":0.02389,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.02987,"9.1":0.02389,"12.1":0.01792,"13.1":0.0657,"14.1":0.11349,"15.1":0.01792,"15.2-15.3":0.01195,"15.4":0.02987,"15.5":0.0657,"15.6":0.25087,"16.0":0.04181,"16.1":0.16127,"16.2":0.34046,"16.3":0.31657,"16.4":0.00597},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00183,"6.0-6.1":0.00275,"7.0-7.1":0.01743,"8.1-8.4":0.0055,"9.0-9.2":0.0055,"9.3":0.04312,"10.0-10.2":0.00275,"10.3":0.02936,"11.0-11.2":0.01468,"11.3-11.4":0.01284,"12.0-12.1":0.00642,"12.2-12.5":0.17248,"13.0-13.1":0.0055,"13.2":0.00734,"13.3":0.0211,"13.4-13.7":0.06055,"14.0-14.4":0.12202,"14.5-14.8":0.23303,"15.0-15.1":0.05505,"15.2-15.3":0.10184,"15.4":0.10276,"15.5":0.1789,"15.6":0.58258,"16.0":1.45692,"16.1":1.78354,"16.2":2.00739,"16.3":1.46977,"16.4":0.01009},P:{"4":0.03315,"20":0.39774,"5.0-5.4":0.01011,"6.2-6.4":0.03084,"7.2-7.4":0.07734,"8.2":0.01016,"9.2":0.0103,"10.1":0.01011,"11.1-11.2":0.0221,"12.0":0.07134,"13.0":0.01105,"14.0":0.04112,"15.0":0.01105,"16.0":0.01105,"17.0":0.03315,"18.0":0.04419,"19.0":0.65186},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00141,"4.1":0.00141,"4.2-4.3":0.00706,"4.4":0,"4.4.3-4.4.4":0.03038},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02464,"10":0.00616,"11":0.36342,_:"6 7 9 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.12886},H:{"0":5.44425},L:{"0":24.83215},R:{_:"0"},M:{"0":0.149},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js index 289b0a7838c6bc..0568b1b6dd632f 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.00768,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00768,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00512,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00256,"44":0,"45":0,"46":0,"47":0.00256,"48":0,"49":0,"50":0.00256,"51":0,"52":0.00512,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00256,"65":0,"66":0.00256,"67":0,"68":0.00256,"69":0,"70":0,"71":0,"72":0.00256,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00256,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00256,"92":0,"93":0.00256,"94":0.00256,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00512,"101":0.00256,"102":0.01024,"103":0.00256,"104":0.00512,"105":0.03071,"106":0.00768,"107":0.02047,"108":0.3557,"109":0.24311,"110":0.01791,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.01024,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00256,"51":0,"52":0,"53":0,"54":0.00256,"55":0,"56":0.00512,"57":0,"58":0,"59":0.00256,"60":0,"61":0,"62":0,"63":0,"64":0.00512,"65":0.00256,"66":0,"67":0,"68":0,"69":0,"70":0.00256,"71":0,"72":0.00512,"73":0,"74":0.00512,"75":0.00256,"76":0,"77":0.00256,"78":0.00256,"79":0.00512,"80":0.00256,"81":0.00768,"83":0.00256,"84":0,"85":0.00256,"86":0.00512,"87":0.00768,"88":0.00256,"89":0.00512,"90":0.00256,"91":0.00256,"92":0.0128,"93":0.00768,"94":0.00768,"95":0.01024,"96":0.00512,"97":0.00256,"98":0.00256,"99":0.00768,"100":0.00512,"101":0.00512,"102":0.00512,"103":0.02815,"104":0.01535,"105":0.01791,"106":0.01791,"107":0.0563,"108":1.49702,"109":1.41001,"110":0.00256,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00256,"21":0,"22":0,"23":0,"24":0.00256,"25":0,"26":0,"27":0.00256,"28":0.00768,"29":0,"30":0,"31":0,"32":0.00256,"33":0.0128,"34":0,"35":0,"36":0,"37":0.0128,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00512,"48":0,"49":0,"50":0.00256,"51":0.00256,"52":0,"53":0,"54":0.00256,"55":0.00256,"56":0,"57":0.01535,"58":0.02047,"60":0.05374,"62":0,"63":0.1996,"64":0.08701,"65":0.0435,"66":0.21496,"67":0.01791,"68":0,"69":0,"70":0,"71":0,"72":0.00256,"73":0.01024,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00256,"93":0.01024,"94":0.14075,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01791},B:{"12":0.00768,"13":0.00256,"14":0.00256,"15":0.00256,"16":0.00256,"17":0,"18":0.0128,"79":0,"80":0,"81":0,"83":0,"84":0.00256,"85":0,"86":0,"87":0,"88":0,"89":0.00256,"90":0.00256,"91":0,"92":0.00512,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00256,"101":0,"102":0,"103":0.00256,"104":0.00256,"105":0.00256,"106":0.00256,"107":0.01535,"108":0.23287,"109":0.19448},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00256,"12":0,"13":0,"14":0.00256,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01024,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00512,"14.1":0.00768,"15.1":0,"15.2-15.3":0.00256,"15.4":0.00256,"15.5":0.00512,"15.6":0.02303,"16.0":0.00256,"16.1":0.01535,"16.2":0.0128,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00135,"5.0-5.1":0.00135,"6.0-6.1":0.00135,"7.0-7.1":0.01547,"8.1-8.4":0.00067,"9.0-9.2":0.00269,"9.3":0.03835,"10.0-10.2":0,"10.3":0.06391,"11.0-11.2":0.00269,"11.3-11.4":0.00538,"12.0-12.1":0.00875,"12.2-12.5":0.63978,"13.0-13.1":0.02422,"13.2":0.00942,"13.3":0.03027,"13.4-13.7":0.05718,"14.0-14.4":0.37068,"14.5-14.8":0.41172,"15.0-15.1":0.26304,"15.2-15.3":0.35655,"15.4":0.24488,"15.5":0.34983,"15.6":0.47428,"16.0":0.61287,"16.1":1.03871,"16.2":1.02391,"16.3":0.07064},P:{"4":0.11505,"5.0-5.4":0.01046,"6.2-6.4":0,"7.2-7.4":0.11505,"8.2":0,"9.2":0.11505,"10.1":0,"11.1-11.2":0.03138,"12.0":0,"13.0":0.02092,"14.0":0.07321,"15.0":0.04184,"16.0":0.06275,"17.0":0.0523,"18.0":0.11505,"19.0":0.74259},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00756,"4.2-4.3":0.00945,"4.4":0,"4.4.3-4.4.4":0.22881},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0435,"5.5":0},J:{"7":0,"10":0.00744},N:{"10":0,"11":0},S:{"2.5":0.40926},R:{_:"0"},M:{"0":0.26788},Q:{"13.1":0},O:{"0":0.63249},H:{"0":16.49154},L:{"0":63.30675}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00246,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00246,"44":0,"45":0,"46":0,"47":0,"48":0.00246,"49":0,"50":0.00246,"51":0,"52":0.00246,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00246,"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.00246,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00246,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00246,"101":0,"102":0.00985,"103":0.00246,"104":0.00739,"105":0.00739,"106":0.00492,"107":0.00985,"108":0.00985,"109":0.33237,"110":0.22897,"111":0.01723,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"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.00246,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00246,"57":0,"58":0.00246,"59":0,"60":0,"61":0,"62":0,"63":0.00246,"64":0.00246,"65":0.00246,"66":0,"67":0,"68":0,"69":0.00246,"70":0.00492,"71":0,"72":0.00492,"73":0,"74":0.00492,"75":0,"76":0,"77":0.00246,"78":0.00246,"79":0.00492,"80":0.00246,"81":0.00492,"83":0.00246,"84":0.00246,"85":0,"86":0.00246,"87":0.00492,"88":0.00246,"89":0,"90":0,"91":0.00492,"92":0.00985,"93":0.00492,"94":0.00492,"95":0.01231,"96":0.00492,"97":0.00246,"98":0.00246,"99":0.00246,"100":0.00492,"101":0.00492,"102":0.00985,"103":0.02708,"104":0.00739,"105":0.00985,"106":0.01231,"107":0.03447,"108":0.07386,"109":1.55598,"110":0.97003,"111":0.00246,"112":0,"113":0},F:{"9":0,"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.00246,"28":0.00246,"29":0,"30":0.00246,"31":0.00246,"32":0,"33":0.00985,"34":0,"35":0,"36":0,"37":0.01477,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00246,"46":0.00246,"47":0.00492,"48":0,"49":0,"50":0,"51":0.00246,"52":0,"53":0,"54":0,"55":0,"56":0.00246,"57":0.03693,"58":0.01477,"60":0.0517,"62":0,"63":0.11325,"64":0.08371,"65":0.03693,"66":0.19942,"67":0.30036,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00739,"74":0.02216,"75":0,"76":0,"77":0,"78":0,"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.00246,"93":0,"94":0.05909,"95":0.09602,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01231},B:{"12":0.00492,"13":0.00246,"14":0.00246,"15":0.00246,"16":0.00246,"17":0,"18":0.00985,"79":0,"80":0,"81":0,"83":0,"84":0.00246,"85":0,"86":0,"87":0,"88":0,"89":0.00246,"90":0.00246,"91":0,"92":0.00492,"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.00246,"106":0.00246,"107":0.01477,"108":0.01231,"109":0.17726,"110":0.20435},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.00492,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00246,"12.1":0,"13.1":0.00985,"14.1":0.00492,"15.1":0,"15.2-15.3":0.00246,"15.4":0,"15.5":0.00246,"15.6":0.05663,"16.0":0.00246,"16.1":0.00985,"16.2":0.00739,"16.3":0.00985,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00175,"5.0-5.1":0.00291,"6.0-6.1":0.00058,"7.0-7.1":0.00524,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02564,"10.0-10.2":0.00175,"10.3":0.03263,"11.0-11.2":0.00117,"11.3-11.4":0.00524,"12.0-12.1":0.01515,"12.2-12.5":0.58093,"13.0-13.1":0.01224,"13.2":0.00466,"13.3":0.02855,"13.4-13.7":0.05069,"14.0-14.4":0.23598,"14.5-14.8":0.31465,"15.0-15.1":0.18413,"15.2-15.3":0.27561,"15.4":0.20219,"15.5":0.24472,"15.6":0.38515,"16.0":0.45391,"16.1":0.70154,"16.2":0.7872,"16.3":0.70038,"16.4":0.00291},P:{"4":0.09363,"20":0.11444,"5.0-5.4":0.0104,"6.2-6.4":0,"7.2-7.4":0.11444,"8.2":0,"9.2":0.07283,"10.1":0,"11.1-11.2":0.03121,"12.0":0.04161,"13.0":0.02081,"14.0":0.05202,"15.0":0.04161,"16.0":0.06242,"17.0":0.03121,"18.0":0.07283,"19.0":0.49938},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.00174,"4.4":0,"4.4.3-4.4.4":0.08258},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00985,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.45982,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.64827},H:{"0":17.57004},L:{"0":63.73447},R:{_:"0"},M:{"0":0.20353},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js index 336123cbc2334c..c335b3b401ff56 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.00513,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02053,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00513,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00513,"45":0,"46":0,"47":0,"48":0.01027,"49":0,"50":0,"51":0,"52":0.0154,"53":0,"54":0.00513,"55":0,"56":0.00513,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00513,"69":0,"70":0,"71":0,"72":0.00513,"73":0,"74":0,"75":0,"76":0,"77":0.00513,"78":0.03593,"79":0.00513,"80":0.00513,"81":0.00513,"82":0.00513,"83":0.00513,"84":0.00513,"85":0,"86":0,"87":0.00513,"88":0.00513,"89":0.00513,"90":0.00513,"91":0.01027,"92":0,"93":0.00513,"94":0.02567,"95":0.00513,"96":0.00513,"97":0.00513,"98":0.00513,"99":0.00513,"100":0.00513,"101":0.00513,"102":0.05646,"103":0.00513,"104":0.01027,"105":0.0154,"106":0.0154,"107":0.04106,"108":0.85208,"109":0.47737,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01027,"36":0,"37":0,"38":0,"39":0,"40":0.01027,"41":0,"42":0,"43":0.00513,"44":0,"45":0,"46":0,"47":0,"48":0.02567,"49":0.02053,"50":0,"51":0,"52":0.00513,"53":0,"54":0,"55":0,"56":0.16939,"57":0,"58":0,"59":0,"60":0.00513,"61":0,"62":0,"63":0.00513,"64":0.00513,"65":0.00513,"66":0.03593,"67":0.00513,"68":0.01027,"69":0.01027,"70":0.01027,"71":0.0154,"72":0.0154,"73":0.0154,"74":0.0154,"75":0.0154,"76":0.05646,"77":0.01027,"78":0.0154,"79":0.07186,"80":0.0308,"81":0.0616,"83":0.077,"84":0.04106,"85":0.0462,"86":0.0616,"87":0.07186,"88":0.0308,"89":0.05133,"90":0.05646,"91":0.0462,"92":0.04106,"93":0.0616,"94":0.0308,"95":0.06673,"96":0.08726,"97":0.09753,"98":0.08213,"99":0.10266,"100":0.10779,"101":0.11806,"102":0.18479,"103":0.33878,"104":0.13859,"105":0.16426,"106":0.13859,"107":0.43117,"108":6.79609,"109":4.76856,"110":0.02053,"111":0.04106,"112":0.00513},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00513,"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.01027,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00513,"90":0,"91":0,"92":0.00513,"93":0.13859,"94":0.24638,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0154,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00513,"79":0,"80":0.00513,"81":0.00513,"83":0.00513,"84":0.01027,"85":0.00513,"86":0.00513,"87":0.01027,"88":0.01027,"89":0.00513,"90":0.01027,"91":0.01027,"92":0.01027,"93":0.00513,"94":0.00513,"95":0.00513,"96":0.01027,"97":0.00513,"98":0.00513,"99":0.00513,"100":0.02567,"101":0.01027,"102":0.00513,"103":0.0154,"104":0.01027,"105":0.0154,"106":0.0154,"107":0.11293,"108":1.69902,"109":1.50397},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00513,"9":0.00513,"10":0,"11":0,"12":0.00513,"13":0.02567,"14":0.10266,"15":0.02567,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.08213,"10.1":0,"11.1":0.00513,"12.1":0.04106,"13.1":0.26692,"14.1":0.27718,"15.1":0.04106,"15.2-15.3":0.04106,"15.4":0.08726,"15.5":0.17452,"15.6":1.28838,"16.0":0.15912,"16.1":0.44144,"16.2":0.94961,"16.3":0.0616},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00421,"5.0-5.1":0,"6.0-6.1":0.00842,"7.0-7.1":0.00421,"8.1-8.4":0.00421,"9.0-9.2":0.02948,"9.3":0.08424,"10.0-10.2":0.00842,"10.3":0.1053,"11.0-11.2":0.04633,"11.3-11.4":0.04633,"12.0-12.1":0.03791,"12.2-12.5":0.47597,"13.0-13.1":0.16849,"13.2":0.139,"13.3":0.05897,"13.4-13.7":0.1727,"14.0-14.4":0.51809,"14.5-14.8":1.09937,"15.0-15.1":0.28221,"15.2-15.3":0.43806,"15.4":0.47597,"15.5":1.0404,"15.6":5.51789,"16.0":4.45222,"16.1":15.2142,"16.2":9.36777,"16.3":0.5897},P:{"4":0.06309,"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.01052,"12.0":0.01052,"13.0":0.01052,"14.0":0.01052,"15.0":0.01052,"16.0":0.04206,"17.0":0.03155,"18.0":0.08412,"19.0":1.43006},I:{"0":0,"3":0.02342,"4":0.06441,"2.1":0.01171,"2.2":0.03513,"2.3":0.02928,"4.1":0.02342,"4.2-4.3":0.17566,"4.4":0,"4.4.3-4.4.4":0.16981},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0393,"9":0.04491,"10":0.00561,"11":0.08983,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":29.64307},S:{"2.5":0.00487},R:{_:"0"},M:{"0":0.45263},Q:{"13.1":0.13628},O:{"0":0.08761},H:{"0":0.25803}}; +module.exports={C:{"2":0,"3":0,"4":0.00522,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02088,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00522,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00522,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00522,"45":0,"46":0,"47":0,"48":0.01044,"49":0,"50":0,"51":0,"52":0.01566,"53":0,"54":0.00522,"55":0,"56":0,"57":0,"58":0,"59":0.00522,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00522,"69":0,"70":0.00522,"71":0.00522,"72":0.00522,"73":0,"74":0,"75":0.00522,"76":0,"77":0.00522,"78":0.03655,"79":0.00522,"80":0.00522,"81":0.00522,"82":0.00522,"83":0.00522,"84":0.00522,"85":0,"86":0,"87":0.00522,"88":0.00522,"89":0.00522,"90":0.00522,"91":0.00522,"92":0,"93":0.01044,"94":0.02088,"95":0,"96":0,"97":0.00522,"98":0,"99":0,"100":0.00522,"101":0.00522,"102":0.06787,"103":0.00522,"104":0.00522,"105":0.01044,"106":0.01044,"107":0.01566,"108":0.05221,"109":0.85102,"110":0.54298,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00522,"36":0,"37":0,"38":0,"39":0,"40":0.01044,"41":0,"42":0,"43":0.00522,"44":0,"45":0,"46":0,"47":0,"48":0.02088,"49":0.02088,"50":0,"51":0,"52":0.00522,"53":0,"54":0,"55":0,"56":0.13053,"57":0,"58":0,"59":0.00522,"60":0.00522,"61":0.01044,"62":0.00522,"63":0.00522,"64":0.00522,"65":0.00522,"66":0.02611,"67":0.00522,"68":0.01566,"69":0.01566,"70":0.01044,"71":0.01566,"72":0.01566,"73":0.01044,"74":0.02088,"75":0.02088,"76":0.08354,"77":0.01566,"78":0.02088,"79":0.08876,"80":0.04177,"81":0.05743,"83":0.08354,"84":0.04177,"85":0.06265,"86":0.06787,"87":0.06787,"88":0.03133,"89":0.04177,"90":0.04177,"91":0.04177,"92":0.02088,"93":0.07832,"94":0.02611,"95":0.01044,"96":0.03133,"97":0.05221,"98":0.03133,"99":0.04699,"100":0.04177,"101":0.06787,"102":0.12008,"103":0.28193,"104":0.07832,"105":0.15141,"106":0.08876,"107":0.18274,"108":1.23216,"109":6.90738,"110":4.09849,"111":0.02088,"112":0.04177,"113":0.01044},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00522,"54":0.00522,"55":0.00522,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00522,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00522,"74":0.00522,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02088,"94":0.21928,"95":0.14619,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00522,"13":0,"14":0,"15":0.00522,"16":0,"17":0,"18":0.00522,"79":0,"80":0.00522,"81":0.00522,"83":0.00522,"84":0.00522,"85":0.00522,"86":0.00522,"87":0.01044,"88":0.00522,"89":0.00522,"90":0.00522,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00522,"101":0,"102":0,"103":0.00522,"104":0.00522,"105":0.00522,"106":0.00522,"107":0.12008,"108":0.0992,"109":1.34702,"110":1.92133},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00522,"10":0,"11":0,"12":0.00522,"13":0.02611,"14":0.11486,"15":0.03133,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.10442,"10.1":0,"11.1":0.00522,"12.1":0.04177,"13.1":0.27149,"14.1":0.33414,"15.1":0.05221,"15.2-15.3":0.04699,"15.4":0.10442,"15.5":0.20362,"15.6":1.11729,"16.0":0.12008,"16.1":0.35503,"16.2":1.22694,"16.3":0.80926,"16.4":0.00522},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0041,"5.0-5.1":0,"6.0-6.1":0.0082,"7.0-7.1":0,"8.1-8.4":0.0041,"9.0-9.2":0.04922,"9.3":0.07794,"10.0-10.2":0.0082,"10.3":0.09845,"11.0-11.2":0.04102,"11.3-11.4":0.04512,"12.0-12.1":0.03282,"12.2-12.5":0.4348,"13.0-13.1":0.03282,"13.2":0.2256,"13.3":0.05332,"13.4-13.7":0.16818,"14.0-14.4":0.47172,"14.5-14.8":0.95164,"15.0-15.1":0.26252,"15.2-15.3":0.38558,"15.4":0.40199,"15.5":0.85319,"15.6":3.92551,"16.0":3.70811,"16.1":10.56648,"16.2":11.13664,"16.3":5.57858,"16.4":0.02871},P:{"4":0.0519,"20":0.61241,"5.0-5.4":0.01038,"6.2-6.4":0,"7.2-7.4":0,"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.04152,"17.0":0.03114,"18.0":0.06228,"19.0":0.76811},I:{"0":0,"3":0.0179,"4":0.06563,"2.1":0.0537,"2.2":0.02983,"2.3":0,"4.1":0.0179,"4.2-4.3":0.17303,"4.4":0,"4.4.3-4.4.4":0.14916},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03494,"9":0.02329,"10":0.00582,"11":0.08735,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00478,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.08124},H:{"0":0.25337},L:{"0":29.99886},R:{_:"0"},M:{"0":0.44923},Q:{"13.1":0.03345}}; 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 19070cafeaf102..961eb217c776d4 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.00384,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0192,"53":0,"54":0,"55":0,"56":0,"57":0.00384,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00768,"67":0,"68":0.00384,"69":0,"70":0,"71":0,"72":0,"73":0.0192,"74":0,"75":0,"76":0,"77":0.00384,"78":0.00384,"79":0,"80":0,"81":0,"82":0,"83":0.00384,"84":0,"85":0,"86":0.00768,"87":0,"88":0.00384,"89":0,"90":0,"91":0.00384,"92":0,"93":0,"94":0,"95":0.00384,"96":0,"97":0,"98":0.00384,"99":0.00768,"100":0.01152,"101":0,"102":0.02688,"103":0.00384,"104":0.02304,"105":0.00384,"106":0.00768,"107":0.01152,"108":0.39552,"109":0.26496,"110":0.00384,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00384,"37":0,"38":0.01536,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03456,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00384,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00768,"63":0,"64":0,"65":0.00768,"66":0,"67":0,"68":0.00384,"69":0.00384,"70":0,"71":0.00384,"72":0,"73":0.00768,"74":0.00768,"75":0.00384,"76":0,"77":0.00384,"78":0.00384,"79":0.01536,"80":0.02688,"81":0.01152,"83":0.00384,"84":0.00384,"85":0.00768,"86":0.1344,"87":0.00768,"88":0.00384,"89":0.00384,"90":0.00768,"91":0.01152,"92":0.00768,"93":0.00768,"94":0.0192,"95":0.01152,"96":0.02304,"97":0.00768,"98":0.00768,"99":0.00768,"100":0.01536,"101":0.01536,"102":0.0192,"103":0.0576,"104":0.01536,"105":0.03072,"106":0.0576,"107":0.09984,"108":4.89984,"109":4.82304,"110":0.00384,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00384,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02304,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.75648,"94":0.48,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00384,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00384,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00384,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00384,"99":0,"100":0,"101":0.00384,"102":0,"103":0,"104":0,"105":0.00384,"106":0,"107":0.0384,"108":0.44928,"109":0.47232},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01152,"15":0.00768,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00384,"13.1":0.01536,"14.1":0.02304,"15.1":0.01536,"15.2-15.3":0.00768,"15.4":0.01152,"15.5":0.02688,"15.6":0.08832,"16.0":0.01152,"16.1":0.0576,"16.2":0.06144,"16.3":0.00768},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02477,"6.0-6.1":0,"7.0-7.1":0.02477,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04954,"10.0-10.2":0,"10.3":0.01748,"11.0-11.2":0.00437,"11.3-11.4":0.00874,"12.0-12.1":0.01311,"12.2-12.5":0.389,"13.0-13.1":0.00437,"13.2":0.00291,"13.3":0.01894,"13.4-13.7":0.06993,"14.0-14.4":0.15735,"14.5-14.8":0.53178,"15.0-15.1":0.10781,"15.2-15.3":0.15589,"15.4":0.16755,"15.5":0.44145,"15.6":1.80661,"16.0":1.86051,"16.1":4.46989,"16.2":2.67931,"16.3":0.19086},P:{"4":0.1016,"5.0-5.4":0,"6.2-6.4":0.01016,"7.2-7.4":0.24383,"8.2":0,"9.2":0.01016,"10.1":0,"11.1-11.2":0.03048,"12.0":0,"13.0":0.04064,"14.0":0.02032,"15.0":0.01016,"16.0":0.0508,"17.0":0.1016,"18.0":0.09144,"19.0":1.43251},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03635,"4.4":0,"4.4.3-4.4.4":0.11813},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02688,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.00616},R:{_:"0"},M:{"0":0.25872},Q:{"13.1":0},O:{"0":0.01232},H:{"0":0.24494},L:{"0":68.76904}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.019,"53":0,"54":0,"55":0.0038,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0038,"67":0,"68":0.0038,"69":0,"70":0,"71":0,"72":0,"73":0.019,"74":0,"75":0,"76":0,"77":0,"78":0.0038,"79":0,"80":0,"81":0,"82":0,"83":0.0038,"84":0,"85":0,"86":0.0038,"87":0,"88":0.0038,"89":0,"90":0,"91":0.0038,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0152,"98":0,"99":0.0038,"100":0.019,"101":0,"102":0.019,"103":0.0038,"104":0.02279,"105":0.0038,"106":0.0076,"107":0.0038,"108":0.0114,"109":0.36091,"110":0.26973,"111":0.0038,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.05319,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0038,"48":0,"49":0.02659,"50":0,"51":0,"52":0,"53":0.0038,"54":0,"55":0.0038,"56":0,"57":0,"58":0.0038,"59":0,"60":0,"61":0,"62":0.0076,"63":0.0038,"64":0,"65":0.0076,"66":0,"67":0,"68":0,"69":0.0038,"70":0.0038,"71":0.0038,"72":0,"73":0.0076,"74":0.0076,"75":0.0038,"76":0,"77":0.0038,"78":0.0038,"79":0.0114,"80":0.019,"81":0.0038,"83":0.0076,"84":0.0038,"85":0.0076,"86":0.15196,"87":0.0076,"88":0.0038,"89":0.0038,"90":0.0038,"91":0.0114,"92":0.0038,"93":0.0114,"94":0.0152,"95":0.0076,"96":0.02659,"97":0.0114,"98":0.0076,"99":0.0076,"100":0.02659,"101":0.02279,"102":0.0114,"103":0.05319,"104":0.0152,"105":0.019,"106":0.03799,"107":0.06838,"108":0.24314,"109":5.65291,"110":3.54067,"111":0,"112":0.0038,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0038,"29":0,"30":0,"31":0,"32":0.0038,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0038,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0038,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0038,"92":0,"93":0.12537,"94":0.83198,"95":0.25073,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0038,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.0114,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0038,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0038,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.019,"108":0.019,"109":0.3989,"110":0.52046},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0038,"14":0.0114,"15":0.0038,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0038,"13.1":0.02659,"14.1":0.02659,"15.1":0.0114,"15.2-15.3":0.0038,"15.4":0.0114,"15.5":0.03039,"15.6":0.07218,"16.0":0.0076,"16.1":0.03419,"16.2":0.06458,"16.3":0.06838,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03081,"6.0-6.1":0.00147,"7.0-7.1":0.0132,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02347,"10.0-10.2":0,"10.3":0.02787,"11.0-11.2":0.0044,"11.3-11.4":0.00293,"12.0-12.1":0.0176,"12.2-12.5":0.38731,"13.0-13.1":0.00293,"13.2":0,"13.3":0.01907,"13.4-13.7":0.07922,"14.0-14.4":0.13057,"14.5-14.8":0.40491,"15.0-15.1":0.07776,"15.2-15.3":0.1115,"15.4":0.11883,"15.5":0.33009,"15.6":1.32771,"16.0":1.49055,"16.1":3.35815,"16.2":3.45498,"16.3":1.76196,"16.4":0.00587},P:{"4":0.07242,"20":0.44489,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21727,"8.2":0,"9.2":0.01035,"10.1":0,"11.1-11.2":0.02069,"12.0":0,"13.0":0.03104,"14.0":0.02069,"15.0":0.01035,"16.0":0.06208,"17.0":0.07242,"18.0":0.07242,"19.0":0.86908},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.18397},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02279,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.0124},H:{"0":0.09393},L:{"0":69.63847},R:{_:"0"},M:{"0":0.30385},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UZ.js index 8f8e903e5a7035..f47c27f588e6e3 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.00898,"53":0,"54":0,"55":0.00299,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00299,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00299,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00299,"99":0,"100":0,"101":0,"102":0.01198,"103":0,"104":0.00299,"105":0,"106":0.00299,"107":0.00599,"108":0.13174,"109":0.09281,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00299,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00299,"49":0.05689,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00599,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00898,"65":0,"66":0.01497,"67":0,"68":0.00299,"69":0,"70":0,"71":0.00299,"72":0.00599,"73":0.00299,"74":0,"75":0,"76":0.00299,"77":0,"78":0.00599,"79":0.01497,"80":0.00299,"81":0.00599,"83":0.01497,"84":0.01497,"85":0.00898,"86":0.01497,"87":0.00299,"88":0.00299,"89":0.00898,"90":0.00599,"91":0.00599,"92":0.00299,"93":0.00599,"94":0.12874,"95":0.00299,"96":0.00898,"97":0.00599,"98":0.00898,"99":0.00299,"100":0.02395,"101":0.00599,"102":0.02096,"103":0.02096,"104":0.06587,"105":0.03593,"106":0.02096,"107":0.0509,"108":2.49101,"109":2.91915,"110":0.00299,"111":0.00299,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00299,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00299,"50":0,"51":0.00299,"52":0,"53":0.00898,"54":0,"55":0.00299,"56":0,"57":0.00299,"58":0,"60":0.00299,"62":0.00599,"63":0,"64":0.00299,"65":0,"66":0,"67":0,"68":0.00299,"69":0,"70":0,"71":0,"72":0,"73":0.02096,"74":0,"75":0,"76":0,"77":0.00299,"78":0,"79":0.01497,"80":0,"81":0,"82":0,"83":0,"84":0.00299,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01497,"91":0.00299,"92":0.00299,"93":0.01198,"94":0.09281,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00299,"18":0.01796,"79":0,"80":0,"81":0,"83":0,"84":0.00599,"85":0,"86":0.00299,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00599,"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.00299,"106":0,"107":0.00599,"108":0.22754,"109":0.2485},E:{"4":0,"5":0.00898,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00299,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0988,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00299,"14.1":0.00599,"15.1":0.00299,"15.2-15.3":0.00599,"15.4":0.00599,"15.5":0.00898,"15.6":0.03593,"16.0":0.00599,"16.1":0.03892,"16.2":0.0509,"16.3":0.00299},G:{"8":0,"3.2":0,"4.0-4.1":0.00118,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03885,"8.1-8.4":0,"9.0-9.2":0.00942,"9.3":0.09182,"10.0-10.2":0.00118,"10.3":0.03178,"11.0-11.2":0.03178,"11.3-11.4":0.00706,"12.0-12.1":0.00471,"12.2-12.5":0.77461,"13.0-13.1":0.00589,"13.2":0.00471,"13.3":0.02119,"13.4-13.7":0.07181,"14.0-14.4":0.18011,"14.5-14.8":0.29077,"15.0-15.1":0.11654,"15.2-15.3":0.16952,"15.4":0.1601,"15.5":0.32727,"15.6":0.84642,"16.0":1.86119,"16.1":2.53691,"16.2":2.37563,"16.3":0.279},P:{"4":0.63375,"5.0-5.4":0.01006,"6.2-6.4":0.08048,"7.2-7.4":0.72429,"8.2":0,"9.2":0.06036,"10.1":0.02012,"11.1-11.2":0.15089,"12.0":0.03018,"13.0":0.15089,"14.0":0.14083,"15.0":0.08048,"16.0":0.29173,"17.0":0.24143,"18.0":0.4225,"19.0":2.66579},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00408,"4.2-4.3":0.01021,"4.4":0,"4.4.3-4.4.4":0.07965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05988,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.05605},Q:{"13.1":0.00701},O:{"0":3.56605},H:{"0":0.34491},L:{"0":66.24517}}; +module.exports={C:{"30":0.00949,"52":0.03163,"70":0.00316,"79":0.00949,"83":0.00316,"91":0.00316,"102":0.04112,"104":0.00949,"105":0.00316,"106":0.00949,"107":0.00633,"108":0.03163,"109":0.62944,"110":0.36691,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 80 81 82 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 111 112 3.5 3.6"},D:{"39":0.00316,"49":0.14234,"53":0.00316,"56":0.00949,"61":0.00316,"64":0.00949,"65":0.00316,"66":0.0253,"69":0.00949,"70":0.00316,"71":0.00949,"72":0.01265,"74":0.00316,"75":0.00949,"76":0.00316,"77":0.00316,"78":0.00633,"79":0.04428,"80":0.01582,"81":0.00316,"83":0.03796,"84":0.03796,"85":0.04428,"86":0.05377,"87":0.03479,"88":0.00633,"89":0.03796,"90":0.01265,"91":0.00949,"92":0.01265,"93":0.01265,"94":0.00316,"95":0.00633,"96":0.0253,"97":0.01898,"98":0.01582,"99":0.01265,"100":0.06959,"101":0.02214,"102":0.09173,"103":0.05377,"104":0.02847,"105":0.03163,"106":0.17713,"107":0.10754,"108":0.30681,"109":13.09798,"110":6.34498,"111":0.00633,"112":0.00633,_:"4 5 6 7 8 9 10 11 12 13 14 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 54 55 57 58 59 60 62 63 67 68 73 113"},F:{"28":0.00633,"40":0.01582,"45":0.00316,"46":0.00949,"49":0.00633,"51":0.00316,"53":0.02214,"55":0.00316,"57":0.00633,"60":0.00633,"62":0.0253,"64":0.00633,"67":0.00316,"73":0.00633,"77":0.00316,"79":0.06326,"84":0.00949,"90":0.03163,"93":0.03163,"94":0.24039,"95":0.23406,_:"9 11 12 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 47 48 50 52 54 56 58 63 65 66 68 69 70 71 72 74 75 76 78 80 81 82 83 85 86 87 88 89 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00316,"14":0.00316,"15":0.00949,"16":0.00949,"17":0.00949,"18":0.0601,"84":0.01582,"85":0.00633,"86":0.00949,"89":0.00316,"90":0.00633,"92":0.02214,"100":0.00949,"105":0.00316,"106":0.00633,"107":0.01265,"108":0.03796,"109":0.63893,"110":0.96472,_:"13 79 80 81 83 87 88 91 93 94 95 96 97 98 99 101 102 103 104"},E:{"4":0,"5":0.02214,"14":0.02847,_:"0 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.4","5.1":0.21508,"12.1":0.00316,"13.1":0.00949,"14.1":0.02847,"15.1":0.00949,"15.2-15.3":0.00949,"15.4":0.01265,"15.5":0.02847,"15.6":0.13917,"16.0":0.02214,"16.1":0.07591,"16.2":0.08856,"16.3":0.12336},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00326,"6.0-6.1":0,"7.0-7.1":0.01629,"8.1-8.4":0.00081,"9.0-9.2":0.00489,"9.3":0.04399,"10.0-10.2":0,"10.3":0.02932,"11.0-11.2":0.01303,"11.3-11.4":0.00407,"12.0-12.1":0.0057,"12.2-12.5":0.52785,"13.0-13.1":0.00244,"13.2":0.00244,"13.3":0.01222,"13.4-13.7":0.0505,"14.0-14.4":0.11811,"14.5-14.8":0.21831,"15.0-15.1":0.07983,"15.2-15.3":0.10508,"15.4":0.13522,"15.5":0.17676,"15.6":0.41218,"16.0":1.05732,"16.1":1.29274,"16.2":1.40759,"16.3":1.419,"16.4":0.0057},P:{"4":0.59093,"20":0.73357,"5.0-5.4":0.04075,"6.2-6.4":0.08151,"7.2-7.4":0.60112,"8.2":0.01016,"9.2":0.04075,"10.1":0.01011,"11.1-11.2":0.14264,"12.0":0.04075,"13.0":0.12226,"14.0":0.15283,"15.0":0.08151,"16.0":0.24452,"17.0":0.21396,"18.0":0.31584,"19.0":2.31278},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00234,"4.2-4.3":0.00313,"4.4":0,"4.4.3-4.4.4":0.02188},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00316,"11":0.13285,_:"6 7 8 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":3.46636},H:{"0":0.30422},L:{"0":52.21532},R:{_:"0"},M:{"0":0.06153},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VA.js index 6ed58d2b7309ef..5f6e4e71610811 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.00972,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00972,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.03888,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.23326,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.03888,"92":0,"93":0,"94":0.00972,"95":0,"96":0.00972,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.1555,"103":0,"104":0.01944,"105":0,"106":0,"107":0.03888,"108":6.2396,"109":3.78069,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00972,"67":0.11663,"68":0,"69":0,"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.95246,"94":0,"95":0.49567,"96":0,"97":0,"98":0.02916,"99":0,"100":0,"101":0,"102":0,"103":0.01944,"104":0,"105":0,"106":0.05831,"107":0.05831,"108":29.06953,"109":30.84811,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.01944,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":2.23537,"79":0,"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.00972,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":8.11537,"109":7.81408},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01944,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00972,"12.1":0.03888,"13.1":0.0486,"14.1":0.21382,"15.1":0,"15.2-15.3":0,"15.4":0.01944,"15.5":0.03888,"15.6":0.44707,"16.0":0.58314,"16.1":0.6123,"16.2":0.86499,"16.3":0.13607},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01548,"10.0-10.2":0,"10.3":0.01548,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.61247,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.02336,"14.5-14.8":0,"15.0-15.1":0.01548,"15.2-15.3":0,"15.4":0,"15.5":0.01548,"15.6":0.17057,"16.0":0.09316,"16.1":1.08561,"16.2":0.74447,"16.3":0.01548},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0.24166},I:{"0":0,"3":0,"4":0,"2.1":0,"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.08747,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04637},Q:{"13.1":0},O:{"0":0},H:{"0":0.01756},L:{"0":2.98141},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00976,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.05856,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06832,"79":0,"80":0,"81":0,"82":0.00976,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00976,"94":0.00976,"95":0,"96":0.06832,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.18544,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.2928,"109":6.18784,"110":4.0504,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00976,"67":0.10736,"68":0,"69":0,"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.00976,"88":0,"89":0,"90":0,"91":0,"92":0,"93":1.00528,"94":0,"95":0.71248,"96":0,"97":0.01952,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.02928,"104":0,"105":0,"106":0.00976,"107":0,"108":0.45872,"109":37.7224,"110":25.41504,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00976,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0488,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0488,"16":0,"17":0.01952,"18":1.09312,"79":0,"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.01952,"109":6.36352,"110":7.62256},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.10736,"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.06832,"12.1":0.00976,"13.1":0.1464,"14.1":0.05856,"15.1":0.00976,"15.2-15.3":0.00976,"15.4":0.01952,"15.5":0.01952,"15.6":0.06832,"16.0":0.47824,"16.1":0.37088,"16.2":0.32208,"16.3":0.98576,"16.4":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.38233,"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.00961,"15.4":0,"15.5":0.01902,"15.6":0.00961,"16.0":0.02864,"16.1":0.56399,"16.2":0.34408,"16.3":0.62127,"16.4":0},P:{"4":0,"20":0.03091,"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.11333},I:{"0":0,"3":0,"4":0,"2.1":0,"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.13664,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.005},L:{"0":3.17408},R:{_:"0"},M:{"0":0.0108},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js index e5b0d235a9f7c3..1ae37164bc91dc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.01323,"103":0,"104":0,"105":0,"106":0.02205,"107":0.02205,"108":0.52038,"109":0.44982,"110":0.02646,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00441,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00441,"50":0.01764,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00441,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00441,"72":0,"73":0,"74":0.00441,"75":0,"76":0.00882,"77":0,"78":0.00441,"79":0.00882,"80":0,"81":0.00441,"83":0.09702,"84":0,"85":0,"86":0,"87":0.00441,"88":0.00882,"89":0,"90":0.01323,"91":0.00441,"92":0.00441,"93":0.03087,"94":0.01764,"95":0.02646,"96":0,"97":0,"98":0.00882,"99":0.00441,"100":0.01764,"101":0.00441,"102":0.03969,"103":0.10584,"104":0.07938,"105":0.01323,"106":0.03528,"107":0.12348,"108":4.4541,"109":3.21048,"110":0.00441,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00882,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00441,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.10143,"94":0.2646,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00441,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00441,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00441,"103":0.00441,"104":0,"105":0.02646,"106":0.00882,"107":0.02205,"108":1.73754,"109":1.07163},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.08379,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00882,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00441,"12.1":0.00441,"13.1":0.09261,"14.1":0.07056,"15.1":0.00441,"15.2-15.3":0.00441,"15.4":0.02205,"15.5":0.02646,"15.6":0.99225,"16.0":0.0441,"16.1":0.34398,"16.2":0.22491,"16.3":0.01764},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00404,"7.0-7.1":0.01212,"8.1-8.4":0.05453,"9.0-9.2":0,"9.3":0.14744,"10.0-10.2":0,"10.3":0.09897,"11.0-11.2":0.0202,"11.3-11.4":0,"12.0-12.1":0.0202,"12.2-12.5":0.70084,"13.0-13.1":0,"13.2":0,"13.3":0.00808,"13.4-13.7":0.01616,"14.0-14.4":0.18985,"14.5-14.8":0.12926,"15.0-15.1":0.45646,"15.2-15.3":0.04443,"15.4":0.09089,"15.5":1.94095,"15.6":1.48248,"16.0":2.6317,"16.1":5.36035,"16.2":4.31817,"16.3":0.31104},P:{"4":0.28329,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.26063,"8.2":0,"9.2":0.01133,"10.1":0,"11.1-11.2":0.01133,"12.0":0.02266,"13.0":0.03399,"14.0":0.01133,"15.0":0.05666,"16.0":0.05666,"17.0":0.07932,"18.0":0.10198,"19.0":2.4023},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.18512,"4.4":0,"4.4.3-4.4.4":0.80217},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02205,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.14534},Q:{"13.1":0},O:{"0":0.64285},H:{"0":0.10585},L:{"0":60.09426}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0046,"48":0,"49":0,"50":0,"51":0,"52":0.01379,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0046,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.0092,"107":0,"108":0,"109":0.6805,"110":0.469,"111":0.02759,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.0046,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.0046,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0046,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0046,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.02299,"77":0,"78":0,"79":0,"80":0,"81":0.01379,"83":0.08276,"84":0,"85":0,"86":0,"87":0.0046,"88":0.01839,"89":0.0046,"90":0,"91":0.0092,"92":0,"93":0.02759,"94":0.01379,"95":0,"96":0.0046,"97":0.0046,"98":0.0046,"99":0,"100":0.01379,"101":0,"102":0.01379,"103":0.14714,"104":0.01839,"105":0.0092,"106":0.0092,"107":0.05518,"108":0.55176,"109":5.61416,"110":3.2094,"111":0.0046,"112":0.0046,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0046,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.0092,"94":0.17013,"95":0.17013,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"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,"90":0,"91":0,"92":0.0046,"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.01839,"108":0.01839,"109":1.18169,"110":1.53113},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0046,"14":0.01839,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0046,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0046,"13.1":0.12874,"14.1":0.09656,"15.1":0,"15.2-15.3":0.03219,"15.4":0.01839,"15.5":0.05518,"15.6":0.47819,"16.0":0.01379,"16.1":0.15633,"16.2":0.29887,"16.3":0.44141,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0119,"6.0-6.1":0,"7.0-7.1":0.03767,"8.1-8.4":0.07336,"9.0-9.2":0,"9.3":0.02974,"10.0-10.2":0.00793,"10.3":0.08526,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.75345,"13.0-13.1":0.00397,"13.2":0,"13.3":0,"13.4-13.7":0.0119,"14.0-14.4":0.04362,"14.5-14.8":0.12095,"15.0-15.1":0.68603,"15.2-15.3":0.03767,"15.4":0.11698,"15.5":2.93646,"15.6":1.70715,"16.0":1.6556,"16.1":2.89086,"16.2":5.12939,"16.3":2.09577,"16.4":0.00793},P:{"4":0.26888,"20":0.81784,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10083,"8.2":0,"9.2":0.0112,"10.1":0,"11.1-11.2":0.02241,"12.0":0.0112,"13.0":0.0112,"14.0":0.04481,"15.0":0.03361,"16.0":0.02241,"17.0":0.04481,"18.0":0.02241,"19.0":1.16514},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.22219,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.49992},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.0092,"11":0.01839,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.01621,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.09724},H:{"0":0.02046},L:{"0":60.69093},R:{_:"0"},M:{"0":0.10804},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js index a2d65bc2c9f093..6d255e9c92c99e 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.00487,"27":0.08276,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00487,"44":0,"45":0,"46":0,"47":0.00487,"48":0,"49":0,"50":0,"51":0,"52":0.26774,"53":0,"54":0.37484,"55":0.00487,"56":0.00974,"57":0.00487,"58":0.00487,"59":0,"60":0.00974,"61":0.0146,"62":0.00487,"63":0,"64":0,"65":0.00487,"66":0.00974,"67":0.00487,"68":0.0146,"69":0.00487,"70":0.00487,"71":0,"72":0.01947,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01947,"79":0.00487,"80":0.00487,"81":0.00487,"82":0.00487,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00974,"89":0.00487,"90":0.00487,"91":0.0146,"92":0,"93":0.00487,"94":0.00487,"95":0.00487,"96":0,"97":0,"98":0.00487,"99":0.01947,"100":0.00487,"101":0.00974,"102":0.02921,"103":0.0146,"104":0.01947,"105":0.0146,"106":0.01947,"107":0.03894,"108":0.86164,"109":0.54522,"110":0.00487,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00487,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00487,"43":0,"44":0,"45":0.00487,"46":0,"47":0.00487,"48":0,"49":0.16551,"50":0,"51":0,"52":0.00487,"53":0,"54":0,"55":0,"56":0.00974,"57":0,"58":0.00487,"59":0,"60":0,"61":0,"62":0,"63":0.00487,"64":0.00487,"65":0.02434,"66":0.00487,"67":0.00974,"68":0.0146,"69":0.00974,"70":0.00974,"71":0.00487,"72":0.00487,"73":0.0146,"74":0.00974,"75":0.0146,"76":0.02434,"77":0.00974,"78":0.00487,"79":0.02921,"80":0.00974,"81":0.0146,"83":0.01947,"84":0.01947,"85":0.02921,"86":0.01947,"87":0.03408,"88":0.02921,"89":0.00974,"90":0.0146,"91":0.03894,"92":0.02921,"93":0.01947,"94":0.0146,"95":0.01947,"96":0.04381,"97":0.06328,"98":0.02921,"99":0.03894,"100":0.05842,"101":0.04381,"102":0.05842,"103":0.11196,"104":0.06815,"105":0.11196,"106":0.13144,"107":0.20932,"108":6.83954,"109":5.77345,"110":0.00487,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00487,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00487,"55":0,"56":0,"57":0,"58":0,"60":0.00487,"62":0,"63":0.00974,"64":0,"65":0,"66":0.00487,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00974,"74":0.00487,"75":0,"76":0,"77":0,"78":0,"79":0.0146,"80":0,"81":0,"82":0,"83":0.00487,"84":0,"85":0.00974,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00487,"93":0.34076,"94":0.52574,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00487,"16":0,"17":0,"18":0.00487,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00487,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00487,"105":0.00487,"106":0.00487,"107":0.01947,"108":0.45759,"109":0.43812},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00487,"15":0.00487,_:"0","3.1":0,"3.2":0,"5.1":0.00487,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00974,"14.1":0.0146,"15.1":0.00487,"15.2-15.3":0.00487,"15.4":0.00974,"15.5":0.0146,"15.6":0.05355,"16.0":0.00974,"16.1":0.02921,"16.2":0.03408,"16.3":0},G:{"8":0.00047,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00614,"6.0-6.1":0.00283,"7.0-7.1":0.01086,"8.1-8.4":0.01086,"9.0-9.2":0.00189,"9.3":0.09207,"10.0-10.2":0.00189,"10.3":0.07743,"11.0-11.2":0.00378,"11.3-11.4":0.00283,"12.0-12.1":0.00472,"12.2-12.5":0.24883,"13.0-13.1":0.01275,"13.2":0.00519,"13.3":0.01322,"13.4-13.7":0.02975,"14.0-14.4":0.06988,"14.5-14.8":0.1577,"15.0-15.1":0.03683,"15.2-15.3":0.06469,"15.4":0.07319,"15.5":0.10624,"15.6":0.46839,"16.0":0.6412,"16.1":1.14122,"16.2":0.93488,"16.3":0.08641},P:{"4":0.19827,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08348,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01044,"12.0":0,"13.0":0.03131,"14.0":0.01044,"15.0":0.01044,"16.0":0.03131,"17.0":0.12522,"18.0":0.05218,"19.0":0.69915},I:{"0":0,"3":0,"4":0.00766,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02298,"4.2-4.3":0.04085,"4.4":0,"4.4.3-4.4.4":0.58214},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03894,"5.5":0},J:{"7":0,"10":0.00513},N:{"10":0,"11":0},S:{"2.5":0.00513},R:{_:"0"},M:{"0":0.15909},Q:{"13.1":0},O:{"0":0.05132},H:{"0":0.46643},L:{"0":72.35244}}; +module.exports={C:{"2":0,"3":0,"4":0.00471,"5":0,"6":0,"7":0,"8":0.00471,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.06595,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00471,"44":0,"45":0.00471,"46":0,"47":0.00471,"48":0,"49":0.00471,"50":0,"51":0,"52":0.23555,"53":0,"54":0.34861,"55":0,"56":0.00942,"57":0,"58":0,"59":0,"60":0.00942,"61":0.01884,"62":0.00471,"63":0,"64":0,"65":0.00471,"66":0.00471,"67":0.00471,"68":0.01413,"69":0,"70":0.00471,"71":0,"72":0.00471,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01413,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00942,"89":0.00471,"90":0.00471,"91":0.00942,"92":0,"93":0.00471,"94":0.00471,"95":0.00471,"96":0,"97":0,"98":0.00471,"99":0.01413,"100":0.00471,"101":0.00471,"102":0.03298,"103":0.00942,"104":0.02356,"105":0.02356,"106":0.02827,"107":0.02827,"108":0.0424,"109":0.75847,"110":0.48052,"111":0.00471,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00471,"41":0,"42":0.00942,"43":0,"44":0.00471,"45":0,"46":0.00471,"47":0.00471,"48":0,"49":0.19786,"50":0.00471,"51":0,"52":0.00471,"53":0,"54":0,"55":0,"56":0.00942,"57":0,"58":0.00471,"59":0,"60":0,"61":0,"62":0,"63":0.00942,"64":0.00471,"65":0.03769,"66":0.00942,"67":0.00471,"68":0.00942,"69":0.00471,"70":0.00942,"71":0.00471,"72":0.00471,"73":0.01413,"74":0.00471,"75":0.01413,"76":0.01413,"77":0.00942,"78":0.00471,"79":0.02827,"80":0.00471,"81":0.00942,"83":0.02356,"84":0.00942,"85":0.01884,"86":0.01884,"87":0.02356,"88":0.01884,"89":0.00942,"90":0.01884,"91":0.01884,"92":0.01413,"93":0.02356,"94":0.01884,"95":0.01884,"96":0.0424,"97":0.04711,"98":0.05182,"99":0.03298,"100":0.06124,"101":0.04711,"102":0.05182,"103":0.09893,"104":0.0424,"105":0.07538,"106":0.0848,"107":0.13191,"108":0.39572,"109":8.23483,"110":2.83131,"111":0.00471,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00471,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00471,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00471,"64":0,"65":0,"66":0,"67":0.04711,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00471,"75":0,"76":0,"77":0,"78":0,"79":0.00942,"80":0,"81":0,"82":0,"83":0,"84":0.00471,"85":0.00942,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00471,"93":0.06595,"94":0.4711,"95":0.32035,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00471,"13":0,"14":0.00471,"15":0.00471,"16":0,"17":0,"18":0.00471,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00471,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00471,"106":0.00471,"107":0.01413,"108":0.00942,"109":0.39101,"110":0.45697},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00471,"15":0.00942,_:"0","3.1":0,"3.2":0,"5.1":0.00471,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00942,"14.1":0.02356,"15.1":0.00471,"15.2-15.3":0.00471,"15.4":0.00471,"15.5":0.00942,"15.6":0.06595,"16.0":0.01884,"16.1":0.02827,"16.2":0.03769,"16.3":0.03769,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00234,"6.0-6.1":0.0014,"7.0-7.1":0.01403,"8.1-8.4":0.01637,"9.0-9.2":0.00187,"9.3":0.10288,"10.0-10.2":0.00281,"10.3":0.07856,"11.0-11.2":0.00374,"11.3-11.4":0.00935,"12.0-12.1":0.00748,"12.2-12.5":0.32546,"13.0-13.1":0.00935,"13.2":0.0014,"13.3":0.01169,"13.4-13.7":0.02665,"14.0-14.4":0.06406,"14.5-14.8":0.12485,"15.0-15.1":0.0304,"15.2-15.3":0.04536,"15.4":0.05752,"15.5":0.09773,"15.6":0.31471,"16.0":0.47791,"16.1":0.86276,"16.2":0.97733,"16.3":0.58266,"16.4":0.00374},P:{"4":0.22399,"20":0.24532,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08533,"8.2":0,"9.2":0.01067,"10.1":0,"11.1-11.2":0.02133,"12.0":0,"13.0":0.032,"14.0":0.01067,"15.0":0.01067,"16.0":0.02133,"17.0":0.10666,"18.0":0.032,"19.0":0.47998},I:{"0":0,"3":0,"4":0.00488,"2.1":0,"2.2":0,"2.3":0.00244,"4.1":0.02686,"4.2-4.3":0.0415,"4.4":0,"4.4.3-4.4.4":0.50782},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00471,"10":0,"11":0.02827,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00529,_:"3.0-3.1"},J:{"7":0,"10":0.00529},O:{"0":0.02645},H:{"0":0.50073},L:{"0":74.1354},R:{_:"0"},M:{"0":0.12694},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js index 0a4356e8481ca6..887659c2a3d840 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,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02379,"96":0,"97":0.03399,"98":0.0068,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0034,"107":0.0034,"108":0.13596,"109":0.14276,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0034,"74":0,"75":0.06798,"76":0.0034,"77":0,"78":0,"79":0.0068,"80":0,"81":0,"83":0.04759,"84":0,"85":0.07818,"86":0,"87":0,"88":0,"89":0,"90":0.0136,"91":0,"92":0,"93":0.0136,"94":0,"95":0,"96":0.0034,"97":0,"98":0,"99":0,"100":0,"101":0.0068,"102":0.0034,"103":0.05099,"104":0.0102,"105":0.0102,"106":0.02379,"107":0.13596,"108":2.52206,"109":2.00881,"110":0.0034,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.03059,"94":0.02719,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0034,"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.0034,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.12236,"101":0,"102":0,"103":0,"104":0,"105":0.0034,"106":0,"107":0.02719,"108":0.6696,"109":0.54724},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02039,"14":0.017,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0068,"13.1":0.06798,"14.1":0.02719,"15.1":0.017,"15.2-15.3":0.0102,"15.4":0.12236,"15.5":0.82256,"15.6":0.79537,"16.0":0.06458,"16.1":0.98911,"16.2":0.92113,"16.3":0.0136},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04234,"10.0-10.2":0,"10.3":0.01588,"11.0-11.2":0.02117,"11.3-11.4":0.29637,"12.0-12.1":0,"12.2-12.5":0.31754,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.07409,"14.0-14.4":0.42868,"14.5-14.8":0.30695,"15.0-15.1":0.08997,"15.2-15.3":1.11139,"15.4":0.53982,"15.5":1.2384,"15.6":10.0501,"16.0":7.82204,"16.1":18.6607,"16.2":8.79583,"16.3":1.88936},P:{"4":0.03107,"5.0-5.4":0.02071,"6.2-6.4":0,"7.2-7.4":0.0932,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03107,"12.0":0,"13.0":0.01036,"14.0":0.04142,"15.0":0.05178,"16.0":0.05178,"17.0":0.02071,"18.0":0.10355,"19.0":3.38615},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0335,"4.4":0,"4.4.3-4.4.4":0.20103},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.0034,"11":0.0102,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17823},Q:{"13.1":0},O:{"0":0.0066},H:{"0":0.00625},L:{"0":31.44263},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00395,"101":0,"102":0,"103":0.00395,"104":0.00395,"105":0,"106":0,"107":0,"108":0,"109":0.19355,"110":0.2607,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00395,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.0948,"76":0,"77":0,"78":0,"79":0.2765,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00395,"88":0,"89":0,"90":0.00395,"91":0,"92":0,"93":0.00395,"94":0.00395,"95":0,"96":0.00395,"97":0,"98":0,"99":0.0158,"100":0,"101":0.00395,"102":0.00395,"103":0.35155,"104":0.0158,"105":0.02765,"106":0.0079,"107":0.09085,"108":0.2686,"109":4.72815,"110":2.1725,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.079,"95":0.01185,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.00395,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.01975,"106":0,"107":0,"108":0.03555,"109":0.5135,"110":0.948},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01975,"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.158,"14.1":0.0474,"15.1":0.00395,"15.2-15.3":0.02765,"15.4":0.37525,"15.5":0.75445,"15.6":0.316,"16.0":0.0158,"16.1":0.6162,"16.2":1.2561,"16.3":0.2844,"16.4":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.9557,"10.0-10.2":0,"10.3":0.03577,"11.0-11.2":0.01022,"11.3-11.4":0.65417,"12.0-12.1":0,"12.2-12.5":1.08346,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.10732,"14.0-14.4":0.53151,"14.5-14.8":0.50596,"15.0-15.1":0.03066,"15.2-15.3":0.38841,"15.4":0.52129,"15.5":1.46165,"15.6":8.85169,"16.0":3.09196,"16.1":12.1123,"16.2":11.56545,"16.3":7.3236,"16.4":0.15843},P:{"4":0.0322,"20":1.15906,"5.0-5.4":0.01073,"6.2-6.4":0,"7.2-7.4":0.13952,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05366,"12.0":0,"13.0":0.06439,"14.0":0.07512,"15.0":0.01073,"16.0":0.0322,"17.0":0.06439,"18.0":0.02146,"19.0":1.70639},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.2628},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.0726},H:{"0":0.00573},L:{"0":30.3683},R:{_:"0"},M:{"0":0.21175},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js index 6ede32d58718cd..2709dc3189b2f8 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.01749,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01166,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00583,"107":0.86867,"108":1.23013,"109":1.05523,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.96778,"76":0.15158,"77":0,"78":0,"79":0.12243,"80":0.01166,"81":0,"83":0.01166,"84":0.00583,"85":0.00583,"86":0,"87":0.04081,"88":0.00583,"89":0.00583,"90":0,"91":0.00583,"92":0,"93":0.31482,"94":0,"95":0.15741,"96":0.00583,"97":0.00583,"98":0.01749,"99":0.00583,"100":0.01166,"101":0.01749,"102":0.09328,"103":0.15158,"104":0.02332,"105":0.20405,"106":0.09328,"107":0.22154,"108":7.4041,"109":5.3053,"110":0.01749,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.1166,"94":0.0583,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00583,"15":0,"16":0,"17":0,"18":0.00583,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00583,"90":0,"91":0,"92":0.00583,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00583,"104":0.04664,"105":0.00583,"106":0.05247,"107":0.04664,"108":2.93249,"109":2.47775},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01749,"12":0,"13":0.00583,"14":0.09911,"15":0.01166,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01166,"12.1":0.01166,"13.1":0.4664,"14.1":0.54802,"15.1":0.04081,"15.2-15.3":0.02915,"15.4":0.13409,"15.5":0.70543,"15.6":2.41362,"16.0":0.18656,"16.1":1.17766,"16.2":1.42835,"16.3":0.03498},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0199,"10.0-10.2":0,"10.3":0.12738,"11.0-11.2":0.00796,"11.3-11.4":0.0199,"12.0-12.1":0.00398,"12.2-12.5":0.11941,"13.0-13.1":0,"13.2":0,"13.3":0.03582,"13.4-13.7":0.09155,"14.0-14.4":0.25475,"14.5-14.8":1.00706,"15.0-15.1":0.1433,"15.2-15.3":0.34232,"15.4":0.4896,"15.5":0.9792,"15.6":5.51693,"16.0":5.01539,"16.1":16.30401,"16.2":7.33999,"16.3":0.39009},P:{"4":0.02096,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02096,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01048,"14.0":0.01048,"15.0":0,"16.0":0.09431,"17.0":0.14671,"18.0":0.03144,"19.0":2.48358},I:{"0":0,"3":0,"4":0,"2.1":0,"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.00583,"11":0.01749,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.37113},Q:{"13.1":0},O:{"0":0.00834},H:{"0":0.0987},L:{"0":23.81603}}; +module.exports={C:{"78":0.10454,"91":0.00581,"102":0.00581,"107":0.00581,"108":0.2207,"109":5.5176,"110":0.85378,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 103 104 105 106 111 112 3.5 3.6"},D:{"75":0.78989,"76":0.11616,"79":0.02323,"81":0.00581,"83":0.02323,"87":0.08712,"88":0.02323,"93":0.18005,"94":0.01162,"95":0.04066,"99":0.01162,"100":0.01162,"101":0.03485,"102":1.07448,"103":0.17424,"104":0.02323,"105":0.35429,"106":0.02904,"107":0.08712,"108":2.01538,"109":12.90538,"110":7.30646,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 77 78 80 84 85 86 89 90 91 92 96 97 98 111 112 113"},F:{"93":0.05227,"94":0.22651,"95":0.08712,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"89":0.01162,"103":0.02904,"104":0.13358,"105":0.01162,"106":0.04646,"107":0.02904,"108":0.1452,"109":4.12368,"110":8.26478,_:"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"},E:{"4":0,"13":0.01742,"14":0.19166,"15":0.06389,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.4","12.1":0.02323,"13.1":0.34267,"14.1":0.57499,"15.1":0.37171,"15.2-15.3":0.12778,"15.4":0.11616,"15.5":1.58558,"15.6":2.06184,"16.0":0.15682,"16.1":0.48206,"16.2":3.53707,"16.3":1.62043},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.05498,"11.0-11.2":0.00239,"11.3-11.4":0.00956,"12.0-12.1":0.00239,"12.2-12.5":0.32034,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.04303,"14.0-14.4":0.05498,"14.5-14.8":0.5594,"15.0-15.1":0.08367,"15.2-15.3":0.1267,"15.4":0.16734,"15.5":0.34903,"15.6":2.51971,"16.0":1.74993,"16.1":7.49458,"16.2":6.07934,"16.3":3.50464,"16.4":0.01912},P:{"4":0.06522,"20":0.72829,"5.0-5.4":0.04075,"6.2-6.4":0.08151,"7.2-7.4":0.60112,"8.2":0.01016,"9.2":0.04075,"10.1":0.01011,"11.1-11.2":0.14264,"12.0":0.04075,"13.0":0.12226,"14.0":0.01087,"15.0":0.08151,"16.0":0.04348,"17.0":0.26088,"18.0":0.03261,"19.0":1.15222},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01677},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04066,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.00419},H:{"0":0.01985},L:{"0":16.57858},R:{_:"0"},M:{"0":0.81344},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VN.js index 4d735dd3b57c59..54358f12c2c971 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.00132,"108":0.01986,"109":0.00927,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00265,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00132,"50":0,"51":0,"52":0,"53":0.00132,"54":0,"55":0,"56":0,"57":0.00132,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00132,"67":0,"68":0,"69":0,"70":0.00132,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00265,"78":0,"79":0.01059,"80":0.00132,"81":0.00265,"83":0.00265,"84":0.00265,"85":0.00397,"86":0.00397,"87":0.00397,"88":0,"89":0.00132,"90":0,"91":0.00132,"92":0.00132,"93":0,"94":0,"95":0.00132,"96":0.00132,"97":0.00132,"98":0,"99":0.00265,"100":0.00265,"101":0.00132,"102":0.00132,"103":0.00397,"104":0.00265,"105":0.00397,"106":0.00397,"107":0.01192,"108":0.4025,"109":0.28863,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00132,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00132,"37":0.00794,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00132,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00132,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00265,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0053,"94":0.01059,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00132,"79":0,"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.00132,"108":0.04237,"109":0.02913},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00132,"14":0.0053,"15":0.00132,_:"0","3.1":0,"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.00397,"14.1":0.01059,"15.1":0.00132,"15.2-15.3":0.00132,"15.4":0.00397,"15.5":0.00662,"15.6":0.02913,"16.0":0.00132,"16.1":0.00794,"16.2":0.01192,"16.3":0.00132},G:{"8":0.00279,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00279,"7.0-7.1":0.01953,"8.1-8.4":0.01395,"9.0-9.2":0.01395,"9.3":0.09765,"10.0-10.2":0.03348,"10.3":0.18972,"11.0-11.2":0.06696,"11.3-11.4":0.09207,"12.0-12.1":0.09207,"12.2-12.5":2.06176,"13.0-13.1":0.04464,"13.2":0.02232,"13.3":0.16461,"13.4-13.7":0.55241,"14.0-14.4":1.31964,"14.5-14.8":2.70345,"15.0-15.1":0.56078,"15.2-15.3":0.7756,"15.4":0.85372,"15.5":1.48703,"15.6":3.87243,"16.0":1.64606,"16.1":4.68988,"16.2":2.58627,"16.3":0.20646},P:{"4":0.34691,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11223,"8.2":0,"9.2":0.03061,"10.1":0.02041,"11.1-11.2":0.10203,"12.0":0.03061,"13.0":0.09183,"14.0":0.07142,"15.0":0.05102,"16.0":0.15305,"17.0":0.16325,"18.0":0.20406,"19.0":2.6018},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0253},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00397,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.06073},Q:{"13.1":0},O:{"0":1.85666},H:{"0":0.45176},L:{"0":65.28589}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0014,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.0014,"109":0.02102,"110":0.01401,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0028,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0014,"50":0,"51":0,"52":0,"53":0.0014,"54":0,"55":0,"56":0,"57":0.0014,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0014,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01261,"80":0.0014,"81":0.0028,"83":0.0014,"84":0.0014,"85":0.0028,"86":0.0028,"87":0.0028,"88":0,"89":0.0014,"90":0,"91":0.0014,"92":0.0014,"93":0,"94":0,"95":0.0014,"96":0.0014,"97":0.0014,"98":0,"99":0.0014,"100":0.0028,"101":0.0014,"102":0.0014,"103":0.0042,"104":0.0028,"105":0.0028,"106":0.0028,"107":0.0042,"108":0.01821,"109":0.47354,"110":0.30122,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0014,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0014,"37":0.00841,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0028,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0014,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0028,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00841,"95":0.00701,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0014,"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.0014,"109":0.03082,"110":0.04203},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0014,"14":0.0042,"15":0.0014,_:"0","3.1":0,"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.0042,"14.1":0.01121,"15.1":0.0014,"15.2-15.3":0.0014,"15.4":0.0028,"15.5":0.0056,"15.6":0.02522,"16.0":0.0014,"16.1":0.0056,"16.2":0.01261,"16.3":0.00841,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00284,"6.0-6.1":0.00284,"7.0-7.1":0.01986,"8.1-8.4":0.01135,"9.0-9.2":0.01703,"9.3":0.105,"10.0-10.2":0.02838,"10.3":0.19864,"11.0-11.2":0.05959,"11.3-11.4":0.08797,"12.0-12.1":0.08513,"12.2-12.5":1.98361,"13.0-13.1":0.03973,"13.2":0.0227,"13.3":0.15324,"13.4-13.7":0.52215,"14.0-14.4":1.23444,"14.5-14.8":2.6136,"15.0-15.1":0.52215,"15.2-15.3":0.72647,"15.4":0.79458,"15.5":1.36214,"15.6":3.34575,"16.0":1.43876,"16.1":3.90479,"16.2":3.29183,"16.3":1.71686,"16.4":0.00851},P:{"4":0.34593,"20":0.97674,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11192,"8.2":0,"9.2":0.0407,"10.1":0.02035,"11.1-11.2":0.10174,"12.0":0.03052,"13.0":0.0814,"14.0":0.07122,"15.0":0.05087,"16.0":0.13227,"17.0":0.15262,"18.0":0.16279,"19.0":1.71947},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0256},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0028,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":2.01217},H:{"0":0.42333},L:{"0":64.65364},R:{_:"0"},M:{"0":0.06019},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js index b71d940fef69af..fb8a33cccad4cb 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,"31":0,"32":0,"33":0,"34":0.00326,"35":0,"36":0,"37":0,"38":0.00979,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00326,"69":0,"70":0,"71":0,"72":0.07831,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06526,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00326,"89":0,"90":0,"91":0,"92":0.00326,"93":0.00326,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00326,"103":0,"104":0.01632,"105":0.00326,"106":0.00326,"107":0.00653,"108":0.40788,"109":0.27736,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00979,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00326,"60":0.00326,"61":0,"62":0,"63":0.00326,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01958,"70":0,"71":0.00326,"72":0.00653,"73":0,"74":0.01305,"75":0,"76":0,"77":0,"78":0.03589,"79":0.00653,"80":0.00326,"81":0.00326,"83":0,"84":0.00326,"85":0,"86":0.00653,"87":0.00326,"88":0.11421,"89":0.00326,"90":0.00326,"91":0,"92":0,"93":0,"94":0,"95":0.01958,"96":0.01632,"97":0,"98":0.00326,"99":0.00653,"100":0.00326,"101":0.00326,"102":0,"103":0.02284,"104":0.00979,"105":0.01958,"106":0.00979,"107":0.10442,"108":2.44072,"109":2.28084,"110":0,"111":0.01632,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.00326,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00326,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03263,"94":0.04242,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00326,"16":0,"17":0.00326,"18":0.00653,"79":0,"80":0,"81":0,"83":0,"84":0.01632,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05547,"92":0.00326,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01305,"101":0,"102":0,"103":0.01958,"104":0.00653,"105":0.00653,"106":0.01958,"107":0.07831,"108":0.5025,"109":0.36872},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.06852,"14":0.00653,"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.08484,"14.1":0.0261,"15.1":0.03263,"15.2-15.3":0.00326,"15.4":0.00979,"15.5":0.00979,"15.6":0.11421,"16.0":0.00326,"16.1":0.07831,"16.2":0.04895,"16.3":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.03232,"9.0-9.2":0,"9.3":0.03601,"10.0-10.2":0,"10.3":0.01478,"11.0-11.2":0.01108,"11.3-11.4":0.00369,"12.0-12.1":0.02955,"12.2-12.5":0.06926,"13.0-13.1":0.02863,"13.2":0,"13.3":0.01478,"13.4-13.7":0.02586,"14.0-14.4":0.32783,"14.5-14.8":1.1183,"15.0-15.1":0.21055,"15.2-15.3":0.52729,"15.4":0.07295,"15.5":0.45711,"15.6":1.30761,"16.0":0.81726,"16.1":2.29109,"16.2":1.1654,"16.3":0.01478},P:{"4":0.19811,"5.0-5.4":0.02085,"6.2-6.4":0.01043,"7.2-7.4":0.21897,"8.2":0,"9.2":0.01043,"10.1":0.01043,"11.1-11.2":0.03128,"12.0":0.07299,"13.0":0.12512,"14.0":0.07299,"15.0":0.14598,"16.0":0.34409,"17.0":0.06256,"18.0":0.12512,"19.0":1.06355},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.41177},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00457,"11":0.01827,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.13474},Q:{"13.1":0},O:{"0":1.21266},H:{"0":0.22961},L:{"0":77.7916}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01118,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02235,"69":0.00373,"70":0,"71":0,"72":0.12293,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00373,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00373,"91":0,"92":0,"93":0.00373,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00745,"100":0.00373,"101":0,"102":0,"103":0,"104":0,"105":0.00373,"106":0,"107":0.00373,"108":0,"109":0.49543,"110":0.4321,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00373,"57":0,"58":0,"59":0.0149,"60":0,"61":0,"62":0,"63":0.01118,"64":0,"65":0,"66":0,"67":0.00373,"68":0.00373,"69":0.06705,"70":0.00373,"71":0,"72":0.00745,"73":0,"74":0.03353,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00745,"81":0,"83":0.00373,"84":0.01863,"85":0,"86":0,"87":0.00373,"88":0.06333,"89":0,"90":0,"91":0.00373,"92":0,"93":0.01863,"94":0.00373,"95":0.01863,"96":0.0298,"97":0,"98":0,"99":0.00745,"100":0.00373,"101":0,"102":0.00745,"103":0.0894,"104":0.00745,"105":0.03353,"106":0.00373,"107":0.0298,"108":0.08195,"109":4.40668,"110":2.36538,"111":0.01118,"112":0.01118,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00373,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01863,"95":0.01863,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00373,"16":0,"17":0.01118,"18":0.01118,"79":0,"80":0,"81":0,"83":0,"84":0.00373,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01118,"91":0,"92":0.01118,"93":0,"94":0.00373,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00373,"101":0.01118,"102":0.00373,"103":0.00373,"104":0,"105":0.00373,"106":0.00745,"107":0.0149,"108":0.0149,"109":0.68913,"110":0.66305},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00373,"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.00373,"12.1":0.00373,"13.1":0.30173,"14.1":0.0447,"15.1":0.03353,"15.2-15.3":0.03353,"15.4":0.01118,"15.5":0.02235,"15.6":0.04843,"16.0":0.01118,"16.1":0.02235,"16.2":0.05588,"16.3":0.05588,"16.4":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.07492,"9.3":0.02358,"10.0-10.2":0,"10.3":0.02705,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.1755,"13.0-13.1":0,"13.2":0,"13.3":0.00416,"13.4-13.7":0.02012,"14.0-14.4":0.13665,"14.5-14.8":0.60279,"15.0-15.1":0.10197,"15.2-15.3":0.5355,"15.4":0.15677,"15.5":0.13318,"15.6":0.43007,"16.0":0.40302,"16.1":1.26384,"16.2":1.25968,"16.3":1.03286,"16.4":0},P:{"4":0.22531,"20":0.64521,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.21507,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.04097,"12.0":0,"13.0":0.03072,"14.0":0.10241,"15.0":0.1229,"16.0":0.22531,"17.0":0.02048,"18.0":0.08193,"19.0":1.32115},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.255,"4.4":0,"4.4.3-4.4.4":0.255},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00745,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00628,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.22363},H:{"0":0.16634},L:{"0":76.1606},R:{_:"0"},M:{"0":0.06275},Q:{"13.1":0.01255}}; 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 8c29a35fca0329..7e2bc525f1df3b 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,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.06556,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.9027,"103":0,"104":0,"105":0,"106":0,"107":0.13616,"108":0.76654,"109":4.80598,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.04539,"107":0,"108":1.53307,"109":2.07267,"110":0.02017,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.18155,"94":0.02017,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.13616,"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.02017,"106":0,"107":0.09077,"108":11.77541,"109":0.5396},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.09077,"15":0.02017,_:"0","3.1":0,"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.02017,"14.1":0,"15.1":0.31771,"15.2-15.3":0.33788,"15.4":0.04539,"15.5":0,"15.6":0.11095,"16.0":0,"16.1":0.09077,"16.2":0.40848,"16.3":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.25291,"12.0-12.1":0,"12.2-12.5":0.25291,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.12645,"14.5-14.8":1.39229,"15.0-15.1":0.69615,"15.2-15.3":1.07551,"15.4":0.19033,"15.5":0.44324,"15.6":0.37936,"16.0":2.34134,"16.1":3.60718,"16.2":1.51875,"16.3":0.19033},P:{"4":0.09142,"5.0-5.4":0.13206,"6.2-6.4":0,"7.2-7.4":0.18285,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.09142,"15.0":0,"16.0":0,"17.0":0,"18.0":0.09142,"19.0":2.09257},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02017},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.22802},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":57.71032}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01835,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.1346,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.03977,"103":0,"104":0,"105":0,"106":0,"107":0.01835,"108":0,"109":0.81369,"110":0.52309,"111":0,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.09789,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.09789,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.15601,"109":1.68857,"110":0.9697,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.05812,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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.60262,"108":0.01835,"109":1.20219,"110":0.56286},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.01835,"13.1":0,"14.1":0.23248,"15.1":0.07648,"15.2-15.3":0.27225,"15.4":0.01835,"15.5":0.01835,"15.6":0.07648,"16.0":0.11624,"16.1":0.15601,"16.2":0.23248,"16.3":0.87487,"16.4":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.08439,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.08439,"14.5-14.8":1.7799,"15.0-15.1":0.50789,"15.2-15.3":3.64573,"15.4":0,"15.5":0.16878,"15.6":0.42349,"16.0":2.2034,"16.1":2.03461,"16.2":1.18609,"16.3":2.37371,"16.4":0},P:{"4":0,"20":3.00315,"5.0-5.4":0.19148,"6.2-6.4":0,"7.2-7.4":0.06047,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.06047,"15.0":0,"16.0":0,"17.0":0,"18.0":0.06047,"19.0":2.17678},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.25247},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01835,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.11828},L:{"0":68.30736},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WS.js index 5bf89423173245..2e0e7de58f9d82 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.00304,"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.00304,"103":0,"104":0,"105":0,"106":0,"107":0.00607,"108":0.09415,"109":0.09111,"110":0.00304,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00304,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00304,"70":0.00607,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00304,"80":0,"81":0.0243,"83":0,"84":0,"85":0.00911,"86":0.00304,"87":0.02126,"88":0.03037,"89":0,"90":0.01215,"91":0.03037,"92":0.00304,"93":0.00304,"94":0.07289,"95":0.06074,"96":0.01822,"97":0,"98":0.00911,"99":0.00304,"100":0.00304,"101":0.00304,"102":0.00607,"103":0.0243,"104":0.02733,"105":0.03341,"106":0.03948,"107":0.10933,"108":2.67863,"109":1.92546,"110":0.00607,"111":0.0243,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00304,"55":0,"56":0,"57":0,"58":0.00304,"60":0.00304,"62":0,"63":0,"64":0.00304,"65":0,"66":0.00304,"67":0.00304,"68":0,"69":0,"70":0,"71":0,"72":0.00304,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00304,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00304,"94":0.08807,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00607,"13":0,"14":0,"15":0,"16":0,"17":0.00304,"18":0.01519,"79":0,"80":0.00911,"81":0,"83":0,"84":0.00304,"85":0,"86":0,"87":0,"88":0,"89":0.00304,"90":0.00304,"91":0,"92":0.02733,"93":0,"94":0,"95":0,"96":0.00304,"97":0,"98":0.00304,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00304,"105":0.00304,"106":0.00911,"107":0.03341,"108":0.31281,"109":0.37659},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00304,"14":0.00911,"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.01519,"14.1":0.03644,"15.1":0.13059,"15.2-15.3":0,"15.4":0.27637,"15.5":0.03037,"15.6":0.06985,"16.0":0.05163,"16.1":0.01519,"16.2":0.03644,"16.3":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.06089,"10.0-10.2":0,"10.3":0.00641,"11.0-11.2":0.00641,"11.3-11.4":0.02884,"12.0-12.1":0.01602,"12.2-12.5":1.3653,"13.0-13.1":0.0673,"13.2":0,"13.3":0.01763,"13.4-13.7":0.05769,"14.0-14.4":1.12332,"14.5-14.8":0.73393,"15.0-15.1":0.11217,"15.2-15.3":0.37658,"15.4":0.76598,"15.5":0.83328,"15.6":2.42613,"16.0":1.08006,"16.1":2.17133,"16.2":2.84597,"16.3":0.08173},P:{"4":0.16387,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0.66574,"8.2":0.01024,"9.2":0.04097,"10.1":0.02048,"11.1-11.2":0.05121,"12.0":0.43017,"13.0":0.61453,"14.0":0.57356,"15.0":0.14339,"16.0":1.96649,"17.0":0.18436,"18.0":1.10615,"19.0":2.64247},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03126},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00304,"11":0.00304,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.02089},R:{_:"0"},M:{"0":0.02785},Q:{"13.1":0},O:{"0":0.19496},H:{"0":0.95586},L:{"0":65.94762}}; +module.exports={C:{"30":0.02382,"95":0.00397,"102":0.00397,"107":0.05161,"108":0.00794,"109":0.6749,"110":0.76224,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 111 112 3.5 3.6"},D:{"27":0.0397,"69":0.0397,"71":0.01191,"73":0.01588,"76":0.00794,"79":0.01985,"80":0.00794,"81":0.01588,"87":0.01191,"88":0.00794,"89":0.00397,"91":0.01985,"92":0.03573,"93":0.01191,"94":0.00794,"95":0.3176,"96":0.01191,"98":0.04367,"99":0.01985,"100":0.02382,"101":0.00397,"102":0.01588,"103":0.1191,"104":0.07543,"105":0.08337,"106":0.08337,"107":0.12307,"108":0.76621,"109":12.35464,"110":6.91971,"111":0.08337,"112":0.14689,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 72 74 75 77 78 83 84 85 86 90 97 113"},F:{"36":0.00794,"81":0.00397,"94":0.04367,"95":0.05955,_:"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 82 83 84 85 86 87 88 89 90 91 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01588,"16":0.01191,"17":0.01588,"18":0.06749,"84":0.02382,"90":0.07543,"99":0.00794,"101":0.03573,"102":0.00397,"103":0.01191,"105":0.01985,"106":0.01191,"107":0.10719,"108":0.1588,"109":1.48081,"110":2.15968,_:"12 13 14 79 80 81 83 85 86 87 88 89 91 92 93 94 95 96 97 98 100 104"},E:{"4":0,"13":0.04367,"14":0.00794,"15":0.00397,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 16.4","13.1":0.54786,"14.1":0.13498,"15.1":0.03176,"15.2-15.3":0.00397,"15.4":0.36524,"15.5":0.00794,"15.6":0.27393,"16.0":0.00397,"16.1":0.03176,"16.2":0.18262,"16.3":0.05955},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00219,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02961,"10.0-10.2":0,"10.3":0.02083,"11.0-11.2":0,"11.3-11.4":0.09759,"12.0-12.1":0.01864,"12.2-12.5":0.56472,"13.0-13.1":0.00219,"13.2":0.00219,"13.3":0.05812,"13.4-13.7":0.09869,"14.0-14.4":0.26866,"14.5-14.8":0.45178,"15.0-15.1":0.04496,"15.2-15.3":0.19738,"15.4":0.42766,"15.5":0.55266,"15.6":1.11739,"16.0":0.77307,"16.1":1.46609,"16.2":2.72603,"16.3":0.61297,"16.4":0},P:{"4":0.08127,"20":0.25398,"5.0-5.4":0.03048,"6.2-6.4":0.04064,"7.2-7.4":0.26414,"8.2":0.01016,"9.2":0.0307,"10.1":0.03048,"11.1-11.2":0.04064,"12.0":0.03048,"13.0":0.24382,"14.0":0.14223,"15.0":0.03048,"16.0":2.24522,"17.0":0.0508,"18.0":0.47749,"19.0":1.44263},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00164,"4.4":0,"4.4.3-4.4.4":0.01645},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02382,_:"6 7 8 9 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0.02412,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.36783},H:{"0":2.00379},L:{"0":53.15773},R:{_:"0"},M:{"0":0.09648},Q:{"13.1":0.1206}}; 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 8af28ff39abffb..9fbcff0a42f0c0 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.0047,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"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.0047,"53":0.00235,"54":0,"55":0,"56":0.00235,"57":0.00235,"58":0,"59":0,"60":0.00235,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0047,"69":0.00235,"70":0,"71":0,"72":0.00235,"73":0.00235,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00235,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00235,"93":0,"94":0,"95":0.00235,"96":0,"97":0,"98":0,"99":0.00235,"100":0,"101":0.00235,"102":0.0047,"103":0.00235,"104":0.00235,"105":0.01411,"106":0.0047,"107":0.00706,"108":0.33398,"109":0.15053,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0047,"38":0,"39":0,"40":0.00235,"41":0,"42":0,"43":0.00235,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00235,"50":0,"51":0.00235,"52":0,"53":0.00235,"54":0,"55":0.00235,"56":0.00235,"57":0,"58":0.00235,"59":0,"60":0,"61":0,"62":0,"63":0.0047,"64":0.00235,"65":0,"66":0,"67":0,"68":0.01176,"69":0.00235,"70":0.00235,"71":0.00235,"72":0.00235,"73":0,"74":0.0047,"75":0.00235,"76":0.00706,"77":0.00235,"78":0.0047,"79":0.01411,"80":0.0047,"81":0.0047,"83":0.0047,"84":0.00235,"85":0.00235,"86":0.01176,"87":0.00941,"88":0.00706,"89":0.0047,"90":0.00235,"91":0.00706,"92":0.0047,"93":0.00235,"94":0.0047,"95":0.01176,"96":0.00706,"97":0.00235,"98":0.00706,"99":0.0047,"100":0.02117,"101":0.00706,"102":0.00941,"103":0.01882,"104":0.01646,"105":0.01882,"106":0.02587,"107":0.07997,"108":1.00901,"109":0.95021,"110":0,"111":0.00235,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00235,"64":0.00235,"65":0,"66":0,"67":0.00235,"68":0,"69":0.00235,"70":0,"71":0,"72":0.00235,"73":0.01176,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00235,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0047,"93":0.0047,"94":0.03763,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03998},B:{"12":0.00235,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00706,"85":0,"86":0,"87":0,"88":0,"89":0.0047,"90":0.00235,"91":0,"92":0.00941,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0047,"100":0.00235,"101":0.00235,"102":0,"103":0,"104":0.00235,"105":0.00235,"106":0.00235,"107":0.00941,"108":0.15053,"109":0.25402},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.00941,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00235,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.0047,"16.0":0,"16.1":0.00235,"16.2":0.00235,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00794,"5.0-5.1":0,"6.0-6.1":0.00389,"7.0-7.1":0.00275,"8.1-8.4":0.00032,"9.0-9.2":0.00551,"9.3":0.0034,"10.0-10.2":0,"10.3":0.01183,"11.0-11.2":0.00146,"11.3-11.4":0,"12.0-12.1":0.01312,"12.2-12.5":0.18289,"13.0-13.1":0.00373,"13.2":0.00794,"13.3":0.0068,"13.4-13.7":0.01474,"14.0-14.4":0.09574,"14.5-14.8":0.08521,"15.0-15.1":0.04325,"15.2-15.3":0.06156,"15.4":0.0716,"15.5":0.10708,"15.6":0.11145,"16.0":0.22598,"16.1":0.1892,"16.2":0.2574,"16.3":0.01701},P:{"4":0.64819,"5.0-5.4":0.08102,"6.2-6.4":0.02026,"7.2-7.4":0.12154,"8.2":0,"9.2":0.16205,"10.1":0.01013,"11.1-11.2":0.31397,"12.0":0.02026,"13.0":0.11141,"14.0":0.13166,"15.0":0.04051,"16.0":0.22282,"17.0":0.2532,"18.0":0.24307,"19.0":2.45098},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00331,"4.2-4.3":0.00441,"4.4":0,"4.4.3-4.4.4":0.07169},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00235,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.00765},R:{_:"0"},M:{"0":0.81834},Q:{"13.1":0},O:{"0":3.4569},H:{"0":6.92204},L:{"0":74.40378}}; +module.exports={C:{"2":0,"3":0.00238,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00238,"46":0,"47":0.00715,"48":0,"49":0,"50":0,"51":0,"52":0.00238,"53":0,"54":0,"55":0,"56":0.00238,"57":0.00238,"58":0,"59":0,"60":0.00238,"61":0,"62":0,"63":0,"64":0,"65":0.00477,"66":0,"67":0,"68":0.00477,"69":0,"70":0,"71":0,"72":0.00238,"73":0.00477,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00238,"90":0,"91":0.00238,"92":0,"93":0,"94":0.00238,"95":0,"96":0,"97":0,"98":0,"99":0.00238,"100":0.00238,"101":0.00238,"102":0.00477,"103":0.00477,"104":0.00477,"105":0.00238,"106":0.00477,"107":0.00715,"108":0.00953,"109":0.2097,"110":0.1263,"111":0.00238,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00238,"43":0.00238,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00238,"50":0,"51":0,"52":0,"53":0.00238,"54":0,"55":0.00477,"56":0.00715,"57":0.00238,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00953,"64":0.00238,"65":0,"66":0.00238,"67":0.00477,"68":0.0286,"69":0.00238,"70":0.00238,"71":0.00238,"72":0.00238,"73":0.00238,"74":0.00238,"75":0.00238,"76":0.00715,"77":0.00238,"78":0.00715,"79":0.00477,"80":0.00477,"81":0.00238,"83":0.00715,"84":0.00238,"85":0.00477,"86":0.00715,"87":0.00715,"88":0.00715,"89":0.00715,"90":0.00238,"91":0.01192,"92":0.00715,"93":0.00238,"94":0.00477,"95":0.00715,"96":0.01192,"97":0.00477,"98":0.00477,"99":0.00477,"100":0.03336,"101":0.00715,"102":0.00953,"103":0.03098,"104":0.00953,"105":0.0143,"106":0.01906,"107":0.03813,"108":0.07864,"109":1.45601,"110":0.66724,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00238,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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.02383,"68":0,"69":0.00238,"70":0,"71":0,"72":0.00238,"73":0.00715,"74":0.00238,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00238,"94":0.01906,"95":0.02621,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.05719},B:{"12":0.00238,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00477,"85":0,"86":0,"87":0,"88":0,"89":0.00238,"90":0.00238,"91":0,"92":0.01192,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00477,"100":0.00238,"101":0,"102":0,"103":0,"104":0.00715,"105":0.00238,"106":0.00238,"107":0.00715,"108":0.0143,"109":0.17396,"110":0.15966},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.0143,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00238,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00238,"15.6":0.00238,"16.0":0,"16.1":0.00477,"16.2":0.00238,"16.3":0.00477,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00548,"5.0-5.1":0,"6.0-6.1":0.00066,"7.0-7.1":0.00701,"8.1-8.4":0,"9.0-9.2":0.00767,"9.3":0.00307,"10.0-10.2":0,"10.3":0.00767,"11.0-11.2":0.00131,"11.3-11.4":0.00066,"12.0-12.1":0.01665,"12.2-12.5":0.19938,"13.0-13.1":0.01665,"13.2":0.00263,"13.3":0.01906,"13.4-13.7":0.01424,"14.0-14.4":0.09443,"14.5-14.8":0.07931,"15.0-15.1":0.04864,"15.2-15.3":0.08369,"15.4":0.06967,"15.5":0.13102,"15.6":0.17374,"16.0":0.3981,"16.1":0.2375,"16.2":0.23049,"16.3":0.1974,"16.4":0},P:{"4":0.42884,"20":0.48868,"5.0-5.4":0.06981,"6.2-6.4":0.01995,"7.2-7.4":0.1097,"8.2":0,"9.2":0.20944,"10.1":0.01995,"11.1-11.2":0.35903,"12.0":0.02992,"13.0":0.13962,"14.0":0.12965,"15.0":0.03989,"16.0":0.20944,"17.0":0.20944,"18.0":0.34906,"19.0":1.89489},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00372,"4.2-4.3":0.00372,"4.4":0,"4.4.3-4.4.4":0.05447},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},N:{"10":0,"11":0},S:{"2.5":0.00762,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":3.42765},H:{"0":7.52137},L:{"0":73.74432},R:{_:"0"},M:{"0":0.38085},Q:{"13.1":0.00762}}; 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 b5c9ae5bc6c54d..0f8383d4af875a 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.00954,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00477,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00477,"69":0,"70":0,"71":0,"72":0.00477,"73":0,"74":0,"75":0,"76":0,"77":0.00477,"78":0.30045,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00954,"90":0.01431,"91":0.09538,"92":0,"93":0,"94":0,"95":0,"96":0.00477,"97":0,"98":0.00477,"99":0.00477,"100":0.01431,"101":0.00954,"102":0.01908,"103":0,"104":0.00954,"105":0.01908,"106":0.00477,"107":0.08584,"108":2.11744,"109":0.82981,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00477,"39":0.00477,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00477,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00477,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00477,"78":0,"79":0.01908,"80":0,"81":0.00477,"83":0,"84":0,"85":0,"86":0,"87":0.00477,"88":0.00954,"89":0,"90":0.00477,"91":0.04292,"92":0.02385,"93":0.00477,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00477,"101":0.00477,"102":0,"103":0.06677,"104":0.02861,"105":0.00477,"106":0.05246,"107":0.12399,"108":5.6608,"109":5.61788,"110":0.00477,"111":0.00477,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00477,"47":0,"48":0,"49":0,"50":0,"51":0,"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.00477,"91":0,"92":0.00477,"93":0.12399,"94":0.42921,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01908},B:{"12":0,"13":0,"14":0,"15":0.00954,"16":0,"17":0.01431,"18":0.00477,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00477,"86":0.00477,"87":0,"88":0,"89":0.00954,"90":0.00477,"91":0,"92":0.01431,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00477,"101":0,"102":0,"103":0,"104":0.00477,"105":0.01908,"106":0.02385,"107":0.05723,"108":1.82176,"109":2.06975},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.09061,"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.00477,"13.1":0.03338,"14.1":0.09538,"15.1":0.03338,"15.2-15.3":0.04769,"15.4":0.01431,"15.5":0.04292,"15.6":0.52936,"16.0":0.04769,"16.1":0.08107,"16.2":0.41967,"16.3":0.0763},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0042,"6.0-6.1":0,"7.0-7.1":0.0105,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.01469,"11.0-11.2":0.0105,"11.3-11.4":0.02309,"12.0-12.1":0.0042,"12.2-12.5":0.18473,"13.0-13.1":0,"13.2":0,"13.3":0.05248,"13.4-13.7":0.02729,"14.0-14.4":1.21751,"14.5-14.8":0.86275,"15.0-15.1":0.10916,"15.2-15.3":0.28968,"15.4":0.27499,"15.5":0.85855,"15.6":2.33636,"16.0":3.79947,"16.1":5.61524,"16.2":3.54967,"16.3":0.2561},P:{"4":0.03032,"5.0-5.4":0.01011,"6.2-6.4":0,"7.2-7.4":0.07076,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06065,"12.0":0,"13.0":0.04043,"14.0":0.02022,"15.0":0.06065,"16.0":0.22237,"17.0":0.01011,"18.0":0.09097,"19.0":2.66849},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03161,"4.4":0,"4.4.3-4.4.4":0.07377},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08584,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.33478},Q:{"13.1":0},O:{"0":0.02092},H:{"0":0.51505},L:{"0":52.58349},S:{"2.5":0}}; +module.exports={C:{"33":0.01915,"34":0.00479,"52":0.01436,"60":0.01915,"68":0.00958,"78":0.07182,"89":0.00479,"91":0.12449,"92":0.00479,"93":0.00479,"95":0.05267,"96":0.01915,"97":0.00958,"100":0.09097,"102":0.04788,"103":0.00958,"104":0.01436,"105":0.00958,"106":0.04309,"107":0.01436,"108":0.14843,"109":3.72506,"110":2.7531,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 94 98 99 101 111 112 3.5 3.6"},D:{"49":0.00958,"62":0.00479,"68":0.07661,"70":0.0383,"76":0.00958,"78":0.00479,"79":0.00479,"81":0.07661,"85":0.01436,"87":0.00479,"88":0.00479,"90":0.01915,"91":0.0814,"93":0.00958,"94":0.02873,"95":0.00958,"97":0.00958,"99":0.00958,"101":0.01436,"102":0.02873,"103":0.08618,"104":0.01915,"105":0.02394,"106":0.02873,"107":0.07182,"108":1.3167,"109":14.13418,"110":8.68543,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 69 71 72 73 74 75 77 80 83 84 86 89 92 96 98 100 111 112 113"},F:{"93":0.00958,"94":0.38304,"95":0.29686,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01436,"15":0.02394,"17":0.02394,"18":0.00479,"84":0.01436,"92":0.00958,"99":0.00958,"102":0.00479,"103":0.00479,"104":0.00958,"105":0.04309,"106":0.00479,"107":0.06703,"108":0.23461,"109":3.12178,"110":4.94122,_:"13 14 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 100 101"},E:{"4":0,"13":0.01436,"14":0.02873,"15":0.04788,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.4","12.1":0.01436,"13.1":0.08618,"14.1":0.18673,"15.1":0.1197,"15.2-15.3":0.08618,"15.4":0.08618,"15.5":0.13885,"15.6":0.29207,"16.0":0.09576,"16.1":0.32558,"16.2":0.2777,"16.3":0.52668},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02269,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.00851,"11.0-11.2":0.00662,"11.3-11.4":0.02269,"12.0-12.1":0,"12.2-12.5":0.26662,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01607,"14.0-14.4":0.10306,"14.5-14.8":0.31957,"15.0-15.1":0.17775,"15.2-15.3":0.0728,"15.4":0.104,"15.5":0.11818,"15.6":1.14495,"16.0":1.31325,"16.1":1.98263,"16.2":2.271,"16.3":0.89346,"16.4":0.01135},P:{"4":0.02039,"20":1.14176,"5.0-5.4":0.01042,"6.2-6.4":0.01025,"7.2-7.4":0.06117,"8.2":0.02044,"9.2":0.06117,"10.1":0.0217,"11.1-11.2":0.09175,"12.0":0.02048,"13.0":0.02039,"14.0":0.02039,"15.0":0.01019,"16.0":0.12233,"17.0":0.03058,"18.0":0.04078,"19.0":2.07963},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03127},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13885,_:"6 7 8 9 10 5.5"},N:{"10":0.02102,"11":0.02035},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.04691},H:{"0":0.54278},L:{"0":42.60229},R:{_:"0"},M:{"0":0.15636},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js index e21d3c5e86f4ed..7675116bb9af2e 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.00191,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00572,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00191,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00191,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00381,"89":0,"90":0,"91":0.00191,"92":0,"93":0,"94":0.00191,"95":0,"96":0,"97":0,"98":0,"99":0.00191,"100":0.00191,"101":0,"102":0.00381,"103":0.00191,"104":0.00191,"105":0.00381,"106":0.00191,"107":0.00572,"108":0.11627,"109":0.06862,"110":0.00191,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00191,"47":0,"48":0,"49":0.00191,"50":0.00191,"51":0,"52":0.00572,"53":0,"54":0,"55":0.00381,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00191,"64":0,"65":0.00191,"66":0.00381,"67":0.00191,"68":0,"69":0.00191,"70":0.00191,"71":0,"72":0,"73":0,"74":0.00191,"75":0,"76":0.00191,"77":0,"78":0.00191,"79":0.00381,"80":0.00191,"81":0.01144,"83":0.00191,"84":0.00191,"85":0,"86":0.00191,"87":0.00191,"88":0.00381,"89":0,"90":0.00191,"91":0.00191,"92":0.00762,"93":0.00762,"94":0,"95":0.00191,"96":0.00191,"97":0.00191,"98":0.00191,"99":0.00191,"100":0.00381,"101":0.00381,"102":0.00381,"103":0.01144,"104":0.00381,"105":0.00572,"106":0.01144,"107":0.02478,"108":0.87295,"109":0.86914,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00191,"27":0,"28":0.00381,"29":0,"30":0,"31":0,"32":0.00191,"33":0,"34":0,"35":0.00191,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00191,"47":0,"48":0,"49":0,"50":0,"51":0.00191,"52":0,"53":0,"54":0.00191,"55":0,"56":0.00191,"57":0.00191,"58":0.00381,"60":0.00953,"62":0.00191,"63":0.0305,"64":0.01715,"65":0.01144,"66":0.08958,"67":0.01144,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00953,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00191,"93":0.01525,"94":0.04956,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00191},B:{"12":0.00191,"13":0,"14":0,"15":0,"16":0,"17":0.00191,"18":0.00191,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00191,"90":0,"91":0,"92":0.00191,"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.00191,"106":0.00191,"107":0.00953,"108":0.21157,"109":0.20966},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00191,"14":0.00572,"15":0.00191,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00191,"12.1":0.00191,"13.1":0.00953,"14.1":0.01525,"15.1":0.00381,"15.2-15.3":0.00381,"15.4":0.00762,"15.5":0.01334,"15.6":0.07433,"16.0":0.00953,"16.1":0.02668,"16.2":0.04765,"16.3":0.00381},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00161,"6.0-6.1":0.00484,"7.0-7.1":0.00484,"8.1-8.4":0.00807,"9.0-9.2":0.00484,"9.3":0.08556,"10.0-10.2":0,"10.3":0.03713,"11.0-11.2":0.00484,"11.3-11.4":0.01614,"12.0-12.1":0.00807,"12.2-12.5":0.49237,"13.0-13.1":0.0226,"13.2":0.00484,"13.3":0.03229,"13.4-13.7":0.0791,"14.0-14.4":0.24699,"14.5-14.8":0.52628,"15.0-15.1":0.1356,"15.2-15.3":0.19534,"15.4":0.25668,"15.5":0.60054,"15.6":1.72573,"16.0":1.74672,"16.1":5.20464,"16.2":3.25451,"16.3":0.25022},P:{"4":0.23249,"5.0-5.4":0.01011,"6.2-6.4":0,"7.2-7.4":0.41444,"8.2":0,"9.2":0.02022,"10.1":0.01011,"11.1-11.2":0.08087,"12.0":0.04043,"13.0":0.09097,"14.0":0.1213,"15.0":0.06065,"16.0":0.22238,"17.0":0.20217,"18.0":0.33357,"19.0":7.04549},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00847,"4.4":0,"4.4.3-4.4.4":0.04915},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02478,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.00809},R:{_:"0"},M:{"0":0.52611},Q:{"13.1":0.00809},O:{"0":0.56658},H:{"0":3.32569},L:{"0":65.95481}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00216,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00432,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00216,"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.00216,"88":0.00216,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00216,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00216,"101":0,"102":0.00432,"103":0.00216,"104":0.00216,"105":0.00216,"106":0.00216,"107":0.00432,"108":0.00864,"109":0.1404,"110":0.08424,"111":0.00216,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00216,"50":0.00216,"51":0,"52":0.00216,"53":0,"54":0,"55":0.00216,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00216,"67":0.00216,"68":0,"69":0.00216,"70":0.00216,"71":0,"72":0,"73":0,"74":0.00216,"75":0,"76":0.00216,"77":0,"78":0.00216,"79":0.00432,"80":0.00216,"81":0.0108,"83":0.00216,"84":0.00216,"85":0,"86":0.00216,"87":0.00216,"88":0.00432,"89":0,"90":0.00216,"91":0.00216,"92":0.0108,"93":0.00216,"94":0.00216,"95":0.00216,"96":0.00216,"97":0.00216,"98":0.00216,"99":0.00216,"100":0.00432,"101":0.00432,"102":0.00216,"103":0.01296,"104":0.00432,"105":0.00432,"106":0.00648,"107":0.01296,"108":0.05832,"109":1.52496,"110":0.81216,"111":0,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00216,"27":0,"28":0.00432,"29":0,"30":0,"31":0,"32":0.00216,"33":0,"34":0,"35":0.00216,"36":0,"37":0,"38":0.00216,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00216,"47":0,"48":0,"49":0,"50":0,"51":0.00216,"52":0,"53":0,"54":0.00216,"55":0,"56":0.00216,"57":0.00216,"58":0.00432,"60":0.0108,"62":0.00216,"63":0.02592,"64":0.01296,"65":0.00864,"66":0.07992,"67":0.21168,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00216,"74":0.00432,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00216,"94":0.03672,"95":0.03024,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00216},B:{"12":0.00216,"13":0,"14":0,"15":0.00216,"16":0,"17":0.00216,"18":0.00432,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00216,"93":0,"94":0,"95":0.00216,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00216,"106":0.00216,"107":0.00648,"108":0.0108,"109":0.22248,"110":0.27432},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00216,"14":0.00648,"15":0.00216,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00216,"12.1":0.00216,"13.1":0.0108,"14.1":0.01728,"15.1":0.00216,"15.2-15.3":0.00216,"15.4":0.00432,"15.5":0.01296,"15.6":0.06048,"16.0":0.00864,"16.1":0.0216,"16.2":0.06264,"16.3":0.04104,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00158,"6.0-6.1":0.00792,"7.0-7.1":0.00792,"8.1-8.4":0.00792,"9.0-9.2":0.00158,"9.3":0.07917,"10.0-10.2":0,"10.3":0.04117,"11.0-11.2":0.00317,"11.3-11.4":0.01583,"12.0-12.1":0.00792,"12.2-12.5":0.46076,"13.0-13.1":0.019,"13.2":0.00317,"13.3":0.02692,"13.4-13.7":0.07442,"14.0-14.4":0.21375,"14.5-14.8":0.47659,"15.0-15.1":0.13142,"15.2-15.3":0.17259,"15.4":0.23275,"15.5":0.50668,"15.6":1.24452,"16.0":1.35852,"16.1":3.54356,"16.2":3.8254,"16.3":2.18187,"16.4":0.0095},P:{"4":0.20314,"20":2.40721,"5.0-5.4":0.01016,"6.2-6.4":0,"7.2-7.4":0.38597,"8.2":0.01016,"9.2":0.01016,"10.1":0.01016,"11.1-11.2":0.10157,"12.0":0.04063,"13.0":0.08126,"14.0":0.10157,"15.0":0.06094,"16.0":0.20314,"17.0":0.15236,"18.0":0.2133,"19.0":4.42846},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00737,"4.4":0,"4.4.3-4.4.4":0.04127},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01728,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00784,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.51744},H:{"0":3.30297},L:{"0":65.76616},R:{_:"0"},M:{"0":0.5096},Q:{"13.1":0.00784}}; 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 5a87e01445f944..521edfd022d1f0 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.00256,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00256,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00256,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00256,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00256,"100":0.00256,"101":0,"102":0.00768,"103":0.00256,"104":0.00256,"105":0.00256,"106":0.00256,"107":0.01024,"108":0.16122,"109":0.08957,"110":0.01024,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00256,"38":0,"39":0,"40":0.00256,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00256,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00256,"56":0,"57":0,"58":0.00768,"59":0.00256,"60":0,"61":0,"62":0,"63":0.00256,"64":0.00256,"65":0,"66":0,"67":0.00256,"68":0.00512,"69":0,"70":0.00256,"71":0.00256,"72":0,"73":0.00256,"74":0.00256,"75":0.00256,"76":0.00512,"77":0.00256,"78":0.00512,"79":0.00512,"80":0.00256,"81":0.0128,"83":0.00256,"84":0,"85":0.00256,"86":0.00512,"87":0.00768,"88":0.00768,"89":0,"90":0.00768,"91":0.00256,"92":0.00256,"93":0.00256,"94":0.00256,"95":0.00768,"96":0.00512,"97":0.00256,"98":0.00768,"99":0.00512,"100":0.00512,"101":0.01024,"102":0.02047,"103":0.03583,"104":0.0128,"105":0.01535,"106":0.01535,"107":0.04862,"108":1.38186,"109":1.21297,"110":0.00256,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00256,"27":0.00256,"28":0.00256,"29":0,"30":0.00256,"31":0,"32":0,"33":0.00256,"34":0,"35":0.02047,"36":0,"37":0.00512,"38":0,"39":0,"40":0,"41":0,"42":0.00768,"43":0,"44":0,"45":0,"46":0,"47":0.01024,"48":0,"49":0,"50":0.00256,"51":0.07677,"52":0,"53":0,"54":0.00256,"55":0.00256,"56":0,"57":0.00768,"58":0.01024,"60":0.16634,"62":0.00256,"63":0.2124,"64":0.08701,"65":0.07933,"66":0.27637,"67":0.03839,"68":0,"69":0,"70":0,"71":0,"72":0.00512,"73":0.03839,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00512,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00256,"92":0.00256,"93":0.01535,"94":0.26614,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00256,"10.6":0.00256,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01791},B:{"12":0.01535,"13":0.00512,"14":0.00512,"15":0.01024,"16":0.00512,"17":0.00512,"18":0.02303,"79":0,"80":0,"81":0,"83":0,"84":0.00512,"85":0.00256,"86":0,"87":0,"88":0,"89":0.00512,"90":0.00512,"91":0,"92":0.01535,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00256,"101":0.00256,"102":0.00256,"103":0.00512,"104":0.00512,"105":0.00256,"106":0.00512,"107":0.03071,"108":0.33011,"109":0.30196},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00512,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00768,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00768,"14.1":0.01535,"15.1":0,"15.2-15.3":0,"15.4":0.00256,"15.5":0.00768,"15.6":0.03583,"16.0":0.01024,"16.1":0.01791,"16.2":0.0128,"16.3":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00226,"5.0-5.1":0.00451,"6.0-6.1":0,"7.0-7.1":0.01354,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08122,"10.0-10.2":0,"10.3":0.05076,"11.0-11.2":0.01128,"11.3-11.4":0.01128,"12.0-12.1":0.05415,"12.2-12.5":1.87375,"13.0-13.1":0.05866,"13.2":0.00338,"13.3":0.11055,"13.4-13.7":0.13988,"14.0-14.4":0.51328,"14.5-14.8":0.45236,"15.0-15.1":0.48508,"15.2-15.3":0.32151,"15.4":0.22562,"15.5":0.48846,"15.6":0.99385,"16.0":0.92842,"16.1":1.7914,"16.2":1.26571,"16.3":0.0722},P:{"4":0.11399,"5.0-5.4":0,"6.2-6.4":0.01036,"7.2-7.4":0.14508,"8.2":0,"9.2":0.01036,"10.1":0,"11.1-11.2":0.02073,"12.0":0,"13.0":0.09326,"14.0":0.03109,"15.0":0.02073,"16.0":0.07254,"17.0":0.0829,"18.0":0.11399,"19.0":0.97409},I:{"0":0,"3":0,"4":0.00201,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00403,"4.2-4.3":0.00201,"4.4":0,"4.4.3-4.4.4":0.16009},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00292,"11":0.01755,"5.5":0},J:{"7":0,"10":0.00744},N:{"10":0,"11":0},S:{"2.5":0.01488},R:{_:"0"},M:{"0":0.11162},Q:{"13.1":0},O:{"0":2.03139},H:{"0":12.41269},L:{"0":63.88399}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00268,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00268,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00268,"100":0,"101":0,"102":0.01073,"103":0.00268,"104":0.00268,"105":0,"106":0.00268,"107":0.00268,"108":0.00805,"109":0.14483,"110":0.09923,"111":0.00536,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00268,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00268,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00268,"54":0,"55":0.00268,"56":0,"57":0,"58":0.00268,"59":0.00268,"60":0,"61":0,"62":0,"63":0.00268,"64":0.00268,"65":0,"66":0,"67":0,"68":0.00268,"69":0.00268,"70":0,"71":0,"72":0,"73":0,"74":0.00268,"75":0.00268,"76":0.00268,"77":0.00268,"78":0.01341,"79":0.00268,"80":0.00268,"81":0.00805,"83":0.00268,"84":0.00268,"85":0.00268,"86":0.00268,"87":0.00536,"88":0.00536,"89":0,"90":0.00268,"91":0,"92":0.00536,"93":0.00268,"94":0,"95":0.00536,"96":0.00536,"97":0.00268,"98":0.00268,"99":0.00536,"100":0.00268,"101":0.00805,"102":0.02146,"103":0.03755,"104":0.01073,"105":0.01341,"106":0.01341,"107":0.02682,"108":0.1046,"109":1.72721,"110":0.94406,"111":0.00268,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00268,"25":0,"26":0.00268,"27":0,"28":0.00536,"29":0,"30":0.00268,"31":0,"32":0.00268,"33":0,"34":0,"35":0.02682,"36":0,"37":0.00805,"38":0,"39":0,"40":0,"41":0,"42":0.00536,"43":0,"44":0,"45":0,"46":0,"47":0.00805,"48":0,"49":0,"50":0.01073,"51":0.07778,"52":0,"53":0,"54":0.00268,"55":0.00268,"56":0,"57":0.00536,"58":0.01073,"60":0.14215,"62":0,"63":0.16897,"64":0.06973,"65":0.04559,"66":0.22529,"67":0.51763,"68":0.00268,"69":0,"70":0,"71":0,"72":0.00536,"73":0.01609,"74":0.00268,"75":0,"76":0,"77":0,"78":0,"79":0.00805,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00268,"91":0,"92":0,"93":0.00268,"94":0.14215,"95":0.2092,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.00268,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01877},B:{"12":0.01609,"13":0.00536,"14":0.00268,"15":0.00805,"16":0.00268,"17":0.00536,"18":0.02146,"79":0,"80":0,"81":0,"83":0,"84":0.00268,"85":0.00268,"86":0.00268,"87":0,"88":0,"89":0.00805,"90":0.00536,"91":0,"92":0.01877,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00268,"101":0.00268,"102":0,"103":0.00536,"104":0.00268,"105":0.00805,"106":0.00536,"107":0.02414,"108":0.03755,"109":0.33793,"110":0.39157},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00268,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00536,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00268,"13.1":0.00805,"14.1":0.01341,"15.1":0,"15.2-15.3":0,"15.4":0.00268,"15.5":0.01073,"15.6":0.02414,"16.0":0.00268,"16.1":0.01073,"16.2":0.01073,"16.3":0.01609,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00104,"4.2-4.3":0.00104,"5.0-5.1":0.00208,"6.0-6.1":0,"7.0-7.1":0.01662,"8.1-8.4":0.00104,"9.0-9.2":0.00104,"9.3":0.05298,"10.0-10.2":0,"10.3":0.04571,"11.0-11.2":0.01662,"11.3-11.4":0.00519,"12.0-12.1":0.03116,"12.2-12.5":1.85113,"13.0-13.1":0.02389,"13.2":0.00623,"13.3":0.02493,"13.4-13.7":0.13504,"14.0-14.4":0.37604,"14.5-14.8":0.42591,"15.0-15.1":0.44564,"15.2-15.3":0.25554,"15.4":0.24931,"15.5":0.36981,"15.6":0.71677,"16.0":0.76767,"16.1":1.28084,"16.2":1.03464,"16.3":0.97439,"16.4":0.00416},P:{"4":0.12458,"20":0.40487,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12458,"8.2":0,"9.2":0.02076,"10.1":0,"11.1-11.2":0.03114,"12.0":0,"13.0":0.06229,"14.0":0.01038,"15.0":0.01038,"16.0":0.05191,"17.0":0.04153,"18.0":0.09343,"19.0":0.80975},I:{"0":0,"3":0,"4":0.00225,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0054,"4.2-4.3":0.00405,"4.4":0,"4.4.3-4.4.4":0.15781},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00298,"11":0.02384,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.01464,_:"3.0-3.1"},J:{"7":0,"10":0.00732},O:{"0":2.04904},H:{"0":11.81953},L:{"0":64.50685},R:{_:"0"},M:{"0":0.10977},Q:{"13.1":0.00732}}; 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 3ae90dacc1e4d8..c9729451ce5c09 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00349,"49":0,"50":0,"51":0,"52":0.00349,"53":0,"54":0.00349,"55":0,"56":0,"57":0.00349,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00349,"69":0,"70":0,"71":0.01047,"72":0.00349,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00349,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00349,"85":0,"86":0,"87":0,"88":0,"89":0.00349,"90":0,"91":0.00349,"92":0,"93":0,"94":0.00349,"95":0,"96":0,"97":0,"98":0.00349,"99":0.00349,"100":0,"101":0,"102":0.01396,"103":0.00349,"104":0.01047,"105":0.00698,"106":0.04885,"107":0.02093,"108":0.62104,"109":0.27214,"110":0.00698,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00349,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00349,"39":0,"40":0.00349,"41":0,"42":0,"43":0.00349,"44":0,"45":0,"46":0.00698,"47":0.00349,"48":0,"49":0.00349,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00698,"56":0.00349,"57":0,"58":0.00698,"59":0.00349,"60":0,"61":0,"62":0,"63":0.00349,"64":0.00349,"65":0.00349,"66":0,"67":0,"68":0.00698,"69":0.00349,"70":0.00349,"71":0.00349,"72":0.00349,"73":0.00349,"74":0.01047,"75":0.00349,"76":0.00349,"77":0.00349,"78":0.00349,"79":0.01745,"80":0.00349,"81":0.01745,"83":0.00698,"84":0.00349,"85":0.00349,"86":0.00698,"87":0.00698,"88":0.00349,"89":0.00349,"90":0.00349,"91":0.00349,"92":0.01047,"93":0.00698,"94":0.00698,"95":0.00698,"96":0.01047,"97":0.00698,"98":0.01396,"99":0.01047,"100":0.01396,"101":0.01047,"102":0.02442,"103":0.04536,"104":0.03489,"105":0.04187,"106":0.04885,"107":0.15003,"108":2.9168,"109":2.74584,"110":0.00698,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00349,"27":0,"28":0.01047,"29":0,"30":0.00349,"31":0,"32":0.00698,"33":0,"34":0,"35":0.01745,"36":0,"37":0,"38":0.00349,"39":0,"40":0,"41":0,"42":0.03489,"43":0,"44":0,"45":0,"46":0.00698,"47":0.00349,"48":0,"49":0,"50":0.02093,"51":0.00698,"52":0,"53":0,"54":0.01396,"55":0.00349,"56":0.00349,"57":0.01396,"58":0.02093,"60":0.10816,"62":0,"63":0.2547,"64":0.11165,"65":0.07676,"66":0.20236,"67":0.0314,"68":0,"69":0,"70":0,"71":0.00349,"72":0.00349,"73":0.01396,"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.03489,"86":0.00349,"87":0,"88":0,"89":0,"90":0,"91":0.01047,"92":0.01396,"93":0.02442,"94":0.3489,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.10118},B:{"12":0.01047,"13":0.01047,"14":0.04187,"15":0.00698,"16":0.00698,"17":0.00698,"18":0.03489,"79":0,"80":0,"81":0,"83":0,"84":0.00698,"85":0.00349,"86":0,"87":0,"88":0,"89":0.01047,"90":0.00698,"91":0,"92":0.02093,"93":0,"94":0,"95":0,"96":0.00349,"97":0,"98":0,"99":0.00349,"100":0.00349,"101":0.00349,"102":0,"103":0.00349,"104":0.00349,"105":0.00698,"106":0.01396,"107":0.12909,"108":0.59662,"109":0.56522},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00349,"13":0.00349,"14":0.00349,"15":0.01047,_:"0","3.1":0,"3.2":0,"5.1":0.01047,"6.1":0,"7.1":0,"9.1":0.00349,"10.1":0,"11.1":0,"12.1":0.00349,"13.1":0.01396,"14.1":0.05931,"15.1":0.00349,"15.2-15.3":0.00698,"15.4":0.01047,"15.5":0.01745,"15.6":0.06978,"16.0":0.01047,"16.1":0.04187,"16.2":0.09071,"16.3":0.01396},G:{"8":0.00261,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00784,"8.1-8.4":0,"9.0-9.2":0.00392,"9.3":0.1006,"10.0-10.2":0.00131,"10.3":0.03789,"11.0-11.2":0.28088,"11.3-11.4":0.00784,"12.0-12.1":0.03789,"12.2-12.5":0.59704,"13.0-13.1":0.02613,"13.2":0.00784,"13.3":0.02221,"13.4-13.7":0.09798,"14.0-14.4":0.35535,"14.5-14.8":0.55654,"15.0-15.1":0.2234,"15.2-15.3":0.37103,"15.4":0.3449,"15.5":0.53564,"15.6":1.5847,"16.0":1.61475,"16.1":3.03614,"16.2":1.97794,"16.3":0.16722},P:{"4":0.1024,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12288,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.01024,"12.0":0.01024,"13.0":0.04096,"14.0":0.1536,"15.0":0.01024,"16.0":0.12288,"17.0":0.0512,"18.0":0.1536,"19.0":1.50525},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00752,"4.4":0,"4.4.3-4.4.4":0.14039},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00393,"11":0.02748,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.44867},S:{"2.5":0.00651},R:{_:"0"},M:{"0":0.4753},Q:{"13.1":0.04558},O:{"0":1.28267},H:{"0":8.45111}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00351,"49":0,"50":0,"51":0,"52":0.00351,"53":0,"54":0,"55":0,"56":0,"57":0.00351,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00351,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00351,"95":0,"96":0.01054,"97":0,"98":0,"99":0.01054,"100":0.00351,"101":0.00351,"102":0.01054,"103":0.00702,"104":0.00351,"105":0.00702,"106":0.03863,"107":0.01054,"108":0.07726,"109":0.46007,"110":0.30554,"111":0.01054,"112":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00351,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01054,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00702,"47":0,"48":0,"49":0.00702,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01054,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00702,"64":0.00351,"65":0.00351,"66":0,"67":0,"68":0.00351,"69":0.00702,"70":0.01054,"71":0.00351,"72":0.00351,"73":0.00351,"74":0.01405,"75":0.00351,"76":0.00351,"77":0.00702,"78":0.00351,"79":0.01756,"80":0.00351,"81":0.02458,"83":0.00351,"84":0.00351,"85":0.00351,"86":0.00351,"87":0.01054,"88":0.00702,"89":0.00351,"90":0.00351,"91":0.00351,"92":0.01756,"93":0.00702,"94":0.00351,"95":0.02107,"96":0.01054,"97":0.00351,"98":0.01054,"99":0.00702,"100":0.00702,"101":0.01054,"102":0.02107,"103":0.04214,"104":0.0281,"105":0.03161,"106":0.0281,"107":0.06673,"108":0.18965,"109":3.43825,"110":2.04047,"111":0.00702,"112":0,"113":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.01054,"27":0,"28":0.01054,"29":0,"30":0.00351,"31":0,"32":0.00702,"33":0,"34":0,"35":0.01405,"36":0,"37":0,"38":0.00351,"39":0,"40":0,"41":0,"42":0.01405,"43":0,"44":0,"45":0.00351,"46":0.00351,"47":0.07726,"48":0,"49":0,"50":0.03161,"51":0.00702,"52":0,"53":0,"54":0.01054,"55":0,"56":0,"57":0.01054,"58":0.0281,"60":0.14048,"62":0,"63":0.21072,"64":0.13697,"65":0.0597,"66":0.22477,"67":0.41793,"68":0,"69":0,"70":0.00351,"71":0,"72":0.00351,"73":0.00351,"74":0.00351,"75":0,"76":0,"77":0,"78":0,"79":0.01054,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01054,"86":0.00351,"87":0,"88":0,"89":0,"90":0.00351,"91":0.00351,"92":0.00351,"93":0.00702,"94":0.12643,"95":0.22477,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.10887},B:{"12":0.01054,"13":0.00702,"14":0.03512,"15":0.01054,"16":0.01054,"17":0.01054,"18":0.03512,"79":0,"80":0,"81":0,"83":0,"84":0.00702,"85":0.00351,"86":0,"87":0,"88":0,"89":0.01756,"90":0.00702,"91":0,"92":0.02458,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00351,"100":0.00702,"101":0,"102":0.00351,"103":0.00702,"104":0.00351,"105":0.00702,"106":0.00702,"107":0.05619,"108":0.05619,"109":0.52329,"110":0.68133},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00351,"14":0.00702,"15":0.00702,_:"0","3.1":0,"3.2":0,"5.1":0.00702,"6.1":0,"7.1":0,"9.1":0.00351,"10.1":0,"11.1":0.00351,"12.1":0.00351,"13.1":0.01054,"14.1":0.04214,"15.1":0.00351,"15.2-15.3":0.00351,"15.4":0.00702,"15.5":0.01405,"15.6":0.07726,"16.0":0.01054,"16.1":0.0281,"16.2":0.05619,"16.3":0.08078,"16.4":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00104,"6.0-6.1":0,"7.0-7.1":0.00104,"8.1-8.4":0.00208,"9.0-9.2":0.00104,"9.3":0.06652,"10.0-10.2":0,"10.3":0.03014,"11.0-11.2":0.12161,"11.3-11.4":0.0052,"12.0-12.1":0.04365,"12.2-12.5":0.54567,"13.0-13.1":0.00831,"13.2":0.00728,"13.3":0.02702,"13.4-13.7":0.06132,"14.0-14.4":0.26816,"14.5-14.8":0.46252,"15.0-15.1":0.1715,"15.2-15.3":0.26816,"15.4":0.23594,"15.5":0.40639,"15.6":0.86164,"16.0":1.06743,"16.1":1.73159,"16.2":1.70665,"16.3":1.36157,"16.4":0.00312},P:{"4":0.10244,"20":0.27659,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17415,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.02049,"12.0":0.01024,"13.0":0.05122,"14.0":0.08195,"15.0":0.04098,"16.0":0.14342,"17.0":0.06147,"18.0":0.08195,"19.0":1.08589},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00633,"4.4":0,"4.4.3-4.4.4":0.13421},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02107,"5.5":0},N:{"10":0,"11":0},S:{"2.5":0.00649,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.1873},H:{"0":8.31069},L:{"0":63.77162},R:{_:"0"},M:{"0":0.23357},Q:{"13.1":0.0519}}; 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 1936baf70fc8e5..a7cd6fae5a2dbc 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.00494,"43":0.00494,"47":0.00494,"48":0.00247,"52":0.04442,"56":0.00247,"60":0.00494,"65":0.00494,"72":0.00494,"77":0.00247,"78":0.00987,"88":0.00247,"89":0.00247,"91":0.00494,"94":0.00247,"95":0.00247,"99":0.00987,"100":0.00494,"101":0.00247,"102":0.02962,"103":0.0074,"104":0.00987,"105":0.00987,"106":0.01234,"107":0.03455,"108":0.87861,"109":0.53062,"110":0.01728,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 57 58 59 61 62 63 64 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 90 92 93 96 97 98 111 3.5 3.6"},D:{"11":0.00247,"33":0.00494,"34":0.00247,"38":0.00494,"40":0.00494,"43":0.03455,"47":0.00494,"49":0.02468,"50":0.00494,"52":0.00987,"55":0.00494,"56":0.00987,"58":0.00494,"60":0.00494,"62":0.00247,"63":0.00987,"64":0.00494,"65":0.0074,"66":0.0074,"67":0.0074,"68":0.0074,"69":0.01481,"70":0.01481,"71":0.00494,"72":0.01234,"73":0.00494,"74":0.02468,"75":0.0074,"76":0.01234,"77":0.00987,"78":0.0074,"79":0.05923,"80":0.01481,"81":0.01974,"83":0.01728,"84":0.01481,"85":0.02221,"86":0.02468,"87":0.03455,"88":0.01481,"89":0.01234,"90":0.02221,"91":0.03702,"92":0.04196,"93":0.04689,"94":0.04196,"95":0.02221,"96":0.02221,"97":0.01974,"98":0.04689,"99":0.02221,"100":0.02715,"101":0.02468,"102":0.03949,"103":0.09378,"104":0.04196,"105":0.0691,"106":0.07404,"107":0.18757,"108":6.8561,"109":6.12804,"110":0.00987,"111":0.00494,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 41 42 44 45 46 48 51 53 54 57 59 61 112"},F:{"28":0.00494,"64":0.00494,"72":0.00494,"73":0.0074,"79":0.01481,"81":0.00247,"82":0.00494,"83":0.00247,"84":0.00494,"85":0.00987,"86":0.00247,"89":0.00494,"90":0.00494,"91":0.00494,"92":0.01974,"93":0.15302,"94":0.51828,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 74 75 76 77 78 80 87 88 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01234,"13":0.00494,"14":0.0074,"15":0.00494,"16":0.0074,"17":0.00987,"18":0.03455,"84":0.0074,"85":0.00247,"89":0.0074,"90":0.00494,"92":0.02221,"100":0.00247,"101":0.00494,"103":0.00494,"104":0.00494,"105":0.01234,"106":0.01234,"107":0.05183,"108":1.09579,"109":1.05384,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 102"},E:{"4":0,"13":0.00494,"14":0.02468,"15":0.0074,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.04936,"11.1":0.00247,"12.1":0.00987,"13.1":0.03455,"14.1":0.05676,"15.1":0.01234,"15.2-15.3":0.00987,"15.4":0.02468,"15.5":0.04442,"15.6":0.19991,"16.0":0.02715,"16.1":0.08885,"16.2":0.14068,"16.3":0.01234},G:{"8":0.00098,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00197,"6.0-6.1":0.00197,"7.0-7.1":0.02853,"8.1-8.4":0.00295,"9.0-9.2":0.00492,"9.3":0.06295,"10.0-10.2":0.00393,"10.3":0.07869,"11.0-11.2":0.01377,"11.3-11.4":0.01279,"12.0-12.1":0.04328,"12.2-12.5":0.74167,"13.0-13.1":0.02262,"13.2":0.00984,"13.3":0.04722,"13.4-13.7":0.10525,"14.0-14.4":0.37969,"14.5-14.8":0.45936,"15.0-15.1":0.19575,"15.2-15.3":0.21837,"15.4":0.21935,"15.5":0.41805,"15.6":0.89119,"16.0":1.06923,"16.1":2.20239,"16.2":1.62991,"16.3":0.14165},P:{"4":0.23569,"5.0-5.4":0,"6.2-6.4":0.01036,"7.2-7.4":0.24593,"8.2":0,"9.2":0.03074,"10.1":0,"11.1-11.2":0.05124,"12.0":0.02049,"13.0":0.06148,"14.0":0.07173,"15.0":0.04099,"16.0":0.14346,"17.0":0.13321,"18.0":0.18445,"19.0":2.93071},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00221,"4.2-4.3":0.00958,"4.4":0,"4.4.3-4.4.4":0.056},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01062,"9":0.00265,"10":0.00531,"11":0.1221,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.08285},R:{_:"0"},M:{"0":0.30128},Q:{"13.1":0},O:{"0":0.61762},H:{"0":7.83676},L:{"0":56.83922}}; +module.exports={C:{"15":0.00207,"34":0.00413,"43":0.00413,"47":0.00207,"48":0.00207,"52":0.03927,"56":0.00207,"60":0.00207,"65":0.00207,"72":0.0062,"77":0.00207,"78":0.0062,"88":0.00413,"89":0.00207,"91":0.00413,"95":0.00207,"99":0.0062,"100":0.00413,"101":0.00207,"102":0.02274,"103":0.00413,"104":0.00827,"105":0.00827,"106":0.00827,"107":0.01447,"108":0.03307,"109":0.70278,"110":0.44647,"111":0.01654,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 57 58 59 61 62 63 64 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 90 92 93 94 96 97 98 112 3.5 3.6"},D:{"11":0.00207,"33":0.00413,"38":0.00413,"40":0.00413,"43":0.04341,"47":0.00413,"49":0.0248,"50":0.00413,"52":0.00207,"53":0.00207,"55":0.00413,"56":0.0062,"58":0.00413,"60":0.00207,"61":0.00207,"62":0.00207,"63":0.00827,"64":0.00413,"65":0.0062,"66":0.00413,"67":0.0124,"68":0.0062,"69":0.01654,"70":0.01034,"71":0.0062,"72":0.01034,"73":0.0062,"74":0.0186,"75":0.0062,"76":0.01034,"77":0.00827,"78":0.0062,"79":0.05788,"80":0.01447,"81":0.01447,"83":0.01447,"84":0.01034,"85":0.01654,"86":0.02067,"87":0.0248,"88":0.01447,"89":0.01034,"90":0.02067,"91":0.03101,"92":0.04341,"93":0.02894,"94":0.03101,"95":0.0186,"96":0.01654,"97":0.01447,"98":0.03514,"99":0.02067,"100":0.03101,"101":0.0186,"102":0.03307,"103":0.06614,"104":0.02894,"105":0.05374,"106":0.04341,"107":0.07648,"108":0.26458,"109":7.18283,"110":3.37128,"111":0.00827,"112":0.00413,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 46 48 51 54 57 59 113"},F:{"28":0.00413,"36":0.00207,"64":0.00207,"72":0.00207,"73":0.0062,"79":0.0124,"81":0.00207,"82":0.00207,"83":0.00207,"84":0.00413,"85":0.00827,"86":0.00207,"89":0.00413,"90":0.0062,"91":0.00207,"92":0.0062,"93":0.02274,"94":0.24597,"95":0.24804,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 74 75 76 77 78 80 87 88 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01034,"13":0.0062,"14":0.00413,"15":0.00413,"16":0.00413,"17":0.00413,"18":0.0248,"84":0.00413,"85":0.00207,"89":0.0062,"90":0.00413,"92":0.0186,"95":0.00207,"100":0.00207,"101":0.00413,"102":0.00207,"103":0.00207,"104":0.00207,"105":0.0062,"106":0.0062,"107":0.02274,"108":0.04547,"109":0.77099,"110":0.93842,_:"79 80 81 83 86 87 88 91 93 94 96 97 98 99"},E:{"4":0,"13":0.00413,"14":0.0186,"15":0.00413,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 16.4","5.1":0.03101,"11.1":0.00207,"12.1":0.00827,"13.1":0.02894,"14.1":0.04134,"15.1":0.00827,"15.2-15.3":0.0062,"15.4":0.01447,"15.5":0.0248,"15.6":0.12195,"16.0":0.0186,"16.1":0.04754,"16.2":0.12195,"16.3":0.08681},G:{"8":0.00083,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00167,"6.0-6.1":0.0025,"7.0-7.1":0.02333,"8.1-8.4":0.00167,"9.0-9.2":0.00333,"9.3":0.04749,"10.0-10.2":0.0025,"10.3":0.05998,"11.0-11.2":0.00833,"11.3-11.4":0.01,"12.0-12.1":0.03499,"12.2-12.5":0.63066,"13.0-13.1":0.01999,"13.2":0.00833,"13.3":0.03666,"13.4-13.7":0.08581,"14.0-14.4":0.27493,"14.5-14.8":0.3599,"15.0-15.1":0.14913,"15.2-15.3":0.17162,"15.4":0.16912,"15.5":0.30658,"15.6":0.58234,"16.0":0.74897,"16.1":1.34214,"16.2":1.45794,"16.3":0.97557,"16.4":0.00417},P:{"4":0.24775,"20":0.75357,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.23743,"8.2":0,"9.2":0.03097,"10.1":0,"11.1-11.2":0.07226,"12.0":0.02065,"13.0":0.08258,"14.0":0.08258,"15.0":0.04129,"16.0":0.15484,"17.0":0.14452,"18.0":0.1342,"19.0":2.07491},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00158,"4.2-4.3":0.00709,"4.4":0,"4.4.3-4.4.4":0.04687},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00906,"9":0.00226,"10":0.00226,"11":0.0815,_:"6 7 5.5"},N:{"10":0,"11":0},S:{"2.5":0.0714,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.46011},H:{"0":5.85064},L:{"0":64.46402},R:{_:"0"},M:{"0":0.23006},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js index 20a0198938534c..59b3b1bc92de66 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js @@ -1 +1 @@ -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"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,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"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},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.12126,"14.1":0,"15.1":0.45808,"15.2-15.3":0.27395,"15.4":0.11228,"15.5":1.09131,"15.6":4.47753,"16.0":1.71556,"16.1":4.76944,"16.2":5.77543,"16.3":0.6512},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.53632,"15.2-15.3":1.86475,"15.4":0.25578,"15.5":0.70959,"15.6":9.45574,"16.0":13.35851,"16.1":26.6015,"16.2":17.83885,"16.3":9.29072},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"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},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":0}}; +module.exports={C:{"109":0.01822,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 110 111 112 3.5 3.6"},D:{"106":0.01822,"108":0.01093,"109":0.02915,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 107 110 111 112 113"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110"},E:{"4":0,"14":0.01093,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1","13.1":0.02915,"15.1":0.696,"15.2-15.3":0.49923,"15.4":0.32067,"15.5":2.11352,"15.6":7.84918,"16.0":3.37434,"16.1":4.25984,"16.2":7.59774,"16.3":7.73621,"16.4":0.58304},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":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.74664,"15.2-15.3":2.34471,"15.4":0.24233,"15.5":0.47811,"15.6":6.08447,"16.0":6.06482,"16.1":19.91697,"16.2":18.17481,"16.3":8.46848,"16.4":0.94967},P:{"4":0.24775,"20":0.75357,"5.0-5.4":0.04075,"6.2-6.4":0.08151,"7.2-7.4":0.23743,"8.2":0.01016,"9.2":0.03097,"10.1":0.01011,"11.1-11.2":0.07226,"12.0":0.02065,"13.0":0.08258,"14.0":0.08258,"15.0":0.04129,"16.0":0.15484,"17.0":0.14452,"18.0":0.1342,"19.0":2.07491},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0.08898},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-as.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-as.js index f9acbe1214beb0..3bade19fd5e5a7 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.00299,"36":0.01195,"43":0.05976,"47":0.00299,"52":0.0508,"56":0.00896,"72":0.00299,"78":0.01195,"79":0.00299,"80":0.00299,"87":0.01494,"88":0.00598,"89":0.00299,"90":0.00598,"96":0.00598,"99":0.00299,"100":0.00299,"102":0.01793,"103":0.00598,"104":0.00598,"105":0.00598,"106":0.01793,"107":0.02092,"108":0.73206,"109":0.42131,"110":0.01494,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 81 82 83 84 85 86 91 92 93 94 95 97 98 101 111 3.5 3.6"},D:{"34":0.00896,"35":0.00299,"38":0.02092,"41":0.00299,"47":0.00598,"48":0.01195,"49":0.04183,"50":0.00299,"53":0.01494,"55":0.00896,"56":0.00896,"57":0.00896,"58":0.02988,"60":0.00299,"61":0.00598,"62":0.00299,"63":0.00896,"65":0.00598,"66":0.00598,"67":0.00598,"68":0.00896,"69":0.11354,"70":0.04781,"71":0.01195,"72":0.04781,"73":0.00896,"74":0.07171,"75":0.01195,"76":0.00598,"77":0.01494,"78":0.02988,"79":0.11952,"80":0.03287,"81":0.02092,"83":0.04482,"84":0.0239,"85":0.04781,"86":0.05677,"87":0.05378,"88":0.01195,"89":0.02988,"90":0.02689,"91":0.05677,"92":0.05378,"93":0.02092,"94":0.03884,"95":0.02092,"96":0.03884,"97":0.04482,"98":0.18526,"99":0.0508,"100":0.04183,"101":0.03586,"102":0.04183,"103":0.13147,"104":0.06574,"105":0.08964,"106":0.08665,"107":0.25398,"108":9.16121,"109":8.39927,"110":0.01195,"111":0.00598,_:"4 5 6 7 8 9 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 42 43 44 45 46 51 52 54 59 64 112"},F:{"28":0.00896,"36":0.00896,"40":0.00598,"46":0.02092,"79":0.00299,"85":0.00299,"92":0.00598,"93":0.13446,"94":0.2988,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00299,"16":0.00299,"17":0.00299,"18":0.01793,"84":0.00299,"89":0.00598,"92":0.00896,"101":0.00598,"103":0.00598,"104":0.00598,"105":0.00598,"106":0.01195,"107":0.03884,"108":1.27886,"109":1.11751,_:"13 14 15 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 100 102"},E:{"4":0,"13":0.01195,"14":0.04781,"15":0.01195,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.01195,"9.1":0.00598,"12.1":0.00896,"13.1":0.04183,"14.1":0.10757,"15.1":0.01793,"15.2-15.3":0.01494,"15.4":0.04781,"15.5":0.09562,"15.6":0.45119,"16.0":0.03586,"16.1":0.16434,"16.2":0.25996,"16.3":0.01793},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00304,"5.0-5.1":0.00405,"6.0-6.1":0.00405,"7.0-7.1":0.0162,"8.1-8.4":0.0081,"9.0-9.2":0.01721,"9.3":0.04556,"10.0-10.2":0.00911,"10.3":0.14985,"11.0-11.2":0.03038,"11.3-11.4":0.0162,"12.0-12.1":0.0243,"12.2-12.5":0.39995,"13.0-13.1":0.01721,"13.2":0.01013,"13.3":0.03746,"13.4-13.7":0.12454,"14.0-14.4":0.31692,"14.5-14.8":0.52955,"15.0-15.1":0.16909,"15.2-15.3":0.1944,"15.4":0.25819,"15.5":0.39995,"15.6":1.13099,"16.0":1.0672,"16.1":2.36322,"16.2":1.76381,"16.3":0.15087},P:{"4":0.20735,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.08294,"9.2":0.01037,"11.1-11.2":0.0311,"12.0":0.01037,"13.0":0.06221,"14.0":0.05184,"15.0":0.0311,"16.0":0.09331,"17.0":0.11404,"18.0":0.15551,"19.0":1.83507},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.08077,"4.4":0,"4.4.3-4.4.4":0.92882},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02559,"9":0.05119,"11":1.10049,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0.14022},R:{_:"0"},M:{"0":0.16826},Q:{"13.1":0.26642},O:{"0":1.84389},H:{"0":1.0952},L:{"0":55.16106}}; +module.exports={C:{"34":0.00288,"36":0.01151,"43":0.0374,"47":0.00288,"52":0.05179,"56":0.00863,"72":0.00288,"78":0.01151,"79":0.00288,"87":0.02014,"88":0.00575,"99":0.00288,"102":0.01726,"103":0.00288,"104":0.00575,"105":0.00575,"106":0.00863,"107":0.01151,"108":0.02877,"109":0.64733,"110":0.44594,"111":0.01151,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 80 81 82 83 84 85 86 89 90 91 92 93 94 95 96 97 98 100 101 112 3.5 3.6"},D:{"11":0.00288,"34":0.00863,"35":0.00288,"38":0.02014,"41":0.00575,"45":0.00288,"47":0.00863,"48":0.00863,"49":0.02877,"50":0.00288,"51":0.00288,"53":0.01439,"54":0.00288,"55":0.00863,"56":0.00863,"57":0.00863,"58":0.00575,"59":0.00288,"60":0.00863,"61":0.00575,"62":0.00288,"63":0.00863,"65":0.00575,"66":0.00575,"67":0.00575,"68":0.00863,"69":0.09206,"70":0.02877,"71":0.01151,"72":0.02877,"73":0.00863,"74":0.06329,"75":0.01151,"76":0.00575,"77":0.01151,"78":0.02589,"79":0.11796,"80":0.02877,"81":0.02589,"83":0.04316,"84":0.02589,"85":0.04028,"86":0.05466,"87":0.05179,"88":0.01151,"89":0.03165,"90":0.03452,"91":0.06617,"92":0.04891,"93":0.01726,"94":0.03165,"95":0.01726,"96":0.03165,"97":0.04028,"98":0.15824,"99":0.04891,"100":0.04028,"101":0.03452,"102":0.04028,"103":0.11508,"104":0.05754,"105":0.06905,"106":0.06617,"107":0.13234,"108":0.43155,"109":10.51256,"110":5.80579,"111":0.01151,"112":0.00575,_:"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 39 40 42 43 44 46 52 64 113"},F:{"28":0.00863,"36":0.01151,"40":0.00288,"46":0.02014,"79":0.00288,"85":0.00288,"93":0.02014,"94":0.21865,"95":0.16399,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00288,"17":0.00288,"18":0.01439,"84":0.00288,"89":0.00863,"92":0.00863,"103":0.00288,"104":0.00288,"105":0.00575,"106":0.00863,"107":0.02302,"108":0.08056,"109":0.96092,"110":1.263,_:"13 14 15 16 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102"},E:{"4":0,"13":0.01151,"14":0.04603,"15":0.00863,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 16.4","5.1":0.00863,"9.1":0.00863,"12.1":0.00863,"13.1":0.04028,"14.1":0.10357,"15.1":0.01726,"15.2-15.3":0.01439,"15.4":0.04316,"15.5":0.08056,"15.6":0.33086,"16.0":0.02589,"16.1":0.11796,"16.2":0.29633,"16.3":0.18413},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00335,"5.0-5.1":0.00446,"6.0-6.1":0.00446,"7.0-7.1":0.01673,"8.1-8.4":0.00781,"9.0-9.2":0.01673,"9.3":0.04573,"10.0-10.2":0.00781,"10.3":0.13163,"11.0-11.2":0.02789,"11.3-11.4":0.01785,"12.0-12.1":0.02454,"12.2-12.5":0.42611,"13.0-13.1":0.01673,"13.2":0.01004,"13.3":0.04239,"13.4-13.7":0.12716,"14.0-14.4":0.33353,"14.5-14.8":0.56332,"15.0-15.1":0.17513,"15.2-15.3":0.20079,"15.4":0.26772,"15.5":0.39488,"15.6":0.97605,"16.0":0.95931,"16.1":1.97775,"16.2":2.03575,"16.3":1.35754,"16.4":0.00558},P:{"4":0.2095,"20":0.65993,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07333,"8.2":0,"9.2":0.01048,"10.1":0,"11.1-11.2":0.03143,"12.0":0.01048,"13.0":0.05238,"14.0":0.0419,"15.0":0.03143,"16.0":0.0838,"17.0":0.09428,"18.0":0.11523,"19.0":1.257},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.22355,"4.4":0,"4.4.3-4.4.4":0.74518},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03951,"9":0.08891,"10":0.00988,"11":0.97798,_:"6 7 5.5"},N:{"10":0,"11":0},S:{"2.5":0.17095,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":1.85198},H:{"0":1.06549},L:{"0":55.73825},R:{_:"0"},M:{"0":0.15671},Q:{"13.1":0.25643}}; 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 b595ab2a2003dc..f6fe25c47e6b2c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js @@ -1 +1 @@ -module.exports={C:{"48":0.0048,"52":0.06237,"59":0.01439,"60":0.0048,"68":0.01439,"72":0.0048,"78":0.05758,"79":0.0048,"80":0.0096,"81":0.0096,"82":0.0048,"83":0.0096,"86":0.0096,"87":0.01439,"88":0.0096,"89":0.0096,"90":0.0096,"91":0.02399,"93":0.0048,"94":0.01919,"95":0.0048,"96":0.0096,"97":0.0048,"99":0.0096,"100":0.0096,"101":0.0096,"102":0.15833,"103":0.16793,"104":0.01439,"105":0.05758,"106":0.02879,"107":0.07197,"108":2.49016,"109":1.4442,"110":0.0048,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 65 66 67 69 70 71 73 74 75 76 77 84 85 92 98 111 3.5 3.6"},D:{"38":0.0096,"40":0.04318,"43":0.0048,"47":0.0096,"48":0.0048,"49":0.05278,"51":0.0048,"52":0.01919,"56":0.04318,"60":0.03359,"63":0.01439,"64":0.0048,"65":0.0048,"66":0.06237,"67":0.0096,"68":0.0096,"69":0.0096,"70":0.0096,"71":0.0096,"72":0.01919,"73":0.0096,"74":0.01439,"75":0.14394,"76":0.01439,"77":0.01439,"78":0.03838,"79":0.13914,"80":0.03359,"81":0.02399,"83":0.04318,"84":0.05758,"85":0.16313,"86":0.07677,"87":0.08157,"88":0.02399,"89":0.02879,"90":0.05278,"91":0.07677,"92":0.05758,"93":0.08157,"94":0.06717,"95":0.02399,"96":0.04318,"97":0.04318,"98":0.03838,"99":0.06717,"100":0.12475,"101":0.04798,"102":0.06717,"103":0.21111,"104":0.11035,"105":0.12955,"106":0.14394,"107":0.40783,"108":12.92101,"109":11.53919,"110":0.0096,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 45 46 50 53 54 55 57 58 59 61 62 111 112"},F:{"28":0.0048,"31":0.01439,"36":0.0048,"40":0.01439,"46":0.01439,"85":0.01439,"89":0.0048,"91":0.0048,"92":0.02879,"93":1.18031,"94":1.46819,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.0048,"17":0.0096,"18":0.01919,"84":0.0048,"85":0.0048,"86":0.0048,"92":0.0096,"99":0.0048,"100":0.0096,"101":0.0048,"102":0.0048,"103":0.01439,"104":0.01439,"105":0.01439,"106":0.02399,"107":0.11995,"108":2.98915,"109":2.81643,_:"12 13 14 16 79 80 81 83 87 88 89 90 91 93 94 95 96 97 98"},E:{"4":0,"13":0.01919,"14":0.11515,"15":0.02879,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.03838,"11.1":0.01439,"12.1":0.03838,"13.1":0.15833,"14.1":0.29748,"15.1":0.05278,"15.2-15.3":0.04798,"15.4":0.11515,"15.5":0.22071,"15.6":1.33384,"16.0":0.15354,"16.1":0.54697,"16.2":1.03157,"16.3":0.07677},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00361,"6.0-6.1":0,"7.0-7.1":0.01264,"8.1-8.4":0,"9.0-9.2":0.01083,"9.3":0.08125,"10.0-10.2":0.00181,"10.3":0.08125,"11.0-11.2":0.01444,"11.3-11.4":0.03431,"12.0-12.1":0.01264,"12.2-12.5":0.38278,"13.0-13.1":0.00903,"13.2":0.00542,"13.3":0.02167,"13.4-13.7":0.07944,"14.0-14.4":0.20583,"14.5-14.8":0.54528,"15.0-15.1":0.12097,"15.2-15.3":0.18236,"15.4":0.20583,"15.5":0.46764,"15.6":2.08722,"16.0":2.405,"16.1":5.99985,"16.2":3.74472,"16.3":0.30514},P:{"4":0.08387,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.02097,"13.0":0.03145,"14.0":0.03145,"15.0":0.02097,"16.0":0.05242,"17.0":0.05242,"18.0":0.11533,"19.0":2.98802},I:{"0":0,"3":0,"4":0.01407,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00603,"4.2-4.3":0.01407,"4.4":0,"4.4.3-4.4.4":0.05427},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01515,"9":0.0202,"10":0.00505,"11":0.15152,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.42656},Q:{"13.1":0},O:{"0":0.10924},H:{"0":0.51219},L:{"0":31.05504},S:{"2.5":0}}; +module.exports={C:{"48":0.00481,"52":0.06258,"59":0.01444,"60":0.00481,"68":0.01444,"72":0.00481,"78":0.04814,"79":0.00481,"80":0.00963,"81":0.00963,"82":0.00481,"83":0.00963,"86":0.00963,"87":0.01444,"88":0.00963,"89":0.00481,"90":0.00481,"91":0.02407,"93":0.00481,"94":0.01444,"95":0.00481,"96":0.00481,"99":0.00963,"100":0.00481,"101":0.00481,"102":0.16849,"103":0.17812,"104":0.01444,"105":0.02407,"106":0.01926,"107":0.02407,"108":0.13479,"109":2.39737,"110":1.59343,"111":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 47 49 50 51 53 54 55 56 57 58 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 84 85 92 97 98 112 3.5 3.6"},D:{"38":0.00963,"40":0.04333,"43":0.00481,"47":0.00963,"48":0.00481,"49":0.05295,"51":0.00481,"52":0.01926,"56":0.03851,"60":0.03851,"63":0.01444,"64":0.00481,"65":0.00481,"66":0.0674,"67":0.00481,"68":0.00963,"69":0.00963,"70":0.00963,"71":0.01444,"72":0.01444,"73":0.00481,"74":0.01926,"75":0.15405,"76":0.01926,"77":0.01444,"78":0.03851,"79":0.13479,"80":0.0337,"81":0.0337,"83":0.05295,"84":0.06258,"85":0.17812,"86":0.09147,"87":0.10109,"88":0.02407,"89":0.0337,"90":0.05777,"91":0.10591,"92":0.06258,"93":0.07702,"94":0.08184,"95":0.01926,"96":0.04333,"97":0.0337,"98":0.02888,"99":0.03851,"100":0.07702,"101":0.07221,"102":0.0674,"103":0.23107,"104":0.10109,"105":0.12516,"106":0.13479,"107":0.20219,"108":1.00613,"109":14.78861,"110":9.03106,"111":0.00963,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 45 46 50 53 54 55 57 58 59 61 62 112 113"},F:{"31":0.01926,"36":0.00481,"40":0.01444,"46":0.01444,"85":0.01444,"89":0.00963,"92":0.00481,"93":0.16368,"94":1.50678,"95":0.81838,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00481,"17":0.00963,"18":0.01926,"84":0.00481,"85":0.00481,"86":0.00481,"92":0.00963,"97":0.00481,"101":0.00481,"103":0.01444,"104":0.00963,"105":0.00963,"106":0.01444,"107":0.05777,"108":0.13961,"109":2.45033,"110":3.14836,_:"12 13 14 16 79 80 81 83 87 88 89 90 91 93 94 95 96 98 99 100 102"},E:{"4":0,"13":0.01926,"14":0.10591,"15":0.02407,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.04814,"11.1":0.01444,"12.1":0.03851,"13.1":0.14923,"14.1":0.27921,"15.1":0.04814,"15.2-15.3":0.04333,"15.4":0.09628,"15.5":0.17812,"15.6":0.90503,"16.0":0.10591,"16.1":0.34661,"16.2":1.06871,"16.3":0.77505,"16.4":0.00481},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00349,"6.0-6.1":0,"7.0-7.1":0.0122,"8.1-8.4":0.00174,"9.0-9.2":0.01394,"9.3":0.08192,"10.0-10.2":0.00174,"10.3":0.07843,"11.0-11.2":0.01917,"11.3-11.4":0.03486,"12.0-12.1":0.01394,"12.2-12.5":0.37125,"13.0-13.1":0.00871,"13.2":0.00697,"13.3":0.02092,"13.4-13.7":0.08366,"14.0-14.4":0.19347,"14.5-14.8":0.47408,"15.0-15.1":0.10981,"15.2-15.3":0.16035,"15.4":0.17778,"15.5":0.38171,"15.6":1.4484,"16.0":1.81965,"16.1":4.27548,"16.2":4.2319,"16.3":2.40702,"16.4":0.0122},P:{"4":0.0844,"20":1.16053,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01055,"8.2":0,"9.2":0.01048,"10.1":0,"11.1-11.2":0.0211,"12.0":0.01048,"13.0":0.0211,"14.0":0.0211,"15.0":0.01055,"16.0":0.0422,"17.0":0.05275,"18.0":0.07385,"19.0":1.87795},I:{"0":0,"3":0,"4":0.01443,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00361,"4.2-4.3":0.01443,"4.4":0,"4.4.3-4.4.4":0.05051},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0152,"9":0.02027,"10":0.00507,"11":0.15202,_:"6 7 5.5"},N:{"10":0,"11":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.11928},H:{"0":0.52044},L:{"0":31.68195},R:{_:"0"},M:{"0":0.43044},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-na.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-na.js index 352cec5a174517..780dd3dc50c752 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.00502,"11":0.03013,"38":0.00502,"43":0.00502,"44":0.02009,"45":0.00502,"48":0.01507,"52":0.03013,"54":0.01004,"55":0.00502,"78":0.06529,"79":0.00502,"80":0.00502,"81":0.01004,"82":0.00502,"83":0.01004,"87":0.01004,"88":0.01004,"91":0.01507,"93":0.01004,"94":0.04018,"95":0.00502,"97":0.00502,"98":0.00502,"99":0.00502,"100":0.00502,"101":0.01004,"102":0.10044,"103":0.01004,"104":0.01507,"105":0.02009,"106":0.02511,"107":0.06529,"108":1.49656,"109":0.80352,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 84 85 86 89 90 92 96 110 111 3.5 3.6"},D:{"35":0.01507,"40":0.01507,"43":0.00502,"47":0.00502,"48":0.06026,"49":0.0452,"52":0.00502,"56":0.27119,"60":0.01004,"64":0.00502,"65":0.01507,"66":0.06026,"67":0.01507,"68":0.02009,"69":0.02009,"70":0.01507,"71":0.02511,"72":0.02511,"73":0.02009,"74":0.03013,"75":0.03013,"76":0.0904,"77":0.02009,"78":0.03013,"79":0.13057,"80":0.05524,"81":0.10546,"83":0.16573,"84":0.07031,"85":0.08537,"86":0.11551,"87":0.13559,"88":0.06026,"89":0.08537,"90":0.09542,"91":0.08035,"92":0.07533,"93":0.12053,"94":0.06026,"95":0.10546,"96":0.15066,"97":0.16573,"98":0.14062,"99":0.17075,"100":0.18079,"101":0.20088,"102":0.30634,"103":0.60766,"104":0.24106,"105":0.29128,"106":0.24608,"107":0.76837,"108":13.65482,"109":10.48091,"110":0.03515,"111":0.06529,"112":0.01004,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 41 42 44 45 46 50 51 53 54 55 57 58 59 61 62 63"},F:{"89":0.01004,"92":0.00502,"93":0.30634,"94":0.49216,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02511,"18":0.01004,"80":0.00502,"81":0.00502,"83":0.00502,"84":0.01507,"85":0.01004,"86":0.01004,"87":0.01507,"88":0.01507,"89":0.01004,"90":0.01507,"91":0.01507,"92":0.01507,"93":0.00502,"94":0.01004,"95":0.01004,"96":0.01507,"97":0.01004,"98":0.01004,"99":0.00502,"100":0.04018,"101":0.01507,"102":0.01507,"103":0.02511,"104":0.02009,"105":0.02009,"106":0.03013,"107":0.20088,"108":3.11364,"109":2.8525,_:"13 14 15 16 17 79"},E:{"4":0,"8":0.00502,"9":0.01004,"12":0.00502,"13":0.05022,"14":0.18581,"15":0.04018,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.14062,"11.1":0.01004,"12.1":0.08035,"13.1":0.46705,"14.1":0.51224,"15.1":0.07533,"15.2-15.3":0.07533,"15.4":0.16573,"15.5":0.32141,"15.6":2.36536,"16.0":0.29128,"16.1":0.80854,"16.2":1.73761,"16.3":0.11048},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0026,"5.0-5.1":0,"6.0-6.1":0.0052,"7.0-7.1":0.0052,"8.1-8.4":0.0026,"9.0-9.2":0.02081,"9.3":0.06242,"10.0-10.2":0.0052,"10.3":0.07282,"11.0-11.2":0.03381,"11.3-11.4":0.03121,"12.0-12.1":0.02601,"12.2-12.5":0.3407,"13.0-13.1":0.09363,"13.2":0.07542,"13.3":0.03641,"13.4-13.7":0.10923,"14.0-14.4":0.31729,"14.5-14.8":0.69961,"15.0-15.1":0.17945,"15.2-15.3":0.27048,"15.4":0.29389,"15.5":0.64759,"15.6":3.4044,"16.0":2.75681,"16.1":9.29254,"16.2":5.75029,"16.3":0.36931},P:{"4":0.0541,_:"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.01082,"13.0":0.01082,"14.0":0.01082,"16.0":0.0541,"17.0":0.04328,"18.0":0.07573,"19.0":1.61207},I:{"0":0,"3":0.00369,"4":0.01106,"2.1":0.00246,"2.2":0.00615,"2.3":0.00492,"4.1":0.00369,"4.2-4.3":0.03073,"4.4":0,"4.4.3-4.4.4":0.03687},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06009,"9":0.07101,"10":0.01093,"11":0.16934,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.44304},Q:{"13.1":0.11947},O:{"0":0.08463},H:{"0":0.24978},L:{"0":22.90407},S:{"2.5":0.00498}}; +module.exports={C:{"4":0.00511,"11":0.03064,"17":0.00511,"38":0.00511,"43":0.00511,"44":0.02043,"45":0.00511,"48":0.01532,"52":0.03064,"54":0.00511,"55":0.00511,"72":0.00511,"78":0.06639,"79":0.01021,"80":0.00511,"81":0.01021,"82":0.01021,"83":0.01021,"84":0.00511,"87":0.01021,"88":0.00511,"91":0.01021,"93":0.01532,"94":0.03575,"101":0.00511,"102":0.11746,"103":0.01021,"104":0.01021,"105":0.01532,"106":0.01532,"107":0.02043,"108":0.09193,"109":1.384,"110":0.91415,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 85 86 89 90 92 95 96 97 98 99 100 111 112 3.5 3.6"},D:{"35":0.01021,"40":0.01532,"43":0.00511,"47":0.00511,"48":0.06128,"49":0.04596,"52":0.00511,"56":0.20939,"60":0.01021,"61":0.01532,"63":0.00511,"64":0.00511,"65":0.01021,"66":0.04596,"67":0.01532,"68":0.02554,"69":0.02554,"70":0.02043,"71":0.03064,"72":0.03064,"73":0.02043,"74":0.04086,"75":0.03575,"76":0.13789,"77":0.02554,"78":0.04086,"79":0.15832,"80":0.0715,"81":0.09703,"83":0.17364,"84":0.0715,"85":0.10725,"86":0.12257,"87":0.12768,"88":0.05618,"89":0.0715,"90":0.0715,"91":0.07661,"92":0.03575,"93":0.143,"94":0.04596,"95":0.01532,"96":0.05107,"97":0.08682,"98":0.05618,"99":0.07661,"100":0.07661,"101":0.11235,"102":0.19917,"103":0.50049,"104":0.13278,"105":0.26556,"106":0.15321,"107":0.31663,"108":2.17558,"109":14.23832,"110":8.67679,"111":0.03575,"112":0.06639,"113":0.01532,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 41 42 44 45 46 50 51 53 54 55 57 58 59 62"},F:{"55":0.00511,"93":0.04596,"94":0.45452,"95":0.28599,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00511,"17":0.00511,"18":0.01021,"80":0.01021,"81":0.01021,"83":0.01021,"84":0.01021,"85":0.01021,"86":0.01021,"87":0.01021,"88":0.00511,"89":0.00511,"90":0.00511,"103":0.01021,"104":0.00511,"105":0.01021,"106":0.01021,"107":0.19917,"108":0.16342,"109":2.45647,"110":3.5034,_:"13 14 15 16 79 91 92 93 94 95 96 97 98 99 100 101 102"},E:{"4":0,"9":0.01021,"12":0.00511,"13":0.04086,"14":0.19917,"15":0.05618,_:"0 5 6 7 8 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.17875,"11.1":0.01021,"12.1":0.0715,"13.1":0.46984,"14.1":0.58731,"15.1":0.09193,"15.2-15.3":0.08171,"15.4":0.18385,"15.5":0.3626,"15.6":1.9662,"16.0":0.20939,"16.1":0.62305,"16.2":2.16537,"16.3":1.43507,"16.4":0.00511},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00506,"7.0-7.1":0.00506,"8.1-8.4":0.00253,"9.0-9.2":0.02529,"9.3":0.05816,"10.0-10.2":0.00506,"10.3":0.06828,"11.0-11.2":0.03035,"11.3-11.4":0.02782,"12.0-12.1":0.02276,"12.2-12.5":0.31358,"13.0-13.1":0.02023,"13.2":0.12392,"13.3":0.03288,"13.4-13.7":0.10368,"14.0-14.4":0.28576,"14.5-14.8":0.59934,"15.0-15.1":0.16438,"15.2-15.3":0.24277,"15.4":0.24783,"15.5":0.52601,"15.6":2.44543,"16.0":2.26588,"16.1":6.44359,"16.2":6.82292,"16.3":3.42663,"16.4":0.0177},P:{"4":0.03296,"20":0.70315,"5.0-5.4":0.04075,"6.2-6.4":0.08151,"7.2-7.4":0.01055,"8.2":0.01016,"9.2":0.03097,"10.1":0.01011,"11.1-11.2":0.01099,"12.0":0.02065,"13.0":0.01099,"14.0":0.0211,"15.0":0.01055,"16.0":0.04395,"17.0":0.03296,"18.0":0.06592,"19.0":0.88993},I:{"0":0,"3":0.00382,"4":0.01146,"2.1":0.00127,"2.2":0.00509,"2.3":0,"4.1":0.00382,"4.2-4.3":0.03184,"4.4":0,"4.4.3-4.4.4":0.03566},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05096,"9":0.03963,"10":0.01132,"11":0.15854,_:"6 7 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.07829},H:{"0":0.24552},L:{"0":23.0302},R:{_:"0"},M:{"0":0.44037},Q:{"13.1":0.02936}}; 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 845b78080bc272..fe254c530166b8 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.00988,"34":0.00494,"52":0.02471,"54":0.01482,"59":0.00494,"66":0.00988,"78":0.1087,"83":0.00494,"87":0.01976,"91":0.00494,"94":0.04941,"102":0.05435,"103":0.03953,"104":0.00494,"105":0.00988,"106":0.03459,"107":0.07906,"108":1.53665,"109":0.85973,"110":0.00494,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 88 89 90 92 93 95 96 97 98 99 100 101 111 3.5 3.6"},D:{"25":0.01976,"26":0.01482,"34":0.03459,"38":0.09882,"47":0.00494,"49":0.04447,"53":0.00988,"56":0.00494,"59":0.02965,"60":0.05929,"62":0.00988,"65":0.01482,"66":0.03459,"67":0.03459,"68":0.00988,"69":0.22729,"70":0.00494,"72":0.00988,"73":0.00494,"74":0.01976,"75":0.00988,"76":0.01976,"77":0.00988,"78":0.01482,"79":0.12353,"80":0.01976,"81":0.00988,"83":0.01976,"84":0.01976,"85":0.04941,"86":0.2174,"87":0.07906,"88":0.01482,"89":0.00988,"90":0.01976,"91":0.01976,"92":0.02471,"93":0.03953,"94":0.01976,"95":0.01482,"96":0.05435,"97":0.06423,"98":0.03953,"99":0.09388,"100":0.05929,"101":0.07906,"102":0.06917,"103":0.4101,"104":0.13835,"105":0.20258,"106":0.16799,"107":0.66704,"108":13.50375,"109":11.50265,"110":0.01482,"111":0.00988,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 58 61 63 64 71 112"},F:{"28":0.00494,"46":0.03953,"89":0.02965,"92":0.00494,"93":0.43975,"94":0.44963,_:"9 11 12 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00494,"17":0.00494,"18":0.00988,"85":0.00988,"92":0.00988,"99":0.00494,"102":0.01482,"103":0.00988,"104":0.01976,"105":0.02471,"106":0.01976,"107":0.15317,"108":3.17212,"109":2.97942,_:"12 13 14 16 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 100 101"},E:{"4":0,"12":0.00494,"13":0.05929,"14":0.23223,"15":0.05435,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01482,"12.1":0.084,"13.1":0.31622,"14.1":0.65715,"15.1":0.09388,"15.2-15.3":0.084,"15.4":0.23223,"15.5":0.48422,"15.6":3.11777,"16.0":0.27176,"16.1":0.89432,"16.2":1.75406,"16.3":0.11364},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01061,"6.0-6.1":0.01326,"7.0-7.1":0.01061,"8.1-8.4":0.01326,"9.0-9.2":0.01591,"9.3":0.15648,"10.0-10.2":0.0053,"10.3":0.183,"11.0-11.2":0.03448,"11.3-11.4":0.07426,"12.0-12.1":0.03448,"12.2-12.5":0.82482,"13.0-13.1":0.01857,"13.2":0.00796,"13.3":0.05304,"13.4-13.7":0.122,"14.0-14.4":0.35539,"14.5-14.8":0.8646,"15.0-15.1":0.20156,"15.2-15.3":0.26256,"15.4":0.34478,"15.5":0.68425,"15.6":3.49288,"16.0":2.77415,"16.1":9.08362,"16.2":5.03378,"16.3":0.32091},P:{"4":0.23611,"5.0-5.4":0.02146,"6.2-6.4":0,"7.2-7.4":0.01073,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02146,"12.0":0,"13.0":0.0322,"14.0":0.0322,"15.0":0.02146,"16.0":0.07512,"17.0":0.06439,"18.0":0.12879,"19.0":3.06938},I:{"0":0,"3":0,"4":0.0031,"2.1":0,"2.2":0.00516,"2.3":0.00206,"4.1":0.0031,"4.2-4.3":0.00826,"4.4":0,"4.4.3-4.4.4":0.02891},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05029,"9":0.05029,"11":0.18105,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0},R:{_:"0"},M:{"0":0.48061},Q:{"13.1":0},O:{"0":0.08094},H:{"0":0.18679},L:{"0":21.85575}}; +module.exports={C:{"11":0.00517,"34":0.00517,"52":0.02069,"54":0.01552,"59":0.00517,"66":0.01035,"78":0.10863,"81":0.00517,"83":0.00517,"87":0.03104,"91":0.01035,"94":0.04656,"102":0.05173,"103":0.02587,"104":0.00517,"105":0.00517,"106":0.03104,"107":0.04138,"108":0.08794,"109":1.38636,"110":0.96735,"111":0.00517,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 82 84 85 86 88 89 90 92 93 95 96 97 98 99 100 101 112 3.5 3.6"},D:{"25":0.02069,"26":0.01035,"34":0.03104,"35":0.0776,"38":0.10863,"47":0.00517,"49":0.03104,"53":0.01035,"56":0.00517,"59":0.02587,"60":0.06725,"65":0.01035,"66":0.04138,"67":0.03104,"68":0.01035,"69":0.26382,"70":0.00517,"72":0.00517,"73":0.00517,"74":0.02069,"75":0.01035,"76":0.02069,"77":0.01035,"78":0.01552,"79":0.12933,"80":0.02587,"81":0.04138,"83":0.03621,"84":0.03621,"85":0.0569,"86":0.11381,"87":0.09829,"88":0.02587,"89":0.01552,"90":0.02069,"91":0.01552,"92":0.03104,"93":0.03621,"94":0.02069,"95":0.03104,"96":0.0569,"97":0.06208,"98":0.04656,"99":0.0569,"100":0.07242,"101":0.10346,"102":0.06725,"103":0.40349,"104":0.15002,"105":0.1914,"106":0.12415,"107":0.34659,"108":1.37602,"109":15.41554,"110":9.94768,"111":0.01035,"112":0.01035,_:"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 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 58 61 62 63 64 71 113"},F:{"28":0.00517,"46":0.04656,"89":0.01552,"93":0.06725,"94":0.54317,"95":0.23279,_:"9 11 12 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00517,"18":0.01035,"85":0.01035,"92":0.00517,"95":0.00517,"102":0.00517,"103":0.00517,"104":0.01552,"105":0.01552,"106":0.01035,"107":0.0776,"108":0.2483,"109":2.63306,"110":3.67283,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 90 91 93 94 96 97 98 99 100 101"},E:{"4":0,"12":0.00517,"13":0.05173,"14":0.23279,"15":0.04656,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.4","11.1":0.01552,"12.1":0.07242,"13.1":0.30521,"14.1":0.64663,"15.1":0.11898,"15.2-15.3":0.08794,"15.4":0.21209,"15.5":0.41384,"15.6":2.37441,"16.0":0.19657,"16.1":0.66214,"16.2":2.18301,"16.3":1.29842},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01005,"6.0-6.1":0.01256,"7.0-7.1":0.01005,"8.1-8.4":0.01256,"9.0-9.2":0.01256,"9.3":0.1457,"10.0-10.2":0.00502,"10.3":0.18087,"11.0-11.2":0.03014,"11.3-11.4":0.07536,"12.0-12.1":0.04019,"12.2-12.5":0.77372,"13.0-13.1":0.01507,"13.2":0.01005,"13.3":0.05527,"13.4-13.7":0.11555,"14.0-14.4":0.32657,"14.5-14.8":0.74608,"15.0-15.1":0.17584,"15.2-15.3":0.23613,"15.4":0.28135,"15.5":0.54763,"15.6":2.3538,"16.0":2.02975,"16.1":6.41832,"16.2":6.28016,"16.3":2.83361,"16.4":0.01005},P:{"4":0.23382,"20":1.12658,"5.0-5.4":0.03188,"6.2-6.4":0.08151,"7.2-7.4":0.01063,"8.2":0.01016,"9.2":0.03097,"10.1":0.01011,"11.1-11.2":0.01063,"12.0":0.02065,"13.0":0.03188,"14.0":0.03188,"15.0":0.02126,"16.0":0.06377,"17.0":0.06377,"18.0":0.09565,"19.0":1.80678},I:{"0":0,"3":0,"4":0.00296,"2.1":0,"2.2":0.00591,"2.3":0.00197,"4.1":0.00296,"4.2-4.3":0.0069,"4.4":0,"4.4.3-4.4.4":0.02758},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05272,"9":0.04218,"11":0.17926,_:"6 7 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.08206},H:{"0":0.17823},L:{"0":21.15149},R:{_:"0"},M:{"0":0.44408},Q:{"13.1":0.00483}}; 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 b23b392406954a..4dce50827dbe4b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-sa.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-sa.js @@ -1 +1 @@ -module.exports={C:{"27":0.00807,"52":0.04037,"54":0.02826,"66":0.00404,"68":0.00404,"72":0.00404,"73":0.00807,"78":0.01615,"79":0.00404,"80":0.00404,"81":0.00807,"86":0.00404,"88":0.01211,"90":0.00404,"91":0.04037,"97":0.00404,"99":0.01211,"100":0.00807,"102":0.04037,"103":0.00807,"104":0.01615,"105":0.01211,"106":0.02019,"107":0.03633,"108":0.89218,"109":0.53288,"110":0.00404,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 74 75 76 77 82 83 84 85 87 89 92 93 94 95 96 98 101 111 3.5 3.6"},D:{"38":0.01615,"47":0.00807,"49":0.07267,"53":0.00404,"55":0.00404,"58":0.00404,"63":0.00404,"65":0.00807,"66":0.01211,"68":0.01211,"69":0.00807,"70":0.00807,"71":0.00807,"72":0.01211,"73":0.00404,"74":0.02019,"75":0.01211,"76":0.01211,"77":0.01211,"78":0.01211,"79":0.12515,"80":0.02019,"81":0.02422,"83":0.02826,"84":0.03633,"85":0.06056,"86":0.04844,"87":0.06863,"88":0.02019,"89":0.02019,"90":0.05652,"91":0.30278,"92":0.06459,"93":0.05248,"94":0.05652,"95":0.01615,"96":0.03633,"97":0.03633,"98":0.02826,"99":0.03633,"100":0.04844,"101":0.0323,"102":0.04441,"103":0.13322,"104":0.0767,"105":0.10093,"106":0.10093,"107":0.26241,"108":13.35036,"109":13.45532,"110":0.01615,"111":0.00807,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 56 57 59 60 61 62 64 67 112"},F:{"28":0.00807,"36":0.00404,"79":0.00404,"85":0.00807,"92":0.00807,"93":2.26879,"94":1.55021,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.03633,"18":0.00807,"84":0.00404,"85":0.00404,"92":0.01211,"104":0.00404,"105":0.00807,"106":0.00807,"107":0.08074,"108":1.36451,"109":1.48158,_:"12 13 14 16 17 79 80 81 83 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103"},E:{"4":0,"14":0.02019,"15":0.00404,_:"0 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.0323,"12.1":0.00404,"13.1":0.0323,"14.1":0.05652,"15.1":0.00807,"15.2-15.3":0.00807,"15.4":0.02019,"15.5":0.04037,"15.6":0.16955,"16.0":0.02826,"16.1":0.10496,"16.2":0.16955,"16.3":0.01211},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00394,"6.0-6.1":0.00079,"7.0-7.1":0.00315,"8.1-8.4":0,"9.0-9.2":0.00079,"9.3":0.02602,"10.0-10.2":0.00079,"10.3":0.02129,"11.0-11.2":0.01025,"11.3-11.4":0.0268,"12.0-12.1":0.01183,"12.2-12.5":0.16477,"13.0-13.1":0.00631,"13.2":0.00394,"13.3":0.01261,"13.4-13.7":0.04178,"14.0-14.4":0.0883,"14.5-14.8":0.24203,"15.0-15.1":0.04336,"15.2-15.3":0.06465,"15.4":0.08909,"15.5":0.20498,"15.6":0.8538,"16.0":1.09741,"16.1":2.44867,"16.2":1.60511,"16.3":0.13087},P:{"4":0.14573,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.18737,"11.1-11.2":0.03123,"13.0":0.03123,"14.0":0.03123,"15.0":0.02082,"16.0":0.05205,"17.0":0.12491,"18.0":0.09369,"19.0":1.69676},I:{"0":0,"3":0,"4":0.00226,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00226,"4.2-4.3":0.00451,"4.4":0,"4.4.3-4.4.4":0.03272},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00843,"9":0.00843,"11":0.08004,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},H:{"0":0.19759},L:{"0":50.47781},S:{"2.5":0},R:{_:"0"},M:{"0":0.14311},Q:{"13.1":0},O:{"0":0.05367}}; +module.exports={C:{"27":0.00394,"52":0.03939,"54":0.02757,"68":0.00394,"73":0.00788,"78":0.01182,"80":0.00394,"81":0.00394,"86":0.00394,"87":0.00394,"88":0.01182,"91":0.03151,"96":0.00394,"97":0.00394,"99":0.00788,"102":0.04333,"103":0.00788,"104":0.0197,"105":0.01182,"106":0.0197,"107":0.0197,"108":0.04333,"109":0.83901,"110":0.54752,"111":0.00394,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 74 75 76 77 79 82 83 84 85 89 90 92 93 94 95 98 100 101 112 3.5 3.6"},D:{"38":0.01576,"47":0.00788,"49":0.06696,"51":0.00394,"53":0.00394,"55":0.00394,"58":0.00394,"63":0.00394,"65":0.00788,"66":0.01182,"67":0.00394,"68":0.01182,"69":0.00394,"70":0.00788,"71":0.00394,"72":0.00788,"73":0.00394,"74":0.01182,"75":0.01182,"76":0.01182,"77":0.00788,"78":0.01182,"79":0.12605,"80":0.01576,"81":0.02757,"83":0.02363,"84":0.03151,"85":0.05121,"86":0.04727,"87":0.06302,"88":0.01576,"89":0.0197,"90":0.04727,"91":0.32694,"92":0.04727,"93":0.04727,"94":0.04727,"95":0.01576,"96":0.03545,"97":0.03151,"98":0.02757,"99":0.03151,"100":0.04333,"101":0.03151,"102":0.03545,"103":0.12211,"104":0.06302,"105":0.08666,"106":0.07878,"107":0.14574,"108":0.52783,"109":15.96477,"110":9.83962,"111":0.01576,"112":0.00788,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 52 54 56 57 59 60 61 62 64 113"},F:{"28":0.00788,"36":0.00394,"79":0.00788,"85":0.00788,"93":0.31118,"94":2.45006,"95":0.71296,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00394,"15":0.03151,"18":0.00788,"84":0.00394,"92":0.01182,"105":0.00394,"106":0.00394,"107":0.04727,"108":0.03545,"109":1.15019,"110":1.57954,_:"13 14 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104"},E:{"4":0,"14":0.0197,"15":0.00788,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 16.4","9.1":0.02363,"12.1":0.00394,"13.1":0.03151,"14.1":0.05121,"15.1":0.00788,"15.2-15.3":0.00788,"15.4":0.01576,"15.5":0.03545,"15.6":0.1418,"16.0":0.02363,"16.1":0.07484,"16.2":0.14968,"16.3":0.12999},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00477,"6.0-6.1":0.0008,"7.0-7.1":0.00318,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02385,"10.0-10.2":0,"10.3":0.02385,"11.0-11.2":0.00795,"11.3-11.4":0.02067,"12.0-12.1":0.00795,"12.2-12.5":0.15426,"13.0-13.1":0.00398,"13.2":0.00318,"13.3":0.01034,"13.4-13.7":0.03737,"14.0-14.4":0.07872,"14.5-14.8":0.20674,"15.0-15.1":0.03817,"15.2-15.3":0.05884,"15.4":0.07713,"15.5":0.17095,"15.6":0.63134,"16.0":0.84523,"16.1":1.85426,"16.2":1.89163,"16.3":1.08218,"16.4":0.00557},P:{"4":0.16297,"20":0.68243,"5.0-5.4":0.03188,"6.2-6.4":0.08151,"7.2-7.4":0.18334,"8.2":0.01016,"9.2":0.03097,"10.1":0.01011,"11.1-11.2":0.03056,"12.0":0.02065,"13.0":0.03056,"14.0":0.03056,"15.0":0.02037,"16.0":0.05093,"17.0":0.11204,"18.0":0.0713,"19.0":1.07966},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00242,"4.2-4.3":0.00606,"4.4":0,"4.4.3-4.4.4":0.03394},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00846,"9":0.00846,"11":0.09731,_:"6 7 10 5.5"},N:{"10":0.03712,"11":0.07423},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.04849},H:{"0":0.1951},L:{"0":51.63368},R:{_:"0"},M:{"0":0.14546},Q:{"13.1":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-ww.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-ww.js index 05f7f8efd75c82..cd9c6cf1586228 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.00789,"36":0.00394,"43":0.0276,"44":0.00394,"48":0.00789,"52":0.04732,"56":0.00789,"59":0.00394,"68":0.00394,"72":0.00394,"78":0.03549,"79":0.00394,"80":0.00394,"81":0.00394,"82":0.00394,"83":0.00394,"87":0.01183,"88":0.00789,"89":0.00394,"90":0.00394,"91":0.01183,"94":0.01577,"96":0.00789,"99":0.00394,"100":0.00394,"101":0.00394,"102":0.09463,"103":0.04337,"104":0.01183,"105":0.02366,"106":0.02366,"107":0.04732,"108":1.33668,"109":0.761,"110":0.00789,_:"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 37 38 39 40 41 42 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 84 85 86 92 93 95 97 98 111 3.5 3.6"},D:{"34":0.00789,"35":0.00789,"38":0.01577,"40":0.01577,"43":0.00394,"47":0.00789,"48":0.01972,"49":0.04337,"52":0.00789,"53":0.00789,"55":0.00394,"56":0.08675,"57":0.00394,"58":0.01577,"60":0.01183,"63":0.00789,"64":0.00394,"65":0.00789,"66":0.03154,"67":0.00789,"68":0.01183,"69":0.05915,"70":0.0276,"71":0.01577,"72":0.03154,"73":0.01183,"74":0.04337,"75":0.04732,"76":0.03154,"77":0.01577,"78":0.0276,"79":0.12618,"80":0.03549,"81":0.03943,"83":0.07097,"84":0.04337,"85":0.08675,"86":0.07492,"87":0.07886,"88":0.0276,"89":0.04337,"90":0.05126,"91":0.07492,"92":0.06309,"93":0.05915,"94":0.05126,"95":0.03943,"96":0.06703,"97":0.07097,"98":0.12618,"99":0.0828,"100":0.09463,"101":0.07886,"102":0.1104,"103":0.26812,"104":0.11829,"105":0.14983,"106":0.13801,"107":0.41796,"108":11.22178,"109":9.7471,"110":0.01972,"111":0.01972,_:"4 5 6 7 8 9 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 41 42 44 45 46 50 51 54 59 61 62 112"},F:{"28":0.00789,"31":0.00394,"36":0.00789,"40":0.00789,"46":0.01183,"85":0.00789,"89":0.00394,"92":0.01183,"93":0.49682,"94":0.69003,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00789,"15":0.00394,"17":0.00394,"18":0.01577,"84":0.00789,"85":0.00789,"86":0.00394,"87":0.00394,"88":0.00394,"89":0.00789,"90":0.00394,"91":0.00394,"92":0.01183,"95":0.00394,"96":0.00394,"97":0.00394,"100":0.01183,"101":0.00789,"102":0.00394,"103":0.01183,"104":0.01183,"105":0.01183,"106":0.01972,"107":0.10252,"108":2.13316,"109":1.95967,_:"13 14 16 79 80 81 83 93 94 98 99"},E:{"4":0,"13":0.02366,"14":0.09858,"15":0.02366,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.00789,"9.1":0.04732,"11.1":0.00789,"12.1":0.03154,"13.1":0.17744,"14.1":0.25235,"15.1":0.03943,"15.2-15.3":0.03943,"15.4":0.09069,"15.5":0.18138,"15.6":1.13558,"16.0":0.12618,"16.1":0.41007,"16.2":0.80832,"16.3":0.0552},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00158,"5.0-5.1":0.00315,"6.0-6.1":0.00315,"7.0-7.1":0.01261,"8.1-8.4":0.0063,"9.0-9.2":0.01576,"9.3":0.0583,"10.0-10.2":0.0063,"10.3":0.1103,"11.0-11.2":0.02679,"11.3-11.4":0.02521,"12.0-12.1":0.02206,"12.2-12.5":0.3955,"13.0-13.1":0.03309,"13.2":0.02364,"13.3":0.03467,"13.4-13.7":0.10557,"14.0-14.4":0.28836,"14.5-14.8":0.56726,"15.0-15.1":0.15757,"15.2-15.3":0.20799,"15.4":0.25054,"15.5":0.47271,"15.6":1.89085,"16.0":1.7837,"16.1":4.8784,"16.2":3.17191,"16.3":0.23793},P:{"4":0.14773,"5.0-5.4":0,"6.2-6.4":0.01036,"7.2-7.4":0.05276,"8.2":0,"9.2":0.01036,"10.1":0,"11.1-11.2":0.0211,"12.0":0.01055,"13.0":0.03166,"14.0":0.03166,"15.0":0.0211,"16.0":0.07387,"17.0":0.08442,"18.0":0.12663,"19.0":2.09993},I:{"0":0,"3":0,"4":0.02865,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07641,"4.2-4.3":0.07641,"4.4":0,"4.4.3-4.4.4":0.3152},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.053,"9":0.07421,"10":0.0106,"11":0.50884,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},S:{"2.5":0.06663},R:{_:"0"},M:{"0":0.30285},Q:{"13.1":0.14537},O:{"0":0.89038},H:{"0":1.01498},L:{"0":41.36319}}; +module.exports={C:{"11":0.00772,"36":0.00386,"43":0.01931,"44":0.00386,"48":0.00386,"52":0.04633,"56":0.00386,"59":0.00386,"68":0.00386,"72":0.00386,"78":0.03475,"79":0.00386,"80":0.00386,"81":0.00386,"82":0.00386,"83":0.00386,"87":0.01544,"88":0.00772,"91":0.01158,"93":0.00772,"94":0.01158,"99":0.00386,"100":0.00386,"101":0.00386,"102":0.09653,"103":0.04247,"104":0.00772,"105":0.01158,"106":0.01544,"107":0.01931,"108":0.0695,"109":1.22008,"110":0.81467,"111":0.00772,_:"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 37 38 39 40 41 42 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 84 85 86 89 90 92 95 96 97 98 112 3.5 3.6"},D:{"34":0.00386,"35":0.00386,"38":0.01544,"40":0.01544,"43":0.00772,"47":0.00772,"48":0.01931,"49":0.03861,"52":0.00772,"53":0.00772,"55":0.00772,"56":0.0695,"57":0.00386,"60":0.01544,"61":0.00772,"63":0.00772,"65":0.00772,"66":0.02703,"67":0.00772,"68":0.01158,"69":0.05405,"70":0.01931,"71":0.01544,"72":0.02317,"73":0.01158,"74":0.04247,"75":0.04633,"76":0.04247,"77":0.01544,"78":0.03089,"79":0.12741,"80":0.03861,"81":0.04247,"83":0.07336,"84":0.04247,"85":0.0888,"86":0.07722,"87":0.08108,"88":0.02703,"89":0.03861,"90":0.04633,"91":0.08494,"92":0.05019,"93":0.06564,"94":0.04633,"95":0.01931,"96":0.03861,"97":0.05019,"98":0.09266,"99":0.05019,"100":0.05792,"101":0.06178,"102":0.08494,"103":0.23552,"104":0.08494,"105":0.13127,"106":0.10039,"107":0.19305,"108":0.98456,"109":12.40539,"110":7.25482,"111":0.01544,"112":0.01931,_:"4 5 6 7 8 9 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 41 42 44 45 46 50 51 54 58 59 62 64 113"},F:{"28":0.00386,"31":0.00386,"36":0.00772,"40":0.00386,"46":0.01158,"85":0.00772,"89":0.00386,"93":0.0695,"94":0.64865,"95":0.37066,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 92 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00386,"15":0.00386,"17":0.00386,"18":0.01544,"84":0.00772,"85":0.00386,"86":0.00386,"87":0.00386,"89":0.00772,"92":0.00772,"103":0.00772,"104":0.00386,"105":0.00772,"106":0.01158,"107":0.07336,"108":0.11197,"109":1.66023,"110":2.23552,_:"13 14 16 79 80 81 83 88 90 91 93 94 95 96 97 98 99 100 101 102"},E:{"4":0,"13":0.01931,"14":0.09653,"15":0.02317,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 16.4","5.1":0.00772,"9.1":0.05792,"11.1":0.00772,"12.1":0.03089,"13.1":0.16988,"14.1":0.25869,"15.1":0.04247,"15.2-15.3":0.03475,"15.4":0.0888,"15.5":0.16988,"15.6":0.85714,"16.0":0.0888,"16.1":0.29344,"16.2":0.92278,"16.3":0.62162},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00157,"5.0-5.1":0.00313,"6.0-6.1":0.00313,"7.0-7.1":0.01253,"8.1-8.4":0.00627,"9.0-9.2":0.01723,"9.3":0.0564,"10.0-10.2":0.0047,"10.3":0.09871,"11.0-11.2":0.02507,"11.3-11.4":0.0235,"12.0-12.1":0.02194,"12.2-12.5":0.39483,"13.0-13.1":0.01567,"13.2":0.03604,"13.3":0.03447,"13.4-13.7":0.10811,"14.0-14.4":0.28202,"14.5-14.8":0.53271,"15.0-15.1":0.15355,"15.2-15.3":0.19585,"15.4":0.23345,"15.5":0.41207,"15.6":1.40071,"16.0":1.43988,"16.1":3.51431,"16.2":3.62556,"16.3":2.04623,"16.4":0.0094},P:{"4":0.16637,"20":0.77987,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05199,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.03119,"12.0":0.0104,"13.0":0.03119,"14.0":0.03119,"15.0":0.0208,"16.0":0.07279,"17.0":0.07279,"18.0":0.09358,"19.0":1.32058},I:{"0":0,"3":0,"4":0.0197,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07878,"4.2-4.3":0.06894,"4.4":0,"4.4.3-4.4.4":0.30529},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0478,"9":0.05736,"10":0.00956,"11":0.48759,_:"6 7 5.5"},N:{"10":0,"11":0},S:{"2.5":0.07981,_:"3.0-3.1"},J:{"7":0,"10":0},O:{"0":0.89629},H:{"0":0.99385},L:{"0":42.62898},R:{_:"0"},M:{"0":0.29467},Q:{"13.1":0.12278}}; 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 eaf723ebc44813..4118a1a9dd7b7e 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.30001458", + "version": "1.0.30001473", "description": "A smaller version of caniuse-db, with only the essentials!", "main": "dist/unpacker/index.js", "files": [ @@ -24,6 +24,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "license": "CC-BY-4.0" 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 ab1a11ee6b593f..04e0442854e77a 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 @@ -50,5 +50,6 @@ module.exports = { "107": "22.0", "108": "22.0", "110": "23.0", - "111": "24.0" + "111": "24.0", + "112": "24.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 bedeb22fd41ae7..4288e0fee2d90e 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"} \ 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"} \ 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 d35b5a81cf82ac..02d375eb94c0ec 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 @@ -2198,7 +2198,8 @@ module.exports = { "21.3.5", "21.4.0", "21.4.1", - "21.4.2" + "21.4.2", + "21.4.3" ], "107.0.5286.0": [ "22.0.0-alpha.1", @@ -2280,7 +2281,11 @@ module.exports = { "22.2.0", "22.2.1", "22.3.0", - "22.3.1" + "22.3.1", + "22.3.2", + "22.3.3", + "22.3.4", + "22.3.5" ], "110.0.5415.0": [ "23.0.0-alpha.1", @@ -2350,12 +2355,27 @@ module.exports = { "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" + ], "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", @@ -2370,7 +2390,32 @@ module.exports = { "25.0.0-nightly.20230221", "25.0.0-nightly.20230222", "25.0.0-nightly.20230223", - "25.0.0-nightly.20230224" + "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", @@ -2391,5 +2436,33 @@ module.exports = { "24.0.0-nightly.20230131", "24.0.0-nightly.20230201", "24.0.0-nightly.20230202" + ], + "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" ] }; \ 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 ff4e6d3a7a3575..739f0330af2026 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"],"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"],"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"],"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-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"],"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"]} \ 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"],"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"],"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"],"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"],"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"]} \ 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 5950ef566a0fad..747748d71fddc0 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 @@ -1608,6 +1608,7 @@ module.exports = { "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", "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", @@ -1665,6 +1666,10 @@ module.exports = { "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", "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", @@ -1722,11 +1727,25 @@ module.exports = { "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", "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", @@ -1769,5 +1788,27 @@ module.exports = { "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.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" }; \ 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 6bc3219e25906b..593cf9401bba9d 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","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","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","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-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","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"} \ 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","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","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","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","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"} \ 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 84d28043afa135..4b13471d47f6e5 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.311", + "version": "1.4.347", "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 b46e698ee6a9e6..c08428d3e7e783 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 @@ -110,5 +110,6 @@ module.exports = { "22.3": "108", "23.0": "110", "23.1": "110", - "24.0": "111" + "23.2": "110", + "24.0": "112" }; \ 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 6c716047d0cf35..506dde9c79f6fc 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","24.0":"111"} \ 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","24.0":"112"} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/index.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/index.js index 995772aae359de..2841330a0673e4 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/index.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/index.js @@ -110,8 +110,8 @@ const index = { 'valid-types': _validTypes.default } }; -for (const [config, warnOrError] of [['recommended', 'warn'], ['recommended-error', 'error']]) { - index.configs[config] = { +const createRecommendedRuleset = warnOrError => { + return { plugins: ['jsdoc'], rules: { 'jsdoc/check-access': warnOrError, @@ -166,7 +166,24 @@ for (const [config, warnOrError] of [['recommended', 'warn'], ['recommended-erro 'jsdoc/valid-types': warnOrError } }; -} +}; +const createRecommendedTypeScriptRuleset = warnOrError => { + const ruleset = createRecommendedRuleset(warnOrError); + return { + ...ruleset, + rules: { + ...ruleset.rules, + 'jsdoc/no-types': warnOrError, + 'jsdoc/require-param-type': 'off', + 'jsdoc/require-property-type': 'off', + 'jsdoc/require-returns-type': 'off' + } + }; +}; +index.configs.recommended = createRecommendedRuleset('warn'); +index.configs['recommended-error'] = createRecommendedRuleset('error'); +index.configs['recommended-typescript'] = createRecommendedTypeScriptRuleset('warn'); +index.configs['recommended-typescript-error'] = createRecommendedTypeScriptRuleset('error'); var _default = index; exports.default = _default; module.exports = exports.default; diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.js index 2e110489dd9cb4..591c0daa766666 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.js @@ -652,7 +652,7 @@ const getUtils = (node, jsdoc, jsdocNode, settings, report, context, iteratingAl return utils; }; const getSettings = context => { - var _context$settings$jsd, _context$settings$jsd2, _context$settings$jsd3, _context$settings$jsd4, _context$settings$jsd5, _context$settings$jsd6, _context$settings$jsd7, _context$settings$jsd8, _context$settings$jsd9, _context$settings$jsd10, _context$settings$jsd11, _context$settings$jsd12, _context$settings$jsd13, _context$settings$jsd14; + var _context$settings$jsd, _context$settings$jsd2, _context$settings$jsd3, _context$settings$jsd4, _context$settings$jsd5, _context$settings$jsd6, _context$settings$jsd7, _context$settings$jsd8, _context$settings$jsd9, _context$settings$jsd10, _context$settings$jsd11, _context$settings$jsd12, _context$settings$jsd13, _context$parserPath, _context$languageOpti, _context$languageOpti2, _context$languageOpti3, _context$languageOpti4, _context$settings$jsd14; /* eslint-disable canonical/sort-keys */ const settings = { // All rules @@ -675,7 +675,7 @@ const getSettings = context => { // `require-param-type`, `require-param-description` exemptDestructuredRootsFromChecks: (_context$settings$jsd12 = context.settings.jsdoc) === null || _context$settings$jsd12 === void 0 ? void 0 : _context$settings$jsd12.exemptDestructuredRootsFromChecks, // Many rules, e.g., `check-tag-names` - mode: ((_context$settings$jsd13 = context.settings.jsdoc) === null || _context$settings$jsd13 === void 0 ? void 0 : _context$settings$jsd13.mode) ?? (context.parserPath.includes('@typescript-eslint') ? 'typescript' : 'jsdoc'), + mode: ((_context$settings$jsd13 = context.settings.jsdoc) === null || _context$settings$jsd13 === void 0 ? void 0 : _context$settings$jsd13.mode) ?? ((_context$parserPath = context.parserPath) !== null && _context$parserPath !== void 0 && _context$parserPath.includes('@typescript-eslint') || (_context$languageOpti = context.languageOptions) !== null && _context$languageOpti !== void 0 && (_context$languageOpti2 = _context$languageOpti.parser) !== null && _context$languageOpti2 !== void 0 && (_context$languageOpti3 = _context$languageOpti2.meta) !== null && _context$languageOpti3 !== void 0 && (_context$languageOpti4 = _context$languageOpti3.name) !== null && _context$languageOpti4 !== void 0 && _context$languageOpti4.includes('typescript') ? 'typescript' : 'jsdoc'), // Many rules contexts: (_context$settings$jsd14 = context.settings.jsdoc) === null || _context$settings$jsd14 === void 0 ? void 0 : _context$settings$jsd14.contexts }; diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json index 810f165b230959..43346111a0c3b0 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json @@ -5,50 +5,50 @@ "url": "http://gajus.com" }, "dependencies": { - "@es-joy/jsdoccomment": "~0.36.1", + "@es-joy/jsdoccomment": "~0.37.0", "comment-parser": "1.3.1", "debug": "^4.3.4", "escape-string-regexp": "^4.0.0", - "esquery": "^1.4.0", + "esquery": "^1.5.0", "semver": "^7.3.8", "spdx-expression-parse": "^3.0.1" }, "description": "JSDoc linting rules for ESLint.", "devDependencies": { - "@babel/cli": "^7.20.7", - "@babel/core": "^7.20.12", - "@babel/eslint-parser": "^7.19.1", + "@babel/cli": "^7.21.0", + "@babel/core": "^7.21.3", + "@babel/eslint-parser": "^7.21.3", "@babel/node": "^7.20.7", "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-transform-flow-strip-types": "^7.19.0", + "@babel/plugin-transform-flow-strip-types": "^7.21.0", "@babel/preset-env": "^7.20.2", - "@babel/register": "^7.18.9", + "@babel/register": "^7.21.0", "@es-joy/jsdoc-eslint-parser": "^0.17.0", "@hkdobrev/run-if-changed": "^0.3.1", "@semantic-release/commit-analyzer": "^9.0.2", "@semantic-release/github": "^8.0.7", "@semantic-release/npm": "^9.0.2", - "@typescript-eslint/parser": "^5.48.2", + "@typescript-eslint/parser": "^5.55.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-istanbul": "^6.1.1", "camelcase": "^6.3.0", "chai": "^4.3.7", "cross-env": "^7.0.3", "decamelize": "^5.0.1", - "eslint": "^8.32.0", + "eslint": "^8.36.0", "eslint-config-canonical": "~33.0.1", "gitdown": "^3.1.5", "glob": "^8.1.0", "husky": "^8.0.3", - "jsdoc-type-pratt-parser": "^3.1.0", - "lint-staged": "^13.1.0", + "jsdoc-type-pratt-parser": "^4.0.0", + "lint-staged": "^13.2.0", "lodash.defaultsdeep": "^4.6.1", "mocha": "^10.2.0", "nyc": "^15.1.0", "open-editor": "^3.0.0", - "rimraf": "^4.1.1", - "semantic-release": "^20.0.2", - "typescript": "^4.9.4" + "rimraf": "^4.4.0", + "semantic-release": "^20.1.1", + "typescript": "^4.9.5" }, "engines": { "node": "^14 || ^16 || ^17 || ^18 || ^19" @@ -120,5 +120,5 @@ "test-cov": "cross-env TIMING=1 nyc --reporter text npm run test-no-cov", "test-index": "npm run test-no-cov -- test/rules/index.js" }, - "version": "40.0.0" + "version": "40.1.0" } diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js b/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js deleted file mode 100644 index cd8a3260834dcd..00000000000000 --- a/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js +++ /dev/null @@ -1,81 +0,0 @@ -/** - * @author Toru Nagashima - * See LICENSE file in root directory for full license. - */ -"use strict"; - -const KEYS = require("./visitor-keys.json"); - -// Types. -const NODE_TYPES = Object.freeze(Object.keys(KEYS)); - -// Freeze the keys. -for (const type of NODE_TYPES) { - Object.freeze(KEYS[type]); -} -Object.freeze(KEYS); - -// List to ignore keys. -const KEY_BLACKLIST = new Set([ - "parent", - "leadingComments", - "trailingComments" -]); - -/** - * Check whether a given key should be used or not. - * @param {string} key The key to check. - * @returns {boolean} `true` if the key should be used. - */ -function filterKey(key) { - return !KEY_BLACKLIST.has(key) && key[0] !== "_"; -} - -//------------------------------------------------------------------------------ -// Public interfaces -//------------------------------------------------------------------------------ - -module.exports = Object.freeze({ - - /** - * Visitor keys. - * @type {{ [type: string]: string[] | undefined }} - */ - KEYS, - - /** - * Get visitor keys of a given node. - * @param {Object} node The AST node to get keys. - * @returns {string[]} Visitor keys of the node. - */ - getKeys(node) { - return Object.keys(node).filter(filterKey); - }, - - // Disable valid-jsdoc rule because it reports syntax error on the type of @returns. - // eslint-disable-next-line valid-jsdoc - /** - * Make the union set with `KEYS` and given keys. - * @param {Object} additionalKeys The additional keys. - * @returns {{ [type: string]: string[] | undefined }} The union set. - */ - unionWith(additionalKeys) { - const retv = Object.assign({}, KEYS); - - for (const type of Object.keys(additionalKeys)) { - if (retv.hasOwnProperty(type)) { - const keys = new Set(additionalKeys[type]); - - for (const key of retv[type]) { - keys.add(key); - } - - retv[type] = Object.freeze(Array.from(keys)); - } else { - retv[type] = Object.freeze(Array.from(additionalKeys[type])); - } - } - - return Object.freeze(retv); - } -}); diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.json b/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.json deleted file mode 100644 index e648ee125acd58..00000000000000 --- a/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.json +++ /dev/null @@ -1,289 +0,0 @@ -{ - "AssignmentExpression": [ - "left", - "right" - ], - "AssignmentPattern": [ - "left", - "right" - ], - "ArrayExpression": [ - "elements" - ], - "ArrayPattern": [ - "elements" - ], - "ArrowFunctionExpression": [ - "params", - "body" - ], - "AwaitExpression": [ - "argument" - ], - "BlockStatement": [ - "body" - ], - "BinaryExpression": [ - "left", - "right" - ], - "BreakStatement": [ - "label" - ], - "CallExpression": [ - "callee", - "arguments" - ], - "CatchClause": [ - "param", - "body" - ], - "ChainExpression": [ - "expression" - ], - "ClassBody": [ - "body" - ], - "ClassDeclaration": [ - "id", - "superClass", - "body" - ], - "ClassExpression": [ - "id", - "superClass", - "body" - ], - "ConditionalExpression": [ - "test", - "consequent", - "alternate" - ], - "ContinueStatement": [ - "label" - ], - "DebuggerStatement": [], - "DoWhileStatement": [ - "body", - "test" - ], - "EmptyStatement": [], - "ExportAllDeclaration": [ - "exported", - "source" - ], - "ExportDefaultDeclaration": [ - "declaration" - ], - "ExportNamedDeclaration": [ - "declaration", - "specifiers", - "source" - ], - "ExportSpecifier": [ - "exported", - "local" - ], - "ExpressionStatement": [ - "expression" - ], - "ExperimentalRestProperty": [ - "argument" - ], - "ExperimentalSpreadProperty": [ - "argument" - ], - "ForStatement": [ - "init", - "test", - "update", - "body" - ], - "ForInStatement": [ - "left", - "right", - "body" - ], - "ForOfStatement": [ - "left", - "right", - "body" - ], - "FunctionDeclaration": [ - "id", - "params", - "body" - ], - "FunctionExpression": [ - "id", - "params", - "body" - ], - "Identifier": [], - "IfStatement": [ - "test", - "consequent", - "alternate" - ], - "ImportDeclaration": [ - "specifiers", - "source" - ], - "ImportDefaultSpecifier": [ - "local" - ], - "ImportExpression": [ - "source" - ], - "ImportNamespaceSpecifier": [ - "local" - ], - "ImportSpecifier": [ - "imported", - "local" - ], - "JSXAttribute": [ - "name", - "value" - ], - "JSXClosingElement": [ - "name" - ], - "JSXElement": [ - "openingElement", - "children", - "closingElement" - ], - "JSXEmptyExpression": [], - "JSXExpressionContainer": [ - "expression" - ], - "JSXIdentifier": [], - "JSXMemberExpression": [ - "object", - "property" - ], - "JSXNamespacedName": [ - "namespace", - "name" - ], - "JSXOpeningElement": [ - "name", - "attributes" - ], - "JSXSpreadAttribute": [ - "argument" - ], - "JSXText": [], - "JSXFragment": [ - "openingFragment", - "children", - "closingFragment" - ], - "Literal": [], - "LabeledStatement": [ - "label", - "body" - ], - "LogicalExpression": [ - "left", - "right" - ], - "MemberExpression": [ - "object", - "property" - ], - "MetaProperty": [ - "meta", - "property" - ], - "MethodDefinition": [ - "key", - "value" - ], - "NewExpression": [ - "callee", - "arguments" - ], - "ObjectExpression": [ - "properties" - ], - "ObjectPattern": [ - "properties" - ], - "PrivateIdentifier": [], - "Program": [ - "body" - ], - "Property": [ - "key", - "value" - ], - "PropertyDefinition": [ - "key", - "value" - ], - "RestElement": [ - "argument" - ], - "ReturnStatement": [ - "argument" - ], - "SequenceExpression": [ - "expressions" - ], - "SpreadElement": [ - "argument" - ], - "Super": [], - "SwitchStatement": [ - "discriminant", - "cases" - ], - "SwitchCase": [ - "test", - "consequent" - ], - "TaggedTemplateExpression": [ - "tag", - "quasi" - ], - "TemplateElement": [], - "TemplateLiteral": [ - "quasis", - "expressions" - ], - "ThisExpression": [], - "ThrowStatement": [ - "argument" - ], - "TryStatement": [ - "block", - "handler", - "finalizer" - ], - "UnaryExpression": [ - "argument" - ], - "UpdateExpression": [ - "argument" - ], - "VariableDeclaration": [ - "declarations" - ], - "VariableDeclarator": [ - "id", - "init" - ], - "WhileStatement": [ - "test", - "body" - ], - "WithStatement": [ - "object", - "body" - ], - "YieldExpression": [ - "argument" - ] -} diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/package.json b/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/package.json deleted file mode 100644 index 775706ba4b4ed6..00000000000000 --- a/tools/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys/package.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "eslint-visitor-keys", - "version": "2.1.0", - "description": "Constants and utilities about visitor keys to traverse AST.", - "main": "lib/index.js", - "files": [ - "lib" - ], - "engines": { - "node": ">=10" - }, - "dependencies": {}, - "devDependencies": { - "eslint": "^4.7.2", - "eslint-config-eslint": "^4.0.0", - "eslint-release": "^1.0.0", - "mocha": "^3.5.3", - "nyc": "^11.2.1", - "opener": "^1.4.3" - }, - "scripts": { - "lint": "eslint lib tests/lib", - "test": "nyc mocha tests/lib", - "coverage": "nyc report --reporter lcov && opener coverage/lcov-report/index.html", - "generate-release": "eslint-generate-release", - "generate-alpharelease": "eslint-generate-prerelease alpha", - "generate-betarelease": "eslint-generate-prerelease beta", - "generate-rcrelease": "eslint-generate-prerelease rc", - "publish-release": "eslint-publish-release" - }, - "repository": "eslint/eslint-visitor-keys", - "keywords": [], - "author": "Toru Nagashima (https://github.com/mysticatea)", - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/eslint/eslint-visitor-keys/issues" - }, - "homepage": "https://github.com/eslint/eslint-visitor-keys#readme" -} diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/package.json b/tools/node_modules/eslint/node_modules/eslint-utils/package.json deleted file mode 100644 index 574d12026c7c85..00000000000000 --- a/tools/node_modules/eslint/node_modules/eslint-utils/package.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "name": "eslint-utils", - "version": "3.0.0", - "description": "Utilities for ESLint plugins.", - "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "sideEffects": false, - "main": "index", - "module": "index.mjs", - "files": [ - "index.*" - ], - "exports": { - ".": { - "import": "./index.mjs", - "require": "./index.js" - }, - "./package.json": "./package.json" - }, - "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, - "devDependencies": { - "@mysticatea/eslint-plugin": "^13.0.0", - "codecov": "^3.6.1", - "dot-prop": "^4.2.0", - "eslint": "^7.24.0", - "esm": "^3.2.25", - "espree": "github:eslint/espree#1c744b3a602b783926344811a9459b92afe57444", - "mocha": "^6.2.2", - "npm-run-all": "^4.1.5", - "nyc": "^14.1.1", - "opener": "^1.5.1", - "prettier": "~2.3.0", - "rimraf": "^3.0.0", - "rollup": "^1.25.0", - "rollup-plugin-sourcemaps": "^0.4.2", - "semver": "^7.3.2", - "vuepress": "^1.2.0", - "warun": "^1.0.0" - }, - "peerDependencies": { - "eslint": ">=5" - }, - "scripts": { - "prebuild": "npm run -s clean", - "build": "rollup -c", - "clean": "rimraf .nyc_output coverage index.*", - "codecov": "nyc report -r lcovonly && codecov", - "coverage": "opener ./coverage/lcov-report/index.html", - "docs:build": "vuepress build docs", - "docs:watch": "vuepress dev docs", - "format": "npm run -s format:prettier -- --write", - "format:prettier": "prettier docs/.vuepress/config.js src/**/*.js test/**/*.js rollup.config.js .vscode/*.json *.json .github/**/*.yml *.yml docs/**/*.md *.md", - "lint": "eslint docs/.vuepress/config.js src test rollup.config.js", - "test": "run-s \"format:prettier -- --check\" lint build test:mocha", - "test:mocha": "nyc mocha --reporter dot \"test/*.js\"", - "preversion": "npm test && npm run -s build", - "postversion": "git push && git push --tags", - "prewatch": "npm run -s clean", - "watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/mysticatea/eslint-utils.git" - }, - "keywords": [ - "eslint" - ], - "author": "Toru Nagashima", - "license": "MIT", - "bugs": { - "url": "https://github.com/mysticatea/eslint-utils/issues" - }, - "homepage": "https://github.com/mysticatea/eslint-utils#readme", - "funding": "https://github.com/sponsors/mysticatea" -} diff --git a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs index 9d47fd7517bce0..37573df559f1f6 100644 --- a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs @@ -10,14 +10,6 @@ Object.defineProperty(exports, '__esModule', { value: true }); * @type {VisitorKeys} */ const KEYS = { - AssignmentExpression: [ - "left", - "right" - ], - AssignmentPattern: [ - "left", - "right" - ], ArrayExpression: [ "elements" ], @@ -28,16 +20,24 @@ const KEYS = { "params", "body" ], + AssignmentExpression: [ + "left", + "right" + ], + AssignmentPattern: [ + "left", + "right" + ], AwaitExpression: [ "argument" ], - BlockStatement: [ - "body" - ], BinaryExpression: [ "left", "right" ], + BlockStatement: [ + "body" + ], BreakStatement: [ "label" ], @@ -79,6 +79,12 @@ const KEYS = { "test" ], EmptyStatement: [], + ExperimentalRestProperty: [ + "argument" + ], + ExperimentalSpreadProperty: [ + "argument" + ], ExportAllDeclaration: [ "exported", "source" @@ -98,18 +104,6 @@ const KEYS = { ExpressionStatement: [ "expression" ], - ExperimentalRestProperty: [ - "argument" - ], - ExperimentalSpreadProperty: [ - "argument" - ], - ForStatement: [ - "init", - "test", - "update", - "body" - ], ForInStatement: [ "left", "right", @@ -120,6 +114,12 @@ const KEYS = { "right", "body" ], + ForStatement: [ + "init", + "test", + "update", + "body" + ], FunctionDeclaration: [ "id", "params", @@ -160,6 +160,7 @@ const KEYS = { JSXClosingElement: [ "name" ], + JSXClosingFragment: [], JSXElement: [ "openingElement", "children", @@ -169,6 +170,11 @@ const KEYS = { JSXExpressionContainer: [ "expression" ], + JSXFragment: [ + "openingFragment", + "children", + "closingFragment" + ], JSXIdentifier: [], JSXMemberExpression: [ "object", @@ -182,22 +188,19 @@ const KEYS = { "name", "attributes" ], + JSXOpeningFragment: [], JSXSpreadAttribute: [ "argument" ], - JSXText: [], - JSXFragment: [ - "openingFragment", - "children", - "closingFragment" + JSXSpreadChild: [ + "expression" ], - JSXClosingFragment: [], - JSXOpeningFragment: [], - Literal: [], + JSXText: [], LabeledStatement: [ "label", "body" ], + Literal: [], LogicalExpression: [ "left", "right" @@ -252,14 +255,14 @@ const KEYS = { "body" ], Super: [], - SwitchStatement: [ - "discriminant", - "cases" - ], SwitchCase: [ "test", "consequent" ], + SwitchStatement: [ + "discriminant", + "cases" + ], TaggedTemplateExpression: [ "tag", "quasi" @@ -379,4 +382,3 @@ function unionWith(additionalKeys) { exports.KEYS = KEYS; exports.getKeys = getKeys; exports.unionWith = unionWith; -//# sourceMappingURL=eslint-visitor-keys.cjs.map diff --git a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js index d456d648db6845..7e52686974cbfa 100644 --- a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js +++ b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js @@ -6,14 +6,6 @@ * @type {VisitorKeys} */ const KEYS = { - AssignmentExpression: [ - "left", - "right" - ], - AssignmentPattern: [ - "left", - "right" - ], ArrayExpression: [ "elements" ], @@ -24,16 +16,24 @@ const KEYS = { "params", "body" ], + AssignmentExpression: [ + "left", + "right" + ], + AssignmentPattern: [ + "left", + "right" + ], AwaitExpression: [ "argument" ], - BlockStatement: [ - "body" - ], BinaryExpression: [ "left", "right" ], + BlockStatement: [ + "body" + ], BreakStatement: [ "label" ], @@ -75,6 +75,12 @@ const KEYS = { "test" ], EmptyStatement: [], + ExperimentalRestProperty: [ + "argument" + ], + ExperimentalSpreadProperty: [ + "argument" + ], ExportAllDeclaration: [ "exported", "source" @@ -94,18 +100,6 @@ const KEYS = { ExpressionStatement: [ "expression" ], - ExperimentalRestProperty: [ - "argument" - ], - ExperimentalSpreadProperty: [ - "argument" - ], - ForStatement: [ - "init", - "test", - "update", - "body" - ], ForInStatement: [ "left", "right", @@ -116,6 +110,12 @@ const KEYS = { "right", "body" ], + ForStatement: [ + "init", + "test", + "update", + "body" + ], FunctionDeclaration: [ "id", "params", @@ -156,6 +156,7 @@ const KEYS = { JSXClosingElement: [ "name" ], + JSXClosingFragment: [], JSXElement: [ "openingElement", "children", @@ -165,6 +166,11 @@ const KEYS = { JSXExpressionContainer: [ "expression" ], + JSXFragment: [ + "openingFragment", + "children", + "closingFragment" + ], JSXIdentifier: [], JSXMemberExpression: [ "object", @@ -178,22 +184,19 @@ const KEYS = { "name", "attributes" ], + JSXOpeningFragment: [], JSXSpreadAttribute: [ "argument" ], - JSXText: [], - JSXFragment: [ - "openingFragment", - "children", - "closingFragment" + JSXSpreadChild: [ + "expression" ], - JSXClosingFragment: [], - JSXOpeningFragment: [], - Literal: [], + JSXText: [], LabeledStatement: [ "label", "body" ], + Literal: [], LogicalExpression: [ "left", "right" @@ -248,14 +251,14 @@ const KEYS = { "body" ], Super: [], - SwitchStatement: [ - "discriminant", - "cases" - ], SwitchCase: [ "test", "consequent" ], + SwitchStatement: [ + "discriminant", + "cases" + ], TaggedTemplateExpression: [ "tag", "quasi" diff --git a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json index 5368ad5a14ccd7..f4e3f05bb42d99 100644 --- a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json @@ -1,6 +1,6 @@ { "name": "eslint-visitor-keys", - "version": "3.3.0", + "version": "3.4.0", "description": "Constants and utilities about visitor keys to traverse AST.", "type": "module", "main": "dist/eslint-visitor-keys.cjs", @@ -25,24 +25,33 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "devDependencies": { - "c8": "^7.7.3", + "@types/estree": "^0.0.51", + "@types/estree-jsx": "^0.0.1", + "@typescript-eslint/parser": "^5.14.0", + "c8": "^7.11.0", + "chai": "^4.3.6", "eslint": "^7.29.0", "eslint-config-eslint": "^7.0.0", "eslint-plugin-jsdoc": "^35.4.0", "eslint-plugin-node": "^11.1.0", "eslint-release": "^3.2.0", - "mocha": "^9.0.1", + "esquery": "^1.4.0", + "json-diff": "^0.7.3", + "mocha": "^9.2.1", "opener": "^1.5.2", - "rollup": "^2.52.1", + "rollup": "^2.70.0", "tsd": "^0.19.1", - "typescript": "^4.5.5" + "typescript": "^4.6.2" }, "scripts": { "prepare": "npm run build", - "build": "rollup -c && npm run tsc", + "bundle": "rollup -c", + "build": "npm run bundle && npm run tsc", + "build:debug": "npm run bundle -- -m && npm run tsc", "lint": "eslint .", "tsc": "tsc", "tsd": "tsd", + "build-keys": "node tools/build-keys-from-ts", "test": "mocha tests/lib/**/*.cjs && c8 mocha tests/lib/**/*.js && npm run tsd", "coverage": "c8 report --reporter lcov && opener coverage/lcov-report/index.html", "generate-release": "eslint-generate-release", @@ -52,6 +61,7 @@ "publish-release": "eslint-publish-release" }, "repository": "eslint/eslint-visitor-keys", + "funding": "https://opencollective.com/eslint", "keywords": [], "author": "Toru Nagashima (https://github.com/mysticatea)", "license": "Apache-2.0", diff --git a/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs b/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs index 352d595e7523d6..a5bcfb5f43508a 100644 --- a/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs +++ b/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs @@ -760,7 +760,7 @@ var espree = () => Parser => { }; }; -const version$1 = "9.4.1"; +const version$1 = "9.5.1"; /** * @fileoverview Main Espree file that converts Acorn into Esprima output. @@ -895,6 +895,7 @@ function parse(code, options) { //------------------------------------------------------------------------------ const version = version$1; +const name = "espree"; /* istanbul ignore next */ const VisitorKeys = (function() { @@ -904,16 +905,16 @@ const VisitorKeys = (function() { // Derive node types from VisitorKeys /* istanbul ignore next */ const Syntax = (function() { - let name, + let key, types = {}; if (typeof Object.create === "function") { types = Object.create(null); } - for (name in VisitorKeys) { - if (Object.hasOwnProperty.call(VisitorKeys, name)) { - types[name] = name; + for (key in VisitorKeys) { + if (Object.hasOwnProperty.call(VisitorKeys, key)) { + types[key] = key; } } @@ -931,8 +932,8 @@ const supportedEcmaVersions = getSupportedEcmaVersions(); exports.Syntax = Syntax; exports.VisitorKeys = VisitorKeys; exports.latestEcmaVersion = latestEcmaVersion; +exports.name = name; exports.parse = parse; exports.supportedEcmaVersions = supportedEcmaVersions; exports.tokenize = tokenize; exports.version = version; -//# sourceMappingURL=espree.cjs.map diff --git a/tools/node_modules/eslint/node_modules/espree/espree.js b/tools/node_modules/eslint/node_modules/espree/espree.js index 71e3d47d570c8f..97bda4bd1149a0 100644 --- a/tools/node_modules/eslint/node_modules/espree/espree.js +++ b/tools/node_modules/eslint/node_modules/espree/espree.js @@ -139,6 +139,7 @@ export function parse(code, options) { //------------------------------------------------------------------------------ export const version = espreeVersion; +export const name = "espree"; /* istanbul ignore next */ export const VisitorKeys = (function() { @@ -148,16 +149,16 @@ export const VisitorKeys = (function() { // Derive node types from VisitorKeys /* istanbul ignore next */ export const Syntax = (function() { - let name, + let key, types = {}; if (typeof Object.create === "function") { types = Object.create(null); } - for (name in VisitorKeys) { - if (Object.hasOwnProperty.call(VisitorKeys, name)) { - types[name] = name; + for (key in VisitorKeys) { + if (Object.hasOwnProperty.call(VisitorKeys, key)) { + types[key] = key; } } diff --git a/tools/node_modules/eslint/node_modules/espree/lib/version.js b/tools/node_modules/eslint/node_modules/espree/lib/version.js index 2175f85a51eff1..b2e5a7a2d59999 100644 --- a/tools/node_modules/eslint/node_modules/espree/lib/version.js +++ b/tools/node_modules/eslint/node_modules/espree/lib/version.js @@ -1,3 +1,3 @@ -const version = "9.4.1"; +const version = "9.5.1"; export default version; diff --git a/tools/node_modules/eslint/node_modules/espree/package.json b/tools/node_modules/eslint/node_modules/espree/package.json index 8f2b06c16ca0be..67efc8d1ddc113 100644 --- a/tools/node_modules/eslint/node_modules/espree/package.json +++ b/tools/node_modules/eslint/node_modules/espree/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "9.4.1", + "version": "9.5.1", "files": [ "lib", "dist/espree.cjs", @@ -34,7 +34,7 @@ "dependencies": { "acorn": "^8.8.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^17.1.0", @@ -48,10 +48,12 @@ "eslint-plugin-node": "^11.1.0", "eslint-release": "^3.2.0", "esprima-fb": "^8001.2001.0-dev-harmony-fb", + "lint-staged": "^13.2.0", "mocha": "^9.2.2", "npm-run-all": "^4.1.5", "rollup": "^2.41.2", - "shelljs": "^0.3.0" + "shelljs": "^0.3.0", + "yorkie": "^2.0.0" }, "keywords": [ "ast", @@ -61,6 +63,9 @@ "syntax", "acorn" ], + "gitHooks": { + "pre-commit": "lint-staged" + }, "scripts": { "unit": "npm-run-all -s unit:*", "unit:esm": "c8 mocha --color --reporter progress --timeout 30000 'tests/lib/**/*.js'", @@ -69,6 +74,7 @@ "lint": "eslint .", "fixlint": "npm run lint -- --fix", "build": "rollup -c rollup.config.js", + "build:debug": "npm run build -- -m", "update-version": "node tools/update-version.js", "pretest": "npm run build", "prepublishOnly": "npm run update-version && npm run build", diff --git a/tools/node_modules/eslint/node_modules/esquery/dist/esquery.esm.js b/tools/node_modules/eslint/node_modules/esquery/dist/esquery.esm.js index b29e180b7a9f9b..40a9f492825326 100644 --- a/tools/node_modules/eslint/node_modules/esquery/dist/esquery.esm.js +++ b/tools/node_modules/eslint/node_modules/esquery/dist/esquery.esm.js @@ -1123,17 +1123,7 @@ var parser = createCommonjsModule(function (module) { }, peg$c100 = ":", peg$c101 = peg$literalExpectation(":", false), - peg$c102 = "statement", - peg$c103 = peg$literalExpectation("statement", true), - peg$c104 = "expression", - peg$c105 = peg$literalExpectation("expression", true), - peg$c106 = "declaration", - peg$c107 = peg$literalExpectation("declaration", true), - peg$c108 = "function", - peg$c109 = peg$literalExpectation("function", true), - peg$c110 = "pattern", - peg$c111 = peg$literalExpectation("pattern", true), - peg$c112 = function peg$c112(c) { + peg$c102 = function peg$c102(c) { return { type: 'class', name: c @@ -3295,61 +3285,9 @@ var parser = createCommonjsModule(function (module) { } } if (s1 !== peg$FAILED) { - if (input.substr(peg$currPos, 9).toLowerCase() === peg$c102) { - s2 = input.substr(peg$currPos, 9); - peg$currPos += 9; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c103); - } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 10).toLowerCase() === peg$c104) { - s2 = input.substr(peg$currPos, 10); - peg$currPos += 10; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c105); - } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 11).toLowerCase() === peg$c106) { - s2 = input.substr(peg$currPos, 11); - peg$currPos += 11; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c107); - } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 8).toLowerCase() === peg$c108) { - s2 = input.substr(peg$currPos, 8); - peg$currPos += 8; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c109); - } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 7).toLowerCase() === peg$c110) { - s2 = input.substr(peg$currPos, 7); - peg$currPos += 7; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c111); - } - } - } - } - } - } + s2 = peg$parseidentifierName(); if (s2 !== peg$FAILED) { - s1 = peg$c112(s2); + s1 = peg$c102(s2); s0 = s1; } else { peg$currPos = s0; @@ -3539,8 +3477,9 @@ function generateMatcher(selector) { case 'identifier': { var value = selector.value.toLowerCase(); - return function (node) { - return value === node.type.toLowerCase(); + return function (node, ancestry, options) { + var nodeTypeKey = options && options.nodeTypeKey || 'type'; + return value === node[nodeTypeKey].toLowerCase(); }; } case 'field': @@ -3741,8 +3680,12 @@ function generateMatcher(selector) { } case 'class': { - var name = selector.name.toLowerCase(); - return function (node, ancestry) { + return function (node, ancestry, options) { + if (options && options.matchClass) { + return options.matchClass(selector.name, node, ancestry); + } + if (options && options.nodeTypeKey) return false; + var name = selector.name.toLowerCase(); switch (name) { case 'statement': if (node.type.slice(-9) === 'Statement') return true; @@ -3769,10 +3712,21 @@ function generateMatcher(selector) { * @param {external:AST} node The given node. * @returns {string[]} An array of visitor keys for the given node. */ + +/** + * @callback ClassMatcher + * @param {string} className The name of the class to match. + * @param {external:AST} node The node to match against. + * @param {Array} ancestry The ancestry of the node. + * @returns {boolean} True if the node matches the class, false if not. + */ + /** * @typedef {object} ESQueryOptions + * @property {string} [nodeTypeKey="type"] By passing `nodeTypeKey`, we can allow other ASTs to use ESQuery. * @property { { [nodeType: string]: string[] } } [visitorKeys] By passing `visitorKeys` mapping, we can extend the properties of the nodes that traverse the node. * @property {TraverseOptionFallback} [fallback] By passing `fallback` option, we can control the properties of traversing nodes when encountering unknown nodes. + * @property {ClassMatcher} [matchClass] By passing `matchClass` option, we can customize the interpretation of classes. */ /** @@ -3806,7 +3760,8 @@ function matches(node, selector, ancestry, options) { * @returns {string[]} Visitor keys of the node. */ function getVisitorKeys(node, options) { - var nodeType = node.type; + var nodeTypeKey = options && options.nodeTypeKey || 'type'; + var nodeType = node[nodeTypeKey]; if (options && options.visitorKeys && options.visitorKeys[nodeType]) { return options.visitorKeys[nodeType]; } @@ -3818,17 +3773,19 @@ function getVisitorKeys(node, options) { } // 'iteration' fallback return Object.keys(node).filter(function (key) { - return key !== 'type'; + return key !== nodeTypeKey; }); } /** * Check whether the given value is an ASTNode or not. * @param {any} node The value to check. + * @param {ESQueryOptions|undefined} options The options to use. * @returns {boolean} `true` if the value is an ASTNode. */ -function isNode(node) { - return node !== null && _typeof(node) === 'object' && typeof node.type === 'string'; +function isNode(node, options) { + var nodeTypeKey = options && options.nodeTypeKey || 'type'; + return node !== null && _typeof(node) === 'object' && typeof node[nodeTypeKey] === 'string'; } /** @@ -3865,7 +3822,7 @@ function sibling(node, matcher, ancestry, side, options) { upperBound = listProp.length; } for (var k = lowerBound; k < upperBound; ++k) { - if (isNode(listProp[k]) && matcher(listProp[k], ancestry, options)) { + if (isNode(listProp[k], options) && matcher(listProp[k], ancestry, options)) { return true; } } @@ -3898,10 +3855,10 @@ function adjacent(node, matcher, ancestry, side, options) { if (idx < 0) { continue; } - if (side === LEFT_SIDE && idx > 0 && isNode(listProp[idx - 1]) && matcher(listProp[idx - 1], ancestry, options)) { + if (side === LEFT_SIDE && idx > 0 && isNode(listProp[idx - 1], options) && matcher(listProp[idx - 1], ancestry, options)) { return true; } - if (side === RIGHT_SIDE && idx < listProp.length - 1 && isNode(listProp[idx + 1]) && matcher(listProp[idx + 1], ancestry, options)) { + if (side === RIGHT_SIDE && idx < listProp.length - 1 && isNode(listProp[idx + 1], options) && matcher(listProp[idx + 1], ancestry, options)) { return true; } } diff --git a/tools/node_modules/eslint/node_modules/esquery/dist/esquery.esm.min.js b/tools/node_modules/eslint/node_modules/esquery/dist/esquery.esm.min.js index b7cd3c6b05fbcd..ca0f4f97d0bee4 100644 --- a/tools/node_modules/eslint/node_modules/esquery/dist/esquery.esm.min.js +++ b/tools/node_modules/eslint/node_modules/esquery/dist/esquery.esm.min.js @@ -1,2 +1,2 @@ -function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,o,a,i,s=[],u=!0,l=!1;try{if(a=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=a.call(r)).done)&&(s.push(n.value),s.length!==t);u=!0);}catch(e){l=!0,o=e}finally{try{if(!u&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw o}}return s}}(e,t)||n(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function r(e){return function(e){if(Array.isArray(e))return o(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||n(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function n(e,t){if(e){if("string"==typeof e)return o(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r=0;--r)if(e[r].node===t)return!0;return!1}function d(e,t){return(new f).traverse(e,t)}function m(e,t){var r;return r=function(e,t){var r,n,o,a;for(n=e.length,o=0;n;)t(e[a=o+(r=n>>>1)])?n=r:(o=a+1,n-=r+1);return o}(t,(function(t){return t.range[0]>e.range[0]})),e.extendedRange=[e.range[0],e.range[1]],r!==t.length&&(e.extendedRange[1]=t[r].range[0]),(r-=1)>=0&&(e.extendedRange[0]=t[r].range[1]),e}return r={AssignmentExpression:"AssignmentExpression",AssignmentPattern:"AssignmentPattern",ArrayExpression:"ArrayExpression",ArrayPattern:"ArrayPattern",ArrowFunctionExpression:"ArrowFunctionExpression",AwaitExpression:"AwaitExpression",BlockStatement:"BlockStatement",BinaryExpression:"BinaryExpression",BreakStatement:"BreakStatement",CallExpression:"CallExpression",CatchClause:"CatchClause",ChainExpression:"ChainExpression",ClassBody:"ClassBody",ClassDeclaration:"ClassDeclaration",ClassExpression:"ClassExpression",ComprehensionBlock:"ComprehensionBlock",ComprehensionExpression:"ComprehensionExpression",ConditionalExpression:"ConditionalExpression",ContinueStatement:"ContinueStatement",DebuggerStatement:"DebuggerStatement",DirectiveStatement:"DirectiveStatement",DoWhileStatement:"DoWhileStatement",EmptyStatement:"EmptyStatement",ExportAllDeclaration:"ExportAllDeclaration",ExportDefaultDeclaration:"ExportDefaultDeclaration",ExportNamedDeclaration:"ExportNamedDeclaration",ExportSpecifier:"ExportSpecifier",ExpressionStatement:"ExpressionStatement",ForStatement:"ForStatement",ForInStatement:"ForInStatement",ForOfStatement:"ForOfStatement",FunctionDeclaration:"FunctionDeclaration",FunctionExpression:"FunctionExpression",GeneratorExpression:"GeneratorExpression",Identifier:"Identifier",IfStatement:"IfStatement",ImportExpression:"ImportExpression",ImportDeclaration:"ImportDeclaration",ImportDefaultSpecifier:"ImportDefaultSpecifier",ImportNamespaceSpecifier:"ImportNamespaceSpecifier",ImportSpecifier:"ImportSpecifier",Literal:"Literal",LabeledStatement:"LabeledStatement",LogicalExpression:"LogicalExpression",MemberExpression:"MemberExpression",MetaProperty:"MetaProperty",MethodDefinition:"MethodDefinition",ModuleSpecifier:"ModuleSpecifier",NewExpression:"NewExpression",ObjectExpression:"ObjectExpression",ObjectPattern:"ObjectPattern",PrivateIdentifier:"PrivateIdentifier",Program:"Program",Property:"Property",PropertyDefinition:"PropertyDefinition",RestElement:"RestElement",ReturnStatement:"ReturnStatement",SequenceExpression:"SequenceExpression",SpreadElement:"SpreadElement",Super:"Super",SwitchStatement:"SwitchStatement",SwitchCase:"SwitchCase",TaggedTemplateExpression:"TaggedTemplateExpression",TemplateElement:"TemplateElement",TemplateLiteral:"TemplateLiteral",ThisExpression:"ThisExpression",ThrowStatement:"ThrowStatement",TryStatement:"TryStatement",UnaryExpression:"UnaryExpression",UpdateExpression:"UpdateExpression",VariableDeclaration:"VariableDeclaration",VariableDeclarator:"VariableDeclarator",WhileStatement:"WhileStatement",WithStatement:"WithStatement",YieldExpression:"YieldExpression"},o={AssignmentExpression:["left","right"],AssignmentPattern:["left","right"],ArrayExpression:["elements"],ArrayPattern:["elements"],ArrowFunctionExpression:["params","body"],AwaitExpression:["argument"],BlockStatement:["body"],BinaryExpression:["left","right"],BreakStatement:["label"],CallExpression:["callee","arguments"],CatchClause:["param","body"],ChainExpression:["expression"],ClassBody:["body"],ClassDeclaration:["id","superClass","body"],ClassExpression:["id","superClass","body"],ComprehensionBlock:["left","right"],ComprehensionExpression:["blocks","filter","body"],ConditionalExpression:["test","consequent","alternate"],ContinueStatement:["label"],DebuggerStatement:[],DirectiveStatement:[],DoWhileStatement:["body","test"],EmptyStatement:[],ExportAllDeclaration:["source"],ExportDefaultDeclaration:["declaration"],ExportNamedDeclaration:["declaration","specifiers","source"],ExportSpecifier:["exported","local"],ExpressionStatement:["expression"],ForStatement:["init","test","update","body"],ForInStatement:["left","right","body"],ForOfStatement:["left","right","body"],FunctionDeclaration:["id","params","body"],FunctionExpression:["id","params","body"],GeneratorExpression:["blocks","filter","body"],Identifier:[],IfStatement:["test","consequent","alternate"],ImportExpression:["source"],ImportDeclaration:["specifiers","source"],ImportDefaultSpecifier:["local"],ImportNamespaceSpecifier:["local"],ImportSpecifier:["imported","local"],Literal:[],LabeledStatement:["label","body"],LogicalExpression:["left","right"],MemberExpression:["object","property"],MetaProperty:["meta","property"],MethodDefinition:["key","value"],ModuleSpecifier:[],NewExpression:["callee","arguments"],ObjectExpression:["properties"],ObjectPattern:["properties"],PrivateIdentifier:[],Program:["body"],Property:["key","value"],PropertyDefinition:["key","value"],RestElement:["argument"],ReturnStatement:["argument"],SequenceExpression:["expressions"],SpreadElement:["argument"],Super:[],SwitchStatement:["discriminant","cases"],SwitchCase:["test","consequent"],TaggedTemplateExpression:["tag","quasi"],TemplateElement:[],TemplateLiteral:["quasis","expressions"],ThisExpression:[],ThrowStatement:["argument"],TryStatement:["block","handler","finalizer"],UnaryExpression:["argument"],UpdateExpression:["argument"],VariableDeclaration:["declarations"],VariableDeclarator:["id","init"],WhileStatement:["test","body"],WithStatement:["object","body"],YieldExpression:["argument"]},n={Break:a={},Skip:i={},Remove:s={}},l.prototype.replace=function(e){this.parent[this.key]=e},l.prototype.remove=function(){return Array.isArray(this.parent)?(this.parent.splice(this.key,1),!0):(this.replace(null),!1)},f.prototype.path=function(){var e,t,r,n,o;function a(e,t){if(Array.isArray(t))for(r=0,n=t.length;r=0;)if(v=s[f=x[d]])if(Array.isArray(v)){for(m=v.length;(m-=1)>=0;)if(v[m]&&!y(n,v[m])){if(h(u,x[d]))o=new c(v[m],[f,m],"Property",null);else{if(!p(v[m]))continue;o=new c(v[m],[f,m],null,null)}r.push(o)}}else if(p(v)){if(y(n,v))continue;r.push(new c(v,f,null,null))}}}else if(o=n.pop(),l=this.__execute(t.leave,o),this.__state===a||l===a)return},f.prototype.replace=function(e,t){var r,n,o,u,f,y,d,m,x,v,g,A,b;function E(e){var t,n,o,a;if(e.ref.remove())for(n=e.ref.key,a=e.ref.parent,t=r.length;t--;)if((o=r[t]).ref&&o.ref.parent===a){if(o.ref.key=0;)if(v=o[b=x[d]])if(Array.isArray(v)){for(m=v.length;(m-=1)>=0;)if(v[m]){if(h(u,x[d]))y=new c(v[m],[b,m],"Property",new l(v,m));else{if(!p(v[m]))continue;y=new c(v[m],[b,m],null,new l(v,m))}r.push(y)}}else p(v)&&r.push(new c(v,b,null,new l(o,b)))}}else if(y=n.pop(),void 0!==(f=this.__execute(t.leave,y))&&f!==a&&f!==i&&f!==s&&y.ref.replace(f),this.__state!==s&&f!==s||E(y),this.__state===a||f===a)return A.root;return A.root},t.Syntax=r,t.traverse=d,t.replace=function(e,t){return(new f).replace(e,t)},t.attachComments=function(e,t,r){var o,a,i,s,l=[];if(!e.range)throw new Error("attachComments needs range information");if(!r.length){if(t.length){for(i=0,a=t.length;ie.range[0]);)t.extendedRange[1]===e.range[0]?(e.leadingComments||(e.leadingComments=[]),e.leadingComments.push(t),l.splice(s,1)):s+=1;return s===l.length?n.Break:l[s].extendedRange[0]>e.range[1]?n.Skip:void 0}}),s=0,d(e,{leave:function(e){for(var t;se.range[1]?n.Skip:void 0}}),e},t.VisitorKeys=o,t.VisitorOption=n,t.Controller=f,t.cloneEnvironment=function(){return e({})},t}(t)})),s=a((function(e){e.exports&&(e.exports=function(){function e(t,r,n,o){this.message=t,this.expected=r,this.found=n,this.location=o,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,e)}return function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(e,Error),e.buildMessage=function(e,t){var r={literal:function(e){return'"'+o(e.text)+'"'},class:function(e){var t,r="";for(t=0;t0){for(t=1,n=1;t<~+.]/,p=me([" ","[","]",",","(",")",":","#","!","=",">","<","~","+","."],!0,!1),h=de(">",!1),y=de("~",!1),d=de("+",!1),m=de(",",!1),x=de("!",!1),v=de("*",!1),g=de("#",!1),A=de("[",!1),b=de("]",!1),E=/^[>","<","!"],!1,!1),_=de("=",!1),C=function(e){return(e||"")+"="},w=/^[><]/,P=me([">","<"],!1,!1),k=de(".",!1),D=function(e,t,r){return{type:"attribute",name:e,operator:t,value:r}},I=de('"',!1),j=/^[^\\"]/,F=me(["\\",'"'],!0,!1),T=de("\\",!1),L={type:"any"},R=function(e,t){return e+t},O=function(e){return{type:"literal",value:(t=e.join(""),t.replace(/\\(.)/g,(function(e,t){switch(t){case"b":return"\b";case"f":return"\f";case"n":return"\n";case"r":return"\r";case"t":return"\t";case"v":return"\v";default:return t}})))};var t},M=de("'",!1),B=/^[^\\']/,U=me(["\\","'"],!0,!1),W=/^[0-9]/,V=me([["0","9"]],!1,!1),q=de("type(",!1),N=/^[^ )]/,K=me([" ",")"],!0,!1),G=de(")",!1),z=/^[imsu]/,H=me(["i","m","s","u"],!1,!1),Y=de("/",!1),$=/^[^\/]/,J=me(["/"],!0,!1),Q=de(":not(",!1),X=de(":matches(",!1),Z=de(":has(",!1),ee=de(":first-child",!1),te=de(":last-child",!1),re=de(":nth-child(",!1),ne=de(":nth-last-child(",!1),oe=de(":",!1),ae=de("statement",!0),ie=de("expression",!0),se=de("declaration",!0),ue=de("function",!0),le=de("pattern",!0),ce=0,fe=[{line:1,column:1}],pe=0,he=[],ye={};if("startRule"in r){if(!(r.startRule in u))throw new Error("Can't start parsing from rule \""+r.startRule+'".');l=u[r.startRule]}function de(e,t){return{type:"literal",text:e,ignoreCase:t}}function me(e,t,r){return{type:"class",parts:e,inverted:t,ignoreCase:r}}function xe(e){var r,n=fe[e];if(n)return n;for(r=e-1;!fe[r];)r--;for(n={line:(n=fe[r]).line,column:n.column};rpe&&(pe=ce,he=[]),he.push(e))}function Ae(){var e,t,r,n,o=30*ce+0,a=ye[o];return a?(ce=a.nextPos,a.result):(e=ce,(t=be())!==s&&(r=_e())!==s&&be()!==s?e=t=1===(n=r).length?n[0]:{type:"matches",selectors:n}:(ce=e,e=s),e===s&&(e=ce,(t=be())!==s&&(t=void 0),e=t),ye[o]={nextPos:ce,result:e},e)}function be(){var e,r,n=30*ce+1,o=ye[n];if(o)return ce=o.nextPos,o.result;for(e=[],32===t.charCodeAt(ce)?(r=" ",ce++):(r=s,ge(c));r!==s;)e.push(r),32===t.charCodeAt(ce)?(r=" ",ce++):(r=s,ge(c));return ye[n]={nextPos:ce,result:e},e}function Ee(){var e,r,n,o=30*ce+2,a=ye[o];if(a)return ce=a.nextPos,a.result;if(r=[],f.test(t.charAt(ce))?(n=t.charAt(ce),ce++):(n=s,ge(p)),n!==s)for(;n!==s;)r.push(n),f.test(t.charAt(ce))?(n=t.charAt(ce),ce++):(n=s,ge(p));else r=s;return r!==s&&(r=r.join("")),e=r,ye[o]={nextPos:ce,result:e},e}function Se(){var e,r,n,o=30*ce+3,a=ye[o];return a?(ce=a.nextPos,a.result):(e=ce,(r=be())!==s?(62===t.charCodeAt(ce)?(n=">",ce++):(n=s,ge(h)),n!==s&&be()!==s?e=r="child":(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,(r=be())!==s?(126===t.charCodeAt(ce)?(n="~",ce++):(n=s,ge(y)),n!==s&&be()!==s?e=r="sibling":(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,(r=be())!==s?(43===t.charCodeAt(ce)?(n="+",ce++):(n=s,ge(d)),n!==s&&be()!==s?e=r="adjacent":(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,32===t.charCodeAt(ce)?(r=" ",ce++):(r=s,ge(c)),r!==s&&(n=be())!==s?e=r="descendant":(ce=e,e=s)))),ye[o]={nextPos:ce,result:e},e)}function _e(){var e,r,n,o,a,i,u,l,c=30*ce+4,f=ye[c];if(f)return ce=f.nextPos,f.result;if(e=ce,(r=Ce())!==s){for(n=[],o=ce,(a=be())!==s?(44===t.charCodeAt(ce)?(i=",",ce++):(i=s,ge(m)),i!==s&&(u=be())!==s&&(l=Ce())!==s?o=a=[a,i,u,l]:(ce=o,o=s)):(ce=o,o=s);o!==s;)n.push(o),o=ce,(a=be())!==s?(44===t.charCodeAt(ce)?(i=",",ce++):(i=s,ge(m)),i!==s&&(u=be())!==s&&(l=Ce())!==s?o=a=[a,i,u,l]:(ce=o,o=s)):(ce=o,o=s);n!==s?e=r=[r].concat(n.map((function(e){return e[3]}))):(ce=e,e=s)}else ce=e,e=s;return ye[c]={nextPos:ce,result:e},e}function Ce(){var e,t,r,n,o,a,i,u=30*ce+5,l=ye[u];if(l)return ce=l.nextPos,l.result;if(e=ce,(t=we())!==s){for(r=[],n=ce,(o=Se())!==s&&(a=we())!==s?n=o=[o,a]:(ce=n,n=s);n!==s;)r.push(n),n=ce,(o=Se())!==s&&(a=we())!==s?n=o=[o,a]:(ce=n,n=s);r!==s?(i=t,e=t=r.reduce((function(e,t){return{type:t[0],left:e,right:t[1]}}),i)):(ce=e,e=s)}else ce=e,e=s;return ye[u]={nextPos:ce,result:e},e}function we(){var e,r,n,o,a,i,u,l=30*ce+6,c=ye[l];if(c)return ce=c.nextPos,c.result;if(e=ce,33===t.charCodeAt(ce)?(r="!",ce++):(r=s,ge(x)),r===s&&(r=null),r!==s){if(n=[],(o=Pe())!==s)for(;o!==s;)n.push(o),o=Pe();else n=s;n!==s?(a=r,u=1===(i=n).length?i[0]:{type:"compound",selectors:i},a&&(u.subject=!0),e=r=u):(ce=e,e=s)}else ce=e,e=s;return ye[l]={nextPos:ce,result:e},e}function Pe(){var e,r=30*ce+7,n=ye[r];return n?(ce=n.nextPos,n.result):((e=function(){var e,r,n=30*ce+8,o=ye[n];return o?(ce=o.nextPos,o.result):(42===t.charCodeAt(ce)?(r="*",ce++):(r=s,ge(v)),r!==s&&(r={type:"wildcard",value:r}),e=r,ye[n]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o=30*ce+9,a=ye[o];return a?(ce=a.nextPos,a.result):(e=ce,35===t.charCodeAt(ce)?(r="#",ce++):(r=s,ge(g)),r===s&&(r=null),r!==s&&(n=Ee())!==s?e=r={type:"identifier",value:n}:(ce=e,e=s),ye[o]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ce+10,i=ye[a];return i?(ce=i.nextPos,i.result):(e=ce,91===t.charCodeAt(ce)?(r="[",ce++):(r=s,ge(A)),r!==s&&be()!==s&&(n=function(){var e,r,n,o,a=30*ce+14,i=ye[a];return i?(ce=i.nextPos,i.result):(e=ce,(r=ke())!==s&&be()!==s&&(n=function(){var e,r,n,o=30*ce+12,a=ye[o];return a?(ce=a.nextPos,a.result):(e=ce,33===t.charCodeAt(ce)?(r="!",ce++):(r=s,ge(x)),r===s&&(r=null),r!==s?(61===t.charCodeAt(ce)?(n="=",ce++):(n=s,ge(_)),n!==s?(r=C(r),e=r):(ce=e,e=s)):(ce=e,e=s),ye[o]={nextPos:ce,result:e},e)}())!==s&&be()!==s?((o=function(){var e,r,n,o,a,i=30*ce+18,u=ye[i];if(u)return ce=u.nextPos,u.result;if(e=ce,"type("===t.substr(ce,5)?(r="type(",ce+=5):(r=s,ge(q)),r!==s)if(be()!==s){if(n=[],N.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(K)),o!==s)for(;o!==s;)n.push(o),N.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(K));else n=s;n!==s&&(o=be())!==s?(41===t.charCodeAt(ce)?(a=")",ce++):(a=s,ge(G)),a!==s?(r={type:"type",value:n.join("")},e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;else ce=e,e=s;return ye[i]={nextPos:ce,result:e},e}())===s&&(o=function(){var e,r,n,o,a,i,u=30*ce+20,l=ye[u];if(l)return ce=l.nextPos,l.result;if(e=ce,47===t.charCodeAt(ce)?(r="/",ce++):(r=s,ge(Y)),r!==s){if(n=[],$.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(J)),o!==s)for(;o!==s;)n.push(o),$.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(J));else n=s;n!==s?(47===t.charCodeAt(ce)?(o="/",ce++):(o=s,ge(Y)),o!==s?((a=function(){var e,r,n=30*ce+19,o=ye[n];if(o)return ce=o.nextPos,o.result;if(e=[],z.test(t.charAt(ce))?(r=t.charAt(ce),ce++):(r=s,ge(H)),r!==s)for(;r!==s;)e.push(r),z.test(t.charAt(ce))?(r=t.charAt(ce),ce++):(r=s,ge(H));else e=s;return ye[n]={nextPos:ce,result:e},e}())===s&&(a=null),a!==s?(i=a,r={type:"regexp",value:new RegExp(n.join(""),i?i.join(""):"")},e=r):(ce=e,e=s)):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;return ye[u]={nextPos:ce,result:e},e}()),o!==s?(r=D(r,n,o),e=r):(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,(r=ke())!==s&&be()!==s&&(n=function(){var e,r,n,o=30*ce+11,a=ye[o];return a?(ce=a.nextPos,a.result):(e=ce,E.test(t.charAt(ce))?(r=t.charAt(ce),ce++):(r=s,ge(S)),r===s&&(r=null),r!==s?(61===t.charCodeAt(ce)?(n="=",ce++):(n=s,ge(_)),n!==s?(r=C(r),e=r):(ce=e,e=s)):(ce=e,e=s),e===s&&(w.test(t.charAt(ce))?(e=t.charAt(ce),ce++):(e=s,ge(P))),ye[o]={nextPos:ce,result:e},e)}())!==s&&be()!==s?((o=function(){var e,r,n,o,a,i,u=30*ce+15,l=ye[u];if(l)return ce=l.nextPos,l.result;if(e=ce,34===t.charCodeAt(ce)?(r='"',ce++):(r=s,ge(I)),r!==s){for(n=[],j.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(F)),o===s&&(o=ce,92===t.charCodeAt(ce)?(a="\\",ce++):(a=s,ge(T)),a!==s?(t.length>ce?(i=t.charAt(ce),ce++):(i=s,ge(L)),i!==s?(a=R(a,i),o=a):(ce=o,o=s)):(ce=o,o=s));o!==s;)n.push(o),j.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(F)),o===s&&(o=ce,92===t.charCodeAt(ce)?(a="\\",ce++):(a=s,ge(T)),a!==s?(t.length>ce?(i=t.charAt(ce),ce++):(i=s,ge(L)),i!==s?(a=R(a,i),o=a):(ce=o,o=s)):(ce=o,o=s));n!==s?(34===t.charCodeAt(ce)?(o='"',ce++):(o=s,ge(I)),o!==s?(r=O(n),e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;if(e===s)if(e=ce,39===t.charCodeAt(ce)?(r="'",ce++):(r=s,ge(M)),r!==s){for(n=[],B.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(U)),o===s&&(o=ce,92===t.charCodeAt(ce)?(a="\\",ce++):(a=s,ge(T)),a!==s?(t.length>ce?(i=t.charAt(ce),ce++):(i=s,ge(L)),i!==s?(a=R(a,i),o=a):(ce=o,o=s)):(ce=o,o=s));o!==s;)n.push(o),B.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(U)),o===s&&(o=ce,92===t.charCodeAt(ce)?(a="\\",ce++):(a=s,ge(T)),a!==s?(t.length>ce?(i=t.charAt(ce),ce++):(i=s,ge(L)),i!==s?(a=R(a,i),o=a):(ce=o,o=s)):(ce=o,o=s));n!==s?(39===t.charCodeAt(ce)?(o="'",ce++):(o=s,ge(M)),o!==s?(r=O(n),e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;return ye[u]={nextPos:ce,result:e},e}())===s&&(o=function(){var e,r,n,o,a,i,u,l=30*ce+16,c=ye[l];if(c)return ce=c.nextPos,c.result;for(e=ce,r=ce,n=[],W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(V));o!==s;)n.push(o),W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(V));if(n!==s?(46===t.charCodeAt(ce)?(o=".",ce++):(o=s,ge(k)),o!==s?r=n=[n,o]:(ce=r,r=s)):(ce=r,r=s),r===s&&(r=null),r!==s){if(n=[],W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(V)),o!==s)for(;o!==s;)n.push(o),W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(V));else n=s;n!==s?(i=n,u=(a=r)?[].concat.apply([],a).join(""):"",r={type:"literal",value:parseFloat(u+i.join(""))},e=r):(ce=e,e=s)}else ce=e,e=s;return ye[l]={nextPos:ce,result:e},e}())===s&&(o=function(){var e,t,r=30*ce+17,n=ye[r];return n?(ce=n.nextPos,n.result):((t=Ee())!==s&&(t={type:"literal",value:t}),e=t,ye[r]={nextPos:ce,result:e},e)}()),o!==s?(r=D(r,n,o),e=r):(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,(r=ke())!==s&&(r={type:"attribute",name:r}),e=r)),ye[a]={nextPos:ce,result:e},e)}())!==s&&be()!==s?(93===t.charCodeAt(ce)?(o="]",ce++):(o=s,ge(b)),o!==s?e=r=n:(ce=e,e=s)):(ce=e,e=s),ye[a]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a,i,u,l,c=30*ce+21,f=ye[c];if(f)return ce=f.nextPos,f.result;if(e=ce,46===t.charCodeAt(ce)?(r=".",ce++):(r=s,ge(k)),r!==s)if((n=Ee())!==s){for(o=[],a=ce,46===t.charCodeAt(ce)?(i=".",ce++):(i=s,ge(k)),i!==s&&(u=Ee())!==s?a=i=[i,u]:(ce=a,a=s);a!==s;)o.push(a),a=ce,46===t.charCodeAt(ce)?(i=".",ce++):(i=s,ge(k)),i!==s&&(u=Ee())!==s?a=i=[i,u]:(ce=a,a=s);o!==s?(l=n,r={type:"field",name:o.reduce((function(e,t){return e+t[0]+t[1]}),l)},e=r):(ce=e,e=s)}else ce=e,e=s;else ce=e,e=s;return ye[c]={nextPos:ce,result:e},e}())===s&&(e=function(){var e,r,n,o,a=30*ce+22,i=ye[a];return i?(ce=i.nextPos,i.result):(e=ce,":not("===t.substr(ce,5)?(r=":not(",ce+=5):(r=s,ge(Q)),r!==s&&be()!==s&&(n=_e())!==s&&be()!==s?(41===t.charCodeAt(ce)?(o=")",ce++):(o=s,ge(G)),o!==s?e=r={type:"not",selectors:n}:(ce=e,e=s)):(ce=e,e=s),ye[a]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ce+23,i=ye[a];return i?(ce=i.nextPos,i.result):(e=ce,":matches("===t.substr(ce,9)?(r=":matches(",ce+=9):(r=s,ge(X)),r!==s&&be()!==s&&(n=_e())!==s&&be()!==s?(41===t.charCodeAt(ce)?(o=")",ce++):(o=s,ge(G)),o!==s?e=r={type:"matches",selectors:n}:(ce=e,e=s)):(ce=e,e=s),ye[a]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ce+24,i=ye[a];return i?(ce=i.nextPos,i.result):(e=ce,":has("===t.substr(ce,5)?(r=":has(",ce+=5):(r=s,ge(Z)),r!==s&&be()!==s&&(n=_e())!==s&&be()!==s?(41===t.charCodeAt(ce)?(o=")",ce++):(o=s,ge(G)),o!==s?e=r={type:"has",selectors:n}:(ce=e,e=s)):(ce=e,e=s),ye[a]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n=30*ce+25,o=ye[n];return o?(ce=o.nextPos,o.result):(":first-child"===t.substr(ce,12)?(r=":first-child",ce+=12):(r=s,ge(ee)),r!==s&&(r=De(1)),e=r,ye[n]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n=30*ce+26,o=ye[n];return o?(ce=o.nextPos,o.result):(":last-child"===t.substr(ce,11)?(r=":last-child",ce+=11):(r=s,ge(te)),r!==s&&(r=Ie(1)),e=r,ye[n]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a,i=30*ce+27,u=ye[i];if(u)return ce=u.nextPos,u.result;if(e=ce,":nth-child("===t.substr(ce,11)?(r=":nth-child(",ce+=11):(r=s,ge(re)),r!==s)if(be()!==s){if(n=[],W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(V)),o!==s)for(;o!==s;)n.push(o),W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(V));else n=s;n!==s&&(o=be())!==s?(41===t.charCodeAt(ce)?(a=")",ce++):(a=s,ge(G)),a!==s?(r=De(parseInt(n.join(""),10)),e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;else ce=e,e=s;return ye[i]={nextPos:ce,result:e},e}())===s&&(e=function(){var e,r,n,o,a,i=30*ce+28,u=ye[i];if(u)return ce=u.nextPos,u.result;if(e=ce,":nth-last-child("===t.substr(ce,16)?(r=":nth-last-child(",ce+=16):(r=s,ge(ne)),r!==s)if(be()!==s){if(n=[],W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(V)),o!==s)for(;o!==s;)n.push(o),W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(V));else n=s;n!==s&&(o=be())!==s?(41===t.charCodeAt(ce)?(a=")",ce++):(a=s,ge(G)),a!==s?(r=Ie(parseInt(n.join(""),10)),e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;else ce=e,e=s;return ye[i]={nextPos:ce,result:e},e}())===s&&(e=function(){var e,r,n,o=30*ce+29,a=ye[o];return a?(ce=a.nextPos,a.result):(e=ce,58===t.charCodeAt(ce)?(r=":",ce++):(r=s,ge(oe)),r!==s?("statement"===t.substr(ce,9).toLowerCase()?(n=t.substr(ce,9),ce+=9):(n=s,ge(ae)),n===s&&("expression"===t.substr(ce,10).toLowerCase()?(n=t.substr(ce,10),ce+=10):(n=s,ge(ie)),n===s&&("declaration"===t.substr(ce,11).toLowerCase()?(n=t.substr(ce,11),ce+=11):(n=s,ge(se)),n===s&&("function"===t.substr(ce,8).toLowerCase()?(n=t.substr(ce,8),ce+=8):(n=s,ge(ue)),n===s&&("pattern"===t.substr(ce,7).toLowerCase()?(n=t.substr(ce,7),ce+=7):(n=s,ge(le)))))),n!==s?e=r={type:"class",name:n}:(ce=e,e=s)):(ce=e,e=s),ye[o]={nextPos:ce,result:e},e)}()),ye[r]={nextPos:ce,result:e},e)}function ke(){var e,r,n,o,a,i,u,l,c=30*ce+13,f=ye[c];if(f)return ce=f.nextPos,f.result;if(e=ce,(r=Ee())!==s){for(n=[],o=ce,46===t.charCodeAt(ce)?(a=".",ce++):(a=s,ge(k)),a!==s&&(i=Ee())!==s?o=a=[a,i]:(ce=o,o=s);o!==s;)n.push(o),o=ce,46===t.charCodeAt(ce)?(a=".",ce++):(a=s,ge(k)),a!==s&&(i=Ee())!==s?o=a=[a,i]:(ce=o,o=s);n!==s?(u=r,l=n,e=r=[].concat.apply([u],l).join("")):(ce=e,e=s)}else ce=e,e=s;return ye[c]={nextPos:ce,result:e},e}function De(e){return{type:"nth-child",index:{type:"literal",value:e}}}function Ie(e){return{type:"nth-last-child",index:{type:"literal",value:e}}}if((n=l())!==s&&ce===t.length)return n;throw n!==s&&ce0&&p(e,t,r))&&f(t[0],t.slice(1),r)};case"descendant":var h=c(t.left),x=c(t.right);return function(e,t,r){if(x(e,t,r))for(var n=0,o=t.length;n":return function(e){return u(e,v)>t.value.value};case">=":return function(e){return u(e,v)>=t.value.value}}throw new Error("Unknown operator: ".concat(t.operator));case"sibling":var b=c(t.left),E=c(t.right);return function(e,r,n){return E(e,r,n)&&y(e,b,r,"LEFT_SIDE",n)||t.left.subject&&b(e,r,n)&&y(e,E,r,"RIGHT_SIDE",n)};case"adjacent":var S=c(t.left),_=c(t.right);return function(e,r,n){return _(e,r,n)&&d(e,S,r,"LEFT_SIDE",n)||t.right.subject&&S(e,r,n)&&d(e,_,r,"RIGHT_SIDE",n)};case"nth-child":var C=t.index.value,w=c(t.right);return function(e,t,r){return w(e,t,r)&&m(e,t,C,r)};case"nth-last-child":var P=-t.index.value,k=c(t.right);return function(e,t,r){return k(e,t,r)&&m(e,t,P,r)};case"class":var D=t.name.toLowerCase();return function(e,r){switch(D){case"statement":if("Statement"===e.type.slice(-9))return!0;case"declaration":return"Declaration"===e.type.slice(-11);case"pattern":if("Pattern"===e.type.slice(-7))return!0;case"expression":return"Expression"===e.type.slice(-10)||"Literal"===e.type.slice(-7)||"Identifier"===e.type&&(0===r.length||"MetaProperty"!==r[0].type)||"MetaProperty"===e.type;case"function":return"FunctionDeclaration"===e.type||"FunctionExpression"===e.type||"ArrowFunctionExpression"===e.type}throw new Error("Unknown class name: ".concat(t.name))}}throw new Error("Unknown selector type: ".concat(t.type))}function p(e,t){var r=e.type;return t&&t.visitorKeys&&t.visitorKeys[r]?t.visitorKeys[r]:i.VisitorKeys[r]?i.VisitorKeys[r]:t&&"function"==typeof t.fallback?t.fallback(e):Object.keys(e).filter((function(e){return"type"!==e}))}function h(t){return null!==t&&"object"===e(t)&&"string"==typeof t.type}function y(e,r,n,o,a){var i=t(n,1)[0];if(!i)return!1;for(var s=p(i,a),u=0;u0&&h(l[c-1])&&r(l[c-1],n,a))return!0;if("RIGHT_SIDE"===o&&c=0&&le.length)&&(t=e.length);for(var r=0,n=new Array(t);r=0;--r)if(e[r].node===t)return!0;return!1}function d(e,t){return(new f).traverse(e,t)}function m(e,t){var r;return r=function(e,t){var r,n,a,o;for(n=e.length,a=0;n;)t(e[o=a+(r=n>>>1)])?n=r:(a=o+1,n-=r+1);return a}(t,(function(t){return t.range[0]>e.range[0]})),e.extendedRange=[e.range[0],e.range[1]],r!==t.length&&(e.extendedRange[1]=t[r].range[0]),(r-=1)>=0&&(e.extendedRange[0]=t[r].range[1]),e}return r={AssignmentExpression:"AssignmentExpression",AssignmentPattern:"AssignmentPattern",ArrayExpression:"ArrayExpression",ArrayPattern:"ArrayPattern",ArrowFunctionExpression:"ArrowFunctionExpression",AwaitExpression:"AwaitExpression",BlockStatement:"BlockStatement",BinaryExpression:"BinaryExpression",BreakStatement:"BreakStatement",CallExpression:"CallExpression",CatchClause:"CatchClause",ChainExpression:"ChainExpression",ClassBody:"ClassBody",ClassDeclaration:"ClassDeclaration",ClassExpression:"ClassExpression",ComprehensionBlock:"ComprehensionBlock",ComprehensionExpression:"ComprehensionExpression",ConditionalExpression:"ConditionalExpression",ContinueStatement:"ContinueStatement",DebuggerStatement:"DebuggerStatement",DirectiveStatement:"DirectiveStatement",DoWhileStatement:"DoWhileStatement",EmptyStatement:"EmptyStatement",ExportAllDeclaration:"ExportAllDeclaration",ExportDefaultDeclaration:"ExportDefaultDeclaration",ExportNamedDeclaration:"ExportNamedDeclaration",ExportSpecifier:"ExportSpecifier",ExpressionStatement:"ExpressionStatement",ForStatement:"ForStatement",ForInStatement:"ForInStatement",ForOfStatement:"ForOfStatement",FunctionDeclaration:"FunctionDeclaration",FunctionExpression:"FunctionExpression",GeneratorExpression:"GeneratorExpression",Identifier:"Identifier",IfStatement:"IfStatement",ImportExpression:"ImportExpression",ImportDeclaration:"ImportDeclaration",ImportDefaultSpecifier:"ImportDefaultSpecifier",ImportNamespaceSpecifier:"ImportNamespaceSpecifier",ImportSpecifier:"ImportSpecifier",Literal:"Literal",LabeledStatement:"LabeledStatement",LogicalExpression:"LogicalExpression",MemberExpression:"MemberExpression",MetaProperty:"MetaProperty",MethodDefinition:"MethodDefinition",ModuleSpecifier:"ModuleSpecifier",NewExpression:"NewExpression",ObjectExpression:"ObjectExpression",ObjectPattern:"ObjectPattern",PrivateIdentifier:"PrivateIdentifier",Program:"Program",Property:"Property",PropertyDefinition:"PropertyDefinition",RestElement:"RestElement",ReturnStatement:"ReturnStatement",SequenceExpression:"SequenceExpression",SpreadElement:"SpreadElement",Super:"Super",SwitchStatement:"SwitchStatement",SwitchCase:"SwitchCase",TaggedTemplateExpression:"TaggedTemplateExpression",TemplateElement:"TemplateElement",TemplateLiteral:"TemplateLiteral",ThisExpression:"ThisExpression",ThrowStatement:"ThrowStatement",TryStatement:"TryStatement",UnaryExpression:"UnaryExpression",UpdateExpression:"UpdateExpression",VariableDeclaration:"VariableDeclaration",VariableDeclarator:"VariableDeclarator",WhileStatement:"WhileStatement",WithStatement:"WithStatement",YieldExpression:"YieldExpression"},a={AssignmentExpression:["left","right"],AssignmentPattern:["left","right"],ArrayExpression:["elements"],ArrayPattern:["elements"],ArrowFunctionExpression:["params","body"],AwaitExpression:["argument"],BlockStatement:["body"],BinaryExpression:["left","right"],BreakStatement:["label"],CallExpression:["callee","arguments"],CatchClause:["param","body"],ChainExpression:["expression"],ClassBody:["body"],ClassDeclaration:["id","superClass","body"],ClassExpression:["id","superClass","body"],ComprehensionBlock:["left","right"],ComprehensionExpression:["blocks","filter","body"],ConditionalExpression:["test","consequent","alternate"],ContinueStatement:["label"],DebuggerStatement:[],DirectiveStatement:[],DoWhileStatement:["body","test"],EmptyStatement:[],ExportAllDeclaration:["source"],ExportDefaultDeclaration:["declaration"],ExportNamedDeclaration:["declaration","specifiers","source"],ExportSpecifier:["exported","local"],ExpressionStatement:["expression"],ForStatement:["init","test","update","body"],ForInStatement:["left","right","body"],ForOfStatement:["left","right","body"],FunctionDeclaration:["id","params","body"],FunctionExpression:["id","params","body"],GeneratorExpression:["blocks","filter","body"],Identifier:[],IfStatement:["test","consequent","alternate"],ImportExpression:["source"],ImportDeclaration:["specifiers","source"],ImportDefaultSpecifier:["local"],ImportNamespaceSpecifier:["local"],ImportSpecifier:["imported","local"],Literal:[],LabeledStatement:["label","body"],LogicalExpression:["left","right"],MemberExpression:["object","property"],MetaProperty:["meta","property"],MethodDefinition:["key","value"],ModuleSpecifier:[],NewExpression:["callee","arguments"],ObjectExpression:["properties"],ObjectPattern:["properties"],PrivateIdentifier:[],Program:["body"],Property:["key","value"],PropertyDefinition:["key","value"],RestElement:["argument"],ReturnStatement:["argument"],SequenceExpression:["expressions"],SpreadElement:["argument"],Super:[],SwitchStatement:["discriminant","cases"],SwitchCase:["test","consequent"],TaggedTemplateExpression:["tag","quasi"],TemplateElement:[],TemplateLiteral:["quasis","expressions"],ThisExpression:[],ThrowStatement:["argument"],TryStatement:["block","handler","finalizer"],UnaryExpression:["argument"],UpdateExpression:["argument"],VariableDeclaration:["declarations"],VariableDeclarator:["id","init"],WhileStatement:["test","body"],WithStatement:["object","body"],YieldExpression:["argument"]},n={Break:o={},Skip:i={},Remove:s={}},l.prototype.replace=function(e){this.parent[this.key]=e},l.prototype.remove=function(){return Array.isArray(this.parent)?(this.parent.splice(this.key,1),!0):(this.replace(null),!1)},f.prototype.path=function(){var e,t,r,n,a;function o(e,t){if(Array.isArray(t))for(r=0,n=t.length;r=0;)if(v=s[f=x[d]])if(Array.isArray(v)){for(m=v.length;(m-=1)>=0;)if(v[m]&&!y(n,v[m])){if(h(u,x[d]))a=new c(v[m],[f,m],"Property",null);else{if(!p(v[m]))continue;a=new c(v[m],[f,m],null,null)}r.push(a)}}else if(p(v)){if(y(n,v))continue;r.push(new c(v,f,null,null))}}}else if(a=n.pop(),l=this.__execute(t.leave,a),this.__state===o||l===o)return},f.prototype.replace=function(e,t){var r,n,a,u,f,y,d,m,x,v,g,A,E;function b(e){var t,n,a,o;if(e.ref.remove())for(n=e.ref.key,o=e.ref.parent,t=r.length;t--;)if((a=r[t]).ref&&a.ref.parent===o){if(a.ref.key=0;)if(v=a[E=x[d]])if(Array.isArray(v)){for(m=v.length;(m-=1)>=0;)if(v[m]){if(h(u,x[d]))y=new c(v[m],[E,m],"Property",new l(v,m));else{if(!p(v[m]))continue;y=new c(v[m],[E,m],null,new l(v,m))}r.push(y)}}else p(v)&&r.push(new c(v,E,null,new l(a,E)))}}else if(y=n.pop(),void 0!==(f=this.__execute(t.leave,y))&&f!==o&&f!==i&&f!==s&&y.ref.replace(f),this.__state!==s&&f!==s||b(y),this.__state===o||f===o)return A.root;return A.root},t.Syntax=r,t.traverse=d,t.replace=function(e,t){return(new f).replace(e,t)},t.attachComments=function(e,t,r){var a,o,i,s,l=[];if(!e.range)throw new Error("attachComments needs range information");if(!r.length){if(t.length){for(i=0,o=t.length;ie.range[0]);)t.extendedRange[1]===e.range[0]?(e.leadingComments||(e.leadingComments=[]),e.leadingComments.push(t),l.splice(s,1)):s+=1;return s===l.length?n.Break:l[s].extendedRange[0]>e.range[1]?n.Skip:void 0}}),s=0,d(e,{leave:function(e){for(var t;se.range[1]?n.Skip:void 0}}),e},t.VisitorKeys=a,t.VisitorOption=n,t.Controller=f,t.cloneEnvironment=function(){return e({})},t}(t)})),s=o((function(e){e.exports&&(e.exports=function(){function e(t,r,n,a){this.message=t,this.expected=r,this.found=n,this.location=a,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,e)}return function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(e,Error),e.buildMessage=function(e,t){var r={literal:function(e){return'"'+a(e.text)+'"'},class:function(e){var t,r="";for(t=0;t0){for(t=1,n=1;t<~+.]/,p=fe([" ","[","]",",","(",")",":","#","!","=",">","<","~","+","."],!0,!1),h=ce(">",!1),y=ce("~",!1),d=ce("+",!1),m=ce(",",!1),x=ce("!",!1),v=ce("*",!1),g=ce("#",!1),A=ce("[",!1),E=ce("]",!1),b=/^[>","<","!"],!1,!1),_=ce("=",!1),C=function(e){return(e||"")+"="},w=/^[><]/,P=fe([">","<"],!1,!1),k=ce(".",!1),D=function(e,t,r){return{type:"attribute",name:e,operator:t,value:r}},I=ce('"',!1),j=/^[^\\"]/,T=fe(["\\",'"'],!0,!1),F=ce("\\",!1),R={type:"any"},O=function(e,t){return e+t},L=function(e){return{type:"literal",value:(t=e.join(""),t.replace(/\\(.)/g,(function(e,t){switch(t){case"b":return"\b";case"f":return"\f";case"n":return"\n";case"r":return"\r";case"t":return"\t";case"v":return"\v";default:return t}})))};var t},M=ce("'",!1),B=/^[^\\']/,U=fe(["\\","'"],!0,!1),K=/^[0-9]/,W=fe([["0","9"]],!1,!1),V=ce("type(",!1),q=/^[^ )]/,N=fe([" ",")"],!0,!1),G=ce(")",!1),z=/^[imsu]/,H=fe(["i","m","s","u"],!1,!1),Y=ce("/",!1),$=/^[^\/]/,J=fe(["/"],!0,!1),Q=ce(":not(",!1),X=ce(":matches(",!1),Z=ce(":has(",!1),ee=ce(":first-child",!1),te=ce(":last-child",!1),re=ce(":nth-child(",!1),ne=ce(":nth-last-child(",!1),ae=ce(":",!1),oe=0,ie=[{line:1,column:1}],se=0,ue=[],le={};if("startRule"in r){if(!(r.startRule in u))throw new Error("Can't start parsing from rule \""+r.startRule+'".');l=u[r.startRule]}function ce(e,t){return{type:"literal",text:e,ignoreCase:t}}function fe(e,t,r){return{type:"class",parts:e,inverted:t,ignoreCase:r}}function pe(e){var r,n=ie[e];if(n)return n;for(r=e-1;!ie[r];)r--;for(n={line:(n=ie[r]).line,column:n.column};rse&&(se=oe,ue=[]),ue.push(e))}function de(){var e,t,r,n,a=30*oe+0,o=le[a];return o?(oe=o.nextPos,o.result):(e=oe,(t=me())!==s&&(r=ge())!==s&&me()!==s?e=t=1===(n=r).length?n[0]:{type:"matches",selectors:n}:(oe=e,e=s),e===s&&(e=oe,(t=me())!==s&&(t=void 0),e=t),le[a]={nextPos:oe,result:e},e)}function me(){var e,r,n=30*oe+1,a=le[n];if(a)return oe=a.nextPos,a.result;for(e=[],32===t.charCodeAt(oe)?(r=" ",oe++):(r=s,ye(c));r!==s;)e.push(r),32===t.charCodeAt(oe)?(r=" ",oe++):(r=s,ye(c));return le[n]={nextPos:oe,result:e},e}function xe(){var e,r,n,a=30*oe+2,o=le[a];if(o)return oe=o.nextPos,o.result;if(r=[],f.test(t.charAt(oe))?(n=t.charAt(oe),oe++):(n=s,ye(p)),n!==s)for(;n!==s;)r.push(n),f.test(t.charAt(oe))?(n=t.charAt(oe),oe++):(n=s,ye(p));else r=s;return r!==s&&(r=r.join("")),e=r,le[a]={nextPos:oe,result:e},e}function ve(){var e,r,n,a=30*oe+3,o=le[a];return o?(oe=o.nextPos,o.result):(e=oe,(r=me())!==s?(62===t.charCodeAt(oe)?(n=">",oe++):(n=s,ye(h)),n!==s&&me()!==s?e=r="child":(oe=e,e=s)):(oe=e,e=s),e===s&&(e=oe,(r=me())!==s?(126===t.charCodeAt(oe)?(n="~",oe++):(n=s,ye(y)),n!==s&&me()!==s?e=r="sibling":(oe=e,e=s)):(oe=e,e=s),e===s&&(e=oe,(r=me())!==s?(43===t.charCodeAt(oe)?(n="+",oe++):(n=s,ye(d)),n!==s&&me()!==s?e=r="adjacent":(oe=e,e=s)):(oe=e,e=s),e===s&&(e=oe,32===t.charCodeAt(oe)?(r=" ",oe++):(r=s,ye(c)),r!==s&&(n=me())!==s?e=r="descendant":(oe=e,e=s)))),le[a]={nextPos:oe,result:e},e)}function ge(){var e,r,n,a,o,i,u,l,c=30*oe+4,f=le[c];if(f)return oe=f.nextPos,f.result;if(e=oe,(r=Ae())!==s){for(n=[],a=oe,(o=me())!==s?(44===t.charCodeAt(oe)?(i=",",oe++):(i=s,ye(m)),i!==s&&(u=me())!==s&&(l=Ae())!==s?a=o=[o,i,u,l]:(oe=a,a=s)):(oe=a,a=s);a!==s;)n.push(a),a=oe,(o=me())!==s?(44===t.charCodeAt(oe)?(i=",",oe++):(i=s,ye(m)),i!==s&&(u=me())!==s&&(l=Ae())!==s?a=o=[o,i,u,l]:(oe=a,a=s)):(oe=a,a=s);n!==s?e=r=[r].concat(n.map((function(e){return e[3]}))):(oe=e,e=s)}else oe=e,e=s;return le[c]={nextPos:oe,result:e},e}function Ae(){var e,t,r,n,a,o,i,u=30*oe+5,l=le[u];if(l)return oe=l.nextPos,l.result;if(e=oe,(t=Ee())!==s){for(r=[],n=oe,(a=ve())!==s&&(o=Ee())!==s?n=a=[a,o]:(oe=n,n=s);n!==s;)r.push(n),n=oe,(a=ve())!==s&&(o=Ee())!==s?n=a=[a,o]:(oe=n,n=s);r!==s?(i=t,e=t=r.reduce((function(e,t){return{type:t[0],left:e,right:t[1]}}),i)):(oe=e,e=s)}else oe=e,e=s;return le[u]={nextPos:oe,result:e},e}function Ee(){var e,r,n,a,o,i,u,l=30*oe+6,c=le[l];if(c)return oe=c.nextPos,c.result;if(e=oe,33===t.charCodeAt(oe)?(r="!",oe++):(r=s,ye(x)),r===s&&(r=null),r!==s){if(n=[],(a=be())!==s)for(;a!==s;)n.push(a),a=be();else n=s;n!==s?(o=r,u=1===(i=n).length?i[0]:{type:"compound",selectors:i},o&&(u.subject=!0),e=r=u):(oe=e,e=s)}else oe=e,e=s;return le[l]={nextPos:oe,result:e},e}function be(){var e,r=30*oe+7,n=le[r];return n?(oe=n.nextPos,n.result):((e=function(){var e,r,n=30*oe+8,a=le[n];return a?(oe=a.nextPos,a.result):(42===t.charCodeAt(oe)?(r="*",oe++):(r=s,ye(v)),r!==s&&(r={type:"wildcard",value:r}),e=r,le[n]={nextPos:oe,result:e},e)}())===s&&(e=function(){var e,r,n,a=30*oe+9,o=le[a];return o?(oe=o.nextPos,o.result):(e=oe,35===t.charCodeAt(oe)?(r="#",oe++):(r=s,ye(g)),r===s&&(r=null),r!==s&&(n=xe())!==s?e=r={type:"identifier",value:n}:(oe=e,e=s),le[a]={nextPos:oe,result:e},e)}())===s&&(e=function(){var e,r,n,a,o=30*oe+10,i=le[o];return i?(oe=i.nextPos,i.result):(e=oe,91===t.charCodeAt(oe)?(r="[",oe++):(r=s,ye(A)),r!==s&&me()!==s&&(n=function(){var e,r,n,a,o=30*oe+14,i=le[o];return i?(oe=i.nextPos,i.result):(e=oe,(r=Se())!==s&&me()!==s&&(n=function(){var e,r,n,a=30*oe+12,o=le[a];return o?(oe=o.nextPos,o.result):(e=oe,33===t.charCodeAt(oe)?(r="!",oe++):(r=s,ye(x)),r===s&&(r=null),r!==s?(61===t.charCodeAt(oe)?(n="=",oe++):(n=s,ye(_)),n!==s?(r=C(r),e=r):(oe=e,e=s)):(oe=e,e=s),le[a]={nextPos:oe,result:e},e)}())!==s&&me()!==s?((a=function(){var e,r,n,a,o,i=30*oe+18,u=le[i];if(u)return oe=u.nextPos,u.result;if(e=oe,"type("===t.substr(oe,5)?(r="type(",oe+=5):(r=s,ye(V)),r!==s)if(me()!==s){if(n=[],q.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(N)),a!==s)for(;a!==s;)n.push(a),q.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(N));else n=s;n!==s&&(a=me())!==s?(41===t.charCodeAt(oe)?(o=")",oe++):(o=s,ye(G)),o!==s?(r={type:"type",value:n.join("")},e=r):(oe=e,e=s)):(oe=e,e=s)}else oe=e,e=s;else oe=e,e=s;return le[i]={nextPos:oe,result:e},e}())===s&&(a=function(){var e,r,n,a,o,i,u=30*oe+20,l=le[u];if(l)return oe=l.nextPos,l.result;if(e=oe,47===t.charCodeAt(oe)?(r="/",oe++):(r=s,ye(Y)),r!==s){if(n=[],$.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(J)),a!==s)for(;a!==s;)n.push(a),$.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(J));else n=s;n!==s?(47===t.charCodeAt(oe)?(a="/",oe++):(a=s,ye(Y)),a!==s?((o=function(){var e,r,n=30*oe+19,a=le[n];if(a)return oe=a.nextPos,a.result;if(e=[],z.test(t.charAt(oe))?(r=t.charAt(oe),oe++):(r=s,ye(H)),r!==s)for(;r!==s;)e.push(r),z.test(t.charAt(oe))?(r=t.charAt(oe),oe++):(r=s,ye(H));else e=s;return le[n]={nextPos:oe,result:e},e}())===s&&(o=null),o!==s?(i=o,r={type:"regexp",value:new RegExp(n.join(""),i?i.join(""):"")},e=r):(oe=e,e=s)):(oe=e,e=s)):(oe=e,e=s)}else oe=e,e=s;return le[u]={nextPos:oe,result:e},e}()),a!==s?(r=D(r,n,a),e=r):(oe=e,e=s)):(oe=e,e=s),e===s&&(e=oe,(r=Se())!==s&&me()!==s&&(n=function(){var e,r,n,a=30*oe+11,o=le[a];return o?(oe=o.nextPos,o.result):(e=oe,b.test(t.charAt(oe))?(r=t.charAt(oe),oe++):(r=s,ye(S)),r===s&&(r=null),r!==s?(61===t.charCodeAt(oe)?(n="=",oe++):(n=s,ye(_)),n!==s?(r=C(r),e=r):(oe=e,e=s)):(oe=e,e=s),e===s&&(w.test(t.charAt(oe))?(e=t.charAt(oe),oe++):(e=s,ye(P))),le[a]={nextPos:oe,result:e},e)}())!==s&&me()!==s?((a=function(){var e,r,n,a,o,i,u=30*oe+15,l=le[u];if(l)return oe=l.nextPos,l.result;if(e=oe,34===t.charCodeAt(oe)?(r='"',oe++):(r=s,ye(I)),r!==s){for(n=[],j.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(T)),a===s&&(a=oe,92===t.charCodeAt(oe)?(o="\\",oe++):(o=s,ye(F)),o!==s?(t.length>oe?(i=t.charAt(oe),oe++):(i=s,ye(R)),i!==s?(o=O(o,i),a=o):(oe=a,a=s)):(oe=a,a=s));a!==s;)n.push(a),j.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(T)),a===s&&(a=oe,92===t.charCodeAt(oe)?(o="\\",oe++):(o=s,ye(F)),o!==s?(t.length>oe?(i=t.charAt(oe),oe++):(i=s,ye(R)),i!==s?(o=O(o,i),a=o):(oe=a,a=s)):(oe=a,a=s));n!==s?(34===t.charCodeAt(oe)?(a='"',oe++):(a=s,ye(I)),a!==s?(r=L(n),e=r):(oe=e,e=s)):(oe=e,e=s)}else oe=e,e=s;if(e===s)if(e=oe,39===t.charCodeAt(oe)?(r="'",oe++):(r=s,ye(M)),r!==s){for(n=[],B.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(U)),a===s&&(a=oe,92===t.charCodeAt(oe)?(o="\\",oe++):(o=s,ye(F)),o!==s?(t.length>oe?(i=t.charAt(oe),oe++):(i=s,ye(R)),i!==s?(o=O(o,i),a=o):(oe=a,a=s)):(oe=a,a=s));a!==s;)n.push(a),B.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(U)),a===s&&(a=oe,92===t.charCodeAt(oe)?(o="\\",oe++):(o=s,ye(F)),o!==s?(t.length>oe?(i=t.charAt(oe),oe++):(i=s,ye(R)),i!==s?(o=O(o,i),a=o):(oe=a,a=s)):(oe=a,a=s));n!==s?(39===t.charCodeAt(oe)?(a="'",oe++):(a=s,ye(M)),a!==s?(r=L(n),e=r):(oe=e,e=s)):(oe=e,e=s)}else oe=e,e=s;return le[u]={nextPos:oe,result:e},e}())===s&&(a=function(){var e,r,n,a,o,i,u,l=30*oe+16,c=le[l];if(c)return oe=c.nextPos,c.result;for(e=oe,r=oe,n=[],K.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(W));a!==s;)n.push(a),K.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(W));if(n!==s?(46===t.charCodeAt(oe)?(a=".",oe++):(a=s,ye(k)),a!==s?r=n=[n,a]:(oe=r,r=s)):(oe=r,r=s),r===s&&(r=null),r!==s){if(n=[],K.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(W)),a!==s)for(;a!==s;)n.push(a),K.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(W));else n=s;n!==s?(i=n,u=(o=r)?[].concat.apply([],o).join(""):"",r={type:"literal",value:parseFloat(u+i.join(""))},e=r):(oe=e,e=s)}else oe=e,e=s;return le[l]={nextPos:oe,result:e},e}())===s&&(a=function(){var e,t,r=30*oe+17,n=le[r];return n?(oe=n.nextPos,n.result):((t=xe())!==s&&(t={type:"literal",value:t}),e=t,le[r]={nextPos:oe,result:e},e)}()),a!==s?(r=D(r,n,a),e=r):(oe=e,e=s)):(oe=e,e=s),e===s&&(e=oe,(r=Se())!==s&&(r={type:"attribute",name:r}),e=r)),le[o]={nextPos:oe,result:e},e)}())!==s&&me()!==s?(93===t.charCodeAt(oe)?(a="]",oe++):(a=s,ye(E)),a!==s?e=r=n:(oe=e,e=s)):(oe=e,e=s),le[o]={nextPos:oe,result:e},e)}())===s&&(e=function(){var e,r,n,a,o,i,u,l,c=30*oe+21,f=le[c];if(f)return oe=f.nextPos,f.result;if(e=oe,46===t.charCodeAt(oe)?(r=".",oe++):(r=s,ye(k)),r!==s)if((n=xe())!==s){for(a=[],o=oe,46===t.charCodeAt(oe)?(i=".",oe++):(i=s,ye(k)),i!==s&&(u=xe())!==s?o=i=[i,u]:(oe=o,o=s);o!==s;)a.push(o),o=oe,46===t.charCodeAt(oe)?(i=".",oe++):(i=s,ye(k)),i!==s&&(u=xe())!==s?o=i=[i,u]:(oe=o,o=s);a!==s?(l=n,r={type:"field",name:a.reduce((function(e,t){return e+t[0]+t[1]}),l)},e=r):(oe=e,e=s)}else oe=e,e=s;else oe=e,e=s;return le[c]={nextPos:oe,result:e},e}())===s&&(e=function(){var e,r,n,a,o=30*oe+22,i=le[o];return i?(oe=i.nextPos,i.result):(e=oe,":not("===t.substr(oe,5)?(r=":not(",oe+=5):(r=s,ye(Q)),r!==s&&me()!==s&&(n=ge())!==s&&me()!==s?(41===t.charCodeAt(oe)?(a=")",oe++):(a=s,ye(G)),a!==s?e=r={type:"not",selectors:n}:(oe=e,e=s)):(oe=e,e=s),le[o]={nextPos:oe,result:e},e)}())===s&&(e=function(){var e,r,n,a,o=30*oe+23,i=le[o];return i?(oe=i.nextPos,i.result):(e=oe,":matches("===t.substr(oe,9)?(r=":matches(",oe+=9):(r=s,ye(X)),r!==s&&me()!==s&&(n=ge())!==s&&me()!==s?(41===t.charCodeAt(oe)?(a=")",oe++):(a=s,ye(G)),a!==s?e=r={type:"matches",selectors:n}:(oe=e,e=s)):(oe=e,e=s),le[o]={nextPos:oe,result:e},e)}())===s&&(e=function(){var e,r,n,a,o=30*oe+24,i=le[o];return i?(oe=i.nextPos,i.result):(e=oe,":has("===t.substr(oe,5)?(r=":has(",oe+=5):(r=s,ye(Z)),r!==s&&me()!==s&&(n=ge())!==s&&me()!==s?(41===t.charCodeAt(oe)?(a=")",oe++):(a=s,ye(G)),a!==s?e=r={type:"has",selectors:n}:(oe=e,e=s)):(oe=e,e=s),le[o]={nextPos:oe,result:e},e)}())===s&&(e=function(){var e,r,n=30*oe+25,a=le[n];return a?(oe=a.nextPos,a.result):(":first-child"===t.substr(oe,12)?(r=":first-child",oe+=12):(r=s,ye(ee)),r!==s&&(r=_e(1)),e=r,le[n]={nextPos:oe,result:e},e)}())===s&&(e=function(){var e,r,n=30*oe+26,a=le[n];return a?(oe=a.nextPos,a.result):(":last-child"===t.substr(oe,11)?(r=":last-child",oe+=11):(r=s,ye(te)),r!==s&&(r=Ce(1)),e=r,le[n]={nextPos:oe,result:e},e)}())===s&&(e=function(){var e,r,n,a,o,i=30*oe+27,u=le[i];if(u)return oe=u.nextPos,u.result;if(e=oe,":nth-child("===t.substr(oe,11)?(r=":nth-child(",oe+=11):(r=s,ye(re)),r!==s)if(me()!==s){if(n=[],K.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(W)),a!==s)for(;a!==s;)n.push(a),K.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(W));else n=s;n!==s&&(a=me())!==s?(41===t.charCodeAt(oe)?(o=")",oe++):(o=s,ye(G)),o!==s?(r=_e(parseInt(n.join(""),10)),e=r):(oe=e,e=s)):(oe=e,e=s)}else oe=e,e=s;else oe=e,e=s;return le[i]={nextPos:oe,result:e},e}())===s&&(e=function(){var e,r,n,a,o,i=30*oe+28,u=le[i];if(u)return oe=u.nextPos,u.result;if(e=oe,":nth-last-child("===t.substr(oe,16)?(r=":nth-last-child(",oe+=16):(r=s,ye(ne)),r!==s)if(me()!==s){if(n=[],K.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(W)),a!==s)for(;a!==s;)n.push(a),K.test(t.charAt(oe))?(a=t.charAt(oe),oe++):(a=s,ye(W));else n=s;n!==s&&(a=me())!==s?(41===t.charCodeAt(oe)?(o=")",oe++):(o=s,ye(G)),o!==s?(r=Ce(parseInt(n.join(""),10)),e=r):(oe=e,e=s)):(oe=e,e=s)}else oe=e,e=s;else oe=e,e=s;return le[i]={nextPos:oe,result:e},e}())===s&&(e=function(){var e,r,n,a=30*oe+29,o=le[a];return o?(oe=o.nextPos,o.result):(e=oe,58===t.charCodeAt(oe)?(r=":",oe++):(r=s,ye(ae)),r!==s&&(n=xe())!==s?e=r={type:"class",name:n}:(oe=e,e=s),le[a]={nextPos:oe,result:e},e)}()),le[r]={nextPos:oe,result:e},e)}function Se(){var e,r,n,a,o,i,u,l,c=30*oe+13,f=le[c];if(f)return oe=f.nextPos,f.result;if(e=oe,(r=xe())!==s){for(n=[],a=oe,46===t.charCodeAt(oe)?(o=".",oe++):(o=s,ye(k)),o!==s&&(i=xe())!==s?a=o=[o,i]:(oe=a,a=s);a!==s;)n.push(a),a=oe,46===t.charCodeAt(oe)?(o=".",oe++):(o=s,ye(k)),o!==s&&(i=xe())!==s?a=o=[o,i]:(oe=a,a=s);n!==s?(u=r,l=n,e=r=[].concat.apply([u],l).join("")):(oe=e,e=s)}else oe=e,e=s;return le[c]={nextPos:oe,result:e},e}function _e(e){return{type:"nth-child",index:{type:"literal",value:e}}}function Ce(e){return{type:"nth-last-child",index:{type:"literal",value:e}}}if((n=l())!==s&&oe===t.length)return n;throw n!==s&&oe0&&p(e,t,r))&&f(t[0],t.slice(1),r)};case"descendant":var h=c(t.left),x=c(t.right);return function(e,t,r){if(x(e,t,r))for(var n=0,a=t.length;n":return function(e){return u(e,v)>t.value.value};case">=":return function(e){return u(e,v)>=t.value.value}}throw new Error("Unknown operator: ".concat(t.operator));case"sibling":var E=c(t.left),b=c(t.right);return function(e,r,n){return b(e,r,n)&&y(e,E,r,"LEFT_SIDE",n)||t.left.subject&&E(e,r,n)&&y(e,b,r,"RIGHT_SIDE",n)};case"adjacent":var S=c(t.left),_=c(t.right);return function(e,r,n){return _(e,r,n)&&d(e,S,r,"LEFT_SIDE",n)||t.right.subject&&S(e,r,n)&&d(e,_,r,"RIGHT_SIDE",n)};case"nth-child":var C=t.index.value,w=c(t.right);return function(e,t,r){return w(e,t,r)&&m(e,t,C,r)};case"nth-last-child":var P=-t.index.value,k=c(t.right);return function(e,t,r){return k(e,t,r)&&m(e,t,P,r)};case"class":return function(e,r,n){if(n&&n.matchClass)return n.matchClass(t.name,e,r);if(n&&n.nodeTypeKey)return!1;switch(t.name.toLowerCase()){case"statement":if("Statement"===e.type.slice(-9))return!0;case"declaration":return"Declaration"===e.type.slice(-11);case"pattern":if("Pattern"===e.type.slice(-7))return!0;case"expression":return"Expression"===e.type.slice(-10)||"Literal"===e.type.slice(-7)||"Identifier"===e.type&&(0===r.length||"MetaProperty"!==r[0].type)||"MetaProperty"===e.type;case"function":return"FunctionDeclaration"===e.type||"FunctionExpression"===e.type||"ArrowFunctionExpression"===e.type}throw new Error("Unknown class name: ".concat(t.name))}}throw new Error("Unknown selector type: ".concat(t.type))}function p(e,t){var r=t&&t.nodeTypeKey||"type",n=e[r];return t&&t.visitorKeys&&t.visitorKeys[n]?t.visitorKeys[n]:i.VisitorKeys[n]?i.VisitorKeys[n]:t&&"function"==typeof t.fallback?t.fallback(e):Object.keys(e).filter((function(e){return e!==r}))}function h(t,r){var n=r&&r.nodeTypeKey||"type";return null!==t&&"object"===e(t)&&"string"==typeof t[n]}function y(e,r,n,a,o){var i=t(n,1)[0];if(!i)return!1;for(var s=p(i,o),u=0;u0&&h(l[c-1],o)&&r(l[c-1],n,o))return!0;if("RIGHT_SIDE"===a&&c=0&&l} ancestry The ancestry of the node. + * @returns {boolean} True if the node matches the class, false if not. + */ + /** * @typedef {object} ESQueryOptions + * @property {string} [nodeTypeKey="type"] By passing `nodeTypeKey`, we can allow other ASTs to use ESQuery. * @property { { [nodeType: string]: string[] } } [visitorKeys] By passing `visitorKeys` mapping, we can extend the properties of the nodes that traverse the node. * @property {TraverseOptionFallback} [fallback] By passing `fallback` option, we can control the properties of traversing nodes when encountering unknown nodes. + * @property {ClassMatcher} [matchClass] By passing `matchClass` option, we can customize the interpretation of classes. */ /** @@ -3812,7 +3766,8 @@ * @returns {string[]} Visitor keys of the node. */ function getVisitorKeys(node, options) { - var nodeType = node.type; + var nodeTypeKey = options && options.nodeTypeKey || 'type'; + var nodeType = node[nodeTypeKey]; if (options && options.visitorKeys && options.visitorKeys[nodeType]) { return options.visitorKeys[nodeType]; } @@ -3824,17 +3779,19 @@ } // 'iteration' fallback return Object.keys(node).filter(function (key) { - return key !== 'type'; + return key !== nodeTypeKey; }); } /** * Check whether the given value is an ASTNode or not. * @param {any} node The value to check. + * @param {ESQueryOptions|undefined} options The options to use. * @returns {boolean} `true` if the value is an ASTNode. */ - function isNode(node) { - return node !== null && _typeof(node) === 'object' && typeof node.type === 'string'; + function isNode(node, options) { + var nodeTypeKey = options && options.nodeTypeKey || 'type'; + return node !== null && _typeof(node) === 'object' && typeof node[nodeTypeKey] === 'string'; } /** @@ -3871,7 +3828,7 @@ upperBound = listProp.length; } for (var k = lowerBound; k < upperBound; ++k) { - if (isNode(listProp[k]) && matcher(listProp[k], ancestry, options)) { + if (isNode(listProp[k], options) && matcher(listProp[k], ancestry, options)) { return true; } } @@ -3904,10 +3861,10 @@ if (idx < 0) { continue; } - if (side === LEFT_SIDE && idx > 0 && isNode(listProp[idx - 1]) && matcher(listProp[idx - 1], ancestry, options)) { + if (side === LEFT_SIDE && idx > 0 && isNode(listProp[idx - 1], options) && matcher(listProp[idx - 1], ancestry, options)) { return true; } - if (side === RIGHT_SIDE && idx < listProp.length - 1 && isNode(listProp[idx + 1]) && matcher(listProp[idx + 1], ancestry, options)) { + if (side === RIGHT_SIDE && idx < listProp.length - 1 && isNode(listProp[idx + 1], options) && matcher(listProp[idx + 1], ancestry, options)) { return true; } } diff --git a/tools/node_modules/eslint/node_modules/esquery/dist/esquery.lite.js b/tools/node_modules/eslint/node_modules/esquery/dist/esquery.lite.js index 345e7830e5abcf..f5cc508e2c3e14 100644 --- a/tools/node_modules/eslint/node_modules/esquery/dist/esquery.lite.js +++ b/tools/node_modules/eslint/node_modules/esquery/dist/esquery.lite.js @@ -419,17 +419,7 @@ }, peg$c100 = ":", peg$c101 = peg$literalExpectation(":", false), - peg$c102 = "statement", - peg$c103 = peg$literalExpectation("statement", true), - peg$c104 = "expression", - peg$c105 = peg$literalExpectation("expression", true), - peg$c106 = "declaration", - peg$c107 = peg$literalExpectation("declaration", true), - peg$c108 = "function", - peg$c109 = peg$literalExpectation("function", true), - peg$c110 = "pattern", - peg$c111 = peg$literalExpectation("pattern", true), - peg$c112 = function peg$c112(c) { + peg$c102 = function peg$c102(c) { return { type: 'class', name: c @@ -2591,61 +2581,9 @@ } } if (s1 !== peg$FAILED) { - if (input.substr(peg$currPos, 9).toLowerCase() === peg$c102) { - s2 = input.substr(peg$currPos, 9); - peg$currPos += 9; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c103); - } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 10).toLowerCase() === peg$c104) { - s2 = input.substr(peg$currPos, 10); - peg$currPos += 10; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c105); - } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 11).toLowerCase() === peg$c106) { - s2 = input.substr(peg$currPos, 11); - peg$currPos += 11; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c107); - } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 8).toLowerCase() === peg$c108) { - s2 = input.substr(peg$currPos, 8); - peg$currPos += 8; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c109); - } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 7).toLowerCase() === peg$c110) { - s2 = input.substr(peg$currPos, 7); - peg$currPos += 7; - } else { - s2 = peg$FAILED; - { - peg$fail(peg$c111); - } - } - } - } - } - } + s2 = peg$parseidentifierName(); if (s2 !== peg$FAILED) { - s1 = peg$c112(s2); + s1 = peg$c102(s2); s0 = s1; } else { peg$currPos = s0; @@ -2835,8 +2773,9 @@ case 'identifier': { var value = selector.value.toLowerCase(); - return function (node) { - return value === node.type.toLowerCase(); + return function (node, ancestry, options) { + var nodeTypeKey = options && options.nodeTypeKey || 'type'; + return value === node[nodeTypeKey].toLowerCase(); }; } case 'field': @@ -3037,8 +2976,12 @@ } case 'class': { - var name = selector.name.toLowerCase(); - return function (node, ancestry) { + return function (node, ancestry, options) { + if (options && options.matchClass) { + return options.matchClass(selector.name, node, ancestry); + } + if (options && options.nodeTypeKey) return false; + var name = selector.name.toLowerCase(); switch (name) { case 'statement': if (node.type.slice(-9) === 'Statement') return true; @@ -3065,10 +3008,21 @@ * @param {external:AST} node The given node. * @returns {string[]} An array of visitor keys for the given node. */ + + /** + * @callback ClassMatcher + * @param {string} className The name of the class to match. + * @param {external:AST} node The node to match against. + * @param {Array} ancestry The ancestry of the node. + * @returns {boolean} True if the node matches the class, false if not. + */ + /** * @typedef {object} ESQueryOptions + * @property {string} [nodeTypeKey="type"] By passing `nodeTypeKey`, we can allow other ASTs to use ESQuery. * @property { { [nodeType: string]: string[] } } [visitorKeys] By passing `visitorKeys` mapping, we can extend the properties of the nodes that traverse the node. * @property {TraverseOptionFallback} [fallback] By passing `fallback` option, we can control the properties of traversing nodes when encountering unknown nodes. + * @property {ClassMatcher} [matchClass] By passing `matchClass` option, we can customize the interpretation of classes. */ /** @@ -3102,7 +3056,8 @@ * @returns {string[]} Visitor keys of the node. */ function getVisitorKeys(node, options) { - var nodeType = node.type; + var nodeTypeKey = options && options.nodeTypeKey || 'type'; + var nodeType = node[nodeTypeKey]; if (options && options.visitorKeys && options.visitorKeys[nodeType]) { return options.visitorKeys[nodeType]; } @@ -3114,17 +3069,19 @@ } // 'iteration' fallback return Object.keys(node).filter(function (key) { - return key !== 'type'; + return key !== nodeTypeKey; }); } /** * Check whether the given value is an ASTNode or not. * @param {any} node The value to check. + * @param {ESQueryOptions|undefined} options The options to use. * @returns {boolean} `true` if the value is an ASTNode. */ - function isNode(node) { - return node !== null && _typeof(node) === 'object' && typeof node.type === 'string'; + function isNode(node, options) { + var nodeTypeKey = options && options.nodeTypeKey || 'type'; + return node !== null && _typeof(node) === 'object' && typeof node[nodeTypeKey] === 'string'; } /** @@ -3161,7 +3118,7 @@ upperBound = listProp.length; } for (var k = lowerBound; k < upperBound; ++k) { - if (isNode(listProp[k]) && matcher(listProp[k], ancestry, options)) { + if (isNode(listProp[k], options) && matcher(listProp[k], ancestry, options)) { return true; } } @@ -3194,10 +3151,10 @@ if (idx < 0) { continue; } - if (side === LEFT_SIDE && idx > 0 && isNode(listProp[idx - 1]) && matcher(listProp[idx - 1], ancestry, options)) { + if (side === LEFT_SIDE && idx > 0 && isNode(listProp[idx - 1], options) && matcher(listProp[idx - 1], ancestry, options)) { return true; } - if (side === RIGHT_SIDE && idx < listProp.length - 1 && isNode(listProp[idx + 1]) && matcher(listProp[idx + 1], ancestry, options)) { + if (side === RIGHT_SIDE && idx < listProp.length - 1 && isNode(listProp[idx + 1], options) && matcher(listProp[idx + 1], ancestry, options)) { return true; } } diff --git a/tools/node_modules/eslint/node_modules/esquery/dist/esquery.lite.min.js b/tools/node_modules/eslint/node_modules/esquery/dist/esquery.lite.min.js index 58f012dbd914d1..a1658fe9d1186e 100644 --- a/tools/node_modules/eslint/node_modules/esquery/dist/esquery.lite.min.js +++ b/tools/node_modules/eslint/node_modules/esquery/dist/esquery.lite.min.js @@ -1,2 +1,2 @@ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("estraverse")):"function"==typeof define&&define.amd?define(["estraverse"],e):(t=t||self).esquery=e(t.estraverse)}(this,(function(t){"use strict";function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function r(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,u,o,a,s=[],c=!0,i=!1;try{if(o=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;c=!1}else for(;!(c=(n=o.call(r)).done)&&(s.push(n.value),s.length!==e);c=!0);}catch(t){i=!0,u=t}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(i)throw u}}return s}}(t,e)||u(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function n(t){return function(t){if(Array.isArray(t))return o(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||u(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(t,e){if(t){if("string"==typeof t)return o(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(t,e):void 0}}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r0){for(e=1,n=1;e<~+.]/,h=dt([" ","[","]",",","(",")",":","#","!","=",">","<","~","+","."],!0,!1),p=yt(">",!1),v=yt("~",!1),y=yt("+",!1),d=yt(",",!1),A=yt("!",!1),x=yt("*",!1),g=yt("#",!1),b=yt("[",!1),m=yt("]",!1),P=/^[>","<","!"],!1,!1),w=yt("=",!1),j=function(t){return(t||"")+"="},E=/^[><]/,S=dt([">","<"],!1,!1),k=yt(".",!1),I=function(t,e,r){return{type:"attribute",name:t,operator:e,value:r}},F=yt('"',!1),L=/^[^\\"]/,T=dt(["\\",'"'],!0,!1),O=yt("\\",!1),D={type:"any"},R=function(t,e){return t+e},K=function(t){return{type:"literal",value:(e=t.join(""),e.replace(/\\(.)/g,(function(t,e){switch(e){case"b":return"\b";case"f":return"\f";case"n":return"\n";case"r":return"\r";case"t":return"\t";case"v":return"\v";default:return e}})))};var e},M=yt("'",!1),U=/^[^\\']/,_=dt(["\\","'"],!0,!1),q=/^[0-9]/,G=dt([["0","9"]],!1,!1),H=yt("type(",!1),V=/^[^ )]/,W=dt([" ",")"],!0,!1),$=yt(")",!1),z=/^[imsu]/,B=dt(["i","m","s","u"],!1,!1),J=yt("/",!1),N=/^[^\/]/,Q=dt(["/"],!0,!1),X=yt(":not(",!1),Y=yt(":matches(",!1),Z=yt(":has(",!1),tt=yt(":first-child",!1),et=yt(":last-child",!1),rt=yt(":nth-child(",!1),nt=yt(":nth-last-child(",!1),ut=yt(":",!1),ot=yt("statement",!0),at=yt("expression",!0),st=yt("declaration",!0),ct=yt("function",!0),it=yt("pattern",!0),lt=0,ft=[{line:1,column:1}],ht=0,pt=[],vt={};if("startRule"in r){if(!(r.startRule in c))throw new Error("Can't start parsing from rule \""+r.startRule+'".');i=c[r.startRule]}function yt(t,e){return{type:"literal",text:t,ignoreCase:e}}function dt(t,e,r){return{type:"class",parts:t,inverted:e,ignoreCase:r}}function At(t){var r,n=ft[t];if(n)return n;for(r=t-1;!ft[r];)r--;for(n={line:(n=ft[r]).line,column:n.column};rht&&(ht=lt,pt=[]),pt.push(t))}function bt(){var t,e,r,n,u=30*lt+0,o=vt[u];return o?(lt=o.nextPos,o.result):(t=lt,(e=mt())!==s&&(r=wt())!==s&&mt()!==s?t=e=1===(n=r).length?n[0]:{type:"matches",selectors:n}:(lt=t,t=s),t===s&&(t=lt,(e=mt())!==s&&(e=void 0),t=e),vt[u]={nextPos:lt,result:t},t)}function mt(){var t,r,n=30*lt+1,u=vt[n];if(u)return lt=u.nextPos,u.result;for(t=[],32===e.charCodeAt(lt)?(r=" ",lt++):(r=s,gt(l));r!==s;)t.push(r),32===e.charCodeAt(lt)?(r=" ",lt++):(r=s,gt(l));return vt[n]={nextPos:lt,result:t},t}function Pt(){var t,r,n,u=30*lt+2,o=vt[u];if(o)return lt=o.nextPos,o.result;if(r=[],f.test(e.charAt(lt))?(n=e.charAt(lt),lt++):(n=s,gt(h)),n!==s)for(;n!==s;)r.push(n),f.test(e.charAt(lt))?(n=e.charAt(lt),lt++):(n=s,gt(h));else r=s;return r!==s&&(r=r.join("")),t=r,vt[u]={nextPos:lt,result:t},t}function Ct(){var t,r,n,u=30*lt+3,o=vt[u];return o?(lt=o.nextPos,o.result):(t=lt,(r=mt())!==s?(62===e.charCodeAt(lt)?(n=">",lt++):(n=s,gt(p)),n!==s&&mt()!==s?t=r="child":(lt=t,t=s)):(lt=t,t=s),t===s&&(t=lt,(r=mt())!==s?(126===e.charCodeAt(lt)?(n="~",lt++):(n=s,gt(v)),n!==s&&mt()!==s?t=r="sibling":(lt=t,t=s)):(lt=t,t=s),t===s&&(t=lt,(r=mt())!==s?(43===e.charCodeAt(lt)?(n="+",lt++):(n=s,gt(y)),n!==s&&mt()!==s?t=r="adjacent":(lt=t,t=s)):(lt=t,t=s),t===s&&(t=lt,32===e.charCodeAt(lt)?(r=" ",lt++):(r=s,gt(l)),r!==s&&(n=mt())!==s?t=r="descendant":(lt=t,t=s)))),vt[u]={nextPos:lt,result:t},t)}function wt(){var t,r,n,u,o,a,c,i,l=30*lt+4,f=vt[l];if(f)return lt=f.nextPos,f.result;if(t=lt,(r=jt())!==s){for(n=[],u=lt,(o=mt())!==s?(44===e.charCodeAt(lt)?(a=",",lt++):(a=s,gt(d)),a!==s&&(c=mt())!==s&&(i=jt())!==s?u=o=[o,a,c,i]:(lt=u,u=s)):(lt=u,u=s);u!==s;)n.push(u),u=lt,(o=mt())!==s?(44===e.charCodeAt(lt)?(a=",",lt++):(a=s,gt(d)),a!==s&&(c=mt())!==s&&(i=jt())!==s?u=o=[o,a,c,i]:(lt=u,u=s)):(lt=u,u=s);n!==s?t=r=[r].concat(n.map((function(t){return t[3]}))):(lt=t,t=s)}else lt=t,t=s;return vt[l]={nextPos:lt,result:t},t}function jt(){var t,e,r,n,u,o,a,c=30*lt+5,i=vt[c];if(i)return lt=i.nextPos,i.result;if(t=lt,(e=Et())!==s){for(r=[],n=lt,(u=Ct())!==s&&(o=Et())!==s?n=u=[u,o]:(lt=n,n=s);n!==s;)r.push(n),n=lt,(u=Ct())!==s&&(o=Et())!==s?n=u=[u,o]:(lt=n,n=s);r!==s?(a=e,t=e=r.reduce((function(t,e){return{type:e[0],left:t,right:e[1]}}),a)):(lt=t,t=s)}else lt=t,t=s;return vt[c]={nextPos:lt,result:t},t}function Et(){var t,r,n,u,o,a,c,i=30*lt+6,l=vt[i];if(l)return lt=l.nextPos,l.result;if(t=lt,33===e.charCodeAt(lt)?(r="!",lt++):(r=s,gt(A)),r===s&&(r=null),r!==s){if(n=[],(u=St())!==s)for(;u!==s;)n.push(u),u=St();else n=s;n!==s?(o=r,c=1===(a=n).length?a[0]:{type:"compound",selectors:a},o&&(c.subject=!0),t=r=c):(lt=t,t=s)}else lt=t,t=s;return vt[i]={nextPos:lt,result:t},t}function St(){var t,r=30*lt+7,n=vt[r];return n?(lt=n.nextPos,n.result):((t=function(){var t,r,n=30*lt+8,u=vt[n];return u?(lt=u.nextPos,u.result):(42===e.charCodeAt(lt)?(r="*",lt++):(r=s,gt(x)),r!==s&&(r={type:"wildcard",value:r}),t=r,vt[n]={nextPos:lt,result:t},t)}())===s&&(t=function(){var t,r,n,u=30*lt+9,o=vt[u];return o?(lt=o.nextPos,o.result):(t=lt,35===e.charCodeAt(lt)?(r="#",lt++):(r=s,gt(g)),r===s&&(r=null),r!==s&&(n=Pt())!==s?t=r={type:"identifier",value:n}:(lt=t,t=s),vt[u]={nextPos:lt,result:t},t)}())===s&&(t=function(){var t,r,n,u,o=30*lt+10,a=vt[o];return a?(lt=a.nextPos,a.result):(t=lt,91===e.charCodeAt(lt)?(r="[",lt++):(r=s,gt(b)),r!==s&&mt()!==s&&(n=function(){var t,r,n,u,o=30*lt+14,a=vt[o];return a?(lt=a.nextPos,a.result):(t=lt,(r=kt())!==s&&mt()!==s&&(n=function(){var t,r,n,u=30*lt+12,o=vt[u];return o?(lt=o.nextPos,o.result):(t=lt,33===e.charCodeAt(lt)?(r="!",lt++):(r=s,gt(A)),r===s&&(r=null),r!==s?(61===e.charCodeAt(lt)?(n="=",lt++):(n=s,gt(w)),n!==s?(r=j(r),t=r):(lt=t,t=s)):(lt=t,t=s),vt[u]={nextPos:lt,result:t},t)}())!==s&&mt()!==s?((u=function(){var t,r,n,u,o,a=30*lt+18,c=vt[a];if(c)return lt=c.nextPos,c.result;if(t=lt,"type("===e.substr(lt,5)?(r="type(",lt+=5):(r=s,gt(H)),r!==s)if(mt()!==s){if(n=[],V.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(W)),u!==s)for(;u!==s;)n.push(u),V.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(W));else n=s;n!==s&&(u=mt())!==s?(41===e.charCodeAt(lt)?(o=")",lt++):(o=s,gt($)),o!==s?(r={type:"type",value:n.join("")},t=r):(lt=t,t=s)):(lt=t,t=s)}else lt=t,t=s;else lt=t,t=s;return vt[a]={nextPos:lt,result:t},t}())===s&&(u=function(){var t,r,n,u,o,a,c=30*lt+20,i=vt[c];if(i)return lt=i.nextPos,i.result;if(t=lt,47===e.charCodeAt(lt)?(r="/",lt++):(r=s,gt(J)),r!==s){if(n=[],N.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(Q)),u!==s)for(;u!==s;)n.push(u),N.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(Q));else n=s;n!==s?(47===e.charCodeAt(lt)?(u="/",lt++):(u=s,gt(J)),u!==s?((o=function(){var t,r,n=30*lt+19,u=vt[n];if(u)return lt=u.nextPos,u.result;if(t=[],z.test(e.charAt(lt))?(r=e.charAt(lt),lt++):(r=s,gt(B)),r!==s)for(;r!==s;)t.push(r),z.test(e.charAt(lt))?(r=e.charAt(lt),lt++):(r=s,gt(B));else t=s;return vt[n]={nextPos:lt,result:t},t}())===s&&(o=null),o!==s?(a=o,r={type:"regexp",value:new RegExp(n.join(""),a?a.join(""):"")},t=r):(lt=t,t=s)):(lt=t,t=s)):(lt=t,t=s)}else lt=t,t=s;return vt[c]={nextPos:lt,result:t},t}()),u!==s?(r=I(r,n,u),t=r):(lt=t,t=s)):(lt=t,t=s),t===s&&(t=lt,(r=kt())!==s&&mt()!==s&&(n=function(){var t,r,n,u=30*lt+11,o=vt[u];return o?(lt=o.nextPos,o.result):(t=lt,P.test(e.charAt(lt))?(r=e.charAt(lt),lt++):(r=s,gt(C)),r===s&&(r=null),r!==s?(61===e.charCodeAt(lt)?(n="=",lt++):(n=s,gt(w)),n!==s?(r=j(r),t=r):(lt=t,t=s)):(lt=t,t=s),t===s&&(E.test(e.charAt(lt))?(t=e.charAt(lt),lt++):(t=s,gt(S))),vt[u]={nextPos:lt,result:t},t)}())!==s&&mt()!==s?((u=function(){var t,r,n,u,o,a,c=30*lt+15,i=vt[c];if(i)return lt=i.nextPos,i.result;if(t=lt,34===e.charCodeAt(lt)?(r='"',lt++):(r=s,gt(F)),r!==s){for(n=[],L.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(T)),u===s&&(u=lt,92===e.charCodeAt(lt)?(o="\\",lt++):(o=s,gt(O)),o!==s?(e.length>lt?(a=e.charAt(lt),lt++):(a=s,gt(D)),a!==s?(o=R(o,a),u=o):(lt=u,u=s)):(lt=u,u=s));u!==s;)n.push(u),L.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(T)),u===s&&(u=lt,92===e.charCodeAt(lt)?(o="\\",lt++):(o=s,gt(O)),o!==s?(e.length>lt?(a=e.charAt(lt),lt++):(a=s,gt(D)),a!==s?(o=R(o,a),u=o):(lt=u,u=s)):(lt=u,u=s));n!==s?(34===e.charCodeAt(lt)?(u='"',lt++):(u=s,gt(F)),u!==s?(r=K(n),t=r):(lt=t,t=s)):(lt=t,t=s)}else lt=t,t=s;if(t===s)if(t=lt,39===e.charCodeAt(lt)?(r="'",lt++):(r=s,gt(M)),r!==s){for(n=[],U.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(_)),u===s&&(u=lt,92===e.charCodeAt(lt)?(o="\\",lt++):(o=s,gt(O)),o!==s?(e.length>lt?(a=e.charAt(lt),lt++):(a=s,gt(D)),a!==s?(o=R(o,a),u=o):(lt=u,u=s)):(lt=u,u=s));u!==s;)n.push(u),U.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(_)),u===s&&(u=lt,92===e.charCodeAt(lt)?(o="\\",lt++):(o=s,gt(O)),o!==s?(e.length>lt?(a=e.charAt(lt),lt++):(a=s,gt(D)),a!==s?(o=R(o,a),u=o):(lt=u,u=s)):(lt=u,u=s));n!==s?(39===e.charCodeAt(lt)?(u="'",lt++):(u=s,gt(M)),u!==s?(r=K(n),t=r):(lt=t,t=s)):(lt=t,t=s)}else lt=t,t=s;return vt[c]={nextPos:lt,result:t},t}())===s&&(u=function(){var t,r,n,u,o,a,c,i=30*lt+16,l=vt[i];if(l)return lt=l.nextPos,l.result;for(t=lt,r=lt,n=[],q.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(G));u!==s;)n.push(u),q.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(G));if(n!==s?(46===e.charCodeAt(lt)?(u=".",lt++):(u=s,gt(k)),u!==s?r=n=[n,u]:(lt=r,r=s)):(lt=r,r=s),r===s&&(r=null),r!==s){if(n=[],q.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(G)),u!==s)for(;u!==s;)n.push(u),q.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(G));else n=s;n!==s?(a=n,c=(o=r)?[].concat.apply([],o).join(""):"",r={type:"literal",value:parseFloat(c+a.join(""))},t=r):(lt=t,t=s)}else lt=t,t=s;return vt[i]={nextPos:lt,result:t},t}())===s&&(u=function(){var t,e,r=30*lt+17,n=vt[r];return n?(lt=n.nextPos,n.result):((e=Pt())!==s&&(e={type:"literal",value:e}),t=e,vt[r]={nextPos:lt,result:t},t)}()),u!==s?(r=I(r,n,u),t=r):(lt=t,t=s)):(lt=t,t=s),t===s&&(t=lt,(r=kt())!==s&&(r={type:"attribute",name:r}),t=r)),vt[o]={nextPos:lt,result:t},t)}())!==s&&mt()!==s?(93===e.charCodeAt(lt)?(u="]",lt++):(u=s,gt(m)),u!==s?t=r=n:(lt=t,t=s)):(lt=t,t=s),vt[o]={nextPos:lt,result:t},t)}())===s&&(t=function(){var t,r,n,u,o,a,c,i,l=30*lt+21,f=vt[l];if(f)return lt=f.nextPos,f.result;if(t=lt,46===e.charCodeAt(lt)?(r=".",lt++):(r=s,gt(k)),r!==s)if((n=Pt())!==s){for(u=[],o=lt,46===e.charCodeAt(lt)?(a=".",lt++):(a=s,gt(k)),a!==s&&(c=Pt())!==s?o=a=[a,c]:(lt=o,o=s);o!==s;)u.push(o),o=lt,46===e.charCodeAt(lt)?(a=".",lt++):(a=s,gt(k)),a!==s&&(c=Pt())!==s?o=a=[a,c]:(lt=o,o=s);u!==s?(i=n,r={type:"field",name:u.reduce((function(t,e){return t+e[0]+e[1]}),i)},t=r):(lt=t,t=s)}else lt=t,t=s;else lt=t,t=s;return vt[l]={nextPos:lt,result:t},t}())===s&&(t=function(){var t,r,n,u,o=30*lt+22,a=vt[o];return a?(lt=a.nextPos,a.result):(t=lt,":not("===e.substr(lt,5)?(r=":not(",lt+=5):(r=s,gt(X)),r!==s&&mt()!==s&&(n=wt())!==s&&mt()!==s?(41===e.charCodeAt(lt)?(u=")",lt++):(u=s,gt($)),u!==s?t=r={type:"not",selectors:n}:(lt=t,t=s)):(lt=t,t=s),vt[o]={nextPos:lt,result:t},t)}())===s&&(t=function(){var t,r,n,u,o=30*lt+23,a=vt[o];return a?(lt=a.nextPos,a.result):(t=lt,":matches("===e.substr(lt,9)?(r=":matches(",lt+=9):(r=s,gt(Y)),r!==s&&mt()!==s&&(n=wt())!==s&&mt()!==s?(41===e.charCodeAt(lt)?(u=")",lt++):(u=s,gt($)),u!==s?t=r={type:"matches",selectors:n}:(lt=t,t=s)):(lt=t,t=s),vt[o]={nextPos:lt,result:t},t)}())===s&&(t=function(){var t,r,n,u,o=30*lt+24,a=vt[o];return a?(lt=a.nextPos,a.result):(t=lt,":has("===e.substr(lt,5)?(r=":has(",lt+=5):(r=s,gt(Z)),r!==s&&mt()!==s&&(n=wt())!==s&&mt()!==s?(41===e.charCodeAt(lt)?(u=")",lt++):(u=s,gt($)),u!==s?t=r={type:"has",selectors:n}:(lt=t,t=s)):(lt=t,t=s),vt[o]={nextPos:lt,result:t},t)}())===s&&(t=function(){var t,r,n=30*lt+25,u=vt[n];return u?(lt=u.nextPos,u.result):(":first-child"===e.substr(lt,12)?(r=":first-child",lt+=12):(r=s,gt(tt)),r!==s&&(r=It(1)),t=r,vt[n]={nextPos:lt,result:t},t)}())===s&&(t=function(){var t,r,n=30*lt+26,u=vt[n];return u?(lt=u.nextPos,u.result):(":last-child"===e.substr(lt,11)?(r=":last-child",lt+=11):(r=s,gt(et)),r!==s&&(r=Ft(1)),t=r,vt[n]={nextPos:lt,result:t},t)}())===s&&(t=function(){var t,r,n,u,o,a=30*lt+27,c=vt[a];if(c)return lt=c.nextPos,c.result;if(t=lt,":nth-child("===e.substr(lt,11)?(r=":nth-child(",lt+=11):(r=s,gt(rt)),r!==s)if(mt()!==s){if(n=[],q.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(G)),u!==s)for(;u!==s;)n.push(u),q.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(G));else n=s;n!==s&&(u=mt())!==s?(41===e.charCodeAt(lt)?(o=")",lt++):(o=s,gt($)),o!==s?(r=It(parseInt(n.join(""),10)),t=r):(lt=t,t=s)):(lt=t,t=s)}else lt=t,t=s;else lt=t,t=s;return vt[a]={nextPos:lt,result:t},t}())===s&&(t=function(){var t,r,n,u,o,a=30*lt+28,c=vt[a];if(c)return lt=c.nextPos,c.result;if(t=lt,":nth-last-child("===e.substr(lt,16)?(r=":nth-last-child(",lt+=16):(r=s,gt(nt)),r!==s)if(mt()!==s){if(n=[],q.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(G)),u!==s)for(;u!==s;)n.push(u),q.test(e.charAt(lt))?(u=e.charAt(lt),lt++):(u=s,gt(G));else n=s;n!==s&&(u=mt())!==s?(41===e.charCodeAt(lt)?(o=")",lt++):(o=s,gt($)),o!==s?(r=Ft(parseInt(n.join(""),10)),t=r):(lt=t,t=s)):(lt=t,t=s)}else lt=t,t=s;else lt=t,t=s;return vt[a]={nextPos:lt,result:t},t}())===s&&(t=function(){var t,r,n,u=30*lt+29,o=vt[u];return o?(lt=o.nextPos,o.result):(t=lt,58===e.charCodeAt(lt)?(r=":",lt++):(r=s,gt(ut)),r!==s?("statement"===e.substr(lt,9).toLowerCase()?(n=e.substr(lt,9),lt+=9):(n=s,gt(ot)),n===s&&("expression"===e.substr(lt,10).toLowerCase()?(n=e.substr(lt,10),lt+=10):(n=s,gt(at)),n===s&&("declaration"===e.substr(lt,11).toLowerCase()?(n=e.substr(lt,11),lt+=11):(n=s,gt(st)),n===s&&("function"===e.substr(lt,8).toLowerCase()?(n=e.substr(lt,8),lt+=8):(n=s,gt(ct)),n===s&&("pattern"===e.substr(lt,7).toLowerCase()?(n=e.substr(lt,7),lt+=7):(n=s,gt(it)))))),n!==s?t=r={type:"class",name:n}:(lt=t,t=s)):(lt=t,t=s),vt[u]={nextPos:lt,result:t},t)}()),vt[r]={nextPos:lt,result:t},t)}function kt(){var t,r,n,u,o,a,c,i,l=30*lt+13,f=vt[l];if(f)return lt=f.nextPos,f.result;if(t=lt,(r=Pt())!==s){for(n=[],u=lt,46===e.charCodeAt(lt)?(o=".",lt++):(o=s,gt(k)),o!==s&&(a=Pt())!==s?u=o=[o,a]:(lt=u,u=s);u!==s;)n.push(u),u=lt,46===e.charCodeAt(lt)?(o=".",lt++):(o=s,gt(k)),o!==s&&(a=Pt())!==s?u=o=[o,a]:(lt=u,u=s);n!==s?(c=r,i=n,t=r=[].concat.apply([c],i).join("")):(lt=t,t=s)}else lt=t,t=s;return vt[l]={nextPos:lt,result:t},t}function It(t){return{type:"nth-child",index:{type:"literal",value:t}}}function Ft(t){return{type:"nth-last-child",index:{type:"literal",value:t}}}if((n=i())!==s&<===e.length)return n;throw n!==s&<0&&h(t,e,r))&&f(e[0],e.slice(1),r)};case"descendant":var d=i(r.left),A=i(r.right);return function(t,e,r){if(A(t,e,r))for(var n=0,u=e.length;n":return function(t){return s(t,x)>r.value.value};case">=":return function(t){return s(t,x)>=r.value.value}}throw new Error("Unknown operator: ".concat(r.operator));case"sibling":var m=i(r.left),P=i(r.right);return function(t,e,n){return P(t,e,n)&&p(t,m,e,"LEFT_SIDE",n)||r.left.subject&&m(t,e,n)&&p(t,P,e,"RIGHT_SIDE",n)};case"adjacent":var C=i(r.left),w=i(r.right);return function(t,e,n){return w(t,e,n)&&v(t,C,e,"LEFT_SIDE",n)||r.right.subject&&C(t,e,n)&&v(t,w,e,"RIGHT_SIDE",n)};case"nth-child":var j=r.index.value,E=i(r.right);return function(t,e,r){return E(t,e,r)&&y(t,e,j,r)};case"nth-last-child":var S=-r.index.value,k=i(r.right);return function(t,e,r){return k(t,e,r)&&y(t,e,S,r)};case"class":var I=r.name.toLowerCase();return function(t,e){switch(I){case"statement":if("Statement"===t.type.slice(-9))return!0;case"declaration":return"Declaration"===t.type.slice(-11);case"pattern":if("Pattern"===t.type.slice(-7))return!0;case"expression":return"Expression"===t.type.slice(-10)||"Literal"===t.type.slice(-7)||"Identifier"===t.type&&(0===e.length||"MetaProperty"!==e[0].type)||"MetaProperty"===t.type;case"function":return"FunctionDeclaration"===t.type||"FunctionExpression"===t.type||"ArrowFunctionExpression"===t.type}throw new Error("Unknown class name: ".concat(r.name))}}throw new Error("Unknown selector type: ".concat(r.type))}function f(e,r){var n=e.type;return r&&r.visitorKeys&&r.visitorKeys[n]?r.visitorKeys[n]:t.VisitorKeys[n]?t.VisitorKeys[n]:r&&"function"==typeof r.fallback?r.fallback(e):Object.keys(e).filter((function(t){return"type"!==t}))}function h(t){return null!==t&&"object"===e(t)&&"string"==typeof t.type}function p(t,e,n,u,o){var a=r(n,1)[0];if(!a)return!1;for(var s=f(a,o),c=0;c0&&h(i[l-1])&&e(i[l-1],n,o))return!0;if("RIGHT_SIDE"===u&&l=0&&it.length)&&(e=t.length);for(var r=0,n=new Array(e);r0){for(e=1,n=1;e<~+.]/,h=ft([" ","[","]",",","(",")",":","#","!","=",">","<","~","+","."],!0,!1),p=lt(">",!1),v=lt("~",!1),y=lt("+",!1),d=lt(",",!1),A=lt("!",!1),x=lt("*",!1),g=lt("#",!1),m=lt("[",!1),b=lt("]",!1),P=/^[>","<","!"],!1,!1),w=lt("=",!1),j=function(t){return(t||"")+"="},E=/^[><]/,S=ft([">","<"],!1,!1),k=lt(".",!1),I=function(t,e,r){return{type:"attribute",name:t,operator:e,value:r}},T=lt('"',!1),F=/^[^\\"]/,K=ft(["\\",'"'],!0,!1),O=lt("\\",!1),D={type:"any"},L=function(t,e){return t+e},R=function(t){return{type:"literal",value:(e=t.join(""),e.replace(/\\(.)/g,(function(t,e){switch(e){case"b":return"\b";case"f":return"\f";case"n":return"\n";case"r":return"\r";case"t":return"\t";case"v":return"\v";default:return e}})))};var e},M=lt("'",!1),U=/^[^\\']/,_=ft(["\\","'"],!0,!1),q=/^[0-9]/,G=ft([["0","9"]],!1,!1),H=lt("type(",!1),V=/^[^ )]/,W=ft([" ",")"],!0,!1),$=lt(")",!1),z=/^[imsu]/,B=ft(["i","m","s","u"],!1,!1),J=lt("/",!1),N=/^[^\/]/,Q=ft(["/"],!0,!1),X=lt(":not(",!1),Y=lt(":matches(",!1),Z=lt(":has(",!1),tt=lt(":first-child",!1),et=lt(":last-child",!1),rt=lt(":nth-child(",!1),nt=lt(":nth-last-child(",!1),ut=lt(":",!1),ot=0,at=[{line:1,column:1}],st=0,ct=[],it={};if("startRule"in r){if(!(r.startRule in c))throw new Error("Can't start parsing from rule \""+r.startRule+'".');i=c[r.startRule]}function lt(t,e){return{type:"literal",text:t,ignoreCase:e}}function ft(t,e,r){return{type:"class",parts:t,inverted:e,ignoreCase:r}}function ht(t){var r,n=at[t];if(n)return n;for(r=t-1;!at[r];)r--;for(n={line:(n=at[r]).line,column:n.column};rst&&(st=ot,ct=[]),ct.push(t))}function yt(){var t,e,r,n,u=30*ot+0,o=it[u];return o?(ot=o.nextPos,o.result):(t=ot,(e=dt())!==s&&(r=gt())!==s&&dt()!==s?t=e=1===(n=r).length?n[0]:{type:"matches",selectors:n}:(ot=t,t=s),t===s&&(t=ot,(e=dt())!==s&&(e=void 0),t=e),it[u]={nextPos:ot,result:t},t)}function dt(){var t,r,n=30*ot+1,u=it[n];if(u)return ot=u.nextPos,u.result;for(t=[],32===e.charCodeAt(ot)?(r=" ",ot++):(r=s,vt(l));r!==s;)t.push(r),32===e.charCodeAt(ot)?(r=" ",ot++):(r=s,vt(l));return it[n]={nextPos:ot,result:t},t}function At(){var t,r,n,u=30*ot+2,o=it[u];if(o)return ot=o.nextPos,o.result;if(r=[],f.test(e.charAt(ot))?(n=e.charAt(ot),ot++):(n=s,vt(h)),n!==s)for(;n!==s;)r.push(n),f.test(e.charAt(ot))?(n=e.charAt(ot),ot++):(n=s,vt(h));else r=s;return r!==s&&(r=r.join("")),t=r,it[u]={nextPos:ot,result:t},t}function xt(){var t,r,n,u=30*ot+3,o=it[u];return o?(ot=o.nextPos,o.result):(t=ot,(r=dt())!==s?(62===e.charCodeAt(ot)?(n=">",ot++):(n=s,vt(p)),n!==s&&dt()!==s?t=r="child":(ot=t,t=s)):(ot=t,t=s),t===s&&(t=ot,(r=dt())!==s?(126===e.charCodeAt(ot)?(n="~",ot++):(n=s,vt(v)),n!==s&&dt()!==s?t=r="sibling":(ot=t,t=s)):(ot=t,t=s),t===s&&(t=ot,(r=dt())!==s?(43===e.charCodeAt(ot)?(n="+",ot++):(n=s,vt(y)),n!==s&&dt()!==s?t=r="adjacent":(ot=t,t=s)):(ot=t,t=s),t===s&&(t=ot,32===e.charCodeAt(ot)?(r=" ",ot++):(r=s,vt(l)),r!==s&&(n=dt())!==s?t=r="descendant":(ot=t,t=s)))),it[u]={nextPos:ot,result:t},t)}function gt(){var t,r,n,u,o,a,c,i,l=30*ot+4,f=it[l];if(f)return ot=f.nextPos,f.result;if(t=ot,(r=mt())!==s){for(n=[],u=ot,(o=dt())!==s?(44===e.charCodeAt(ot)?(a=",",ot++):(a=s,vt(d)),a!==s&&(c=dt())!==s&&(i=mt())!==s?u=o=[o,a,c,i]:(ot=u,u=s)):(ot=u,u=s);u!==s;)n.push(u),u=ot,(o=dt())!==s?(44===e.charCodeAt(ot)?(a=",",ot++):(a=s,vt(d)),a!==s&&(c=dt())!==s&&(i=mt())!==s?u=o=[o,a,c,i]:(ot=u,u=s)):(ot=u,u=s);n!==s?t=r=[r].concat(n.map((function(t){return t[3]}))):(ot=t,t=s)}else ot=t,t=s;return it[l]={nextPos:ot,result:t},t}function mt(){var t,e,r,n,u,o,a,c=30*ot+5,i=it[c];if(i)return ot=i.nextPos,i.result;if(t=ot,(e=bt())!==s){for(r=[],n=ot,(u=xt())!==s&&(o=bt())!==s?n=u=[u,o]:(ot=n,n=s);n!==s;)r.push(n),n=ot,(u=xt())!==s&&(o=bt())!==s?n=u=[u,o]:(ot=n,n=s);r!==s?(a=e,t=e=r.reduce((function(t,e){return{type:e[0],left:t,right:e[1]}}),a)):(ot=t,t=s)}else ot=t,t=s;return it[c]={nextPos:ot,result:t},t}function bt(){var t,r,n,u,o,a,c,i=30*ot+6,l=it[i];if(l)return ot=l.nextPos,l.result;if(t=ot,33===e.charCodeAt(ot)?(r="!",ot++):(r=s,vt(A)),r===s&&(r=null),r!==s){if(n=[],(u=Pt())!==s)for(;u!==s;)n.push(u),u=Pt();else n=s;n!==s?(o=r,c=1===(a=n).length?a[0]:{type:"compound",selectors:a},o&&(c.subject=!0),t=r=c):(ot=t,t=s)}else ot=t,t=s;return it[i]={nextPos:ot,result:t},t}function Pt(){var t,r=30*ot+7,n=it[r];return n?(ot=n.nextPos,n.result):((t=function(){var t,r,n=30*ot+8,u=it[n];return u?(ot=u.nextPos,u.result):(42===e.charCodeAt(ot)?(r="*",ot++):(r=s,vt(x)),r!==s&&(r={type:"wildcard",value:r}),t=r,it[n]={nextPos:ot,result:t},t)}())===s&&(t=function(){var t,r,n,u=30*ot+9,o=it[u];return o?(ot=o.nextPos,o.result):(t=ot,35===e.charCodeAt(ot)?(r="#",ot++):(r=s,vt(g)),r===s&&(r=null),r!==s&&(n=At())!==s?t=r={type:"identifier",value:n}:(ot=t,t=s),it[u]={nextPos:ot,result:t},t)}())===s&&(t=function(){var t,r,n,u,o=30*ot+10,a=it[o];return a?(ot=a.nextPos,a.result):(t=ot,91===e.charCodeAt(ot)?(r="[",ot++):(r=s,vt(m)),r!==s&&dt()!==s&&(n=function(){var t,r,n,u,o=30*ot+14,a=it[o];return a?(ot=a.nextPos,a.result):(t=ot,(r=Ct())!==s&&dt()!==s&&(n=function(){var t,r,n,u=30*ot+12,o=it[u];return o?(ot=o.nextPos,o.result):(t=ot,33===e.charCodeAt(ot)?(r="!",ot++):(r=s,vt(A)),r===s&&(r=null),r!==s?(61===e.charCodeAt(ot)?(n="=",ot++):(n=s,vt(w)),n!==s?(r=j(r),t=r):(ot=t,t=s)):(ot=t,t=s),it[u]={nextPos:ot,result:t},t)}())!==s&&dt()!==s?((u=function(){var t,r,n,u,o,a=30*ot+18,c=it[a];if(c)return ot=c.nextPos,c.result;if(t=ot,"type("===e.substr(ot,5)?(r="type(",ot+=5):(r=s,vt(H)),r!==s)if(dt()!==s){if(n=[],V.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(W)),u!==s)for(;u!==s;)n.push(u),V.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(W));else n=s;n!==s&&(u=dt())!==s?(41===e.charCodeAt(ot)?(o=")",ot++):(o=s,vt($)),o!==s?(r={type:"type",value:n.join("")},t=r):(ot=t,t=s)):(ot=t,t=s)}else ot=t,t=s;else ot=t,t=s;return it[a]={nextPos:ot,result:t},t}())===s&&(u=function(){var t,r,n,u,o,a,c=30*ot+20,i=it[c];if(i)return ot=i.nextPos,i.result;if(t=ot,47===e.charCodeAt(ot)?(r="/",ot++):(r=s,vt(J)),r!==s){if(n=[],N.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(Q)),u!==s)for(;u!==s;)n.push(u),N.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(Q));else n=s;n!==s?(47===e.charCodeAt(ot)?(u="/",ot++):(u=s,vt(J)),u!==s?((o=function(){var t,r,n=30*ot+19,u=it[n];if(u)return ot=u.nextPos,u.result;if(t=[],z.test(e.charAt(ot))?(r=e.charAt(ot),ot++):(r=s,vt(B)),r!==s)for(;r!==s;)t.push(r),z.test(e.charAt(ot))?(r=e.charAt(ot),ot++):(r=s,vt(B));else t=s;return it[n]={nextPos:ot,result:t},t}())===s&&(o=null),o!==s?(a=o,r={type:"regexp",value:new RegExp(n.join(""),a?a.join(""):"")},t=r):(ot=t,t=s)):(ot=t,t=s)):(ot=t,t=s)}else ot=t,t=s;return it[c]={nextPos:ot,result:t},t}()),u!==s?(r=I(r,n,u),t=r):(ot=t,t=s)):(ot=t,t=s),t===s&&(t=ot,(r=Ct())!==s&&dt()!==s&&(n=function(){var t,r,n,u=30*ot+11,o=it[u];return o?(ot=o.nextPos,o.result):(t=ot,P.test(e.charAt(ot))?(r=e.charAt(ot),ot++):(r=s,vt(C)),r===s&&(r=null),r!==s?(61===e.charCodeAt(ot)?(n="=",ot++):(n=s,vt(w)),n!==s?(r=j(r),t=r):(ot=t,t=s)):(ot=t,t=s),t===s&&(E.test(e.charAt(ot))?(t=e.charAt(ot),ot++):(t=s,vt(S))),it[u]={nextPos:ot,result:t},t)}())!==s&&dt()!==s?((u=function(){var t,r,n,u,o,a,c=30*ot+15,i=it[c];if(i)return ot=i.nextPos,i.result;if(t=ot,34===e.charCodeAt(ot)?(r='"',ot++):(r=s,vt(T)),r!==s){for(n=[],F.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(K)),u===s&&(u=ot,92===e.charCodeAt(ot)?(o="\\",ot++):(o=s,vt(O)),o!==s?(e.length>ot?(a=e.charAt(ot),ot++):(a=s,vt(D)),a!==s?(o=L(o,a),u=o):(ot=u,u=s)):(ot=u,u=s));u!==s;)n.push(u),F.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(K)),u===s&&(u=ot,92===e.charCodeAt(ot)?(o="\\",ot++):(o=s,vt(O)),o!==s?(e.length>ot?(a=e.charAt(ot),ot++):(a=s,vt(D)),a!==s?(o=L(o,a),u=o):(ot=u,u=s)):(ot=u,u=s));n!==s?(34===e.charCodeAt(ot)?(u='"',ot++):(u=s,vt(T)),u!==s?(r=R(n),t=r):(ot=t,t=s)):(ot=t,t=s)}else ot=t,t=s;if(t===s)if(t=ot,39===e.charCodeAt(ot)?(r="'",ot++):(r=s,vt(M)),r!==s){for(n=[],U.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(_)),u===s&&(u=ot,92===e.charCodeAt(ot)?(o="\\",ot++):(o=s,vt(O)),o!==s?(e.length>ot?(a=e.charAt(ot),ot++):(a=s,vt(D)),a!==s?(o=L(o,a),u=o):(ot=u,u=s)):(ot=u,u=s));u!==s;)n.push(u),U.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(_)),u===s&&(u=ot,92===e.charCodeAt(ot)?(o="\\",ot++):(o=s,vt(O)),o!==s?(e.length>ot?(a=e.charAt(ot),ot++):(a=s,vt(D)),a!==s?(o=L(o,a),u=o):(ot=u,u=s)):(ot=u,u=s));n!==s?(39===e.charCodeAt(ot)?(u="'",ot++):(u=s,vt(M)),u!==s?(r=R(n),t=r):(ot=t,t=s)):(ot=t,t=s)}else ot=t,t=s;return it[c]={nextPos:ot,result:t},t}())===s&&(u=function(){var t,r,n,u,o,a,c,i=30*ot+16,l=it[i];if(l)return ot=l.nextPos,l.result;for(t=ot,r=ot,n=[],q.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(G));u!==s;)n.push(u),q.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(G));if(n!==s?(46===e.charCodeAt(ot)?(u=".",ot++):(u=s,vt(k)),u!==s?r=n=[n,u]:(ot=r,r=s)):(ot=r,r=s),r===s&&(r=null),r!==s){if(n=[],q.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(G)),u!==s)for(;u!==s;)n.push(u),q.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(G));else n=s;n!==s?(a=n,c=(o=r)?[].concat.apply([],o).join(""):"",r={type:"literal",value:parseFloat(c+a.join(""))},t=r):(ot=t,t=s)}else ot=t,t=s;return it[i]={nextPos:ot,result:t},t}())===s&&(u=function(){var t,e,r=30*ot+17,n=it[r];return n?(ot=n.nextPos,n.result):((e=At())!==s&&(e={type:"literal",value:e}),t=e,it[r]={nextPos:ot,result:t},t)}()),u!==s?(r=I(r,n,u),t=r):(ot=t,t=s)):(ot=t,t=s),t===s&&(t=ot,(r=Ct())!==s&&(r={type:"attribute",name:r}),t=r)),it[o]={nextPos:ot,result:t},t)}())!==s&&dt()!==s?(93===e.charCodeAt(ot)?(u="]",ot++):(u=s,vt(b)),u!==s?t=r=n:(ot=t,t=s)):(ot=t,t=s),it[o]={nextPos:ot,result:t},t)}())===s&&(t=function(){var t,r,n,u,o,a,c,i,l=30*ot+21,f=it[l];if(f)return ot=f.nextPos,f.result;if(t=ot,46===e.charCodeAt(ot)?(r=".",ot++):(r=s,vt(k)),r!==s)if((n=At())!==s){for(u=[],o=ot,46===e.charCodeAt(ot)?(a=".",ot++):(a=s,vt(k)),a!==s&&(c=At())!==s?o=a=[a,c]:(ot=o,o=s);o!==s;)u.push(o),o=ot,46===e.charCodeAt(ot)?(a=".",ot++):(a=s,vt(k)),a!==s&&(c=At())!==s?o=a=[a,c]:(ot=o,o=s);u!==s?(i=n,r={type:"field",name:u.reduce((function(t,e){return t+e[0]+e[1]}),i)},t=r):(ot=t,t=s)}else ot=t,t=s;else ot=t,t=s;return it[l]={nextPos:ot,result:t},t}())===s&&(t=function(){var t,r,n,u,o=30*ot+22,a=it[o];return a?(ot=a.nextPos,a.result):(t=ot,":not("===e.substr(ot,5)?(r=":not(",ot+=5):(r=s,vt(X)),r!==s&&dt()!==s&&(n=gt())!==s&&dt()!==s?(41===e.charCodeAt(ot)?(u=")",ot++):(u=s,vt($)),u!==s?t=r={type:"not",selectors:n}:(ot=t,t=s)):(ot=t,t=s),it[o]={nextPos:ot,result:t},t)}())===s&&(t=function(){var t,r,n,u,o=30*ot+23,a=it[o];return a?(ot=a.nextPos,a.result):(t=ot,":matches("===e.substr(ot,9)?(r=":matches(",ot+=9):(r=s,vt(Y)),r!==s&&dt()!==s&&(n=gt())!==s&&dt()!==s?(41===e.charCodeAt(ot)?(u=")",ot++):(u=s,vt($)),u!==s?t=r={type:"matches",selectors:n}:(ot=t,t=s)):(ot=t,t=s),it[o]={nextPos:ot,result:t},t)}())===s&&(t=function(){var t,r,n,u,o=30*ot+24,a=it[o];return a?(ot=a.nextPos,a.result):(t=ot,":has("===e.substr(ot,5)?(r=":has(",ot+=5):(r=s,vt(Z)),r!==s&&dt()!==s&&(n=gt())!==s&&dt()!==s?(41===e.charCodeAt(ot)?(u=")",ot++):(u=s,vt($)),u!==s?t=r={type:"has",selectors:n}:(ot=t,t=s)):(ot=t,t=s),it[o]={nextPos:ot,result:t},t)}())===s&&(t=function(){var t,r,n=30*ot+25,u=it[n];return u?(ot=u.nextPos,u.result):(":first-child"===e.substr(ot,12)?(r=":first-child",ot+=12):(r=s,vt(tt)),r!==s&&(r=wt(1)),t=r,it[n]={nextPos:ot,result:t},t)}())===s&&(t=function(){var t,r,n=30*ot+26,u=it[n];return u?(ot=u.nextPos,u.result):(":last-child"===e.substr(ot,11)?(r=":last-child",ot+=11):(r=s,vt(et)),r!==s&&(r=jt(1)),t=r,it[n]={nextPos:ot,result:t},t)}())===s&&(t=function(){var t,r,n,u,o,a=30*ot+27,c=it[a];if(c)return ot=c.nextPos,c.result;if(t=ot,":nth-child("===e.substr(ot,11)?(r=":nth-child(",ot+=11):(r=s,vt(rt)),r!==s)if(dt()!==s){if(n=[],q.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(G)),u!==s)for(;u!==s;)n.push(u),q.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(G));else n=s;n!==s&&(u=dt())!==s?(41===e.charCodeAt(ot)?(o=")",ot++):(o=s,vt($)),o!==s?(r=wt(parseInt(n.join(""),10)),t=r):(ot=t,t=s)):(ot=t,t=s)}else ot=t,t=s;else ot=t,t=s;return it[a]={nextPos:ot,result:t},t}())===s&&(t=function(){var t,r,n,u,o,a=30*ot+28,c=it[a];if(c)return ot=c.nextPos,c.result;if(t=ot,":nth-last-child("===e.substr(ot,16)?(r=":nth-last-child(",ot+=16):(r=s,vt(nt)),r!==s)if(dt()!==s){if(n=[],q.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(G)),u!==s)for(;u!==s;)n.push(u),q.test(e.charAt(ot))?(u=e.charAt(ot),ot++):(u=s,vt(G));else n=s;n!==s&&(u=dt())!==s?(41===e.charCodeAt(ot)?(o=")",ot++):(o=s,vt($)),o!==s?(r=jt(parseInt(n.join(""),10)),t=r):(ot=t,t=s)):(ot=t,t=s)}else ot=t,t=s;else ot=t,t=s;return it[a]={nextPos:ot,result:t},t}())===s&&(t=function(){var t,r,n,u=30*ot+29,o=it[u];return o?(ot=o.nextPos,o.result):(t=ot,58===e.charCodeAt(ot)?(r=":",ot++):(r=s,vt(ut)),r!==s&&(n=At())!==s?t=r={type:"class",name:n}:(ot=t,t=s),it[u]={nextPos:ot,result:t},t)}()),it[r]={nextPos:ot,result:t},t)}function Ct(){var t,r,n,u,o,a,c,i,l=30*ot+13,f=it[l];if(f)return ot=f.nextPos,f.result;if(t=ot,(r=At())!==s){for(n=[],u=ot,46===e.charCodeAt(ot)?(o=".",ot++):(o=s,vt(k)),o!==s&&(a=At())!==s?u=o=[o,a]:(ot=u,u=s);u!==s;)n.push(u),u=ot,46===e.charCodeAt(ot)?(o=".",ot++):(o=s,vt(k)),o!==s&&(a=At())!==s?u=o=[o,a]:(ot=u,u=s);n!==s?(c=r,i=n,t=r=[].concat.apply([c],i).join("")):(ot=t,t=s)}else ot=t,t=s;return it[l]={nextPos:ot,result:t},t}function wt(t){return{type:"nth-child",index:{type:"literal",value:t}}}function jt(t){return{type:"nth-last-child",index:{type:"literal",value:t}}}if((n=i())!==s&&ot===e.length)return n;throw n!==s&&ot0&&h(t,e,r))&&f(e[0],e.slice(1),r)};case"descendant":var d=i(r.left),A=i(r.right);return function(t,e,r){if(A(t,e,r))for(var n=0,u=e.length;n":return function(t){return s(t,x)>r.value.value};case">=":return function(t){return s(t,x)>=r.value.value}}throw new Error("Unknown operator: ".concat(r.operator));case"sibling":var b=i(r.left),P=i(r.right);return function(t,e,n){return P(t,e,n)&&p(t,b,e,"LEFT_SIDE",n)||r.left.subject&&b(t,e,n)&&p(t,P,e,"RIGHT_SIDE",n)};case"adjacent":var C=i(r.left),w=i(r.right);return function(t,e,n){return w(t,e,n)&&v(t,C,e,"LEFT_SIDE",n)||r.right.subject&&C(t,e,n)&&v(t,w,e,"RIGHT_SIDE",n)};case"nth-child":var j=r.index.value,E=i(r.right);return function(t,e,r){return E(t,e,r)&&y(t,e,j,r)};case"nth-last-child":var S=-r.index.value,k=i(r.right);return function(t,e,r){return k(t,e,r)&&y(t,e,S,r)};case"class":return function(t,e,n){if(n&&n.matchClass)return n.matchClass(r.name,t,e);if(n&&n.nodeTypeKey)return!1;switch(r.name.toLowerCase()){case"statement":if("Statement"===t.type.slice(-9))return!0;case"declaration":return"Declaration"===t.type.slice(-11);case"pattern":if("Pattern"===t.type.slice(-7))return!0;case"expression":return"Expression"===t.type.slice(-10)||"Literal"===t.type.slice(-7)||"Identifier"===t.type&&(0===e.length||"MetaProperty"!==e[0].type)||"MetaProperty"===t.type;case"function":return"FunctionDeclaration"===t.type||"FunctionExpression"===t.type||"ArrowFunctionExpression"===t.type}throw new Error("Unknown class name: ".concat(r.name))}}throw new Error("Unknown selector type: ".concat(r.type))}function f(e,r){var n=r&&r.nodeTypeKey||"type",u=e[n];return r&&r.visitorKeys&&r.visitorKeys[u]?r.visitorKeys[u]:t.VisitorKeys[u]?t.VisitorKeys[u]:r&&"function"==typeof r.fallback?r.fallback(e):Object.keys(e).filter((function(t){return t!==n}))}function h(t,r){var n=r&&r.nodeTypeKey||"type";return null!==t&&"object"===e(t)&&"string"==typeof t[n]}function p(t,e,n,u,o){var a=r(n,1)[0];if(!a)return!1;for(var s=f(a,o),c=0;c0&&h(i[l-1],o)&&e(i[l-1],n,o))return!0;if("RIGHT_SIDE"===u&&l=0&&ie.length)&&(t=e.length);for(var r=0,n=new Array(t);r=0;--r)if(e[r].node===t)return!0;return!1}function y(e,t){return(new f).traverse(e,t)}function m(e,t){var r;return r=function(e,t){var r,n,o,a;for(n=e.length,o=0;n;)t(e[a=o+(r=n>>>1)])?n=r:(o=a+1,n-=r+1);return o}(t,(function(t){return t.range[0]>e.range[0]})),e.extendedRange=[e.range[0],e.range[1]],r!==t.length&&(e.extendedRange[1]=t[r].range[0]),(r-=1)>=0&&(e.extendedRange[0]=t[r].range[1]),e}return r={AssignmentExpression:"AssignmentExpression",AssignmentPattern:"AssignmentPattern",ArrayExpression:"ArrayExpression",ArrayPattern:"ArrayPattern",ArrowFunctionExpression:"ArrowFunctionExpression",AwaitExpression:"AwaitExpression",BlockStatement:"BlockStatement",BinaryExpression:"BinaryExpression",BreakStatement:"BreakStatement",CallExpression:"CallExpression",CatchClause:"CatchClause",ChainExpression:"ChainExpression",ClassBody:"ClassBody",ClassDeclaration:"ClassDeclaration",ClassExpression:"ClassExpression",ComprehensionBlock:"ComprehensionBlock",ComprehensionExpression:"ComprehensionExpression",ConditionalExpression:"ConditionalExpression",ContinueStatement:"ContinueStatement",DebuggerStatement:"DebuggerStatement",DirectiveStatement:"DirectiveStatement",DoWhileStatement:"DoWhileStatement",EmptyStatement:"EmptyStatement",ExportAllDeclaration:"ExportAllDeclaration",ExportDefaultDeclaration:"ExportDefaultDeclaration",ExportNamedDeclaration:"ExportNamedDeclaration",ExportSpecifier:"ExportSpecifier",ExpressionStatement:"ExpressionStatement",ForStatement:"ForStatement",ForInStatement:"ForInStatement",ForOfStatement:"ForOfStatement",FunctionDeclaration:"FunctionDeclaration",FunctionExpression:"FunctionExpression",GeneratorExpression:"GeneratorExpression",Identifier:"Identifier",IfStatement:"IfStatement",ImportExpression:"ImportExpression",ImportDeclaration:"ImportDeclaration",ImportDefaultSpecifier:"ImportDefaultSpecifier",ImportNamespaceSpecifier:"ImportNamespaceSpecifier",ImportSpecifier:"ImportSpecifier",Literal:"Literal",LabeledStatement:"LabeledStatement",LogicalExpression:"LogicalExpression",MemberExpression:"MemberExpression",MetaProperty:"MetaProperty",MethodDefinition:"MethodDefinition",ModuleSpecifier:"ModuleSpecifier",NewExpression:"NewExpression",ObjectExpression:"ObjectExpression",ObjectPattern:"ObjectPattern",PrivateIdentifier:"PrivateIdentifier",Program:"Program",Property:"Property",PropertyDefinition:"PropertyDefinition",RestElement:"RestElement",ReturnStatement:"ReturnStatement",SequenceExpression:"SequenceExpression",SpreadElement:"SpreadElement",Super:"Super",SwitchStatement:"SwitchStatement",SwitchCase:"SwitchCase",TaggedTemplateExpression:"TaggedTemplateExpression",TemplateElement:"TemplateElement",TemplateLiteral:"TemplateLiteral",ThisExpression:"ThisExpression",ThrowStatement:"ThrowStatement",TryStatement:"TryStatement",UnaryExpression:"UnaryExpression",UpdateExpression:"UpdateExpression",VariableDeclaration:"VariableDeclaration",VariableDeclarator:"VariableDeclarator",WhileStatement:"WhileStatement",WithStatement:"WithStatement",YieldExpression:"YieldExpression"},o={AssignmentExpression:["left","right"],AssignmentPattern:["left","right"],ArrayExpression:["elements"],ArrayPattern:["elements"],ArrowFunctionExpression:["params","body"],AwaitExpression:["argument"],BlockStatement:["body"],BinaryExpression:["left","right"],BreakStatement:["label"],CallExpression:["callee","arguments"],CatchClause:["param","body"],ChainExpression:["expression"],ClassBody:["body"],ClassDeclaration:["id","superClass","body"],ClassExpression:["id","superClass","body"],ComprehensionBlock:["left","right"],ComprehensionExpression:["blocks","filter","body"],ConditionalExpression:["test","consequent","alternate"],ContinueStatement:["label"],DebuggerStatement:[],DirectiveStatement:[],DoWhileStatement:["body","test"],EmptyStatement:[],ExportAllDeclaration:["source"],ExportDefaultDeclaration:["declaration"],ExportNamedDeclaration:["declaration","specifiers","source"],ExportSpecifier:["exported","local"],ExpressionStatement:["expression"],ForStatement:["init","test","update","body"],ForInStatement:["left","right","body"],ForOfStatement:["left","right","body"],FunctionDeclaration:["id","params","body"],FunctionExpression:["id","params","body"],GeneratorExpression:["blocks","filter","body"],Identifier:[],IfStatement:["test","consequent","alternate"],ImportExpression:["source"],ImportDeclaration:["specifiers","source"],ImportDefaultSpecifier:["local"],ImportNamespaceSpecifier:["local"],ImportSpecifier:["imported","local"],Literal:[],LabeledStatement:["label","body"],LogicalExpression:["left","right"],MemberExpression:["object","property"],MetaProperty:["meta","property"],MethodDefinition:["key","value"],ModuleSpecifier:[],NewExpression:["callee","arguments"],ObjectExpression:["properties"],ObjectPattern:["properties"],PrivateIdentifier:[],Program:["body"],Property:["key","value"],PropertyDefinition:["key","value"],RestElement:["argument"],ReturnStatement:["argument"],SequenceExpression:["expressions"],SpreadElement:["argument"],Super:[],SwitchStatement:["discriminant","cases"],SwitchCase:["test","consequent"],TaggedTemplateExpression:["tag","quasi"],TemplateElement:[],TemplateLiteral:["quasis","expressions"],ThisExpression:[],ThrowStatement:["argument"],TryStatement:["block","handler","finalizer"],UnaryExpression:["argument"],UpdateExpression:["argument"],VariableDeclaration:["declarations"],VariableDeclarator:["id","init"],WhileStatement:["test","body"],WithStatement:["object","body"],YieldExpression:["argument"]},n={Break:a={},Skip:i={},Remove:s={}},l.prototype.replace=function(e){this.parent[this.key]=e},l.prototype.remove=function(){return Array.isArray(this.parent)?(this.parent.splice(this.key,1),!0):(this.replace(null),!1)},f.prototype.path=function(){var e,t,r,n,o;function a(e,t){if(Array.isArray(t))for(r=0,n=t.length;r=0;)if(v=s[f=x[y]])if(Array.isArray(v)){for(m=v.length;(m-=1)>=0;)if(v[m]&&!d(n,v[m])){if(h(u,x[y]))o=new c(v[m],[f,m],"Property",null);else{if(!p(v[m]))continue;o=new c(v[m],[f,m],null,null)}r.push(o)}}else if(p(v)){if(d(n,v))continue;r.push(new c(v,f,null,null))}}}else if(o=n.pop(),l=this.__execute(t.leave,o),this.__state===a||l===a)return},f.prototype.replace=function(e,t){var r,n,o,u,f,d,y,m,x,v,g,b,A;function E(e){var t,n,o,a;if(e.ref.remove())for(n=e.ref.key,a=e.ref.parent,t=r.length;t--;)if((o=r[t]).ref&&o.ref.parent===a){if(o.ref.key=0;)if(v=o[A=x[y]])if(Array.isArray(v)){for(m=v.length;(m-=1)>=0;)if(v[m]){if(h(u,x[y]))d=new c(v[m],[A,m],"Property",new l(v,m));else{if(!p(v[m]))continue;d=new c(v[m],[A,m],null,new l(v,m))}r.push(d)}}else p(v)&&r.push(new c(v,A,null,new l(o,A)))}}else if(d=n.pop(),void 0!==(f=this.__execute(t.leave,d))&&f!==a&&f!==i&&f!==s&&d.ref.replace(f),this.__state!==s&&f!==s||E(d),this.__state===a||f===a)return b.root;return b.root},t.Syntax=r,t.traverse=y,t.replace=function(e,t){return(new f).replace(e,t)},t.attachComments=function(e,t,r){var o,a,i,s,l=[];if(!e.range)throw new Error("attachComments needs range information");if(!r.length){if(t.length){for(i=0,a=t.length;ie.range[0]);)t.extendedRange[1]===e.range[0]?(e.leadingComments||(e.leadingComments=[]),e.leadingComments.push(t),l.splice(s,1)):s+=1;return s===l.length?n.Break:l[s].extendedRange[0]>e.range[1]?n.Skip:void 0}}),s=0,y(e,{leave:function(e){for(var t;se.range[1]?n.Skip:void 0}}),e},t.VisitorKeys=o,t.VisitorOption=n,t.Controller=f,t.cloneEnvironment=function(){return e({})},t}(t)})),s=a((function(e){e.exports&&(e.exports=function(){function e(t,r,n,o){this.message=t,this.expected=r,this.found=n,this.location=o,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,e)}return function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(e,Error),e.buildMessage=function(e,t){var r={literal:function(e){return'"'+o(e.text)+'"'},class:function(e){var t,r="";for(t=0;t0){for(t=1,n=1;t<~+.]/,p=me([" ","[","]",",","(",")",":","#","!","=",">","<","~","+","."],!0,!1),h=ye(">",!1),d=ye("~",!1),y=ye("+",!1),m=ye(",",!1),x=ye("!",!1),v=ye("*",!1),g=ye("#",!1),b=ye("[",!1),A=ye("]",!1),E=/^[>","<","!"],!1,!1),_=ye("=",!1),C=function(e){return(e||"")+"="},w=/^[><]/,P=me([">","<"],!1,!1),k=ye(".",!1),D=function(e,t,r){return{type:"attribute",name:e,operator:t,value:r}},I=ye('"',!1),j=/^[^\\"]/,F=me(["\\",'"'],!0,!1),T=ye("\\",!1),L={type:"any"},R=function(e,t){return e+t},O=function(e){return{type:"literal",value:(t=e.join(""),t.replace(/\\(.)/g,(function(e,t){switch(t){case"b":return"\b";case"f":return"\f";case"n":return"\n";case"r":return"\r";case"t":return"\t";case"v":return"\v";default:return t}})))};var t},M=ye("'",!1),B=/^[^\\']/,U=me(["\\","'"],!0,!1),W=/^[0-9]/,q=me([["0","9"]],!1,!1),V=ye("type(",!1),N=/^[^ )]/,K=me([" ",")"],!0,!1),G=ye(")",!1),z=/^[imsu]/,H=me(["i","m","s","u"],!1,!1),Y=ye("/",!1),$=/^[^\/]/,J=me(["/"],!0,!1),Q=ye(":not(",!1),X=ye(":matches(",!1),Z=ye(":has(",!1),ee=ye(":first-child",!1),te=ye(":last-child",!1),re=ye(":nth-child(",!1),ne=ye(":nth-last-child(",!1),oe=ye(":",!1),ae=ye("statement",!0),ie=ye("expression",!0),se=ye("declaration",!0),ue=ye("function",!0),le=ye("pattern",!0),ce=0,fe=[{line:1,column:1}],pe=0,he=[],de={};if("startRule"in r){if(!(r.startRule in u))throw new Error("Can't start parsing from rule \""+r.startRule+'".');l=u[r.startRule]}function ye(e,t){return{type:"literal",text:e,ignoreCase:t}}function me(e,t,r){return{type:"class",parts:e,inverted:t,ignoreCase:r}}function xe(e){var r,n=fe[e];if(n)return n;for(r=e-1;!fe[r];)r--;for(n={line:(n=fe[r]).line,column:n.column};rpe&&(pe=ce,he=[]),he.push(e))}function be(){var e,t,r,n,o=30*ce+0,a=de[o];return a?(ce=a.nextPos,a.result):(e=ce,(t=Ae())!==s&&(r=_e())!==s&&Ae()!==s?e=t=1===(n=r).length?n[0]:{type:"matches",selectors:n}:(ce=e,e=s),e===s&&(e=ce,(t=Ae())!==s&&(t=void 0),e=t),de[o]={nextPos:ce,result:e},e)}function Ae(){var e,r,n=30*ce+1,o=de[n];if(o)return ce=o.nextPos,o.result;for(e=[],32===t.charCodeAt(ce)?(r=" ",ce++):(r=s,ge(c));r!==s;)e.push(r),32===t.charCodeAt(ce)?(r=" ",ce++):(r=s,ge(c));return de[n]={nextPos:ce,result:e},e}function Ee(){var e,r,n,o=30*ce+2,a=de[o];if(a)return ce=a.nextPos,a.result;if(r=[],f.test(t.charAt(ce))?(n=t.charAt(ce),ce++):(n=s,ge(p)),n!==s)for(;n!==s;)r.push(n),f.test(t.charAt(ce))?(n=t.charAt(ce),ce++):(n=s,ge(p));else r=s;return r!==s&&(r=r.join("")),e=r,de[o]={nextPos:ce,result:e},e}function Se(){var e,r,n,o=30*ce+3,a=de[o];return a?(ce=a.nextPos,a.result):(e=ce,(r=Ae())!==s?(62===t.charCodeAt(ce)?(n=">",ce++):(n=s,ge(h)),n!==s&&Ae()!==s?e=r="child":(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,(r=Ae())!==s?(126===t.charCodeAt(ce)?(n="~",ce++):(n=s,ge(d)),n!==s&&Ae()!==s?e=r="sibling":(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,(r=Ae())!==s?(43===t.charCodeAt(ce)?(n="+",ce++):(n=s,ge(y)),n!==s&&Ae()!==s?e=r="adjacent":(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,32===t.charCodeAt(ce)?(r=" ",ce++):(r=s,ge(c)),r!==s&&(n=Ae())!==s?e=r="descendant":(ce=e,e=s)))),de[o]={nextPos:ce,result:e},e)}function _e(){var e,r,n,o,a,i,u,l,c=30*ce+4,f=de[c];if(f)return ce=f.nextPos,f.result;if(e=ce,(r=Ce())!==s){for(n=[],o=ce,(a=Ae())!==s?(44===t.charCodeAt(ce)?(i=",",ce++):(i=s,ge(m)),i!==s&&(u=Ae())!==s&&(l=Ce())!==s?o=a=[a,i,u,l]:(ce=o,o=s)):(ce=o,o=s);o!==s;)n.push(o),o=ce,(a=Ae())!==s?(44===t.charCodeAt(ce)?(i=",",ce++):(i=s,ge(m)),i!==s&&(u=Ae())!==s&&(l=Ce())!==s?o=a=[a,i,u,l]:(ce=o,o=s)):(ce=o,o=s);n!==s?e=r=[r].concat(n.map((function(e){return e[3]}))):(ce=e,e=s)}else ce=e,e=s;return de[c]={nextPos:ce,result:e},e}function Ce(){var e,t,r,n,o,a,i,u=30*ce+5,l=de[u];if(l)return ce=l.nextPos,l.result;if(e=ce,(t=we())!==s){for(r=[],n=ce,(o=Se())!==s&&(a=we())!==s?n=o=[o,a]:(ce=n,n=s);n!==s;)r.push(n),n=ce,(o=Se())!==s&&(a=we())!==s?n=o=[o,a]:(ce=n,n=s);r!==s?(i=t,e=t=r.reduce((function(e,t){return{type:t[0],left:e,right:t[1]}}),i)):(ce=e,e=s)}else ce=e,e=s;return de[u]={nextPos:ce,result:e},e}function we(){var e,r,n,o,a,i,u,l=30*ce+6,c=de[l];if(c)return ce=c.nextPos,c.result;if(e=ce,33===t.charCodeAt(ce)?(r="!",ce++):(r=s,ge(x)),r===s&&(r=null),r!==s){if(n=[],(o=Pe())!==s)for(;o!==s;)n.push(o),o=Pe();else n=s;n!==s?(a=r,u=1===(i=n).length?i[0]:{type:"compound",selectors:i},a&&(u.subject=!0),e=r=u):(ce=e,e=s)}else ce=e,e=s;return de[l]={nextPos:ce,result:e},e}function Pe(){var e,r=30*ce+7,n=de[r];return n?(ce=n.nextPos,n.result):((e=function(){var e,r,n=30*ce+8,o=de[n];return o?(ce=o.nextPos,o.result):(42===t.charCodeAt(ce)?(r="*",ce++):(r=s,ge(v)),r!==s&&(r={type:"wildcard",value:r}),e=r,de[n]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o=30*ce+9,a=de[o];return a?(ce=a.nextPos,a.result):(e=ce,35===t.charCodeAt(ce)?(r="#",ce++):(r=s,ge(g)),r===s&&(r=null),r!==s&&(n=Ee())!==s?e=r={type:"identifier",value:n}:(ce=e,e=s),de[o]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ce+10,i=de[a];return i?(ce=i.nextPos,i.result):(e=ce,91===t.charCodeAt(ce)?(r="[",ce++):(r=s,ge(b)),r!==s&&Ae()!==s&&(n=function(){var e,r,n,o,a=30*ce+14,i=de[a];return i?(ce=i.nextPos,i.result):(e=ce,(r=ke())!==s&&Ae()!==s&&(n=function(){var e,r,n,o=30*ce+12,a=de[o];return a?(ce=a.nextPos,a.result):(e=ce,33===t.charCodeAt(ce)?(r="!",ce++):(r=s,ge(x)),r===s&&(r=null),r!==s?(61===t.charCodeAt(ce)?(n="=",ce++):(n=s,ge(_)),n!==s?(r=C(r),e=r):(ce=e,e=s)):(ce=e,e=s),de[o]={nextPos:ce,result:e},e)}())!==s&&Ae()!==s?((o=function(){var e,r,n,o,a,i=30*ce+18,u=de[i];if(u)return ce=u.nextPos,u.result;if(e=ce,"type("===t.substr(ce,5)?(r="type(",ce+=5):(r=s,ge(V)),r!==s)if(Ae()!==s){if(n=[],N.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(K)),o!==s)for(;o!==s;)n.push(o),N.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(K));else n=s;n!==s&&(o=Ae())!==s?(41===t.charCodeAt(ce)?(a=")",ce++):(a=s,ge(G)),a!==s?(r={type:"type",value:n.join("")},e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;else ce=e,e=s;return de[i]={nextPos:ce,result:e},e}())===s&&(o=function(){var e,r,n,o,a,i,u=30*ce+20,l=de[u];if(l)return ce=l.nextPos,l.result;if(e=ce,47===t.charCodeAt(ce)?(r="/",ce++):(r=s,ge(Y)),r!==s){if(n=[],$.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(J)),o!==s)for(;o!==s;)n.push(o),$.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(J));else n=s;n!==s?(47===t.charCodeAt(ce)?(o="/",ce++):(o=s,ge(Y)),o!==s?((a=function(){var e,r,n=30*ce+19,o=de[n];if(o)return ce=o.nextPos,o.result;if(e=[],z.test(t.charAt(ce))?(r=t.charAt(ce),ce++):(r=s,ge(H)),r!==s)for(;r!==s;)e.push(r),z.test(t.charAt(ce))?(r=t.charAt(ce),ce++):(r=s,ge(H));else e=s;return de[n]={nextPos:ce,result:e},e}())===s&&(a=null),a!==s?(i=a,r={type:"regexp",value:new RegExp(n.join(""),i?i.join(""):"")},e=r):(ce=e,e=s)):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;return de[u]={nextPos:ce,result:e},e}()),o!==s?(r=D(r,n,o),e=r):(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,(r=ke())!==s&&Ae()!==s&&(n=function(){var e,r,n,o=30*ce+11,a=de[o];return a?(ce=a.nextPos,a.result):(e=ce,E.test(t.charAt(ce))?(r=t.charAt(ce),ce++):(r=s,ge(S)),r===s&&(r=null),r!==s?(61===t.charCodeAt(ce)?(n="=",ce++):(n=s,ge(_)),n!==s?(r=C(r),e=r):(ce=e,e=s)):(ce=e,e=s),e===s&&(w.test(t.charAt(ce))?(e=t.charAt(ce),ce++):(e=s,ge(P))),de[o]={nextPos:ce,result:e},e)}())!==s&&Ae()!==s?((o=function(){var e,r,n,o,a,i,u=30*ce+15,l=de[u];if(l)return ce=l.nextPos,l.result;if(e=ce,34===t.charCodeAt(ce)?(r='"',ce++):(r=s,ge(I)),r!==s){for(n=[],j.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(F)),o===s&&(o=ce,92===t.charCodeAt(ce)?(a="\\",ce++):(a=s,ge(T)),a!==s?(t.length>ce?(i=t.charAt(ce),ce++):(i=s,ge(L)),i!==s?(a=R(a,i),o=a):(ce=o,o=s)):(ce=o,o=s));o!==s;)n.push(o),j.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(F)),o===s&&(o=ce,92===t.charCodeAt(ce)?(a="\\",ce++):(a=s,ge(T)),a!==s?(t.length>ce?(i=t.charAt(ce),ce++):(i=s,ge(L)),i!==s?(a=R(a,i),o=a):(ce=o,o=s)):(ce=o,o=s));n!==s?(34===t.charCodeAt(ce)?(o='"',ce++):(o=s,ge(I)),o!==s?(r=O(n),e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;if(e===s)if(e=ce,39===t.charCodeAt(ce)?(r="'",ce++):(r=s,ge(M)),r!==s){for(n=[],B.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(U)),o===s&&(o=ce,92===t.charCodeAt(ce)?(a="\\",ce++):(a=s,ge(T)),a!==s?(t.length>ce?(i=t.charAt(ce),ce++):(i=s,ge(L)),i!==s?(a=R(a,i),o=a):(ce=o,o=s)):(ce=o,o=s));o!==s;)n.push(o),B.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(U)),o===s&&(o=ce,92===t.charCodeAt(ce)?(a="\\",ce++):(a=s,ge(T)),a!==s?(t.length>ce?(i=t.charAt(ce),ce++):(i=s,ge(L)),i!==s?(a=R(a,i),o=a):(ce=o,o=s)):(ce=o,o=s));n!==s?(39===t.charCodeAt(ce)?(o="'",ce++):(o=s,ge(M)),o!==s?(r=O(n),e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;return de[u]={nextPos:ce,result:e},e}())===s&&(o=function(){var e,r,n,o,a,i,u,l=30*ce+16,c=de[l];if(c)return ce=c.nextPos,c.result;for(e=ce,r=ce,n=[],W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(q));o!==s;)n.push(o),W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(q));if(n!==s?(46===t.charCodeAt(ce)?(o=".",ce++):(o=s,ge(k)),o!==s?r=n=[n,o]:(ce=r,r=s)):(ce=r,r=s),r===s&&(r=null),r!==s){if(n=[],W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(q)),o!==s)for(;o!==s;)n.push(o),W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(q));else n=s;n!==s?(i=n,u=(a=r)?[].concat.apply([],a).join(""):"",r={type:"literal",value:parseFloat(u+i.join(""))},e=r):(ce=e,e=s)}else ce=e,e=s;return de[l]={nextPos:ce,result:e},e}())===s&&(o=function(){var e,t,r=30*ce+17,n=de[r];return n?(ce=n.nextPos,n.result):((t=Ee())!==s&&(t={type:"literal",value:t}),e=t,de[r]={nextPos:ce,result:e},e)}()),o!==s?(r=D(r,n,o),e=r):(ce=e,e=s)):(ce=e,e=s),e===s&&(e=ce,(r=ke())!==s&&(r={type:"attribute",name:r}),e=r)),de[a]={nextPos:ce,result:e},e)}())!==s&&Ae()!==s?(93===t.charCodeAt(ce)?(o="]",ce++):(o=s,ge(A)),o!==s?e=r=n:(ce=e,e=s)):(ce=e,e=s),de[a]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a,i,u,l,c=30*ce+21,f=de[c];if(f)return ce=f.nextPos,f.result;if(e=ce,46===t.charCodeAt(ce)?(r=".",ce++):(r=s,ge(k)),r!==s)if((n=Ee())!==s){for(o=[],a=ce,46===t.charCodeAt(ce)?(i=".",ce++):(i=s,ge(k)),i!==s&&(u=Ee())!==s?a=i=[i,u]:(ce=a,a=s);a!==s;)o.push(a),a=ce,46===t.charCodeAt(ce)?(i=".",ce++):(i=s,ge(k)),i!==s&&(u=Ee())!==s?a=i=[i,u]:(ce=a,a=s);o!==s?(l=n,r={type:"field",name:o.reduce((function(e,t){return e+t[0]+t[1]}),l)},e=r):(ce=e,e=s)}else ce=e,e=s;else ce=e,e=s;return de[c]={nextPos:ce,result:e},e}())===s&&(e=function(){var e,r,n,o,a=30*ce+22,i=de[a];return i?(ce=i.nextPos,i.result):(e=ce,":not("===t.substr(ce,5)?(r=":not(",ce+=5):(r=s,ge(Q)),r!==s&&Ae()!==s&&(n=_e())!==s&&Ae()!==s?(41===t.charCodeAt(ce)?(o=")",ce++):(o=s,ge(G)),o!==s?e=r={type:"not",selectors:n}:(ce=e,e=s)):(ce=e,e=s),de[a]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ce+23,i=de[a];return i?(ce=i.nextPos,i.result):(e=ce,":matches("===t.substr(ce,9)?(r=":matches(",ce+=9):(r=s,ge(X)),r!==s&&Ae()!==s&&(n=_e())!==s&&Ae()!==s?(41===t.charCodeAt(ce)?(o=")",ce++):(o=s,ge(G)),o!==s?e=r={type:"matches",selectors:n}:(ce=e,e=s)):(ce=e,e=s),de[a]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ce+24,i=de[a];return i?(ce=i.nextPos,i.result):(e=ce,":has("===t.substr(ce,5)?(r=":has(",ce+=5):(r=s,ge(Z)),r!==s&&Ae()!==s&&(n=_e())!==s&&Ae()!==s?(41===t.charCodeAt(ce)?(o=")",ce++):(o=s,ge(G)),o!==s?e=r={type:"has",selectors:n}:(ce=e,e=s)):(ce=e,e=s),de[a]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n=30*ce+25,o=de[n];return o?(ce=o.nextPos,o.result):(":first-child"===t.substr(ce,12)?(r=":first-child",ce+=12):(r=s,ge(ee)),r!==s&&(r=De(1)),e=r,de[n]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n=30*ce+26,o=de[n];return o?(ce=o.nextPos,o.result):(":last-child"===t.substr(ce,11)?(r=":last-child",ce+=11):(r=s,ge(te)),r!==s&&(r=Ie(1)),e=r,de[n]={nextPos:ce,result:e},e)}())===s&&(e=function(){var e,r,n,o,a,i=30*ce+27,u=de[i];if(u)return ce=u.nextPos,u.result;if(e=ce,":nth-child("===t.substr(ce,11)?(r=":nth-child(",ce+=11):(r=s,ge(re)),r!==s)if(Ae()!==s){if(n=[],W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(q)),o!==s)for(;o!==s;)n.push(o),W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(q));else n=s;n!==s&&(o=Ae())!==s?(41===t.charCodeAt(ce)?(a=")",ce++):(a=s,ge(G)),a!==s?(r=De(parseInt(n.join(""),10)),e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;else ce=e,e=s;return de[i]={nextPos:ce,result:e},e}())===s&&(e=function(){var e,r,n,o,a,i=30*ce+28,u=de[i];if(u)return ce=u.nextPos,u.result;if(e=ce,":nth-last-child("===t.substr(ce,16)?(r=":nth-last-child(",ce+=16):(r=s,ge(ne)),r!==s)if(Ae()!==s){if(n=[],W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(q)),o!==s)for(;o!==s;)n.push(o),W.test(t.charAt(ce))?(o=t.charAt(ce),ce++):(o=s,ge(q));else n=s;n!==s&&(o=Ae())!==s?(41===t.charCodeAt(ce)?(a=")",ce++):(a=s,ge(G)),a!==s?(r=Ie(parseInt(n.join(""),10)),e=r):(ce=e,e=s)):(ce=e,e=s)}else ce=e,e=s;else ce=e,e=s;return de[i]={nextPos:ce,result:e},e}())===s&&(e=function(){var e,r,n,o=30*ce+29,a=de[o];return a?(ce=a.nextPos,a.result):(e=ce,58===t.charCodeAt(ce)?(r=":",ce++):(r=s,ge(oe)),r!==s?("statement"===t.substr(ce,9).toLowerCase()?(n=t.substr(ce,9),ce+=9):(n=s,ge(ae)),n===s&&("expression"===t.substr(ce,10).toLowerCase()?(n=t.substr(ce,10),ce+=10):(n=s,ge(ie)),n===s&&("declaration"===t.substr(ce,11).toLowerCase()?(n=t.substr(ce,11),ce+=11):(n=s,ge(se)),n===s&&("function"===t.substr(ce,8).toLowerCase()?(n=t.substr(ce,8),ce+=8):(n=s,ge(ue)),n===s&&("pattern"===t.substr(ce,7).toLowerCase()?(n=t.substr(ce,7),ce+=7):(n=s,ge(le)))))),n!==s?e=r={type:"class",name:n}:(ce=e,e=s)):(ce=e,e=s),de[o]={nextPos:ce,result:e},e)}()),de[r]={nextPos:ce,result:e},e)}function ke(){var e,r,n,o,a,i,u,l,c=30*ce+13,f=de[c];if(f)return ce=f.nextPos,f.result;if(e=ce,(r=Ee())!==s){for(n=[],o=ce,46===t.charCodeAt(ce)?(a=".",ce++):(a=s,ge(k)),a!==s&&(i=Ee())!==s?o=a=[a,i]:(ce=o,o=s);o!==s;)n.push(o),o=ce,46===t.charCodeAt(ce)?(a=".",ce++):(a=s,ge(k)),a!==s&&(i=Ee())!==s?o=a=[a,i]:(ce=o,o=s);n!==s?(u=r,l=n,e=r=[].concat.apply([u],l).join("")):(ce=e,e=s)}else ce=e,e=s;return de[c]={nextPos:ce,result:e},e}function De(e){return{type:"nth-child",index:{type:"literal",value:e}}}function Ie(e){return{type:"nth-last-child",index:{type:"literal",value:e}}}if((n=l())!==s&&ce===t.length)return n;throw n!==s&&ce0&&p(e,t,r))&&f(t[0],t.slice(1),r)};case"descendant":var h=c(t.left),x=c(t.right);return function(e,t,r){if(x(e,t,r))for(var n=0,o=t.length;n":return function(e){return u(e,v)>t.value.value};case">=":return function(e){return u(e,v)>=t.value.value}}throw new Error("Unknown operator: ".concat(t.operator));case"sibling":var A=c(t.left),E=c(t.right);return function(e,r,n){return E(e,r,n)&&d(e,A,r,"LEFT_SIDE",n)||t.left.subject&&A(e,r,n)&&d(e,E,r,"RIGHT_SIDE",n)};case"adjacent":var S=c(t.left),_=c(t.right);return function(e,r,n){return _(e,r,n)&&y(e,S,r,"LEFT_SIDE",n)||t.right.subject&&S(e,r,n)&&y(e,_,r,"RIGHT_SIDE",n)};case"nth-child":var C=t.index.value,w=c(t.right);return function(e,t,r){return w(e,t,r)&&m(e,t,C,r)};case"nth-last-child":var P=-t.index.value,k=c(t.right);return function(e,t,r){return k(e,t,r)&&m(e,t,P,r)};case"class":var D=t.name.toLowerCase();return function(e,r){switch(D){case"statement":if("Statement"===e.type.slice(-9))return!0;case"declaration":return"Declaration"===e.type.slice(-11);case"pattern":if("Pattern"===e.type.slice(-7))return!0;case"expression":return"Expression"===e.type.slice(-10)||"Literal"===e.type.slice(-7)||"Identifier"===e.type&&(0===r.length||"MetaProperty"!==r[0].type)||"MetaProperty"===e.type;case"function":return"FunctionDeclaration"===e.type||"FunctionExpression"===e.type||"ArrowFunctionExpression"===e.type}throw new Error("Unknown class name: ".concat(t.name))}}throw new Error("Unknown selector type: ".concat(t.type))}function p(e,t){var r=e.type;return t&&t.visitorKeys&&t.visitorKeys[r]?t.visitorKeys[r]:i.VisitorKeys[r]?i.VisitorKeys[r]:t&&"function"==typeof t.fallback?t.fallback(e):Object.keys(e).filter((function(e){return"type"!==e}))}function h(t){return null!==t&&"object"===e(t)&&"string"==typeof t.type}function d(e,r,n,o,a){var i=t(n,1)[0];if(!i)return!1;for(var s=p(i,a),u=0;u0&&h(l[c-1])&&r(l[c-1],n,a))return!0;if("RIGHT_SIDE"===o&&c=0&&le.length)&&(t=e.length);for(var r=0,n=new Array(t);r=0;--r)if(e[r].node===t)return!0;return!1}function d(e,t){return(new f).traverse(e,t)}function m(e,t){var r;return r=function(e,t){var r,n,o,a;for(n=e.length,o=0;n;)t(e[a=o+(r=n>>>1)])?n=r:(o=a+1,n-=r+1);return o}(t,(function(t){return t.range[0]>e.range[0]})),e.extendedRange=[e.range[0],e.range[1]],r!==t.length&&(e.extendedRange[1]=t[r].range[0]),(r-=1)>=0&&(e.extendedRange[0]=t[r].range[1]),e}return r={AssignmentExpression:"AssignmentExpression",AssignmentPattern:"AssignmentPattern",ArrayExpression:"ArrayExpression",ArrayPattern:"ArrayPattern",ArrowFunctionExpression:"ArrowFunctionExpression",AwaitExpression:"AwaitExpression",BlockStatement:"BlockStatement",BinaryExpression:"BinaryExpression",BreakStatement:"BreakStatement",CallExpression:"CallExpression",CatchClause:"CatchClause",ChainExpression:"ChainExpression",ClassBody:"ClassBody",ClassDeclaration:"ClassDeclaration",ClassExpression:"ClassExpression",ComprehensionBlock:"ComprehensionBlock",ComprehensionExpression:"ComprehensionExpression",ConditionalExpression:"ConditionalExpression",ContinueStatement:"ContinueStatement",DebuggerStatement:"DebuggerStatement",DirectiveStatement:"DirectiveStatement",DoWhileStatement:"DoWhileStatement",EmptyStatement:"EmptyStatement",ExportAllDeclaration:"ExportAllDeclaration",ExportDefaultDeclaration:"ExportDefaultDeclaration",ExportNamedDeclaration:"ExportNamedDeclaration",ExportSpecifier:"ExportSpecifier",ExpressionStatement:"ExpressionStatement",ForStatement:"ForStatement",ForInStatement:"ForInStatement",ForOfStatement:"ForOfStatement",FunctionDeclaration:"FunctionDeclaration",FunctionExpression:"FunctionExpression",GeneratorExpression:"GeneratorExpression",Identifier:"Identifier",IfStatement:"IfStatement",ImportExpression:"ImportExpression",ImportDeclaration:"ImportDeclaration",ImportDefaultSpecifier:"ImportDefaultSpecifier",ImportNamespaceSpecifier:"ImportNamespaceSpecifier",ImportSpecifier:"ImportSpecifier",Literal:"Literal",LabeledStatement:"LabeledStatement",LogicalExpression:"LogicalExpression",MemberExpression:"MemberExpression",MetaProperty:"MetaProperty",MethodDefinition:"MethodDefinition",ModuleSpecifier:"ModuleSpecifier",NewExpression:"NewExpression",ObjectExpression:"ObjectExpression",ObjectPattern:"ObjectPattern",PrivateIdentifier:"PrivateIdentifier",Program:"Program",Property:"Property",PropertyDefinition:"PropertyDefinition",RestElement:"RestElement",ReturnStatement:"ReturnStatement",SequenceExpression:"SequenceExpression",SpreadElement:"SpreadElement",Super:"Super",SwitchStatement:"SwitchStatement",SwitchCase:"SwitchCase",TaggedTemplateExpression:"TaggedTemplateExpression",TemplateElement:"TemplateElement",TemplateLiteral:"TemplateLiteral",ThisExpression:"ThisExpression",ThrowStatement:"ThrowStatement",TryStatement:"TryStatement",UnaryExpression:"UnaryExpression",UpdateExpression:"UpdateExpression",VariableDeclaration:"VariableDeclaration",VariableDeclarator:"VariableDeclarator",WhileStatement:"WhileStatement",WithStatement:"WithStatement",YieldExpression:"YieldExpression"},o={AssignmentExpression:["left","right"],AssignmentPattern:["left","right"],ArrayExpression:["elements"],ArrayPattern:["elements"],ArrowFunctionExpression:["params","body"],AwaitExpression:["argument"],BlockStatement:["body"],BinaryExpression:["left","right"],BreakStatement:["label"],CallExpression:["callee","arguments"],CatchClause:["param","body"],ChainExpression:["expression"],ClassBody:["body"],ClassDeclaration:["id","superClass","body"],ClassExpression:["id","superClass","body"],ComprehensionBlock:["left","right"],ComprehensionExpression:["blocks","filter","body"],ConditionalExpression:["test","consequent","alternate"],ContinueStatement:["label"],DebuggerStatement:[],DirectiveStatement:[],DoWhileStatement:["body","test"],EmptyStatement:[],ExportAllDeclaration:["source"],ExportDefaultDeclaration:["declaration"],ExportNamedDeclaration:["declaration","specifiers","source"],ExportSpecifier:["exported","local"],ExpressionStatement:["expression"],ForStatement:["init","test","update","body"],ForInStatement:["left","right","body"],ForOfStatement:["left","right","body"],FunctionDeclaration:["id","params","body"],FunctionExpression:["id","params","body"],GeneratorExpression:["blocks","filter","body"],Identifier:[],IfStatement:["test","consequent","alternate"],ImportExpression:["source"],ImportDeclaration:["specifiers","source"],ImportDefaultSpecifier:["local"],ImportNamespaceSpecifier:["local"],ImportSpecifier:["imported","local"],Literal:[],LabeledStatement:["label","body"],LogicalExpression:["left","right"],MemberExpression:["object","property"],MetaProperty:["meta","property"],MethodDefinition:["key","value"],ModuleSpecifier:[],NewExpression:["callee","arguments"],ObjectExpression:["properties"],ObjectPattern:["properties"],PrivateIdentifier:[],Program:["body"],Property:["key","value"],PropertyDefinition:["key","value"],RestElement:["argument"],ReturnStatement:["argument"],SequenceExpression:["expressions"],SpreadElement:["argument"],Super:[],SwitchStatement:["discriminant","cases"],SwitchCase:["test","consequent"],TaggedTemplateExpression:["tag","quasi"],TemplateElement:[],TemplateLiteral:["quasis","expressions"],ThisExpression:[],ThrowStatement:["argument"],TryStatement:["block","handler","finalizer"],UnaryExpression:["argument"],UpdateExpression:["argument"],VariableDeclaration:["declarations"],VariableDeclarator:["id","init"],WhileStatement:["test","body"],WithStatement:["object","body"],YieldExpression:["argument"]},n={Break:a={},Skip:i={},Remove:s={}},l.prototype.replace=function(e){this.parent[this.key]=e},l.prototype.remove=function(){return Array.isArray(this.parent)?(this.parent.splice(this.key,1),!0):(this.replace(null),!1)},f.prototype.path=function(){var e,t,r,n,o;function a(e,t){if(Array.isArray(t))for(r=0,n=t.length;r=0;)if(v=s[f=x[d]])if(Array.isArray(v)){for(m=v.length;(m-=1)>=0;)if(v[m]&&!y(n,v[m])){if(h(u,x[d]))o=new c(v[m],[f,m],"Property",null);else{if(!p(v[m]))continue;o=new c(v[m],[f,m],null,null)}r.push(o)}}else if(p(v)){if(y(n,v))continue;r.push(new c(v,f,null,null))}}}else if(o=n.pop(),l=this.__execute(t.leave,o),this.__state===a||l===a)return},f.prototype.replace=function(e,t){var r,n,o,u,f,y,d,m,x,v,g,A,E;function b(e){var t,n,o,a;if(e.ref.remove())for(n=e.ref.key,a=e.ref.parent,t=r.length;t--;)if((o=r[t]).ref&&o.ref.parent===a){if(o.ref.key=0;)if(v=o[E=x[d]])if(Array.isArray(v)){for(m=v.length;(m-=1)>=0;)if(v[m]){if(h(u,x[d]))y=new c(v[m],[E,m],"Property",new l(v,m));else{if(!p(v[m]))continue;y=new c(v[m],[E,m],null,new l(v,m))}r.push(y)}}else p(v)&&r.push(new c(v,E,null,new l(o,E)))}}else if(y=n.pop(),void 0!==(f=this.__execute(t.leave,y))&&f!==a&&f!==i&&f!==s&&y.ref.replace(f),this.__state!==s&&f!==s||b(y),this.__state===a||f===a)return A.root;return A.root},t.Syntax=r,t.traverse=d,t.replace=function(e,t){return(new f).replace(e,t)},t.attachComments=function(e,t,r){var o,a,i,s,l=[];if(!e.range)throw new Error("attachComments needs range information");if(!r.length){if(t.length){for(i=0,a=t.length;ie.range[0]);)t.extendedRange[1]===e.range[0]?(e.leadingComments||(e.leadingComments=[]),e.leadingComments.push(t),l.splice(s,1)):s+=1;return s===l.length?n.Break:l[s].extendedRange[0]>e.range[1]?n.Skip:void 0}}),s=0,d(e,{leave:function(e){for(var t;se.range[1]?n.Skip:void 0}}),e},t.VisitorKeys=o,t.VisitorOption=n,t.Controller=f,t.cloneEnvironment=function(){return e({})},t}(t)})),s=a((function(e){e.exports&&(e.exports=function(){function e(t,r,n,o){this.message=t,this.expected=r,this.found=n,this.location=o,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,e)}return function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(e,Error),e.buildMessage=function(e,t){var r={literal:function(e){return'"'+o(e.text)+'"'},class:function(e){var t,r="";for(t=0;t0){for(t=1,n=1;t<~+.]/,p=fe([" ","[","]",",","(",")",":","#","!","=",">","<","~","+","."],!0,!1),h=ce(">",!1),y=ce("~",!1),d=ce("+",!1),m=ce(",",!1),x=ce("!",!1),v=ce("*",!1),g=ce("#",!1),A=ce("[",!1),E=ce("]",!1),b=/^[>","<","!"],!1,!1),_=ce("=",!1),C=function(e){return(e||"")+"="},w=/^[><]/,P=fe([">","<"],!1,!1),k=ce(".",!1),D=function(e,t,r){return{type:"attribute",name:e,operator:t,value:r}},I=ce('"',!1),j=/^[^\\"]/,T=fe(["\\",'"'],!0,!1),F=ce("\\",!1),R={type:"any"},O=function(e,t){return e+t},L=function(e){return{type:"literal",value:(t=e.join(""),t.replace(/\\(.)/g,(function(e,t){switch(t){case"b":return"\b";case"f":return"\f";case"n":return"\n";case"r":return"\r";case"t":return"\t";case"v":return"\v";default:return t}})))};var t},M=ce("'",!1),B=/^[^\\']/,U=fe(["\\","'"],!0,!1),K=/^[0-9]/,W=fe([["0","9"]],!1,!1),q=ce("type(",!1),V=/^[^ )]/,N=fe([" ",")"],!0,!1),G=ce(")",!1),z=/^[imsu]/,H=fe(["i","m","s","u"],!1,!1),Y=ce("/",!1),$=/^[^\/]/,J=fe(["/"],!0,!1),Q=ce(":not(",!1),X=ce(":matches(",!1),Z=ce(":has(",!1),ee=ce(":first-child",!1),te=ce(":last-child",!1),re=ce(":nth-child(",!1),ne=ce(":nth-last-child(",!1),oe=ce(":",!1),ae=0,ie=[{line:1,column:1}],se=0,ue=[],le={};if("startRule"in r){if(!(r.startRule in u))throw new Error("Can't start parsing from rule \""+r.startRule+'".');l=u[r.startRule]}function ce(e,t){return{type:"literal",text:e,ignoreCase:t}}function fe(e,t,r){return{type:"class",parts:e,inverted:t,ignoreCase:r}}function pe(e){var r,n=ie[e];if(n)return n;for(r=e-1;!ie[r];)r--;for(n={line:(n=ie[r]).line,column:n.column};rse&&(se=ae,ue=[]),ue.push(e))}function de(){var e,t,r,n,o=30*ae+0,a=le[o];return a?(ae=a.nextPos,a.result):(e=ae,(t=me())!==s&&(r=ge())!==s&&me()!==s?e=t=1===(n=r).length?n[0]:{type:"matches",selectors:n}:(ae=e,e=s),e===s&&(e=ae,(t=me())!==s&&(t=void 0),e=t),le[o]={nextPos:ae,result:e},e)}function me(){var e,r,n=30*ae+1,o=le[n];if(o)return ae=o.nextPos,o.result;for(e=[],32===t.charCodeAt(ae)?(r=" ",ae++):(r=s,ye(c));r!==s;)e.push(r),32===t.charCodeAt(ae)?(r=" ",ae++):(r=s,ye(c));return le[n]={nextPos:ae,result:e},e}function xe(){var e,r,n,o=30*ae+2,a=le[o];if(a)return ae=a.nextPos,a.result;if(r=[],f.test(t.charAt(ae))?(n=t.charAt(ae),ae++):(n=s,ye(p)),n!==s)for(;n!==s;)r.push(n),f.test(t.charAt(ae))?(n=t.charAt(ae),ae++):(n=s,ye(p));else r=s;return r!==s&&(r=r.join("")),e=r,le[o]={nextPos:ae,result:e},e}function ve(){var e,r,n,o=30*ae+3,a=le[o];return a?(ae=a.nextPos,a.result):(e=ae,(r=me())!==s?(62===t.charCodeAt(ae)?(n=">",ae++):(n=s,ye(h)),n!==s&&me()!==s?e=r="child":(ae=e,e=s)):(ae=e,e=s),e===s&&(e=ae,(r=me())!==s?(126===t.charCodeAt(ae)?(n="~",ae++):(n=s,ye(y)),n!==s&&me()!==s?e=r="sibling":(ae=e,e=s)):(ae=e,e=s),e===s&&(e=ae,(r=me())!==s?(43===t.charCodeAt(ae)?(n="+",ae++):(n=s,ye(d)),n!==s&&me()!==s?e=r="adjacent":(ae=e,e=s)):(ae=e,e=s),e===s&&(e=ae,32===t.charCodeAt(ae)?(r=" ",ae++):(r=s,ye(c)),r!==s&&(n=me())!==s?e=r="descendant":(ae=e,e=s)))),le[o]={nextPos:ae,result:e},e)}function ge(){var e,r,n,o,a,i,u,l,c=30*ae+4,f=le[c];if(f)return ae=f.nextPos,f.result;if(e=ae,(r=Ae())!==s){for(n=[],o=ae,(a=me())!==s?(44===t.charCodeAt(ae)?(i=",",ae++):(i=s,ye(m)),i!==s&&(u=me())!==s&&(l=Ae())!==s?o=a=[a,i,u,l]:(ae=o,o=s)):(ae=o,o=s);o!==s;)n.push(o),o=ae,(a=me())!==s?(44===t.charCodeAt(ae)?(i=",",ae++):(i=s,ye(m)),i!==s&&(u=me())!==s&&(l=Ae())!==s?o=a=[a,i,u,l]:(ae=o,o=s)):(ae=o,o=s);n!==s?e=r=[r].concat(n.map((function(e){return e[3]}))):(ae=e,e=s)}else ae=e,e=s;return le[c]={nextPos:ae,result:e},e}function Ae(){var e,t,r,n,o,a,i,u=30*ae+5,l=le[u];if(l)return ae=l.nextPos,l.result;if(e=ae,(t=Ee())!==s){for(r=[],n=ae,(o=ve())!==s&&(a=Ee())!==s?n=o=[o,a]:(ae=n,n=s);n!==s;)r.push(n),n=ae,(o=ve())!==s&&(a=Ee())!==s?n=o=[o,a]:(ae=n,n=s);r!==s?(i=t,e=t=r.reduce((function(e,t){return{type:t[0],left:e,right:t[1]}}),i)):(ae=e,e=s)}else ae=e,e=s;return le[u]={nextPos:ae,result:e},e}function Ee(){var e,r,n,o,a,i,u,l=30*ae+6,c=le[l];if(c)return ae=c.nextPos,c.result;if(e=ae,33===t.charCodeAt(ae)?(r="!",ae++):(r=s,ye(x)),r===s&&(r=null),r!==s){if(n=[],(o=be())!==s)for(;o!==s;)n.push(o),o=be();else n=s;n!==s?(a=r,u=1===(i=n).length?i[0]:{type:"compound",selectors:i},a&&(u.subject=!0),e=r=u):(ae=e,e=s)}else ae=e,e=s;return le[l]={nextPos:ae,result:e},e}function be(){var e,r=30*ae+7,n=le[r];return n?(ae=n.nextPos,n.result):((e=function(){var e,r,n=30*ae+8,o=le[n];return o?(ae=o.nextPos,o.result):(42===t.charCodeAt(ae)?(r="*",ae++):(r=s,ye(v)),r!==s&&(r={type:"wildcard",value:r}),e=r,le[n]={nextPos:ae,result:e},e)}())===s&&(e=function(){var e,r,n,o=30*ae+9,a=le[o];return a?(ae=a.nextPos,a.result):(e=ae,35===t.charCodeAt(ae)?(r="#",ae++):(r=s,ye(g)),r===s&&(r=null),r!==s&&(n=xe())!==s?e=r={type:"identifier",value:n}:(ae=e,e=s),le[o]={nextPos:ae,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ae+10,i=le[a];return i?(ae=i.nextPos,i.result):(e=ae,91===t.charCodeAt(ae)?(r="[",ae++):(r=s,ye(A)),r!==s&&me()!==s&&(n=function(){var e,r,n,o,a=30*ae+14,i=le[a];return i?(ae=i.nextPos,i.result):(e=ae,(r=Se())!==s&&me()!==s&&(n=function(){var e,r,n,o=30*ae+12,a=le[o];return a?(ae=a.nextPos,a.result):(e=ae,33===t.charCodeAt(ae)?(r="!",ae++):(r=s,ye(x)),r===s&&(r=null),r!==s?(61===t.charCodeAt(ae)?(n="=",ae++):(n=s,ye(_)),n!==s?(r=C(r),e=r):(ae=e,e=s)):(ae=e,e=s),le[o]={nextPos:ae,result:e},e)}())!==s&&me()!==s?((o=function(){var e,r,n,o,a,i=30*ae+18,u=le[i];if(u)return ae=u.nextPos,u.result;if(e=ae,"type("===t.substr(ae,5)?(r="type(",ae+=5):(r=s,ye(q)),r!==s)if(me()!==s){if(n=[],V.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(N)),o!==s)for(;o!==s;)n.push(o),V.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(N));else n=s;n!==s&&(o=me())!==s?(41===t.charCodeAt(ae)?(a=")",ae++):(a=s,ye(G)),a!==s?(r={type:"type",value:n.join("")},e=r):(ae=e,e=s)):(ae=e,e=s)}else ae=e,e=s;else ae=e,e=s;return le[i]={nextPos:ae,result:e},e}())===s&&(o=function(){var e,r,n,o,a,i,u=30*ae+20,l=le[u];if(l)return ae=l.nextPos,l.result;if(e=ae,47===t.charCodeAt(ae)?(r="/",ae++):(r=s,ye(Y)),r!==s){if(n=[],$.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(J)),o!==s)for(;o!==s;)n.push(o),$.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(J));else n=s;n!==s?(47===t.charCodeAt(ae)?(o="/",ae++):(o=s,ye(Y)),o!==s?((a=function(){var e,r,n=30*ae+19,o=le[n];if(o)return ae=o.nextPos,o.result;if(e=[],z.test(t.charAt(ae))?(r=t.charAt(ae),ae++):(r=s,ye(H)),r!==s)for(;r!==s;)e.push(r),z.test(t.charAt(ae))?(r=t.charAt(ae),ae++):(r=s,ye(H));else e=s;return le[n]={nextPos:ae,result:e},e}())===s&&(a=null),a!==s?(i=a,r={type:"regexp",value:new RegExp(n.join(""),i?i.join(""):"")},e=r):(ae=e,e=s)):(ae=e,e=s)):(ae=e,e=s)}else ae=e,e=s;return le[u]={nextPos:ae,result:e},e}()),o!==s?(r=D(r,n,o),e=r):(ae=e,e=s)):(ae=e,e=s),e===s&&(e=ae,(r=Se())!==s&&me()!==s&&(n=function(){var e,r,n,o=30*ae+11,a=le[o];return a?(ae=a.nextPos,a.result):(e=ae,b.test(t.charAt(ae))?(r=t.charAt(ae),ae++):(r=s,ye(S)),r===s&&(r=null),r!==s?(61===t.charCodeAt(ae)?(n="=",ae++):(n=s,ye(_)),n!==s?(r=C(r),e=r):(ae=e,e=s)):(ae=e,e=s),e===s&&(w.test(t.charAt(ae))?(e=t.charAt(ae),ae++):(e=s,ye(P))),le[o]={nextPos:ae,result:e},e)}())!==s&&me()!==s?((o=function(){var e,r,n,o,a,i,u=30*ae+15,l=le[u];if(l)return ae=l.nextPos,l.result;if(e=ae,34===t.charCodeAt(ae)?(r='"',ae++):(r=s,ye(I)),r!==s){for(n=[],j.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(T)),o===s&&(o=ae,92===t.charCodeAt(ae)?(a="\\",ae++):(a=s,ye(F)),a!==s?(t.length>ae?(i=t.charAt(ae),ae++):(i=s,ye(R)),i!==s?(a=O(a,i),o=a):(ae=o,o=s)):(ae=o,o=s));o!==s;)n.push(o),j.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(T)),o===s&&(o=ae,92===t.charCodeAt(ae)?(a="\\",ae++):(a=s,ye(F)),a!==s?(t.length>ae?(i=t.charAt(ae),ae++):(i=s,ye(R)),i!==s?(a=O(a,i),o=a):(ae=o,o=s)):(ae=o,o=s));n!==s?(34===t.charCodeAt(ae)?(o='"',ae++):(o=s,ye(I)),o!==s?(r=L(n),e=r):(ae=e,e=s)):(ae=e,e=s)}else ae=e,e=s;if(e===s)if(e=ae,39===t.charCodeAt(ae)?(r="'",ae++):(r=s,ye(M)),r!==s){for(n=[],B.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(U)),o===s&&(o=ae,92===t.charCodeAt(ae)?(a="\\",ae++):(a=s,ye(F)),a!==s?(t.length>ae?(i=t.charAt(ae),ae++):(i=s,ye(R)),i!==s?(a=O(a,i),o=a):(ae=o,o=s)):(ae=o,o=s));o!==s;)n.push(o),B.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(U)),o===s&&(o=ae,92===t.charCodeAt(ae)?(a="\\",ae++):(a=s,ye(F)),a!==s?(t.length>ae?(i=t.charAt(ae),ae++):(i=s,ye(R)),i!==s?(a=O(a,i),o=a):(ae=o,o=s)):(ae=o,o=s));n!==s?(39===t.charCodeAt(ae)?(o="'",ae++):(o=s,ye(M)),o!==s?(r=L(n),e=r):(ae=e,e=s)):(ae=e,e=s)}else ae=e,e=s;return le[u]={nextPos:ae,result:e},e}())===s&&(o=function(){var e,r,n,o,a,i,u,l=30*ae+16,c=le[l];if(c)return ae=c.nextPos,c.result;for(e=ae,r=ae,n=[],K.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(W));o!==s;)n.push(o),K.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(W));if(n!==s?(46===t.charCodeAt(ae)?(o=".",ae++):(o=s,ye(k)),o!==s?r=n=[n,o]:(ae=r,r=s)):(ae=r,r=s),r===s&&(r=null),r!==s){if(n=[],K.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(W)),o!==s)for(;o!==s;)n.push(o),K.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(W));else n=s;n!==s?(i=n,u=(a=r)?[].concat.apply([],a).join(""):"",r={type:"literal",value:parseFloat(u+i.join(""))},e=r):(ae=e,e=s)}else ae=e,e=s;return le[l]={nextPos:ae,result:e},e}())===s&&(o=function(){var e,t,r=30*ae+17,n=le[r];return n?(ae=n.nextPos,n.result):((t=xe())!==s&&(t={type:"literal",value:t}),e=t,le[r]={nextPos:ae,result:e},e)}()),o!==s?(r=D(r,n,o),e=r):(ae=e,e=s)):(ae=e,e=s),e===s&&(e=ae,(r=Se())!==s&&(r={type:"attribute",name:r}),e=r)),le[a]={nextPos:ae,result:e},e)}())!==s&&me()!==s?(93===t.charCodeAt(ae)?(o="]",ae++):(o=s,ye(E)),o!==s?e=r=n:(ae=e,e=s)):(ae=e,e=s),le[a]={nextPos:ae,result:e},e)}())===s&&(e=function(){var e,r,n,o,a,i,u,l,c=30*ae+21,f=le[c];if(f)return ae=f.nextPos,f.result;if(e=ae,46===t.charCodeAt(ae)?(r=".",ae++):(r=s,ye(k)),r!==s)if((n=xe())!==s){for(o=[],a=ae,46===t.charCodeAt(ae)?(i=".",ae++):(i=s,ye(k)),i!==s&&(u=xe())!==s?a=i=[i,u]:(ae=a,a=s);a!==s;)o.push(a),a=ae,46===t.charCodeAt(ae)?(i=".",ae++):(i=s,ye(k)),i!==s&&(u=xe())!==s?a=i=[i,u]:(ae=a,a=s);o!==s?(l=n,r={type:"field",name:o.reduce((function(e,t){return e+t[0]+t[1]}),l)},e=r):(ae=e,e=s)}else ae=e,e=s;else ae=e,e=s;return le[c]={nextPos:ae,result:e},e}())===s&&(e=function(){var e,r,n,o,a=30*ae+22,i=le[a];return i?(ae=i.nextPos,i.result):(e=ae,":not("===t.substr(ae,5)?(r=":not(",ae+=5):(r=s,ye(Q)),r!==s&&me()!==s&&(n=ge())!==s&&me()!==s?(41===t.charCodeAt(ae)?(o=")",ae++):(o=s,ye(G)),o!==s?e=r={type:"not",selectors:n}:(ae=e,e=s)):(ae=e,e=s),le[a]={nextPos:ae,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ae+23,i=le[a];return i?(ae=i.nextPos,i.result):(e=ae,":matches("===t.substr(ae,9)?(r=":matches(",ae+=9):(r=s,ye(X)),r!==s&&me()!==s&&(n=ge())!==s&&me()!==s?(41===t.charCodeAt(ae)?(o=")",ae++):(o=s,ye(G)),o!==s?e=r={type:"matches",selectors:n}:(ae=e,e=s)):(ae=e,e=s),le[a]={nextPos:ae,result:e},e)}())===s&&(e=function(){var e,r,n,o,a=30*ae+24,i=le[a];return i?(ae=i.nextPos,i.result):(e=ae,":has("===t.substr(ae,5)?(r=":has(",ae+=5):(r=s,ye(Z)),r!==s&&me()!==s&&(n=ge())!==s&&me()!==s?(41===t.charCodeAt(ae)?(o=")",ae++):(o=s,ye(G)),o!==s?e=r={type:"has",selectors:n}:(ae=e,e=s)):(ae=e,e=s),le[a]={nextPos:ae,result:e},e)}())===s&&(e=function(){var e,r,n=30*ae+25,o=le[n];return o?(ae=o.nextPos,o.result):(":first-child"===t.substr(ae,12)?(r=":first-child",ae+=12):(r=s,ye(ee)),r!==s&&(r=_e(1)),e=r,le[n]={nextPos:ae,result:e},e)}())===s&&(e=function(){var e,r,n=30*ae+26,o=le[n];return o?(ae=o.nextPos,o.result):(":last-child"===t.substr(ae,11)?(r=":last-child",ae+=11):(r=s,ye(te)),r!==s&&(r=Ce(1)),e=r,le[n]={nextPos:ae,result:e},e)}())===s&&(e=function(){var e,r,n,o,a,i=30*ae+27,u=le[i];if(u)return ae=u.nextPos,u.result;if(e=ae,":nth-child("===t.substr(ae,11)?(r=":nth-child(",ae+=11):(r=s,ye(re)),r!==s)if(me()!==s){if(n=[],K.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(W)),o!==s)for(;o!==s;)n.push(o),K.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(W));else n=s;n!==s&&(o=me())!==s?(41===t.charCodeAt(ae)?(a=")",ae++):(a=s,ye(G)),a!==s?(r=_e(parseInt(n.join(""),10)),e=r):(ae=e,e=s)):(ae=e,e=s)}else ae=e,e=s;else ae=e,e=s;return le[i]={nextPos:ae,result:e},e}())===s&&(e=function(){var e,r,n,o,a,i=30*ae+28,u=le[i];if(u)return ae=u.nextPos,u.result;if(e=ae,":nth-last-child("===t.substr(ae,16)?(r=":nth-last-child(",ae+=16):(r=s,ye(ne)),r!==s)if(me()!==s){if(n=[],K.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(W)),o!==s)for(;o!==s;)n.push(o),K.test(t.charAt(ae))?(o=t.charAt(ae),ae++):(o=s,ye(W));else n=s;n!==s&&(o=me())!==s?(41===t.charCodeAt(ae)?(a=")",ae++):(a=s,ye(G)),a!==s?(r=Ce(parseInt(n.join(""),10)),e=r):(ae=e,e=s)):(ae=e,e=s)}else ae=e,e=s;else ae=e,e=s;return le[i]={nextPos:ae,result:e},e}())===s&&(e=function(){var e,r,n,o=30*ae+29,a=le[o];return a?(ae=a.nextPos,a.result):(e=ae,58===t.charCodeAt(ae)?(r=":",ae++):(r=s,ye(oe)),r!==s&&(n=xe())!==s?e=r={type:"class",name:n}:(ae=e,e=s),le[o]={nextPos:ae,result:e},e)}()),le[r]={nextPos:ae,result:e},e)}function Se(){var e,r,n,o,a,i,u,l,c=30*ae+13,f=le[c];if(f)return ae=f.nextPos,f.result;if(e=ae,(r=xe())!==s){for(n=[],o=ae,46===t.charCodeAt(ae)?(a=".",ae++):(a=s,ye(k)),a!==s&&(i=xe())!==s?o=a=[a,i]:(ae=o,o=s);o!==s;)n.push(o),o=ae,46===t.charCodeAt(ae)?(a=".",ae++):(a=s,ye(k)),a!==s&&(i=xe())!==s?o=a=[a,i]:(ae=o,o=s);n!==s?(u=r,l=n,e=r=[].concat.apply([u],l).join("")):(ae=e,e=s)}else ae=e,e=s;return le[c]={nextPos:ae,result:e},e}function _e(e){return{type:"nth-child",index:{type:"literal",value:e}}}function Ce(e){return{type:"nth-last-child",index:{type:"literal",value:e}}}if((n=l())!==s&&ae===t.length)return n;throw n!==s&&ae0&&p(e,t,r))&&f(t[0],t.slice(1),r)};case"descendant":var h=c(t.left),x=c(t.right);return function(e,t,r){if(x(e,t,r))for(var n=0,o=t.length;n":return function(e){return u(e,v)>t.value.value};case">=":return function(e){return u(e,v)>=t.value.value}}throw new Error("Unknown operator: ".concat(t.operator));case"sibling":var E=c(t.left),b=c(t.right);return function(e,r,n){return b(e,r,n)&&y(e,E,r,"LEFT_SIDE",n)||t.left.subject&&E(e,r,n)&&y(e,b,r,"RIGHT_SIDE",n)};case"adjacent":var S=c(t.left),_=c(t.right);return function(e,r,n){return _(e,r,n)&&d(e,S,r,"LEFT_SIDE",n)||t.right.subject&&S(e,r,n)&&d(e,_,r,"RIGHT_SIDE",n)};case"nth-child":var C=t.index.value,w=c(t.right);return function(e,t,r){return w(e,t,r)&&m(e,t,C,r)};case"nth-last-child":var P=-t.index.value,k=c(t.right);return function(e,t,r){return k(e,t,r)&&m(e,t,P,r)};case"class":return function(e,r,n){if(n&&n.matchClass)return n.matchClass(t.name,e,r);if(n&&n.nodeTypeKey)return!1;switch(t.name.toLowerCase()){case"statement":if("Statement"===e.type.slice(-9))return!0;case"declaration":return"Declaration"===e.type.slice(-11);case"pattern":if("Pattern"===e.type.slice(-7))return!0;case"expression":return"Expression"===e.type.slice(-10)||"Literal"===e.type.slice(-7)||"Identifier"===e.type&&(0===r.length||"MetaProperty"!==r[0].type)||"MetaProperty"===e.type;case"function":return"FunctionDeclaration"===e.type||"FunctionExpression"===e.type||"ArrowFunctionExpression"===e.type}throw new Error("Unknown class name: ".concat(t.name))}}throw new Error("Unknown selector type: ".concat(t.type))}function p(e,t){var r=t&&t.nodeTypeKey||"type",n=e[r];return t&&t.visitorKeys&&t.visitorKeys[n]?t.visitorKeys[n]:i.VisitorKeys[n]?i.VisitorKeys[n]:t&&"function"==typeof t.fallback?t.fallback(e):Object.keys(e).filter((function(e){return e!==r}))}function h(t,r){var n=r&&r.nodeTypeKey||"type";return null!==t&&"object"===e(t)&&"string"==typeof t[n]}function y(e,r,n,o,a){var i=t(n,1)[0];if(!i)return!1;for(var s=p(i,a),u=0;u0&&h(l[c-1],a)&&r(l[c-1],n,a))return!0;if("RIGHT_SIDE"===o&&c=0&&l", "contributors": [], "description": "A query library for ECMAScript AST using a CSS selector like query language.", diff --git a/tools/node_modules/eslint/node_modules/esquery/parser.js b/tools/node_modules/eslint/node_modules/esquery/parser.js index 36d590c58118e5..640f84c9be3fab 100644 --- a/tools/node_modules/eslint/node_modules/esquery/parser.js +++ b/tools/node_modules/eslint/node_modules/esquery/parser.js @@ -275,17 +275,7 @@ peg$c99 = function(n) { return nthLast(parseInt(n.join(''), 10)); }, peg$c100 = ":", peg$c101 = peg$literalExpectation(":", false), - peg$c102 = "statement", - peg$c103 = peg$literalExpectation("statement", true), - peg$c104 = "expression", - peg$c105 = peg$literalExpectation("expression", true), - peg$c106 = "declaration", - peg$c107 = peg$literalExpectation("declaration", true), - peg$c108 = "function", - peg$c109 = peg$literalExpectation("function", true), - peg$c110 = "pattern", - peg$c111 = peg$literalExpectation("pattern", true), - peg$c112 = function(c) { + peg$c102 = function(c) { return { type: 'class', name: c }; }, @@ -2497,52 +2487,10 @@ if (peg$silentFails === 0) { peg$fail(peg$c101); } } if (s1 !== peg$FAILED) { - if (input.substr(peg$currPos, 9).toLowerCase() === peg$c102) { - s2 = input.substr(peg$currPos, 9); - peg$currPos += 9; - } else { - s2 = peg$FAILED; - if (peg$silentFails === 0) { peg$fail(peg$c103); } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 10).toLowerCase() === peg$c104) { - s2 = input.substr(peg$currPos, 10); - peg$currPos += 10; - } else { - s2 = peg$FAILED; - if (peg$silentFails === 0) { peg$fail(peg$c105); } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 11).toLowerCase() === peg$c106) { - s2 = input.substr(peg$currPos, 11); - peg$currPos += 11; - } else { - s2 = peg$FAILED; - if (peg$silentFails === 0) { peg$fail(peg$c107); } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 8).toLowerCase() === peg$c108) { - s2 = input.substr(peg$currPos, 8); - peg$currPos += 8; - } else { - s2 = peg$FAILED; - if (peg$silentFails === 0) { peg$fail(peg$c109); } - } - if (s2 === peg$FAILED) { - if (input.substr(peg$currPos, 7).toLowerCase() === peg$c110) { - s2 = input.substr(peg$currPos, 7); - peg$currPos += 7; - } else { - s2 = peg$FAILED; - if (peg$silentFails === 0) { peg$fail(peg$c111); } - } - } - } - } - } + s2 = peg$parseidentifierName(); if (s2 !== peg$FAILED) { peg$savedPos = s0; - s1 = peg$c112(s2); + s1 = peg$c102(s2); s0 = s1; } else { peg$currPos = s0; diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/Base/index.js index 387cb603666646..c04dc08f5fd3c4 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/Base/index.js @@ -107,13 +107,12 @@ class HashContainer extends _ContainerBase.Container { i.l = e; return this.i; } - s = { + this.g[t] = s = { u: t, l: e, L: this._, B: this.h }; - this.g[t] = s; } if (this.i === 0) { this.p = s; diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashMap.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashMap.js index 7bbae243c49b3b..c828cfe8b6654a 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashMap.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashMap.js @@ -108,14 +108,12 @@ class HashMap extends _Base.HashContainer { r = r.B; } } - [Symbol.iterator]() { - return function*() { - let t = this.p; - while (t !== this.h) { - yield [ t.u, t.l ]; - t = t.B; - } - }.bind(this)(); + * [Symbol.iterator]() { + let t = this.p; + while (t !== this.h) { + yield [ t.u, t.l ]; + t = t.B; + } } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashSet.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashSet.js index 6c75f33865455c..dd90edae173b26 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashSet.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashSet.js @@ -77,14 +77,12 @@ class HashSet extends _Base.HashContainer { r = r.B; } } - [Symbol.iterator]() { - return function*() { - let t = this.p; - while (t !== this.h) { - yield t.u; - t = t.B; - } - }.bind(this)(); + * [Symbol.iterator]() { + let t = this.p; + while (t !== this.h) { + yield t.u; + t = t.B; + } } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Deque.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Deque.js index 924b1b2b3c58ca..44e5d6ece7dcf6 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Deque.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Deque.js @@ -10,6 +10,49 @@ var _Base = _interopRequireDefault(require("./Base")); var _RandomIterator = require("./Base/RandomIterator"); +var Math = _interopRequireWildcard(require("../../utils/math")); + +function _getRequireWildcardCache(t) { + if (typeof WeakMap !== "function") return null; + var i = new WeakMap; + var s = new WeakMap; + return (_getRequireWildcardCache = function(t) { + return t ? s : i; + })(t); +} + +function _interopRequireWildcard(t, i) { + if (!i && t && t.t) { + return t; + } + if (t === null || typeof t !== "object" && typeof t !== "function") { + return { + default: t + }; + } + var s = _getRequireWildcardCache(i); + if (s && s.has(t)) { + return s.get(t); + } + var e = {}; + var h = Object.defineProperty && Object.getOwnPropertyDescriptor; + for (var r in t) { + if (r !== "default" && Object.prototype.hasOwnProperty.call(t, r)) { + var n = h ? Object.getOwnPropertyDescriptor(t, r) : null; + if (n && (n.get || n.set)) { + Object.defineProperty(e, r, n); + } else { + e[r] = t[r]; + } + } + } + e.default = t; + if (s) { + s.set(t, e); + } + return e; +} + function _interopRequireDefault(t) { return t && t.t ? t : { default: t @@ -30,69 +73,72 @@ class Deque extends _Base.default { constructor(t = [], i = 1 << 12) { super(); this.j = 0; - this.D = 0; this.R = 0; this.N = 0; + this.D = 0; this.P = 0; - this.A = []; + this.W = []; const s = (() => { if (typeof t.length === "number") return t.length; if (typeof t.size === "number") return t.size; if (typeof t.size === "function") return t.size(); throw new TypeError("Cannot get the length or size of the container"); })(); - this.F = i; - this.P = Math.max(Math.ceil(s / this.F), 1); + this.O = i; + this.P = Math.ceil(s, this.O) || 1; for (let t = 0; t < this.P; ++t) { - this.A.push(new Array(this.F)); + this.W.push(new Array(this.O)); } - const h = Math.ceil(s / this.F); - this.j = this.R = (this.P >> 1) - (h >> 1); - this.D = this.N = this.F - s % this.F >> 1; - const e = this; + const e = Math.ceil(s, this.O); + this.j = this.N = (this.P >> 1) - (e >> 1); + this.R = this.D = this.O - s % this.O >> 1; + const h = this; t.forEach((function(t) { - e.pushBack(t); + h.pushBack(t); })); } - T() { - const t = []; - const i = Math.max(this.P >> 1, 1); - for (let s = 0; s < i; ++s) { - t[s] = new Array(this.F); + A(t) { + const i = []; + const s = t || this.P >> 1 || 1; + for (let t = 0; t < s; ++t) { + i[t] = new Array(this.O); + } + for (let t = this.j; t < this.P; ++t) { + i[i.length] = this.W[t]; + } + for (let t = 0; t < this.N; ++t) { + i[i.length] = this.W[t]; } - for (let i = this.j; i < this.P; ++i) { - t[t.length] = this.A[i]; + i[i.length] = [ ...this.W[this.N] ]; + this.j = s; + this.N = i.length - 1; + for (let t = 0; t < s; ++t) { + i[i.length] = new Array(this.O); } - for (let i = 0; i < this.R; ++i) { - t[t.length] = this.A[i]; + this.W = i; + this.P = i.length; + } + F(t) { + let i, s; + const e = this.R + t; + i = this.j + Math.floor(e / this.O); + if (i >= this.P) { + i -= this.P; } - t[t.length] = [ ...this.A[this.R] ]; - this.j = i; - this.R = t.length - 1; - for (let s = 0; s < i; ++s) { - t[t.length] = new Array(this.F); + s = (e + 1) % this.O - 1; + if (s < 0) { + s = this.O - 1; } - this.A = t; - this.P = t.length; - } - O(t) { - const i = this.D + t + 1; - const s = i % this.F; - let h = s - 1; - let e = this.j + (i - s) / this.F; - if (s === 0) e -= 1; - e %= this.P; - if (h < 0) h += this.F; return { - curNodeBucketIndex: e, - curNodePointerIndex: h + curNodeBucketIndex: i, + curNodePointerIndex: s }; } clear() { - this.A = [ new Array(this.F) ]; + this.W = [ new Array(this.O) ]; this.P = 1; - this.j = this.R = this.i = 0; - this.D = this.N = this.F >> 1; + this.j = this.N = this.i = 0; + this.R = this.D = this.O >> 1; } begin() { return new DequeIterator(0, this); @@ -108,41 +154,41 @@ class Deque extends _Base.default { } front() { if (this.i === 0) return; - return this.A[this.j][this.D]; + return this.W[this.j][this.R]; } back() { if (this.i === 0) return; - return this.A[this.R][this.N]; + return this.W[this.N][this.D]; } pushBack(t) { if (this.i) { - if (this.N < this.F - 1) { + if (this.D < this.O - 1) { + this.D += 1; + } else if (this.N < this.P - 1) { this.N += 1; - } else if (this.R < this.P - 1) { - this.R += 1; - this.N = 0; + this.D = 0; } else { - this.R = 0; this.N = 0; + this.D = 0; } - if (this.R === this.j && this.N === this.D) this.T(); + if (this.N === this.j && this.D === this.R) this.A(); } this.i += 1; - this.A[this.R][this.N] = t; + this.W[this.N][this.D] = t; return this.i; } popBack() { if (this.i === 0) return; - const t = this.A[this.R][this.N]; + const t = this.W[this.N][this.D]; if (this.i !== 1) { - if (this.N > 0) { + if (this.D > 0) { + this.D -= 1; + } else if (this.N > 0) { this.N -= 1; - } else if (this.R > 0) { - this.R -= 1; - this.N = this.F - 1; + this.D = this.O - 1; } else { - this.R = this.P - 1; - this.N = this.F - 1; + this.N = this.P - 1; + this.D = this.O - 1; } } this.i -= 1; @@ -150,33 +196,33 @@ class Deque extends _Base.default { } pushFront(t) { if (this.i) { - if (this.D > 0) { - this.D -= 1; + if (this.R > 0) { + this.R -= 1; } else if (this.j > 0) { this.j -= 1; - this.D = this.F - 1; + this.R = this.O - 1; } else { this.j = this.P - 1; - this.D = this.F - 1; + this.R = this.O - 1; } - if (this.j === this.R && this.D === this.N) this.T(); + if (this.j === this.N && this.R === this.D) this.A(); } this.i += 1; - this.A[this.j][this.D] = t; + this.W[this.j][this.R] = t; return this.i; } popFront() { if (this.i === 0) return; - const t = this.A[this.j][this.D]; + const t = this.W[this.j][this.R]; if (this.i !== 1) { - if (this.D < this.F - 1) { - this.D += 1; + if (this.R < this.O - 1) { + this.R += 1; } else if (this.j < this.P - 1) { this.j += 1; - this.D = 0; + this.R = 0; } else { this.j = 0; - this.D = 0; + this.R = 0; } } this.i -= 1; @@ -186,18 +232,19 @@ class Deque extends _Base.default { if (t < 0 || t > this.i - 1) { throw new RangeError; } - const {curNodeBucketIndex: i, curNodePointerIndex: s} = this.O(t); - return this.A[i][s]; + const {curNodeBucketIndex: i, curNodePointerIndex: s} = this.F(t); + return this.W[i][s]; } setElementByPos(t, i) { if (t < 0 || t > this.i - 1) { throw new RangeError; } - const {curNodeBucketIndex: s, curNodePointerIndex: h} = this.O(t); - this.A[s][h] = i; + const {curNodeBucketIndex: s, curNodePointerIndex: e} = this.F(t); + this.W[s][e] = i; } insert(t, i, s = 1) { - if (t < 0 || t > this.i) { + const e = this.i; + if (t < 0 || t > e) { throw new RangeError; } if (t === 0) { @@ -205,13 +252,13 @@ class Deque extends _Base.default { } else if (t === this.i) { while (s--) this.pushBack(i); } else { - const h = []; + const e = []; for (let i = t; i < this.i; ++i) { - h.push(this.getElementByPos(i)); + e.push(this.getElementByPos(i)); } this.cut(t - 1); for (let t = 0; t < s; ++t) this.pushBack(i); - for (let t = 0; t < h.length; ++t) this.pushBack(h[t]); + for (let t = 0; t < e.length; ++t) this.pushBack(e[t]); } return this.i; } @@ -220,9 +267,9 @@ class Deque extends _Base.default { this.clear(); return 0; } - const {curNodeBucketIndex: i, curNodePointerIndex: s} = this.O(t); - this.R = i; - this.N = s; + const {curNodeBucketIndex: i, curNodePointerIndex: s} = this.F(t); + this.N = i; + this.D = s; this.i = t + 1; return this.i; } @@ -231,29 +278,33 @@ class Deque extends _Base.default { throw new RangeError; } if (t === 0) this.popFront(); else if (t === this.i - 1) this.popBack(); else { - const i = []; - for (let s = t + 1; s < this.i; ++s) { - i.push(this.getElementByPos(s)); + const i = this.i - 1; + let {curNodeBucketIndex: s, curNodePointerIndex: e} = this.F(t); + for (let h = t; h < i; ++h) { + const {curNodeBucketIndex: i, curNodePointerIndex: h} = this.F(t + 1); + this.W[s][e] = this.W[i][h]; + s = i; + e = h; } - this.cut(t); this.popBack(); - const s = this; - i.forEach((function(t) { - s.pushBack(t); - })); } return this.i; } eraseElementByValue(t) { - if (this.i === 0) return 0; - const i = []; - for (let s = 0; s < this.i; ++s) { - const h = this.getElementByPos(s); - if (h !== t) i.push(h); + const i = this.i; + if (i === 0) return 0; + let s = 0; + let e = 0; + while (s < i) { + const i = this.getElementByPos(s); + if (i !== t) { + this.setElementByPos(e, i); + e += 1; + } + s += 1; } - const s = i.length; - for (let t = 0; t < s; ++t) this.setElementByPos(t, i[t]); - return this.cut(s - 1); + this.cut(e - 1); + return this.i; } eraseElementByIterator(t) { const i = t.o; @@ -270,15 +321,15 @@ class Deque extends _Base.default { return this.end(); } reverse() { - let t = 0; - let i = this.i - 1; - while (t < i) { - const s = this.getElementByPos(t); - this.setElementByPos(t, this.getElementByPos(i)); - this.setElementByPos(i, s); - t += 1; - i -= 1; - } + this.W.reverse().forEach((function(t) { + t.reverse(); + })); + const {j: t, N: i, R: s, D: e} = this; + this.j = this.P - i - 1; + this.N = this.P - t - 1; + this.R = this.O - e - 1; + this.D = this.O - s - 1; + return this; } unique() { if (this.i <= 1) { @@ -287,13 +338,13 @@ class Deque extends _Base.default { let t = 1; let i = this.getElementByPos(0); for (let s = 1; s < this.i; ++s) { - const h = this.getElementByPos(s); - if (h !== i) { - i = h; - this.setElementByPos(t++, h); + const e = this.getElementByPos(s); + if (e !== i) { + i = e; + this.setElementByPos(t++, e); } } - while (this.i > t) this.popBack(); + this.cut(t - 1); return this.i; } sort(t) { @@ -302,33 +353,39 @@ class Deque extends _Base.default { i.push(this.getElementByPos(t)); } i.sort(t); - for (let t = 0; t < this.i; ++t) this.setElementByPos(t, i[t]); + for (let t = 0; t < this.i; ++t) { + this.setElementByPos(t, i[t]); + } + return this; } shrinkToFit() { if (this.i === 0) return; const t = []; - this.forEach((function(i) { - t.push(i); - })); - this.P = Math.max(Math.ceil(this.i / this.F), 1); - this.i = this.j = this.R = this.D = this.N = 0; - this.A = []; - for (let t = 0; t < this.P; ++t) { - this.A.push(new Array(this.F)); + if (this.j === this.N) return; else if (this.j < this.N) { + for (let i = this.j; i <= this.N; ++i) { + t.push(this.W[i]); + } + } else { + for (let i = this.j; i < this.P; ++i) { + t.push(this.W[i]); + } + for (let i = 0; i <= this.N; ++i) { + t.push(this.W[i]); + } } - for (let i = 0; i < t.length; ++i) this.pushBack(t[i]); + this.j = 0; + this.N = t.length - 1; + this.W = t; } forEach(t) { for (let i = 0; i < this.i; ++i) { t(this.getElementByPos(i), i, this); } } - [Symbol.iterator]() { - return function*() { - for (let t = 0; t < this.i; ++t) { - yield this.getElementByPos(t); - } - }.bind(this)(); + * [Symbol.iterator]() { + for (let t = 0; t < this.i; ++t) { + yield this.getElementByPos(t); + } } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/LinkList.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/LinkList.js index 068a8573d0d759..7e72b8734c4fb0 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/LinkList.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/LinkList.js @@ -244,7 +244,9 @@ class LinkList extends _Base.default { return this.end(); } reverse() { - if (this.i <= 1) return; + if (this.i <= 1) { + return this; + } let t = this.p; let i = this._; let s = 0; @@ -256,6 +258,7 @@ class LinkList extends _Base.default { i = i.L; s += 1; } + return this; } unique() { if (this.i <= 1) { @@ -275,7 +278,9 @@ class LinkList extends _Base.default { return this.i; } sort(t) { - if (this.i <= 1) return; + if (this.i <= 1) { + return this; + } const i = []; this.forEach((function(t) { i.push(t); @@ -286,6 +291,7 @@ class LinkList extends _Base.default { s.l = t; s = s.B; })); + return this; } merge(t) { const i = this; @@ -312,15 +318,13 @@ class LinkList extends _Base.default { i = i.B; } } - [Symbol.iterator]() { - return function*() { - if (this.i === 0) return; - let t = this.p; - while (t !== this.h) { - yield t.l; - t = t.B; - } - }.bind(this)(); + * [Symbol.iterator]() { + if (this.i === 0) return; + let t = this.p; + while (t !== this.h) { + yield t.l; + t = t.B; + } } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Vector.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Vector.js index b61d3a9192788d..4b91d1cfb640ad 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Vector.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Vector.js @@ -126,6 +126,7 @@ class Vector extends _Base.default { } reverse() { this.J.reverse(); + return this; } unique() { let t = 1; @@ -139,16 +140,15 @@ class Vector extends _Base.default { } sort(t) { this.J.sort(t); + return this; } forEach(t) { for (let r = 0; r < this.i; ++r) { t(this.J[r], r, this); } } - [Symbol.iterator]() { - return function*() { - yield* this.J; - }.bind(this)(); + * [Symbol.iterator]() { + yield* this.J; } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeIterator.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeIterator.js index f238b856b0c6b5..a40876f6f10cf9 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeIterator.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeIterator.js @@ -17,7 +17,7 @@ class TreeIterator extends _ContainerBase.ContainerIterator { this.h = r; if (this.iteratorType === 0) { this.pre = function() { - if (this.o === this.h.U) { + if (this.o === this.h.T) { (0, _throwError.throwIteratorAccessError)(); } this.o = this.o.L(); @@ -32,7 +32,7 @@ class TreeIterator extends _ContainerBase.ContainerIterator { }; } else { this.pre = function() { - if (this.o === this.h.W) { + if (this.o === this.h.K) { (0, _throwError.throwIteratorAccessError)(); } this.o = this.o.B(); @@ -49,23 +49,23 @@ class TreeIterator extends _ContainerBase.ContainerIterator { } get index() { let t = this.o; - const r = this.h.tt; + const r = this.h.it; if (t === this.h) { if (r) { - return r.rt - 1; + return r.st - 1; } return 0; } let i = 0; - if (t.U) { - i += t.U.rt; + if (t.T) { + i += t.T.st; } while (t !== r) { - const r = t.tt; - if (t === r.W) { + const r = t.it; + if (t === r.K) { i += 1; - if (r.U) { - i += r.U.rt; + if (r.T) { + i += r.T.st; } } t = r; diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeNode.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeNode.js index 108fcf1fb6d9ea..ba38dded7f5696 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeNode.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeNode.js @@ -7,30 +7,28 @@ Object.defineProperty(exports, "t", { exports.TreeNodeEnableIndex = exports.TreeNode = void 0; class TreeNode { - constructor(e, t) { - this.ee = 1; - this.u = undefined; - this.l = undefined; - this.U = undefined; - this.W = undefined; - this.tt = undefined; + constructor(e, t, s = 1) { + this.T = undefined; + this.K = undefined; + this.it = undefined; this.u = e; this.l = t; + this.ee = s; } L() { let e = this; - if (e.ee === 1 && e.tt.tt === e) { - e = e.W; - } else if (e.U) { - e = e.U; - while (e.W) { - e = e.W; + if (e.ee === 1 && e.it.it === e) { + e = e.K; + } else if (e.T) { + e = e.T; + while (e.K) { + e = e.K; } } else { - let t = e.tt; - while (t.U === e) { + let t = e.it; + while (t.T === e) { e = t; - t = e.tt; + t = e.it; } e = t; } @@ -38,45 +36,45 @@ class TreeNode { } B() { let e = this; - if (e.W) { - e = e.W; - while (e.U) { - e = e.U; + if (e.K) { + e = e.K; + while (e.T) { + e = e.T; } return e; } else { - let t = e.tt; - while (t.W === e) { + let t = e.it; + while (t.K === e) { e = t; - t = e.tt; + t = e.it; } - if (e.W !== t) { + if (e.K !== t) { return t; } else return e; } } te() { - const e = this.tt; - const t = this.W; - const s = t.U; - if (e.tt === this) e.tt = t; else if (e.U === this) e.U = t; else e.W = t; - t.tt = e; - t.U = this; - this.tt = t; - this.W = s; - if (s) s.tt = this; + const e = this.it; + const t = this.K; + const s = t.T; + if (e.it === this) e.it = t; else if (e.T === this) e.T = t; else e.K = t; + t.it = e; + t.T = this; + this.it = t; + this.K = s; + if (s) s.it = this; return t; } se() { - const e = this.tt; - const t = this.U; - const s = t.W; - if (e.tt === this) e.tt = t; else if (e.U === this) e.U = t; else e.W = t; - t.tt = e; - t.W = this; - this.tt = t; - this.U = s; - if (s) s.tt = this; + const e = this.it; + const t = this.T; + const s = t.K; + if (e.it === this) e.it = t; else if (e.T === this) e.T = t; else e.K = t; + t.it = e; + t.K = this; + this.it = t; + this.T = s; + if (s) s.it = this; return t; } } @@ -86,7 +84,7 @@ exports.TreeNode = TreeNode; class TreeNodeEnableIndex extends TreeNode { constructor() { super(...arguments); - this.rt = 1; + this.st = 1; } te() { const e = super.te(); @@ -101,12 +99,12 @@ class TreeNodeEnableIndex extends TreeNode { return e; } ie() { - this.rt = 1; - if (this.U) { - this.rt += this.U.rt; + this.st = 1; + if (this.T) { + this.st += this.T.st; } - if (this.W) { - this.rt += this.W.rt; + if (this.K) { + this.st += this.K.st; } } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/index.js index 1ba0069296b791..69c4f5d62c2923 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/index.js @@ -19,126 +19,92 @@ class TreeContainer extends _ContainerBase.Container { return 0; }, t = false) { super(); - this.Y = undefined; + this.X = undefined; this.v = e; - if (t) { - this.re = _TreeNode.TreeNodeEnableIndex; - this.M = function(e, t, i) { - const s = this.ne(e, t, i); - if (s) { - let e = s.tt; - while (e !== this.h) { - e.rt += 1; - e = e.tt; - } - const t = this.he(s); - if (t) { - const {parentNode: e, grandParent: i, curNode: s} = t; - e.ie(); - i.ie(); - s.ie(); - } - } - return this.i; - }; - this.V = function(e) { - let t = this.fe(e); - while (t !== this.h) { - t.rt -= 1; - t = t.tt; - } - }; - } else { - this.re = _TreeNode.TreeNode; - this.M = function(e, t, i) { - const s = this.ne(e, t, i); - if (s) this.he(s); - return this.i; - }; - this.V = this.fe; - } + this.enableIndex = t; + this.re = t ? _TreeNode.TreeNodeEnableIndex : _TreeNode.TreeNode; this.h = new this.re; } - X(e, t) { + U(e, t) { let i = this.h; while (e) { const s = this.v(e.u, t); if (s < 0) { - e = e.W; + e = e.K; } else if (s > 0) { i = e; - e = e.U; + e = e.T; } else return e; } return i; } - Z(e, t) { + Y(e, t) { let i = this.h; while (e) { const s = this.v(e.u, t); if (s <= 0) { - e = e.W; + e = e.K; } else { i = e; - e = e.U; + e = e.T; } } return i; } - $(e, t) { + Z(e, t) { let i = this.h; while (e) { const s = this.v(e.u, t); if (s < 0) { i = e; - e = e.W; + e = e.K; } else if (s > 0) { - e = e.U; + e = e.T; } else return e; } return i; } - rr(e, t) { + $(e, t) { let i = this.h; while (e) { const s = this.v(e.u, t); if (s < 0) { i = e; - e = e.W; + e = e.K; } else { - e = e.U; + e = e.T; } } return i; } - ue(e) { + ne(e) { while (true) { - const t = e.tt; + const t = e.it; if (t === this.h) return; if (e.ee === 1) { e.ee = 0; return; } - if (e === t.U) { - const i = t.W; + if (e === t.T) { + const i = t.K; if (i.ee === 1) { i.ee = 0; t.ee = 1; - if (t === this.Y) { - this.Y = t.te(); + if (t === this.X) { + this.X = t.te(); } else t.te(); } else { - if (i.W && i.W.ee === 1) { + if (i.K && i.K.ee === 1) { i.ee = t.ee; t.ee = 0; - i.W.ee = 0; - if (t === this.Y) { - this.Y = t.te(); + i.K.ee = 0; + if (t === this.X) { + this.X = t.te(); } else t.te(); return; - } else if (i.U && i.U.ee === 1) { + } else if (i.T && i.T.ee === 1) { i.ee = 1; - i.U.ee = 0; + i.T.ee = 0; i.se(); } else { i.ee = 1; @@ -146,25 +112,25 @@ class TreeContainer extends _ContainerBase.Container { } } } else { - const i = t.U; + const i = t.T; if (i.ee === 1) { i.ee = 0; t.ee = 1; - if (t === this.Y) { - this.Y = t.se(); + if (t === this.X) { + this.X = t.se(); } else t.se(); } else { - if (i.U && i.U.ee === 1) { + if (i.T && i.T.ee === 1) { i.ee = t.ee; t.ee = 0; - i.U.ee = 0; - if (t === this.Y) { - this.Y = t.se(); + i.T.ee = 0; + if (t === this.X) { + this.X = t.se(); } else t.se(); return; - } else if (i.W && i.W.ee === 1) { + } else if (i.K && i.K.ee === 1) { i.ee = 1; - i.W.ee = 0; + i.K.ee = 0; i.te(); } else { i.ee = 1; @@ -174,168 +140,194 @@ class TreeContainer extends _ContainerBase.Container { } } } - fe(e) { + V(e) { if (this.i === 1) { this.clear(); - return this.h; + return; } let t = e; - while (t.U || t.W) { - if (t.W) { - t = t.W; - while (t.U) t = t.U; + while (t.T || t.K) { + if (t.K) { + t = t.K; + while (t.T) t = t.T; } else { - t = t.U; + t = t.T; } - [e.u, t.u] = [ t.u, e.u ]; - [e.l, t.l] = [ t.l, e.l ]; + const i = e.u; + e.u = t.u; + t.u = i; + const s = e.l; + e.l = t.l; + t.l = s; e = t; } - if (this.h.U === t) { - this.h.U = t.tt; - } else if (this.h.W === t) { - this.h.W = t.tt; + if (this.h.T === t) { + this.h.T = t.it; + } else if (this.h.K === t) { + this.h.K = t.it; } - this.ue(t); - const i = t.tt; - if (t === i.U) { - i.U = undefined; - } else i.W = undefined; + this.ne(t); + let i = t.it; + if (t === i.T) { + i.T = undefined; + } else i.K = undefined; this.i -= 1; - this.Y.ee = 0; - return i; + this.X.ee = 0; + if (this.enableIndex) { + while (i !== this.h) { + i.st -= 1; + i = i.it; + } + } } - oe(e, t) { - if (e === undefined) return false; - const i = this.oe(e.U, t); - if (i) return true; - if (t(e)) return true; - return this.oe(e.W, t); + tt(e) { + const t = typeof e === "number" ? e : undefined; + const i = typeof e === "function" ? e : undefined; + const s = typeof e === "undefined" ? [] : undefined; + let r = 0; + let n = this.X; + const h = []; + while (h.length || n) { + if (n) { + h.push(n); + n = n.T; + } else { + n = h.pop(); + if (r === t) return n; + s && s.push(n); + i && i(n, r, this); + r += 1; + n = n.K; + } + } + return s; } he(e) { while (true) { - const t = e.tt; + const t = e.it; if (t.ee === 0) return; - const i = t.tt; - if (t === i.U) { - const s = i.W; + const i = t.it; + if (t === i.T) { + const s = i.K; if (s && s.ee === 1) { s.ee = t.ee = 0; - if (i === this.Y) return; + if (i === this.X) return; i.ee = 1; e = i; continue; - } else if (e === t.W) { + } else if (e === t.K) { e.ee = 0; - if (e.U) e.U.tt = t; - if (e.W) e.W.tt = i; - t.W = e.U; - i.U = e.W; - e.U = t; - e.W = i; - if (i === this.Y) { - this.Y = e; - this.h.tt = e; + if (e.T) { + e.T.it = t; + } + if (e.K) { + e.K.it = i; + } + t.K = e.T; + i.T = e.K; + e.T = t; + e.K = i; + if (i === this.X) { + this.X = e; + this.h.it = e; } else { - const t = i.tt; - if (t.U === i) { - t.U = e; - } else t.W = e; + const t = i.it; + if (t.T === i) { + t.T = e; + } else t.K = e; } - e.tt = i.tt; - t.tt = e; - i.tt = e; + e.it = i.it; + t.it = e; + i.it = e; i.ee = 1; - return { - parentNode: t, - grandParent: i, - curNode: e - }; } else { t.ee = 0; - if (i === this.Y) { - this.Y = i.se(); + if (i === this.X) { + this.X = i.se(); } else i.se(); i.ee = 1; + return; } } else { - const s = i.U; + const s = i.T; if (s && s.ee === 1) { s.ee = t.ee = 0; - if (i === this.Y) return; + if (i === this.X) return; i.ee = 1; e = i; continue; - } else if (e === t.U) { + } else if (e === t.T) { e.ee = 0; - if (e.U) e.U.tt = i; - if (e.W) e.W.tt = t; - i.W = e.U; - t.U = e.W; - e.U = i; - e.W = t; - if (i === this.Y) { - this.Y = e; - this.h.tt = e; + if (e.T) { + e.T.it = i; + } + if (e.K) { + e.K.it = t; + } + i.K = e.T; + t.T = e.K; + e.T = i; + e.K = t; + if (i === this.X) { + this.X = e; + this.h.it = e; } else { - const t = i.tt; - if (t.U === i) { - t.U = e; - } else t.W = e; + const t = i.it; + if (t.T === i) { + t.T = e; + } else t.K = e; } - e.tt = i.tt; - t.tt = e; - i.tt = e; + e.it = i.it; + t.it = e; + i.it = e; i.ee = 1; - return { - parentNode: t, - grandParent: i, - curNode: e - }; } else { t.ee = 0; - if (i === this.Y) { - this.Y = i.te(); + if (i === this.X) { + this.X = i.te(); } else i.te(); i.ee = 1; + return; } } + if (this.enableIndex) { + t.ie(); + i.ie(); + e.ie(); + } return; } } - ne(e, t, i) { - if (this.Y === undefined) { + M(e, t, i) { + if (this.X === undefined) { this.i += 1; - this.Y = new this.re(e, t); - this.Y.ee = 0; - this.Y.tt = this.h; - this.h.tt = this.Y; - this.h.U = this.Y; - this.h.W = this.Y; - return; + this.X = new this.re(e, t, 0); + this.X.it = this.h; + this.h.it = this.h.T = this.h.K = this.X; + return this.i; } let s; - const r = this.h.U; + const r = this.h.T; const n = this.v(r.u, e); if (n === 0) { r.l = t; - return; + return this.i; } else if (n > 0) { - r.U = new this.re(e, t); - r.U.tt = r; - s = r.U; - this.h.U = s; + r.T = new this.re(e, t); + r.T.it = r; + s = r.T; + this.h.T = s; } else { - const r = this.h.W; + const r = this.h.K; const n = this.v(r.u, e); if (n === 0) { r.l = t; - return; + return this.i; } else if (n < 0) { - r.W = new this.re(e, t); - r.W.tt = r; - s = r.W; - this.h.W = s; + r.K = new this.re(e, t); + r.K.it = r; + s = r.K; + this.h.K = s; } else { if (i !== undefined) { const r = i.o; @@ -343,73 +335,81 @@ class TreeContainer extends _ContainerBase.Container { const i = this.v(r.u, e); if (i === 0) { r.l = t; - return; + return this.i; } else if (i > 0) { const i = r.L(); const n = this.v(i.u, e); if (n === 0) { i.l = t; - return; + return this.i; } else if (n < 0) { s = new this.re(e, t); - if (i.W === undefined) { - i.W = s; - s.tt = i; + if (i.K === undefined) { + i.K = s; + s.it = i; } else { - r.U = s; - s.tt = r; + r.T = s; + s.it = r; } } } } } if (s === undefined) { - s = this.Y; + s = this.X; while (true) { const i = this.v(s.u, e); if (i > 0) { - if (s.U === undefined) { - s.U = new this.re(e, t); - s.U.tt = s; - s = s.U; + if (s.T === undefined) { + s.T = new this.re(e, t); + s.T.it = s; + s = s.T; break; } - s = s.U; + s = s.T; } else if (i < 0) { - if (s.W === undefined) { - s.W = new this.re(e, t); - s.W.tt = s; - s = s.W; + if (s.K === undefined) { + s.K = new this.re(e, t); + s.K.it = s; + s = s.K; break; } - s = s.W; + s = s.K; } else { s.l = t; - return; + return this.i; } } } } } + if (this.enableIndex) { + let e = s.it; + while (e !== this.h) { + e.st += 1; + e = e.it; + } + } + this.he(s); this.i += 1; - return s; + return this.i; } - I(e, t) { + rt(e, t) { while (e) { const i = this.v(e.u, t); if (i < 0) { - e = e.W; + e = e.K; } else if (i > 0) { - e = e.U; + e = e.T; } else return e; } return e || this.h; } clear() { this.i = 0; - this.Y = undefined; - this.h.tt = undefined; - this.h.U = this.h.W = undefined; + this.X = undefined; + this.h.it = undefined; + this.h.T = this.h.K = undefined; } updateKeyByIterator(e, t) { const i = e.o; @@ -420,24 +420,23 @@ class TreeContainer extends _ContainerBase.Container { i.u = t; return true; } - if (i === this.h.U) { - if (this.v(i.B().u, t) > 0) { + const s = i.B().u; + if (i === this.h.T) { + if (this.v(s, t) > 0) { i.u = t; return true; } return false; } - if (i === this.h.W) { - if (this.v(i.L().u, t) < 0) { + const r = i.L().u; + if (i === this.h.K) { + if (this.v(r, t) < 0) { i.u = t; return true; } return false; } - const s = i.L().u; - if (this.v(s, t) >= 0) return false; - const r = i.B().u; - if (this.v(r, t) <= 0) return false; + if (this.v(r, t) >= 0 || this.v(s, t) <= 0) return false; i.u = t; return true; } @@ -445,21 +444,13 @@ class TreeContainer extends _ContainerBase.Container { if (e < 0 || e > this.i - 1) { throw new RangeError; } - let t = 0; - const i = this; - this.oe(this.Y, (function(s) { - if (e === t) { - i.V(s); - return true; - } - t += 1; - return false; - })); + const t = this.tt(e); + this.V(t); return this.i; } eraseElementByKey(e) { if (this.i === 0) return false; - const t = this.I(this.Y, e); + const t = this.rt(this.X, e); if (t === this.h) return false; this.V(t); return true; @@ -469,42 +460,23 @@ class TreeContainer extends _ContainerBase.Container { if (t === this.h) { (0, _throwError.throwIteratorAccessError)(); } - const i = t.W === undefined; + const i = t.K === undefined; const s = e.iteratorType === 0; if (s) { if (i) e.next(); } else { - if (!i || t.U === undefined) e.next(); + if (!i || t.T === undefined) e.next(); } this.V(t); return e; } - forEach(e) { - let t = 0; - for (const i of this) e(i, t++, this); - } - getElementByPos(e) { - if (e < 0 || e > this.i - 1) { - throw new RangeError; - } - let t; - let i = 0; - for (const s of this) { - if (i === e) { - t = s; - break; - } - i += 1; - } - return t; - } getHeight() { if (this.i === 0) return 0; - const traversal = function(e) { + function traversal(e) { if (!e) return 0; - return Math.max(traversal(e.U), traversal(e.W)) + 1; - }; - return traversal(this.Y); + return Math.max(traversal(e.T), traversal(e.K)) + 1; + } + return traversal(this.X); } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedMap.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedMap.js index 79fdc0280fc3b1..be2b4ed2180376 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedMap.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedMap.js @@ -12,31 +12,31 @@ var _TreeIterator = _interopRequireDefault(require("./Base/TreeIterator")); var _throwError = require("../../utils/throwError"); -function _interopRequireDefault(r) { - return r && r.t ? r : { - default: r +function _interopRequireDefault(t) { + return t && t.t ? t : { + default: t }; } class OrderedMapIterator extends _TreeIterator.default { - constructor(r, t, e, s) { - super(r, t, s); + constructor(t, r, e, s) { + super(t, r, s); this.container = e; } get pointer() { if (this.o === this.h) { (0, _throwError.throwIteratorAccessError)(); } - const r = this; + const t = this; return new Proxy([], { - get(t, e) { - if (e === "0") return r.o.u; else if (e === "1") return r.o.l; + get(r, e) { + if (e === "0") return t.o.u; else if (e === "1") return t.o.l; }, - set(t, e, s) { + set(r, e, s) { if (e !== "1") { throw new TypeError("props must be 1"); } - r.o.l = s; + t.o.l = s; return true; } }); @@ -47,77 +47,88 @@ class OrderedMapIterator extends _TreeIterator.default { } class OrderedMap extends _Base.default { - constructor(r = [], t, e) { - super(t, e); + constructor(t = [], r, e) { + super(r, e); const s = this; - r.forEach((function(r) { - s.setElement(r[0], r[1]); + t.forEach((function(t) { + s.setElement(t[0], t[1]); })); } - * K(r) { - if (r === undefined) return; - yield* this.K(r.U); - yield [ r.u, r.l ]; - yield* this.K(r.W); - } begin() { - return new OrderedMapIterator(this.h.U || this.h, this.h, this); + return new OrderedMapIterator(this.h.T || this.h, this.h, this); } end() { return new OrderedMapIterator(this.h, this.h, this); } rBegin() { - return new OrderedMapIterator(this.h.W || this.h, this.h, this, 1); + return new OrderedMapIterator(this.h.K || this.h, this.h, this, 1); } rEnd() { return new OrderedMapIterator(this.h, this.h, this, 1); } front() { if (this.i === 0) return; - const r = this.h.U; - return [ r.u, r.l ]; + const t = this.h.T; + return [ t.u, t.l ]; } back() { if (this.i === 0) return; - const r = this.h.W; - return [ r.u, r.l ]; + const t = this.h.K; + return [ t.u, t.l ]; } - lowerBound(r) { - const t = this.X(this.Y, r); - return new OrderedMapIterator(t, this.h, this); + lowerBound(t) { + const r = this.U(this.X, t); + return new OrderedMapIterator(r, this.h, this); } - upperBound(r) { - const t = this.Z(this.Y, r); - return new OrderedMapIterator(t, this.h, this); + upperBound(t) { + const r = this.Y(this.X, t); + return new OrderedMapIterator(r, this.h, this); } - reverseLowerBound(r) { - const t = this.$(this.Y, r); - return new OrderedMapIterator(t, this.h, this); + reverseLowerBound(t) { + const r = this.Z(this.X, t); + return new OrderedMapIterator(r, this.h, this); } - reverseUpperBound(r) { - const t = this.rr(this.Y, r); - return new OrderedMapIterator(t, this.h, this); + reverseUpperBound(t) { + const r = this.$(this.X, t); + return new OrderedMapIterator(r, this.h, this); } - setElement(r, t, e) { - return this.M(r, t, e); + forEach(t) { + this.tt((function(r, e, s) { + t([ r.u, r.l ], e, s); + })); } - find(r) { - const t = this.I(this.Y, r); - return new OrderedMapIterator(t, this.h, this); + setElement(t, r, e) { + return this.M(t, r, e); } - getElementByKey(r) { - const t = this.I(this.Y, r); - return t.l; + getElementByPos(t) { + if (t < 0 || t > this.i - 1) { + throw new RangeError; + } + const r = this.tt(t); + return [ r.u, r.l ]; } - union(r) { - const t = this; - r.forEach((function(r) { - t.setElement(r[0], r[1]); + find(t) { + const r = this.rt(this.X, t); + return new OrderedMapIterator(r, this.h, this); + } + getElementByKey(t) { + const r = this.rt(this.X, t); + return r.l; + } + union(t) { + const r = this; + t.forEach((function(t) { + r.setElement(t[0], t[1]); })); return this.i; } - [Symbol.iterator]() { - return this.K(this.Y); + * [Symbol.iterator]() { + const t = this.i; + const r = this.tt(); + for (let e = 0; e < t; ++e) { + const t = r[e]; + yield [ t.u, t.l ]; + } } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedSet.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedSet.js index c7af14df2664fb..dc9c5bce681bcc 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedSet.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedSet.js @@ -12,15 +12,15 @@ var _TreeIterator = _interopRequireDefault(require("./Base/TreeIterator")); var _throwError = require("../../utils/throwError"); -function _interopRequireDefault(e) { - return e && e.t ? e : { - default: e +function _interopRequireDefault(t) { + return t && t.t ? t : { + default: t }; } class OrderedSetIterator extends _TreeIterator.default { - constructor(e, t, r, i) { - super(e, t, i); + constructor(t, e, r, s) { + super(t, e, s); this.container = r; } get pointer() { @@ -35,69 +35,79 @@ class OrderedSetIterator extends _TreeIterator.default { } class OrderedSet extends _Base.default { - constructor(e = [], t, r) { - super(t, r); - const i = this; - e.forEach((function(e) { - i.insert(e); + constructor(t = [], e, r) { + super(e, r); + const s = this; + t.forEach((function(t) { + s.insert(t); })); } - * K(e) { - if (e === undefined) return; - yield* this.K(e.U); - yield e.u; - yield* this.K(e.W); - } begin() { - return new OrderedSetIterator(this.h.U || this.h, this.h, this); + return new OrderedSetIterator(this.h.T || this.h, this.h, this); } end() { return new OrderedSetIterator(this.h, this.h, this); } rBegin() { - return new OrderedSetIterator(this.h.W || this.h, this.h, this, 1); + return new OrderedSetIterator(this.h.K || this.h, this.h, this, 1); } rEnd() { return new OrderedSetIterator(this.h, this.h, this, 1); } front() { - return this.h.U ? this.h.U.u : undefined; + return this.h.T ? this.h.T.u : undefined; } back() { - return this.h.W ? this.h.W.u : undefined; + return this.h.K ? this.h.K.u : undefined; + } + lowerBound(t) { + const e = this.U(this.X, t); + return new OrderedSetIterator(e, this.h, this); + } + upperBound(t) { + const e = this.Y(this.X, t); + return new OrderedSetIterator(e, this.h, this); } - insert(e, t) { - return this.M(e, undefined, t); + reverseLowerBound(t) { + const e = this.Z(this.X, t); + return new OrderedSetIterator(e, this.h, this); } - find(e) { - const t = this.I(this.Y, e); - return new OrderedSetIterator(t, this.h, this); + reverseUpperBound(t) { + const e = this.$(this.X, t); + return new OrderedSetIterator(e, this.h, this); } - lowerBound(e) { - const t = this.X(this.Y, e); - return new OrderedSetIterator(t, this.h, this); + forEach(t) { + this.tt((function(e, r, s) { + t(e.u, r, s); + })); } - upperBound(e) { - const t = this.Z(this.Y, e); - return new OrderedSetIterator(t, this.h, this); + insert(t, e) { + return this.M(t, undefined, e); } - reverseLowerBound(e) { - const t = this.$(this.Y, e); - return new OrderedSetIterator(t, this.h, this); + getElementByPos(t) { + if (t < 0 || t > this.i - 1) { + throw new RangeError; + } + const e = this.tt(t); + return e.u; } - reverseUpperBound(e) { - const t = this.rr(this.Y, e); - return new OrderedSetIterator(t, this.h, this); + find(t) { + const e = this.rt(this.X, t); + return new OrderedSetIterator(e, this.h, this); } - union(e) { - const t = this; - e.forEach((function(e) { - t.insert(e); + union(t) { + const e = this; + t.forEach((function(t) { + e.insert(t); })); return this.i; } - [Symbol.iterator]() { - return this.K(this.Y); + * [Symbol.iterator]() { + const t = this.i; + const e = this.tt(); + for (let r = 0; r < t; ++r) { + yield e[r].u; + } } } diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/utils/math.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/utils/math.js new file mode 100644 index 00000000000000..13aec3ce91f684 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/utils/math.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.ceil = ceil; + +exports.floor = void 0; + +function ceil(e, t) { + return Math.floor((e + t - 1) / t); +} + +const floor = Math.floor; + +exports.floor = floor; +//# sourceMappingURL=math.js.map diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/ContainerBase/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/ContainerBase/index.js index d5e10db88ac21d..ce49ce81ba3b45 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/ContainerBase/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/ContainerBase/index.js @@ -36,20 +36,20 @@ export { ContainerIterator }; var Base = function() { function Base() { - this.M = 0; + this.i = 0; } Object.defineProperty(Base.prototype, "length", { get: function() { - return this.M; + return this.i; }, enumerable: false, configurable: true }); Base.prototype.size = function() { - return this.M; + return this.i; }; Base.prototype.empty = function() { - return this.M === 0; + return this.i === 0; }; return Base; }(); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/Base/index.js index 028b7d484aecc3..e441b5e2600bc4 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/Base/index.js @@ -30,17 +30,17 @@ var HashContainerIterator = function(t) { function HashContainerIterator(i, r, e) { var n = t.call(this, e) || this; n.o = i; - n.h = r; + n.u = r; if (n.iteratorType === 0) { n.pre = function() { - if (this.o.L === this.h) { + if (this.o.L === this.u) { throwIteratorAccessError(); } this.o = this.o.L; return this; }; n.next = function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } this.o = this.o.m; @@ -48,14 +48,14 @@ var HashContainerIterator = function(t) { }; } else { n.pre = function() { - if (this.o.m === this.h) { + if (this.o.m === this.u) { throwIteratorAccessError(); } this.o = this.o.m; return this; }; n.next = function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } this.o = this.o.L; @@ -77,21 +77,21 @@ var HashContainer = function(t) { i.I = {}; i.HASH_TAG = Symbol("@@HASH_TAG"); Object.setPrototypeOf(i.I, null); - i.h = {}; - i.h.L = i.h.m = i.H = i.l = i.h; + i.u = {}; + i.u.L = i.u.m = i.l = i.M = i.u; return i; } - HashContainer.prototype.G = function(t) { + HashContainer.prototype.U = function(t) { var i = t.L, r = t.m; i.m = r; r.L = i; - if (t === this.H) { - this.H = r; - } if (t === this.l) { - this.l = i; + this.l = r; + } + if (t === this.M) { + this.M = i; } - this.M -= 1; + this.i -= 1; }; HashContainer.prototype.v = function(t, i, r) { if (r === undefined) r = checkObject(t); @@ -99,64 +99,63 @@ var HashContainer = function(t) { if (r) { var n = t[this.HASH_TAG]; if (n !== undefined) { - this._[n].p = i; - return this.M; + this._[n].H = i; + return this.i; } Object.defineProperty(t, this.HASH_TAG, { value: this._.length, configurable: true }); e = { - u: t, - p: i, - L: this.l, - m: this.h + p: t, + H: i, + L: this.M, + m: this.u }; this._.push(e); } else { var s = this.I[t]; if (s) { - s.p = i; - return this.M; + s.H = i; + return this.i; } - e = { - u: t, - p: i, - L: this.l, - m: this.h + this.I[t] = e = { + p: t, + H: i, + L: this.M, + m: this.u }; - this.I[t] = e; } - if (this.M === 0) { - this.H = e; - this.h.m = e; + if (this.i === 0) { + this.l = e; + this.u.m = e; } else { - this.l.m = e; + this.M.m = e; } - this.l = e; - this.h.L = e; - return ++this.M; + this.M = e; + this.u.L = e; + return ++this.i; }; HashContainer.prototype.g = function(t, i) { if (i === undefined) i = checkObject(t); if (i) { var r = t[this.HASH_TAG]; - if (r === undefined) return this.h; + if (r === undefined) return this.u; return this._[r]; } else { - return this.I[t] || this.h; + return this.I[t] || this.u; } }; HashContainer.prototype.clear = function() { var t = this.HASH_TAG; this._.forEach((function(i) { - delete i.u[t]; + delete i.p[t]; })); this._ = []; this.I = {}; Object.setPrototypeOf(this.I, null); - this.M = 0; - this.H = this.l = this.h.L = this.h.m = this.h; + this.i = 0; + this.l = this.M = this.u.L = this.u.m = this.u; }; HashContainer.prototype.eraseElementByKey = function(t, i) { var r; @@ -172,27 +171,27 @@ var HashContainer = function(t) { if (r === undefined) return false; delete this.I[t]; } - this.G(r); + this.U(r); return true; }; HashContainer.prototype.eraseElementByIterator = function(t) { var i = t.o; - if (i === this.h) { + if (i === this.u) { throwIteratorAccessError(); } - this.G(i); + this.U(i); return t.next(); }; HashContainer.prototype.eraseElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - var i = this.H; + var i = this.l; while (t--) { i = i.m; } - this.G(i); - return this.M; + this.U(i); + return this.i; }; return HashContainer; }(Container); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashMap.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashMap.js index af08bfb77d710d..618afbd9b6d0e7 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashMap.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashMap.js @@ -19,7 +19,7 @@ var __extends = this && this.t || function() { }; }(); -var __generator = this && this.i || function(t, r) { +var __generator = this && this.h || function(t, r) { var n = { label: 0, sent: function() { @@ -124,19 +124,19 @@ var HashMapIterator = function(t) { } Object.defineProperty(HashMapIterator.prototype, "pointer", { get: function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } var t = this; return new Proxy([], { get: function(r, n) { - if (n === "0") return t.o.u; else if (n === "1") return t.o.p; + if (n === "0") return t.o.p; else if (n === "1") return t.o.H; }, set: function(r, n, e) { if (n !== "1") { throw new TypeError("props must be 1"); } - t.o.p = e; + t.o.H = e; return true; } }); @@ -145,7 +145,7 @@ var HashMapIterator = function(t) { configurable: true }); HashMapIterator.prototype.copy = function() { - return new HashMapIterator(this.o, this.h, this.container, this.iteratorType); + return new HashMapIterator(this.o, this.u, this.container, this.iteratorType); }; return HashMapIterator; }(HashContainerIterator); @@ -164,24 +164,24 @@ var HashMap = function(t) { return n; } HashMap.prototype.begin = function() { - return new HashMapIterator(this.H, this.h, this); + return new HashMapIterator(this.l, this.u, this); }; HashMap.prototype.end = function() { - return new HashMapIterator(this.h, this.h, this); + return new HashMapIterator(this.u, this.u, this); }; HashMap.prototype.rBegin = function() { - return new HashMapIterator(this.l, this.h, this, 1); + return new HashMapIterator(this.M, this.u, this, 1); }; HashMap.prototype.rEnd = function() { - return new HashMapIterator(this.h, this.h, this, 1); + return new HashMapIterator(this.u, this.u, this, 1); }; HashMap.prototype.front = function() { - if (this.M === 0) return; - return [ this.H.u, this.H.p ]; + if (this.i === 0) return; + return [ this.l.p, this.l.H ]; }; HashMap.prototype.back = function() { - if (this.M === 0) return; - return [ this.l.u, this.l.p ]; + if (this.i === 0) return; + return [ this.M.p, this.M.H ]; }; HashMap.prototype.setElement = function(t, r, n) { return this.v(t, r, n); @@ -190,56 +190,54 @@ var HashMap = function(t) { if (r === undefined) r = checkObject(t); if (r) { var n = t[this.HASH_TAG]; - return n !== undefined ? this._[n].p : undefined; + return n !== undefined ? this._[n].H : undefined; } var e = this.I[t]; - return e ? e.p : undefined; + return e ? e.H : undefined; }; HashMap.prototype.getElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - var r = this.H; + var r = this.l; while (t--) { r = r.m; } - return [ r.u, r.p ]; + return [ r.p, r.H ]; }; HashMap.prototype.find = function(t, r) { var n = this.g(t, r); - return new HashMapIterator(n, this.h, this); + return new HashMapIterator(n, this.u, this); }; HashMap.prototype.forEach = function(t) { var r = 0; - var n = this.H; - while (n !== this.h) { - t([ n.u, n.p ], r++, this); + var n = this.l; + while (n !== this.u) { + t([ n.p, n.H ], r++, this); n = n.m; } }; HashMap.prototype[Symbol.iterator] = function() { - return function() { - var t; - return __generator(this, (function(r) { - switch (r.label) { - case 0: - t = this.H; - r.label = 1; + var t; + return __generator(this, (function(r) { + switch (r.label) { + case 0: + t = this.l; + r.label = 1; - case 1: - if (!(t !== this.h)) return [ 3, 3 ]; - return [ 4, [ t.u, t.p ] ]; + case 1: + if (!(t !== this.u)) return [ 3, 3 ]; + return [ 4, [ t.p, t.H ] ]; - case 2: - r.sent(); - t = t.m; - return [ 3, 1 ]; + case 2: + r.sent(); + t = t.m; + return [ 3, 1 ]; - case 3: - return [ 2 ]; - } - })); - }.bind(this)(); + case 3: + return [ 2 ]; + } + })); }; return HashMap; }(HashContainer); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashSet.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashSet.js index df0565855f5419..3e106fdba7604d 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashSet.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashSet.js @@ -19,7 +19,7 @@ var __extends = this && this.t || function() { }; }(); -var __generator = this && this.i || function(t, r) { +var __generator = this && this.h || function(t, r) { var e = { label: 0, sent: function() { @@ -122,16 +122,16 @@ var HashSetIterator = function(t) { } Object.defineProperty(HashSetIterator.prototype, "pointer", { get: function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } - return this.o.u; + return this.o.p; }, enumerable: false, configurable: true }); HashSetIterator.prototype.copy = function() { - return new HashSetIterator(this.o, this.h, this.container, this.iteratorType); + return new HashSetIterator(this.o, this.u, this.container, this.iteratorType); }; return HashSetIterator; }(HashContainerIterator); @@ -150,71 +150,69 @@ var HashSet = function(t) { return e; } HashSet.prototype.begin = function() { - return new HashSetIterator(this.H, this.h, this); + return new HashSetIterator(this.l, this.u, this); }; HashSet.prototype.end = function() { - return new HashSetIterator(this.h, this.h, this); + return new HashSetIterator(this.u, this.u, this); }; HashSet.prototype.rBegin = function() { - return new HashSetIterator(this.l, this.h, this, 1); + return new HashSetIterator(this.M, this.u, this, 1); }; HashSet.prototype.rEnd = function() { - return new HashSetIterator(this.h, this.h, this, 1); + return new HashSetIterator(this.u, this.u, this, 1); }; HashSet.prototype.front = function() { - return this.H.u; + return this.l.p; }; HashSet.prototype.back = function() { - return this.l.u; + return this.M.p; }; HashSet.prototype.insert = function(t, r) { return this.v(t, undefined, r); }; HashSet.prototype.getElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - var r = this.H; + var r = this.l; while (t--) { r = r.m; } - return r.u; + return r.p; }; HashSet.prototype.find = function(t, r) { var e = this.g(t, r); - return new HashSetIterator(e, this.h, this); + return new HashSetIterator(e, this.u, this); }; HashSet.prototype.forEach = function(t) { var r = 0; - var e = this.H; - while (e !== this.h) { - t(e.u, r++, this); + var e = this.l; + while (e !== this.u) { + t(e.p, r++, this); e = e.m; } }; HashSet.prototype[Symbol.iterator] = function() { - return function() { - var t; - return __generator(this, (function(r) { - switch (r.label) { - case 0: - t = this.H; - r.label = 1; + var t; + return __generator(this, (function(r) { + switch (r.label) { + case 0: + t = this.l; + r.label = 1; - case 1: - if (!(t !== this.h)) return [ 3, 3 ]; - return [ 4, t.u ]; + case 1: + if (!(t !== this.u)) return [ 3, 3 ]; + return [ 4, t.p ]; - case 2: - r.sent(); - t = t.m; - return [ 3, 1 ]; + case 2: + r.sent(); + t = t.m; + return [ 3, 1 ]; - case 3: - return [ 2 ]; - } - })); - }.bind(this)(); + case 3: + return [ 2 ]; + } + })); }; return HashSet; }(HashContainer); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/PriorityQueue.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/PriorityQueue.js index 54e5f492dfdd02..03355ad71a62de 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/PriorityQueue.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/PriorityQueue.js @@ -19,7 +19,7 @@ var __extends = this && this.t || function() { }; }(); -var __read = this && this.q || function(i, r) { +var __read = this && this.P || function(i, r) { var t = typeof Symbol === "function" && i[Symbol.iterator]; if (!t) return i; var e = t.call(i), n, u = [], s; @@ -39,7 +39,7 @@ var __read = this && this.q || function(i, r) { return u; }; -var __spreadArray = this && this.D || function(i, r, t) { +var __spreadArray = this && this.A || function(i, r, t) { if (t || arguments.length === 2) for (var e = 0, n = r.length, u; e < n; e++) { if (u || !(e in r)) { if (!u) u = Array.prototype.slice.call(r, 0, e); @@ -68,101 +68,101 @@ var PriorityQueue = function(i) { e = true; } var n = i.call(this) || this; - n.$ = t; + n.j = t; if (Array.isArray(r)) { - n.ii = e ? __spreadArray([], __read(r), false) : r; + n.B = e ? __spreadArray([], __read(r), false) : r; } else { - n.ii = []; + n.B = []; var u = n; r.forEach((function(i) { - u.ii.push(i); + u.B.push(i); })); } - n.M = n.ii.length; - var s = n.M >> 1; - for (var o = n.M - 1 >> 1; o >= 0; --o) { - n.ri(o, s); + n.i = n.B.length; + var s = n.i >> 1; + for (var o = n.i - 1 >> 1; o >= 0; --o) { + n.O(o, s); } return n; } - PriorityQueue.prototype.ti = function(i) { - var r = this.ii[i]; + PriorityQueue.prototype.S = function(i) { + var r = this.B[i]; while (i > 0) { var t = i - 1 >> 1; - var e = this.ii[t]; - if (this.$(e, r) <= 0) break; - this.ii[i] = e; + var e = this.B[t]; + if (this.j(e, r) <= 0) break; + this.B[i] = e; i = t; } - this.ii[i] = r; + this.B[i] = r; }; - PriorityQueue.prototype.ri = function(i, r) { - var t = this.ii[i]; + PriorityQueue.prototype.O = function(i, r) { + var t = this.B[i]; while (i < r) { var e = i << 1 | 1; var n = e + 1; - var u = this.ii[e]; - if (n < this.M && this.$(u, this.ii[n]) > 0) { + var u = this.B[e]; + if (n < this.i && this.j(u, this.B[n]) > 0) { e = n; - u = this.ii[n]; + u = this.B[n]; } - if (this.$(u, t) >= 0) break; - this.ii[i] = u; + if (this.j(u, t) >= 0) break; + this.B[i] = u; i = e; } - this.ii[i] = t; + this.B[i] = t; }; PriorityQueue.prototype.clear = function() { - this.M = 0; - this.ii.length = 0; + this.i = 0; + this.B.length = 0; }; PriorityQueue.prototype.push = function(i) { - this.ii.push(i); - this.ti(this.M); - this.M += 1; + this.B.push(i); + this.S(this.i); + this.i += 1; }; PriorityQueue.prototype.pop = function() { - if (this.M === 0) return; - var i = this.ii[0]; - var r = this.ii.pop(); - this.M -= 1; - if (this.M) { - this.ii[0] = r; - this.ri(0, this.M >> 1); + if (this.i === 0) return; + var i = this.B[0]; + var r = this.B.pop(); + this.i -= 1; + if (this.i) { + this.B[0] = r; + this.O(0, this.i >> 1); } return i; }; PriorityQueue.prototype.top = function() { - return this.ii[0]; + return this.B[0]; }; PriorityQueue.prototype.find = function(i) { - return this.ii.indexOf(i) >= 0; + return this.B.indexOf(i) >= 0; }; PriorityQueue.prototype.remove = function(i) { - var r = this.ii.indexOf(i); + var r = this.B.indexOf(i); if (r < 0) return false; if (r === 0) { this.pop(); - } else if (r === this.M - 1) { - this.ii.pop(); - this.M -= 1; + } else if (r === this.i - 1) { + this.B.pop(); + this.i -= 1; } else { - this.ii.splice(r, 1, this.ii.pop()); - this.M -= 1; - this.ti(r); - this.ri(r, this.M >> 1); + this.B.splice(r, 1, this.B.pop()); + this.i -= 1; + this.S(r); + this.O(r, this.i >> 1); } return true; }; PriorityQueue.prototype.updateItem = function(i) { - var r = this.ii.indexOf(i); + var r = this.B.indexOf(i); if (r < 0) return false; - this.ti(r); - this.ri(r, this.M >> 1); + this.S(r); + this.O(r, this.i >> 1); return true; }; PriorityQueue.prototype.toArray = function() { - return __spreadArray([], __read(this.ii), false); + return __spreadArray([], __read(this.B), false); }; return PriorityQueue; }(Base); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Queue.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Queue.js index 9d8e965877de64..d3231653f75182 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Queue.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Queue.js @@ -28,8 +28,8 @@ var Queue = function(t) { i = []; } var n = t.call(this) || this; - n.A = 0; - n.tt = []; + n.C = 0; + n.T = []; var e = n; i.forEach((function(t) { e.push(t); @@ -37,30 +37,30 @@ var Queue = function(t) { return n; } Queue.prototype.clear = function() { - this.tt = []; - this.M = this.A = 0; + this.T = []; + this.i = this.C = 0; }; Queue.prototype.push = function(t) { - var i = this.tt.length; - if (this.A / i > .5 && this.A + this.M >= i && i > 4096) { - var n = this.M; + var i = this.T.length; + if (this.C / i > .5 && this.C + this.i >= i && i > 4096) { + var n = this.i; for (var e = 0; e < n; ++e) { - this.tt[e] = this.tt[this.A + e]; + this.T[e] = this.T[this.C + e]; } - this.A = 0; - this.tt[this.M] = t; - } else this.tt[this.A + this.M] = t; - return ++this.M; + this.C = 0; + this.T[this.i] = t; + } else this.T[this.C + this.i] = t; + return ++this.i; }; Queue.prototype.pop = function() { - if (this.M === 0) return; - var t = this.tt[this.A++]; - this.M -= 1; + if (this.i === 0) return; + var t = this.T[this.C++]; + this.i -= 1; return t; }; Queue.prototype.front = function() { - if (this.M === 0) return; - return this.tt[this.A]; + if (this.i === 0) return; + return this.T[this.C]; }; return Queue; }(Base); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Stack.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Stack.js index a7cd3bddc82c80..fde124f2b1a29a 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Stack.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Stack.js @@ -28,7 +28,7 @@ var Stack = function(t) { n = []; } var i = t.call(this) || this; - i.nt = []; + i.k = []; var r = i; n.forEach((function(t) { r.push(t); @@ -36,21 +36,21 @@ var Stack = function(t) { return i; } Stack.prototype.clear = function() { - this.M = 0; - this.nt = []; + this.i = 0; + this.k = []; }; Stack.prototype.push = function(t) { - this.nt.push(t); - this.M += 1; - return this.M; + this.k.push(t); + this.i += 1; + return this.i; }; Stack.prototype.pop = function() { - if (this.M === 0) return; - this.M -= 1; - return this.nt.pop(); + if (this.i === 0) return; + this.i -= 1; + return this.k.pop(); }; Stack.prototype.top = function() { - return this.nt[this.M - 1]; + return this.k[this.i - 1]; }; return Stack; }(Base); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Deque.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Deque.js index 7020e00efc7e3f..deb9ebadb0db26 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Deque.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Deque.js @@ -19,7 +19,7 @@ var __extends = this && this.t || function() { }; }(); -var __generator = this && this.i || function(t, i) { +var __generator = this && this.h || function(t, i) { var r = { label: 0, sent: function() { @@ -109,7 +109,7 @@ var __generator = this && this.i || function(t, i) { } }; -var __read = this && this.q || function(t, i) { +var __read = this && this.P || function(t, i) { var r = typeof Symbol === "function" && t[Symbol.iterator]; if (!r) return t; var e = r.call(t), s, h = [], n; @@ -129,7 +129,7 @@ var __read = this && this.q || function(t, i) { return h; }; -var __spreadArray = this && this.D || function(t, i, r) { +var __spreadArray = this && this.A || function(t, i, r) { if (r || arguments.length === 2) for (var e = 0, s = i.length, h; e < s; e++) { if (h || !(e in i)) { if (!h) h = Array.prototype.slice.call(i, 0, e); @@ -143,6 +143,8 @@ import SequentialContainer from "./Base"; import { RandomIterator } from "./Base/RandomIterator"; +import * as Math from "../../utils/math"; + var DequeIterator = function(t) { __extends(DequeIterator, t); function DequeIterator(i, r, e) { @@ -166,235 +168,243 @@ var Deque = function(t) { r = 1 << 12; } var e = t.call(this) || this; - e.A = 0; - e.S = 0; - e.R = 0; - e.k = 0; e.C = 0; - e.j = []; + e.q = 0; + e.D = 0; + e.R = 0; + e.N = 0; + e.G = []; var s = function() { if (typeof i.length === "number") return i.length; if (typeof i.size === "number") return i.size; if (typeof i.size === "function") return i.size(); throw new TypeError("Cannot get the length or size of the container"); }(); - e.B = r; - e.C = Math.max(Math.ceil(s / e.B), 1); - for (var h = 0; h < e.C; ++h) { - e.j.push(new Array(e.B)); - } - var n = Math.ceil(s / e.B); - e.A = e.R = (e.C >> 1) - (n >> 1); - e.S = e.k = e.B - s % e.B >> 1; + e.F = r; + e.N = Math.ceil(s, e.F) || 1; + for (var h = 0; h < e.N; ++h) { + e.G.push(new Array(e.F)); + } + var n = Math.ceil(s, e.F); + e.C = e.D = (e.N >> 1) - (n >> 1); + e.q = e.R = e.F - s % e.F >> 1; var u = e; i.forEach((function(t) { u.pushBack(t); })); return e; } - Deque.prototype.O = function() { - var t = []; - var i = Math.max(this.C >> 1, 1); - for (var r = 0; r < i; ++r) { - t[r] = new Array(this.B); + Deque.prototype.J = function(t) { + var i = []; + var r = t || this.N >> 1 || 1; + for (var e = 0; e < r; ++e) { + i[e] = new Array(this.F); } - for (var r = this.A; r < this.C; ++r) { - t[t.length] = this.j[r]; + for (var e = this.C; e < this.N; ++e) { + i[i.length] = this.G[e]; } - for (var r = 0; r < this.R; ++r) { - t[t.length] = this.j[r]; + for (var e = 0; e < this.D; ++e) { + i[i.length] = this.G[e]; } - t[t.length] = __spreadArray([], __read(this.j[this.R]), false); - this.A = i; - this.R = t.length - 1; - for (var r = 0; r < i; ++r) { - t[t.length] = new Array(this.B); + i[i.length] = __spreadArray([], __read(this.G[this.D]), false); + this.C = r; + this.D = i.length - 1; + for (var e = 0; e < r; ++e) { + i[i.length] = new Array(this.F); } - this.j = t; - this.C = t.length; + this.G = i; + this.N = i.length; }; - Deque.prototype.T = function(t) { - var i = this.S + t + 1; - var r = i % this.B; - var e = r - 1; - var s = this.A + (i - r) / this.B; - if (r === 0) s -= 1; - s %= this.C; - if (e < 0) e += this.B; + Deque.prototype.K = function(t) { + var i, r; + var e = this.q + t; + i = this.C + Math.floor(e / this.F); + if (i >= this.N) { + i -= this.N; + } + r = (e + 1) % this.F - 1; + if (r < 0) { + r = this.F - 1; + } return { - curNodeBucketIndex: s, - curNodePointerIndex: e + curNodeBucketIndex: i, + curNodePointerIndex: r }; }; Deque.prototype.clear = function() { - this.j = [ new Array(this.B) ]; - this.C = 1; - this.A = this.R = this.M = 0; - this.S = this.k = this.B >> 1; + this.G = [ new Array(this.F) ]; + this.N = 1; + this.C = this.D = this.i = 0; + this.q = this.R = this.F >> 1; }; Deque.prototype.begin = function() { return new DequeIterator(0, this); }; Deque.prototype.end = function() { - return new DequeIterator(this.M, this); + return new DequeIterator(this.i, this); }; Deque.prototype.rBegin = function() { - return new DequeIterator(this.M - 1, this, 1); + return new DequeIterator(this.i - 1, this, 1); }; Deque.prototype.rEnd = function() { return new DequeIterator(-1, this, 1); }; Deque.prototype.front = function() { - if (this.M === 0) return; - return this.j[this.A][this.S]; + if (this.i === 0) return; + return this.G[this.C][this.q]; }; Deque.prototype.back = function() { - if (this.M === 0) return; - return this.j[this.R][this.k]; + if (this.i === 0) return; + return this.G[this.D][this.R]; }; Deque.prototype.pushBack = function(t) { - if (this.M) { - if (this.k < this.B - 1) { - this.k += 1; - } else if (this.R < this.C - 1) { + if (this.i) { + if (this.R < this.F - 1) { this.R += 1; - this.k = 0; + } else if (this.D < this.N - 1) { + this.D += 1; + this.R = 0; } else { + this.D = 0; this.R = 0; - this.k = 0; } - if (this.R === this.A && this.k === this.S) this.O(); + if (this.D === this.C && this.R === this.q) this.J(); } - this.M += 1; - this.j[this.R][this.k] = t; - return this.M; + this.i += 1; + this.G[this.D][this.R] = t; + return this.i; }; Deque.prototype.popBack = function() { - if (this.M === 0) return; - var t = this.j[this.R][this.k]; - if (this.M !== 1) { - if (this.k > 0) { - this.k -= 1; - } else if (this.R > 0) { + if (this.i === 0) return; + var t = this.G[this.D][this.R]; + if (this.i !== 1) { + if (this.R > 0) { this.R -= 1; - this.k = this.B - 1; + } else if (this.D > 0) { + this.D -= 1; + this.R = this.F - 1; } else { - this.R = this.C - 1; - this.k = this.B - 1; + this.D = this.N - 1; + this.R = this.F - 1; } } - this.M -= 1; + this.i -= 1; return t; }; Deque.prototype.pushFront = function(t) { - if (this.M) { - if (this.S > 0) { - this.S -= 1; - } else if (this.A > 0) { - this.A -= 1; - this.S = this.B - 1; + if (this.i) { + if (this.q > 0) { + this.q -= 1; + } else if (this.C > 0) { + this.C -= 1; + this.q = this.F - 1; } else { - this.A = this.C - 1; - this.S = this.B - 1; + this.C = this.N - 1; + this.q = this.F - 1; } - if (this.A === this.R && this.S === this.k) this.O(); + if (this.C === this.D && this.q === this.R) this.J(); } - this.M += 1; - this.j[this.A][this.S] = t; - return this.M; + this.i += 1; + this.G[this.C][this.q] = t; + return this.i; }; Deque.prototype.popFront = function() { - if (this.M === 0) return; - var t = this.j[this.A][this.S]; - if (this.M !== 1) { - if (this.S < this.B - 1) { - this.S += 1; - } else if (this.A < this.C - 1) { - this.A += 1; - this.S = 0; + if (this.i === 0) return; + var t = this.G[this.C][this.q]; + if (this.i !== 1) { + if (this.q < this.F - 1) { + this.q += 1; + } else if (this.C < this.N - 1) { + this.C += 1; + this.q = 0; } else { - this.A = 0; - this.S = 0; + this.C = 0; + this.q = 0; } } - this.M -= 1; + this.i -= 1; return t; }; Deque.prototype.getElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - var i = this.T(t), r = i.curNodeBucketIndex, e = i.curNodePointerIndex; - return this.j[r][e]; + var i = this.K(t), r = i.curNodeBucketIndex, e = i.curNodePointerIndex; + return this.G[r][e]; }; Deque.prototype.setElementByPos = function(t, i) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - var r = this.T(t), e = r.curNodeBucketIndex, s = r.curNodePointerIndex; - this.j[e][s] = i; + var r = this.K(t), e = r.curNodeBucketIndex, s = r.curNodePointerIndex; + this.G[e][s] = i; }; Deque.prototype.insert = function(t, i, r) { if (r === void 0) { r = 1; } - if (t < 0 || t > this.M) { + var e = this.i; + if (t < 0 || t > e) { throw new RangeError; } if (t === 0) { while (r--) this.pushFront(i); - } else if (t === this.M) { + } else if (t === this.i) { while (r--) this.pushBack(i); } else { - var e = []; - for (var s = t; s < this.M; ++s) { - e.push(this.getElementByPos(s)); + var s = []; + for (var h = t; h < this.i; ++h) { + s.push(this.getElementByPos(h)); } this.cut(t - 1); - for (var s = 0; s < r; ++s) this.pushBack(i); - for (var s = 0; s < e.length; ++s) this.pushBack(e[s]); + for (var h = 0; h < r; ++h) this.pushBack(i); + for (var h = 0; h < s.length; ++h) this.pushBack(s[h]); } - return this.M; + return this.i; }; Deque.prototype.cut = function(t) { if (t < 0) { this.clear(); return 0; } - var i = this.T(t), r = i.curNodeBucketIndex, e = i.curNodePointerIndex; - this.R = r; - this.k = e; - this.M = t + 1; - return this.M; + var i = this.K(t), r = i.curNodeBucketIndex, e = i.curNodePointerIndex; + this.D = r; + this.R = e; + this.i = t + 1; + return this.i; }; Deque.prototype.eraseElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - if (t === 0) this.popFront(); else if (t === this.M - 1) this.popBack(); else { - var i = []; - for (var r = t + 1; r < this.M; ++r) { - i.push(this.getElementByPos(r)); + if (t === 0) this.popFront(); else if (t === this.i - 1) this.popBack(); else { + var i = this.i - 1; + var r = this.K(t), e = r.curNodeBucketIndex, s = r.curNodePointerIndex; + for (var h = t; h < i; ++h) { + var n = this.K(t + 1), u = n.curNodeBucketIndex, o = n.curNodePointerIndex; + this.G[e][s] = this.G[u][o]; + e = u; + s = o; } - this.cut(t); this.popBack(); - var e = this; - i.forEach((function(t) { - e.pushBack(t); - })); } - return this.M; + return this.i; }; Deque.prototype.eraseElementByValue = function(t) { - if (this.M === 0) return 0; - var i = []; - for (var r = 0; r < this.M; ++r) { - var e = this.getElementByPos(r); - if (e !== t) i.push(e); + var i = this.i; + if (i === 0) return 0; + var r = 0; + var e = 0; + while (r < i) { + var s = this.getElementByPos(r); + if (s !== t) { + this.setElementByPos(e, s); + e += 1; + } + r += 1; } - var s = i.length; - for (var r = 0; r < s; ++r) this.setElementByPos(r, i[r]); - return this.cut(s - 1); + this.cut(e - 1); + return this.i; }; Deque.prototype.eraseElementByIterator = function(t) { var i = t.o; @@ -403,7 +413,7 @@ var Deque = function(t) { return t; }; Deque.prototype.find = function(t) { - for (var i = 0; i < this.M; ++i) { + for (var i = 0; i < this.i; ++i) { if (this.getElementByPos(i) === t) { return new DequeIterator(i, this); } @@ -411,85 +421,91 @@ var Deque = function(t) { return this.end(); }; Deque.prototype.reverse = function() { - var t = 0; - var i = this.M - 1; - while (t < i) { - var r = this.getElementByPos(t); - this.setElementByPos(t, this.getElementByPos(i)); - this.setElementByPos(i, r); - t += 1; - i -= 1; - } + this.G.reverse().forEach((function(t) { + t.reverse(); + })); + var t = this, i = t.C, r = t.D, e = t.q, s = t.R; + this.C = this.N - r - 1; + this.D = this.N - i - 1; + this.q = this.F - s - 1; + this.R = this.F - e - 1; + return this; }; Deque.prototype.unique = function() { - if (this.M <= 1) { - return this.M; + if (this.i <= 1) { + return this.i; } var t = 1; var i = this.getElementByPos(0); - for (var r = 1; r < this.M; ++r) { + for (var r = 1; r < this.i; ++r) { var e = this.getElementByPos(r); if (e !== i) { i = e; this.setElementByPos(t++, e); } } - while (this.M > t) this.popBack(); - return this.M; + this.cut(t - 1); + return this.i; }; Deque.prototype.sort = function(t) { var i = []; - for (var r = 0; r < this.M; ++r) { + for (var r = 0; r < this.i; ++r) { i.push(this.getElementByPos(r)); } i.sort(t); - for (var r = 0; r < this.M; ++r) this.setElementByPos(r, i[r]); + for (var r = 0; r < this.i; ++r) { + this.setElementByPos(r, i[r]); + } + return this; }; Deque.prototype.shrinkToFit = function() { - if (this.M === 0) return; + if (this.i === 0) return; var t = []; - this.forEach((function(i) { - t.push(i); - })); - this.C = Math.max(Math.ceil(this.M / this.B), 1); - this.M = this.A = this.R = this.S = this.k = 0; - this.j = []; - for (var i = 0; i < this.C; ++i) { - this.j.push(new Array(this.B)); + if (this.C === this.D) return; else if (this.C < this.D) { + for (var i = this.C; i <= this.D; ++i) { + t.push(this.G[i]); + } + } else { + for (var i = this.C; i < this.N; ++i) { + t.push(this.G[i]); + } + for (var i = 0; i <= this.D; ++i) { + t.push(this.G[i]); + } } - for (var i = 0; i < t.length; ++i) this.pushBack(t[i]); + this.C = 0; + this.D = t.length - 1; + this.G = t; }; Deque.prototype.forEach = function(t) { - for (var i = 0; i < this.M; ++i) { + for (var i = 0; i < this.i; ++i) { t(this.getElementByPos(i), i, this); } }; Deque.prototype[Symbol.iterator] = function() { - return function() { - var t; - return __generator(this, (function(i) { - switch (i.label) { - case 0: - t = 0; - i.label = 1; + var t; + return __generator(this, (function(i) { + switch (i.label) { + case 0: + t = 0; + i.label = 1; - case 1: - if (!(t < this.M)) return [ 3, 4 ]; - return [ 4, this.getElementByPos(t) ]; + case 1: + if (!(t < this.i)) return [ 3, 4 ]; + return [ 4, this.getElementByPos(t) ]; - case 2: - i.sent(); - i.label = 3; + case 2: + i.sent(); + i.label = 3; - case 3: - ++t; - return [ 3, 1 ]; + case 3: + ++t; + return [ 3, 1 ]; - case 4: - return [ 2 ]; - } - })); - }.bind(this)(); + case 4: + return [ 2 ]; + } + })); }; return Deque; }(SequentialContainer); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/LinkList.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/LinkList.js index 17ce3e8a5511d9..787a37e0c9a5ab 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/LinkList.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/LinkList.js @@ -19,7 +19,7 @@ var __extends = this && this.t || function() { }; }(); -var __generator = this && this.i || function(t, i) { +var __generator = this && this.h || function(t, i) { var r = { label: 0, sent: function() { @@ -120,18 +120,18 @@ var LinkListIterator = function(t) { function LinkListIterator(i, r, n, s) { var e = t.call(this, s) || this; e.o = i; - e.h = r; + e.u = r; e.container = n; if (e.iteratorType === 0) { e.pre = function() { - if (this.o.L === this.h) { + if (this.o.L === this.u) { throwIteratorAccessError(); } this.o = this.o.L; return this; }; e.next = function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } this.o = this.o.m; @@ -139,14 +139,14 @@ var LinkListIterator = function(t) { }; } else { e.pre = function() { - if (this.o.m === this.h) { + if (this.o.m === this.u) { throwIteratorAccessError(); } this.o = this.o.m; return this; }; e.next = function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } this.o = this.o.L; @@ -157,22 +157,22 @@ var LinkListIterator = function(t) { } Object.defineProperty(LinkListIterator.prototype, "pointer", { get: function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } - return this.o.p; + return this.o.H; }, set: function(t) { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } - this.o.p = t; + this.o.H = t; }, enumerable: false, configurable: true }); LinkListIterator.prototype.copy = function() { - return new LinkListIterator(this.o, this.h, this.container, this.iteratorType); + return new LinkListIterator(this.o, this.u, this.container, this.iteratorType); }; return LinkListIterator; }(ContainerIterator); @@ -184,157 +184,157 @@ var LinkList = function(t) { i = []; } var r = t.call(this) || this; - r.h = {}; - r.H = r.l = r.h.L = r.h.m = r.h; + r.u = {}; + r.l = r.M = r.u.L = r.u.m = r.u; var n = r; i.forEach((function(t) { n.pushBack(t); })); return r; } - LinkList.prototype.G = function(t) { + LinkList.prototype.U = function(t) { var i = t.L, r = t.m; i.m = r; r.L = i; - if (t === this.H) { - this.H = r; - } if (t === this.l) { - this.l = i; + this.l = r; + } + if (t === this.M) { + this.M = i; } - this.M -= 1; + this.i -= 1; }; - LinkList.prototype.F = function(t, i) { + LinkList.prototype.V = function(t, i) { var r = i.m; var n = { - p: t, + H: t, L: i, m: r }; i.m = n; r.L = n; - if (i === this.h) { - this.H = n; - } - if (r === this.h) { + if (i === this.u) { this.l = n; } - this.M += 1; + if (r === this.u) { + this.M = n; + } + this.i += 1; }; LinkList.prototype.clear = function() { - this.M = 0; - this.H = this.l = this.h.L = this.h.m = this.h; + this.i = 0; + this.l = this.M = this.u.L = this.u.m = this.u; }; LinkList.prototype.begin = function() { - return new LinkListIterator(this.H, this.h, this); + return new LinkListIterator(this.l, this.u, this); }; LinkList.prototype.end = function() { - return new LinkListIterator(this.h, this.h, this); + return new LinkListIterator(this.u, this.u, this); }; LinkList.prototype.rBegin = function() { - return new LinkListIterator(this.l, this.h, this, 1); + return new LinkListIterator(this.M, this.u, this, 1); }; LinkList.prototype.rEnd = function() { - return new LinkListIterator(this.h, this.h, this, 1); + return new LinkListIterator(this.u, this.u, this, 1); }; LinkList.prototype.front = function() { - return this.H.p; + return this.l.H; }; LinkList.prototype.back = function() { - return this.l.p; + return this.M.H; }; LinkList.prototype.getElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - var i = this.H; + var i = this.l; while (t--) { i = i.m; } - return i.p; + return i.H; }; LinkList.prototype.eraseElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - var i = this.H; + var i = this.l; while (t--) { i = i.m; } - this.G(i); - return this.M; + this.U(i); + return this.i; }; LinkList.prototype.eraseElementByValue = function(t) { - var i = this.H; - while (i !== this.h) { - if (i.p === t) { - this.G(i); + var i = this.l; + while (i !== this.u) { + if (i.H === t) { + this.U(i); } i = i.m; } - return this.M; + return this.i; }; LinkList.prototype.eraseElementByIterator = function(t) { var i = t.o; - if (i === this.h) { + if (i === this.u) { throwIteratorAccessError(); } t = t.next(); - this.G(i); + this.U(i); return t; }; LinkList.prototype.pushBack = function(t) { - this.F(t, this.l); - return this.M; + this.V(t, this.M); + return this.i; }; LinkList.prototype.popBack = function() { - if (this.M === 0) return; - var t = this.l.p; - this.G(this.l); + if (this.i === 0) return; + var t = this.M.H; + this.U(this.M); return t; }; LinkList.prototype.pushFront = function(t) { - this.F(t, this.h); - return this.M; + this.V(t, this.u); + return this.i; }; LinkList.prototype.popFront = function() { - if (this.M === 0) return; - var t = this.H.p; - this.G(this.H); + if (this.i === 0) return; + var t = this.l.H; + this.U(this.l); return t; }; LinkList.prototype.setElementByPos = function(t, i) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - var r = this.H; + var r = this.l; while (t--) { r = r.m; } - r.p = i; + r.H = i; }; LinkList.prototype.insert = function(t, i, r) { if (r === void 0) { r = 1; } - if (t < 0 || t > this.M) { + if (t < 0 || t > this.i) { throw new RangeError; } - if (r <= 0) return this.M; + if (r <= 0) return this.i; if (t === 0) { while (r--) this.pushFront(i); - } else if (t === this.M) { + } else if (t === this.i) { while (r--) this.pushBack(i); } else { - var n = this.H; + var n = this.l; for (var s = 1; s < t; ++s) { n = n.m; } var e = n.m; - this.M += r; + this.i += r; while (r--) { n.m = { - p: i, + H: i, L: n }; n.m.L = n; @@ -343,111 +343,115 @@ var LinkList = function(t) { n.m = e; e.L = n; } - return this.M; + return this.i; }; LinkList.prototype.find = function(t) { - var i = this.H; - while (i !== this.h) { - if (i.p === t) { - return new LinkListIterator(i, this.h, this); + var i = this.l; + while (i !== this.u) { + if (i.H === t) { + return new LinkListIterator(i, this.u, this); } i = i.m; } return this.end(); }; LinkList.prototype.reverse = function() { - if (this.M <= 1) return; - var t = this.H; - var i = this.l; + if (this.i <= 1) { + return this; + } + var t = this.l; + var i = this.M; var r = 0; - while (r << 1 < this.M) { - var n = t.p; - t.p = i.p; - i.p = n; + while (r << 1 < this.i) { + var n = t.H; + t.H = i.H; + i.H = n; t = t.m; i = i.L; r += 1; } + return this; }; LinkList.prototype.unique = function() { - if (this.M <= 1) { - return this.M; + if (this.i <= 1) { + return this.i; } - var t = this.H; - while (t !== this.h) { + var t = this.l; + while (t !== this.u) { var i = t; - while (i.m !== this.h && i.p === i.m.p) { + while (i.m !== this.u && i.H === i.m.H) { i = i.m; - this.M -= 1; + this.i -= 1; } t.m = i.m; t.m.L = t; t = t.m; } - return this.M; + return this.i; }; LinkList.prototype.sort = function(t) { - if (this.M <= 1) return; + if (this.i <= 1) { + return this; + } var i = []; this.forEach((function(t) { i.push(t); })); i.sort(t); - var r = this.H; + var r = this.l; i.forEach((function(t) { - r.p = t; + r.H = t; r = r.m; })); + return this; }; LinkList.prototype.merge = function(t) { var i = this; - if (this.M === 0) { + if (this.i === 0) { t.forEach((function(t) { i.pushBack(t); })); } else { - var r = this.H; + var r = this.l; t.forEach((function(t) { - while (r !== i.h && r.p <= t) { + while (r !== i.u && r.H <= t) { r = r.m; } - i.F(t, r.L); + i.V(t, r.L); })); } - return this.M; + return this.i; }; LinkList.prototype.forEach = function(t) { - var i = this.H; + var i = this.l; var r = 0; - while (i !== this.h) { - t(i.p, r++, this); + while (i !== this.u) { + t(i.H, r++, this); i = i.m; } }; LinkList.prototype[Symbol.iterator] = function() { - return function() { - var t; - return __generator(this, (function(i) { - switch (i.label) { - case 0: - if (this.M === 0) return [ 2 ]; - t = this.H; - i.label = 1; + var t; + return __generator(this, (function(i) { + switch (i.label) { + case 0: + if (this.i === 0) return [ 2 ]; + t = this.l; + i.label = 1; - case 1: - if (!(t !== this.h)) return [ 3, 3 ]; - return [ 4, t.p ]; + case 1: + if (!(t !== this.u)) return [ 3, 3 ]; + return [ 4, t.H ]; - case 2: - i.sent(); - t = t.m; - return [ 3, 1 ]; + case 2: + i.sent(); + t = t.m; + return [ 3, 1 ]; - case 3: - return [ 2 ]; - } - })); - }.bind(this)(); + case 3: + return [ 2 ]; + } + })); }; return LinkList; }(SequentialContainer); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Vector.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Vector.js index deaa34270622d8..fc8f802d0b2ba2 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Vector.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Vector.js @@ -19,7 +19,7 @@ var __extends = this && this.t || function() { }; }(); -var __generator = this && this.i || function(t, r) { +var __generator = this && this.h || function(t, r) { var e = { label: 0, sent: function() { @@ -28,108 +28,108 @@ var __generator = this && this.i || function(t, r) { }, trys: [], ops: [] - }, n, i, o, u; - return u = { + }, n, i, o, s; + return s = { next: verb(0), throw: verb(1), return: verb(2) - }, typeof Symbol === "function" && (u[Symbol.iterator] = function() { + }, typeof Symbol === "function" && (s[Symbol.iterator] = function() { return this; - }), u; + }), s; function verb(t) { return function(r) { return step([ t, r ]); }; } - function step(u) { + function step(s) { if (n) throw new TypeError("Generator is already executing."); while (e) try { - if (n = 1, i && (o = u[0] & 2 ? i["return"] : u[0] ? i["throw"] || ((o = i["return"]) && o.call(i), - 0) : i.next) && !(o = o.call(i, u[1])).done) return o; - if (i = 0, o) u = [ u[0] & 2, o.value ]; - switch (u[0]) { + if (n = 1, i && (o = s[0] & 2 ? i["return"] : s[0] ? i["throw"] || ((o = i["return"]) && o.call(i), + 0) : i.next) && !(o = o.call(i, s[1])).done) return o; + if (i = 0, o) s = [ s[0] & 2, o.value ]; + switch (s[0]) { case 0: case 1: - o = u; + o = s; break; case 4: e.label++; return { - value: u[1], + value: s[1], done: false }; case 5: e.label++; - i = u[1]; - u = [ 0 ]; + i = s[1]; + s = [ 0 ]; continue; case 7: - u = e.ops.pop(); + s = e.ops.pop(); e.trys.pop(); continue; default: - if (!(o = e.trys, o = o.length > 0 && o[o.length - 1]) && (u[0] === 6 || u[0] === 2)) { + if (!(o = e.trys, o = o.length > 0 && o[o.length - 1]) && (s[0] === 6 || s[0] === 2)) { e = 0; continue; } - if (u[0] === 3 && (!o || u[1] > o[0] && u[1] < o[3])) { - e.label = u[1]; + if (s[0] === 3 && (!o || s[1] > o[0] && s[1] < o[3])) { + e.label = s[1]; break; } - if (u[0] === 6 && e.label < o[1]) { + if (s[0] === 6 && e.label < o[1]) { e.label = o[1]; - o = u; + o = s; break; } if (o && e.label < o[2]) { e.label = o[2]; - e.ops.push(u); + e.ops.push(s); break; } if (o[2]) e.ops.pop(); e.trys.pop(); continue; } - u = r.call(t, e); + s = r.call(t, e); } catch (t) { - u = [ 6, t ]; + s = [ 6, t ]; i = 0; } finally { n = o = 0; } - if (u[0] & 5) throw u[1]; + if (s[0] & 5) throw s[1]; return { - value: u[0] ? u[1] : void 0, + value: s[0] ? s[1] : void 0, done: true }; } }; -var __read = this && this.q || function(t, r) { +var __read = this && this.P || function(t, r) { var e = typeof Symbol === "function" && t[Symbol.iterator]; if (!e) return t; - var n = e.call(t), i, o = [], u; + var n = e.call(t), i, o = [], s; try { while ((r === void 0 || r-- > 0) && !(i = n.next()).done) o.push(i.value); } catch (t) { - u = { + s = { error: t }; } finally { try { if (i && !i.done && (e = n["return"])) e.call(n); } finally { - if (u) throw u.error; + if (s) throw s.error; } } return o; }; -var __spreadArray = this && this.D || function(t, r, e) { +var __spreadArray = this && this.A || function(t, r, e) { if (e || arguments.length === 2) for (var n = 0, i = r.length, o; n < i; n++) { if (o || !(n in r)) { if (!o) o = Array.prototype.slice.call(r, 0, n); @@ -139,7 +139,7 @@ var __spreadArray = this && this.D || function(t, r, e) { return t.concat(o || Array.prototype.slice.call(r)); }; -var __values = this && this.V || function(t) { +var __values = this && this.W || function(t) { var r = typeof Symbol === "function" && Symbol.iterator, e = r && t[r], n = 0; if (e) return e.call(t); if (t && typeof t.length === "number") return { @@ -182,10 +182,10 @@ var Vector = function(t) { } var n = t.call(this) || this; if (Array.isArray(r)) { - n.J = e ? __spreadArray([], __read(r), false) : r; - n.M = r.length; + n.X = e ? __spreadArray([], __read(r), false) : r; + n.i = r.length; } else { - n.J = []; + n.X = []; var i = n; r.forEach((function(t) { i.pushBack(t); @@ -194,50 +194,50 @@ var Vector = function(t) { return n; } Vector.prototype.clear = function() { - this.M = 0; - this.J.length = 0; + this.i = 0; + this.X.length = 0; }; Vector.prototype.begin = function() { return new VectorIterator(0, this); }; Vector.prototype.end = function() { - return new VectorIterator(this.M, this); + return new VectorIterator(this.i, this); }; Vector.prototype.rBegin = function() { - return new VectorIterator(this.M - 1, this, 1); + return new VectorIterator(this.i - 1, this, 1); }; Vector.prototype.rEnd = function() { return new VectorIterator(-1, this, 1); }; Vector.prototype.front = function() { - return this.J[0]; + return this.X[0]; }; Vector.prototype.back = function() { - return this.J[this.M - 1]; + return this.X[this.i - 1]; }; Vector.prototype.getElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - return this.J[t]; + return this.X[t]; }; Vector.prototype.eraseElementByPos = function(t) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - this.J.splice(t, 1); - this.M -= 1; - return this.M; + this.X.splice(t, 1); + this.i -= 1; + return this.i; }; Vector.prototype.eraseElementByValue = function(t) { var r = 0; - for (var e = 0; e < this.M; ++e) { - if (this.J[e] !== t) { - this.J[r++] = this.J[e]; + for (var e = 0; e < this.i; ++e) { + if (this.X[e] !== t) { + this.X[r++] = this.X[e]; } } - this.M = this.J.length = r; - return this.M; + this.i = this.X.length = r; + return this.i; }; Vector.prototype.eraseElementByIterator = function(t) { var r = t.o; @@ -246,75 +246,75 @@ var Vector = function(t) { return t; }; Vector.prototype.pushBack = function(t) { - this.J.push(t); - this.M += 1; - return this.M; + this.X.push(t); + this.i += 1; + return this.i; }; Vector.prototype.popBack = function() { - if (this.M === 0) return; - this.M -= 1; - return this.J.pop(); + if (this.i === 0) return; + this.i -= 1; + return this.X.pop(); }; Vector.prototype.setElementByPos = function(t, r) { - if (t < 0 || t > this.M - 1) { + if (t < 0 || t > this.i - 1) { throw new RangeError; } - this.J[t] = r; + this.X[t] = r; }; Vector.prototype.insert = function(t, r, e) { var n; if (e === void 0) { e = 1; } - if (t < 0 || t > this.M) { + if (t < 0 || t > this.i) { throw new RangeError; } - (n = this.J).splice.apply(n, __spreadArray([ t, 0 ], __read(new Array(e).fill(r)), false)); - this.M += e; - return this.M; + (n = this.X).splice.apply(n, __spreadArray([ t, 0 ], __read(new Array(e).fill(r)), false)); + this.i += e; + return this.i; }; Vector.prototype.find = function(t) { - for (var r = 0; r < this.M; ++r) { - if (this.J[r] === t) { + for (var r = 0; r < this.i; ++r) { + if (this.X[r] === t) { return new VectorIterator(r, this); } } return this.end(); }; Vector.prototype.reverse = function() { - this.J.reverse(); + this.X.reverse(); + return this; }; Vector.prototype.unique = function() { var t = 1; - for (var r = 1; r < this.M; ++r) { - if (this.J[r] !== this.J[r - 1]) { - this.J[t++] = this.J[r]; + for (var r = 1; r < this.i; ++r) { + if (this.X[r] !== this.X[r - 1]) { + this.X[t++] = this.X[r]; } } - this.M = this.J.length = t; - return this.M; + this.i = this.X.length = t; + return this.i; }; Vector.prototype.sort = function(t) { - this.J.sort(t); + this.X.sort(t); + return this; }; Vector.prototype.forEach = function(t) { - for (var r = 0; r < this.M; ++r) { - t(this.J[r], r, this); + for (var r = 0; r < this.i; ++r) { + t(this.X[r], r, this); } }; Vector.prototype[Symbol.iterator] = function() { - return function() { - return __generator(this, (function(t) { - switch (t.label) { - case 0: - return [ 5, __values(this.J) ]; + return __generator(this, (function(t) { + switch (t.label) { + case 0: + return [ 5, __values(this.X) ]; - case 1: - t.sent(); - return [ 2 ]; - } - })); - }.bind(this)(); + case 1: + t.sent(); + return [ 2 ]; + } + })); }; return Vector; }(SequentialContainer); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeIterator.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeIterator.js index 3e4f5c7e123282..12fce60a90a619 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeIterator.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeIterator.js @@ -28,17 +28,17 @@ var TreeIterator = function(r) { function TreeIterator(t, e, i) { var n = r.call(this, i) || this; n.o = t; - n.h = e; + n.u = e; if (n.iteratorType === 0) { n.pre = function() { - if (this.o === this.h.K) { + if (this.o === this.u.Y) { throwIteratorAccessError(); } this.o = this.o.L(); return this; }; n.next = function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } this.o = this.o.m(); @@ -46,14 +46,14 @@ var TreeIterator = function(r) { }; } else { n.pre = function() { - if (this.o === this.h.N) { + if (this.o === this.u.Z) { throwIteratorAccessError(); } this.o = this.o.m(); return this; }; n.next = function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } this.o = this.o.L(); @@ -65,23 +65,23 @@ var TreeIterator = function(r) { Object.defineProperty(TreeIterator.prototype, "index", { get: function() { var r = this.o; - var t = this.h.rr; - if (r === this.h) { + var t = this.u.sr; + if (r === this.u) { if (t) { - return t.tr - 1; + return t.hr - 1; } return 0; } var e = 0; - if (r.K) { - e += r.K.tr; + if (r.Y) { + e += r.Y.hr; } while (r !== t) { - var i = r.rr; - if (r === i.N) { + var i = r.sr; + if (r === i.Z) { e += 1; - if (i.K) { - e += i.K.tr; + if (i.Y) { + e += i.Y.hr; } } r = i; diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeNode.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeNode.js index 0b58346d1781f2..f9a6448ec52bd6 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeNode.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeNode.js @@ -1,96 +1,97 @@ var __extends = this && this.t || function() { - var extendStatics = function(e, n) { + var extendStatics = function(e, t) { extendStatics = Object.setPrototypeOf || { __proto__: [] - } instanceof Array && function(e, n) { - e.__proto__ = n; - } || function(e, n) { - for (var t in n) if (Object.prototype.hasOwnProperty.call(n, t)) e[t] = n[t]; + } instanceof Array && function(e, t) { + e.__proto__ = t; + } || function(e, t) { + for (var n in t) if (Object.prototype.hasOwnProperty.call(t, n)) e[n] = t[n]; }; - return extendStatics(e, n); + return extendStatics(e, t); }; - return function(e, n) { - if (typeof n !== "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); - extendStatics(e, n); + return function(e, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(e, t); function __() { this.constructor = e; } - e.prototype = n === null ? Object.create(n) : (__.prototype = n.prototype, new __); + e.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; }(); var TreeNode = function() { - function TreeNode(e, n) { - this.ee = 1; - this.u = undefined; - this.p = undefined; - this.K = undefined; - this.N = undefined; - this.rr = undefined; - this.u = e; - this.p = n; + function TreeNode(e, t, n) { + if (n === void 0) { + n = 1; + } + this.Y = undefined; + this.Z = undefined; + this.sr = undefined; + this.p = e; + this.H = t; + this.ee = n; } TreeNode.prototype.L = function() { var e = this; - if (e.ee === 1 && e.rr.rr === e) { - e = e.N; - } else if (e.K) { - e = e.K; - while (e.N) { - e = e.N; + if (e.ee === 1 && e.sr.sr === e) { + e = e.Z; + } else if (e.Y) { + e = e.Y; + while (e.Z) { + e = e.Z; } } else { - var n = e.rr; - while (n.K === e) { - e = n; - n = e.rr; + var t = e.sr; + while (t.Y === e) { + e = t; + t = e.sr; } - e = n; + e = t; } return e; }; TreeNode.prototype.m = function() { var e = this; - if (e.N) { - e = e.N; - while (e.K) { - e = e.K; + if (e.Z) { + e = e.Z; + while (e.Y) { + e = e.Y; } return e; } else { - var n = e.rr; - while (n.N === e) { - e = n; - n = e.rr; + var t = e.sr; + while (t.Z === e) { + e = t; + t = e.sr; } - if (e.N !== n) { - return n; + if (e.Z !== t) { + return t; } else return e; } }; - TreeNode.prototype.ne = function() { - var e = this.rr; - var n = this.N; - var t = n.K; - if (e.rr === this) e.rr = n; else if (e.K === this) e.K = n; else e.N = n; - n.rr = e; - n.K = this; - this.rr = n; - this.N = t; - if (t) t.rr = this; - return n; - }; TreeNode.prototype.te = function() { - var e = this.rr; - var n = this.K; - var t = n.N; - if (e.rr === this) e.rr = n; else if (e.K === this) e.K = n; else e.N = n; - n.rr = e; - n.N = this; - this.rr = n; - this.K = t; - if (t) t.rr = this; - return n; + var e = this.sr; + var t = this.Z; + var n = t.Y; + if (e.sr === this) e.sr = t; else if (e.Y === this) e.Y = t; else e.Z = t; + t.sr = e; + t.Y = this; + this.sr = t; + this.Z = n; + if (n) n.sr = this; + return t; + }; + TreeNode.prototype.ne = function() { + var e = this.sr; + var t = this.Y; + var n = t.Z; + if (e.sr === this) e.sr = t; else if (e.Y === this) e.Y = t; else e.Z = t; + t.sr = e; + t.Z = this; + this.sr = t; + this.Y = n; + if (n) n.sr = this; + return t; }; return TreeNode; }(); @@ -100,29 +101,29 @@ export { TreeNode }; var TreeNodeEnableIndex = function(e) { __extends(TreeNodeEnableIndex, e); function TreeNodeEnableIndex() { - var n = e !== null && e.apply(this, arguments) || this; - n.tr = 1; - return n; + var t = e !== null && e.apply(this, arguments) || this; + t.hr = 1; + return t; } - TreeNodeEnableIndex.prototype.ne = function() { - var n = e.prototype.ne.call(this); + TreeNodeEnableIndex.prototype.te = function() { + var t = e.prototype.te.call(this); this.ie(); - n.ie(); - return n; + t.ie(); + return t; }; - TreeNodeEnableIndex.prototype.te = function() { - var n = e.prototype.te.call(this); + TreeNodeEnableIndex.prototype.ne = function() { + var t = e.prototype.ne.call(this); this.ie(); - n.ie(); - return n; + t.ie(); + return t; }; TreeNodeEnableIndex.prototype.ie = function() { - this.tr = 1; - if (this.K) { - this.tr += this.K.tr; + this.hr = 1; + if (this.Y) { + this.hr += this.Y.hr; } - if (this.N) { - this.tr += this.N.tr; + if (this.Z) { + this.hr += this.Z.hr; } }; return TreeNodeEnableIndex; diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/index.js index 5056baf84121b9..3555effa2703a5 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/index.js @@ -1,59 +1,24 @@ var __extends = this && this.t || function() { - var extendStatics = function(e, r) { + var extendStatics = function(e, i) { extendStatics = Object.setPrototypeOf || { __proto__: [] - } instanceof Array && function(e, r) { - e.__proto__ = r; - } || function(e, r) { - for (var i in r) if (Object.prototype.hasOwnProperty.call(r, i)) e[i] = r[i]; + } instanceof Array && function(e, i) { + e.__proto__ = i; + } || function(e, i) { + for (var r in i) if (Object.prototype.hasOwnProperty.call(i, r)) e[r] = i[r]; }; - return extendStatics(e, r); + return extendStatics(e, i); }; - return function(e, r) { - if (typeof r !== "function" && r !== null) throw new TypeError("Class extends value " + String(r) + " is not a constructor or null"); - extendStatics(e, r); + return function(e, i) { + if (typeof i !== "function" && i !== null) throw new TypeError("Class extends value " + String(i) + " is not a constructor or null"); + extendStatics(e, i); function __() { this.constructor = e; } - e.prototype = r === null ? Object.create(r) : (__.prototype = r.prototype, new __); + e.prototype = i === null ? Object.create(i) : (__.prototype = i.prototype, new __); }; }(); -var __read = this && this.q || function(e, r) { - var i = typeof Symbol === "function" && e[Symbol.iterator]; - if (!i) return e; - var t = i.call(e), n, s = [], f; - try { - while ((r === void 0 || r-- > 0) && !(n = t.next()).done) s.push(n.value); - } catch (e) { - f = { - error: e - }; - } finally { - try { - if (n && !n.done && (i = t["return"])) i.call(t); - } finally { - if (f) throw f.error; - } - } - return s; -}; - -var __values = this && this.V || function(e) { - var r = typeof Symbol === "function" && Symbol.iterator, i = r && e[r], t = 0; - if (i) return i.call(e); - if (e && typeof e.length === "number") return { - next: function() { - if (e && t >= e.length) e = void 0; - return { - value: e && e[t++], - done: !e - }; - } - }; - throw new TypeError(r ? "Object is not iterable." : "Symbol.iterator is not defined."); -}; - import { TreeNode, TreeNodeEnableIndex } from "./TreeNode"; import { Container } from "../../ContainerBase"; @@ -62,536 +27,477 @@ import { throwIteratorAccessError } from "../../../utils/throwError"; var TreeContainer = function(e) { __extends(TreeContainer, e); - function TreeContainer(r, i) { - if (r === void 0) { - r = function(e, r) { - if (e < r) return -1; - if (e > r) return 1; + function TreeContainer(i, r) { + if (i === void 0) { + i = function(e, i) { + if (e < i) return -1; + if (e > i) return 1; return 0; }; } - if (i === void 0) { - i = false; + if (r === void 0) { + r = false; } var t = e.call(this) || this; - t.W = undefined; - t.$ = r; - if (i) { - t.re = TreeNodeEnableIndex; - t.v = function(e, r, i) { - var t = this.se(e, r, i); - if (t) { - var n = t.rr; - while (n !== this.h) { - n.tr += 1; - n = n.rr; - } - var s = this.fe(t); - if (s) { - var f = s, h = f.parentNode, u = f.grandParent, a = f.curNode; - h.ie(); - u.ie(); - a.ie(); - } - } - return this.M; - }; - t.G = function(e) { - var r = this.he(e); - while (r !== this.h) { - r.tr -= 1; - r = r.rr; - } - }; - } else { - t.re = TreeNode; - t.v = function(e, r, i) { - var t = this.se(e, r, i); - if (t) this.fe(t); - return this.M; - }; - t.G = t.he; - } - t.h = new t.re; + t.rr = undefined; + t.j = i; + t.enableIndex = r; + t.re = r ? TreeNodeEnableIndex : TreeNode; + t.u = new t.re; return t; } - TreeContainer.prototype.U = function(e, r) { - var i = this.h; + TreeContainer.prototype.$ = function(e, i) { + var r = this.u; while (e) { - var t = this.$(e.u, r); + var t = this.j(e.p, i); if (t < 0) { - e = e.N; + e = e.Z; } else if (t > 0) { - i = e; - e = e.K; + r = e; + e = e.Y; } else return e; } - return i; + return r; }; - TreeContainer.prototype.X = function(e, r) { - var i = this.h; + TreeContainer.prototype.tr = function(e, i) { + var r = this.u; while (e) { - var t = this.$(e.u, r); + var t = this.j(e.p, i); if (t <= 0) { - e = e.N; + e = e.Z; } else { - i = e; - e = e.K; + r = e; + e = e.Y; } } - return i; + return r; }; - TreeContainer.prototype.Y = function(e, r) { - var i = this.h; + TreeContainer.prototype.er = function(e, i) { + var r = this.u; while (e) { - var t = this.$(e.u, r); + var t = this.j(e.p, i); if (t < 0) { - i = e; - e = e.N; + r = e; + e = e.Z; } else if (t > 0) { - e = e.K; + e = e.Y; } else return e; } - return i; + return r; }; - TreeContainer.prototype.Z = function(e, r) { - var i = this.h; + TreeContainer.prototype.nr = function(e, i) { + var r = this.u; while (e) { - var t = this.$(e.u, r); + var t = this.j(e.p, i); if (t < 0) { - i = e; - e = e.N; + r = e; + e = e.Z; } else { - e = e.K; + e = e.Y; } } - return i; + return r; }; - TreeContainer.prototype.ue = function(e) { + TreeContainer.prototype.se = function(e) { while (true) { - var r = e.rr; - if (r === this.h) return; + var i = e.sr; + if (i === this.u) return; if (e.ee === 1) { e.ee = 0; return; } - if (e === r.K) { - var i = r.N; - if (i.ee === 1) { - i.ee = 0; - r.ee = 1; - if (r === this.W) { - this.W = r.ne(); - } else r.ne(); + if (e === i.Y) { + var r = i.Z; + if (r.ee === 1) { + r.ee = 0; + i.ee = 1; + if (i === this.rr) { + this.rr = i.te(); + } else i.te(); } else { - if (i.N && i.N.ee === 1) { - i.ee = r.ee; - r.ee = 0; - i.N.ee = 0; - if (r === this.W) { - this.W = r.ne(); - } else r.ne(); + if (r.Z && r.Z.ee === 1) { + r.ee = i.ee; + i.ee = 0; + r.Z.ee = 0; + if (i === this.rr) { + this.rr = i.te(); + } else i.te(); return; - } else if (i.K && i.K.ee === 1) { - i.ee = 1; - i.K.ee = 0; - i.te(); + } else if (r.Y && r.Y.ee === 1) { + r.ee = 1; + r.Y.ee = 0; + r.ne(); } else { - i.ee = 1; - e = r; + r.ee = 1; + e = i; } } } else { - var i = r.K; - if (i.ee === 1) { - i.ee = 0; - r.ee = 1; - if (r === this.W) { - this.W = r.te(); - } else r.te(); + var r = i.Y; + if (r.ee === 1) { + r.ee = 0; + i.ee = 1; + if (i === this.rr) { + this.rr = i.ne(); + } else i.ne(); } else { - if (i.K && i.K.ee === 1) { - i.ee = r.ee; - r.ee = 0; - i.K.ee = 0; - if (r === this.W) { - this.W = r.te(); - } else r.te(); + if (r.Y && r.Y.ee === 1) { + r.ee = i.ee; + i.ee = 0; + r.Y.ee = 0; + if (i === this.rr) { + this.rr = i.ne(); + } else i.ne(); return; - } else if (i.N && i.N.ee === 1) { - i.ee = 1; - i.N.ee = 0; - i.ne(); + } else if (r.Z && r.Z.ee === 1) { + r.ee = 1; + r.Z.ee = 0; + r.te(); } else { - i.ee = 1; - e = r; + r.ee = 1; + e = i; } } } } }; - TreeContainer.prototype.he = function(e) { - var r, i; - if (this.M === 1) { + TreeContainer.prototype.U = function(e) { + if (this.i === 1) { this.clear(); - return this.h; + return; } - var t = e; - while (t.K || t.N) { - if (t.N) { - t = t.N; - while (t.K) t = t.K; + var i = e; + while (i.Y || i.Z) { + if (i.Z) { + i = i.Z; + while (i.Y) i = i.Y; } else { - t = t.K; + i = i.Y; } - r = __read([ t.u, e.u ], 2), e.u = r[0], t.u = r[1]; - i = __read([ t.p, e.p ], 2), e.p = i[0], t.p = i[1]; - e = t; + var r = e.p; + e.p = i.p; + i.p = r; + var t = e.H; + e.H = i.H; + i.H = t; + e = i; + } + if (this.u.Y === i) { + this.u.Y = i.sr; + } else if (this.u.Z === i) { + this.u.Z = i.sr; } - if (this.h.K === t) { - this.h.K = t.rr; - } else if (this.h.N === t) { - this.h.N = t.rr; + this.se(i); + var n = i.sr; + if (i === n.Y) { + n.Y = undefined; + } else n.Z = undefined; + this.i -= 1; + this.rr.ee = 0; + if (this.enableIndex) { + while (n !== this.u) { + n.hr -= 1; + n = n.sr; + } } - this.ue(t); - var n = t.rr; - if (t === n.K) { - n.K = undefined; - } else n.N = undefined; - this.M -= 1; - this.W.ee = 0; - return n; }; - TreeContainer.prototype.ae = function(e, r) { - if (e === undefined) return false; - var i = this.ae(e.K, r); - if (i) return true; - if (r(e)) return true; - return this.ae(e.N, r); + TreeContainer.prototype.ir = function(e) { + var i = typeof e === "number" ? e : undefined; + var r = typeof e === "function" ? e : undefined; + var t = typeof e === "undefined" ? [] : undefined; + var n = 0; + var s = this.rr; + var f = []; + while (f.length || s) { + if (s) { + f.push(s); + s = s.Y; + } else { + s = f.pop(); + if (n === i) return s; + t && t.push(s); + r && r(s, n, this); + n += 1; + s = s.Z; + } + } + return t; }; TreeContainer.prototype.fe = function(e) { while (true) { - var r = e.rr; - if (r.ee === 0) return; - var i = r.rr; - if (r === i.K) { - var t = i.N; + var i = e.sr; + if (i.ee === 0) return; + var r = i.sr; + if (i === r.Y) { + var t = r.Z; if (t && t.ee === 1) { - t.ee = r.ee = 0; - if (i === this.W) return; - i.ee = 1; - e = i; + t.ee = i.ee = 0; + if (r === this.rr) return; + r.ee = 1; + e = r; continue; - } else if (e === r.N) { + } else if (e === i.Z) { e.ee = 0; - if (e.K) e.K.rr = r; - if (e.N) e.N.rr = i; - r.N = e.K; - i.K = e.N; - e.K = r; - e.N = i; - if (i === this.W) { - this.W = e; - this.h.rr = e; + if (e.Y) { + e.Y.sr = i; + } + if (e.Z) { + e.Z.sr = r; + } + i.Z = e.Y; + r.Y = e.Z; + e.Y = i; + e.Z = r; + if (r === this.rr) { + this.rr = e; + this.u.sr = e; } else { - var n = i.rr; - if (n.K === i) { - n.K = e; - } else n.N = e; + var n = r.sr; + if (n.Y === r) { + n.Y = e; + } else n.Z = e; } - e.rr = i.rr; - r.rr = e; - i.rr = e; - i.ee = 1; - return { - parentNode: r, - grandParent: i, - curNode: e - }; + e.sr = r.sr; + i.sr = e; + r.sr = e; + r.ee = 1; } else { - r.ee = 0; - if (i === this.W) { - this.W = i.te(); - } else i.te(); - i.ee = 1; + i.ee = 0; + if (r === this.rr) { + this.rr = r.ne(); + } else r.ne(); + r.ee = 1; + return; } } else { - var t = i.K; + var t = r.Y; if (t && t.ee === 1) { - t.ee = r.ee = 0; - if (i === this.W) return; - i.ee = 1; - e = i; + t.ee = i.ee = 0; + if (r === this.rr) return; + r.ee = 1; + e = r; continue; - } else if (e === r.K) { + } else if (e === i.Y) { e.ee = 0; - if (e.K) e.K.rr = i; - if (e.N) e.N.rr = r; - i.N = e.K; - r.K = e.N; - e.K = i; - e.N = r; - if (i === this.W) { - this.W = e; - this.h.rr = e; + if (e.Y) { + e.Y.sr = r; + } + if (e.Z) { + e.Z.sr = i; + } + r.Z = e.Y; + i.Y = e.Z; + e.Y = r; + e.Z = i; + if (r === this.rr) { + this.rr = e; + this.u.sr = e; } else { - var n = i.rr; - if (n.K === i) { - n.K = e; - } else n.N = e; + var n = r.sr; + if (n.Y === r) { + n.Y = e; + } else n.Z = e; } - e.rr = i.rr; - r.rr = e; - i.rr = e; - i.ee = 1; - return { - parentNode: r, - grandParent: i, - curNode: e - }; + e.sr = r.sr; + i.sr = e; + r.sr = e; + r.ee = 1; } else { - r.ee = 0; - if (i === this.W) { - this.W = i.ne(); - } else i.ne(); - i.ee = 1; + i.ee = 0; + if (r === this.rr) { + this.rr = r.te(); + } else r.te(); + r.ee = 1; + return; } } + if (this.enableIndex) { + i.ie(); + r.ie(); + e.ie(); + } return; } }; - TreeContainer.prototype.se = function(e, r, i) { - if (this.W === undefined) { - this.M += 1; - this.W = new this.re(e, r); - this.W.ee = 0; - this.W.rr = this.h; - this.h.rr = this.W; - this.h.K = this.W; - this.h.N = this.W; - return; + TreeContainer.prototype.v = function(e, i, r) { + if (this.rr === undefined) { + this.i += 1; + this.rr = new this.re(e, i, 0); + this.rr.sr = this.u; + this.u.sr = this.u.Y = this.u.Z = this.rr; + return this.i; } var t; - var n = this.h.K; - var s = this.$(n.u, e); + var n = this.u.Y; + var s = this.j(n.p, e); if (s === 0) { - n.p = r; - return; + n.H = i; + return this.i; } else if (s > 0) { - n.K = new this.re(e, r); - n.K.rr = n; - t = n.K; - this.h.K = t; + n.Y = new this.re(e, i); + n.Y.sr = n; + t = n.Y; + this.u.Y = t; } else { - var f = this.h.N; - var h = this.$(f.u, e); + var f = this.u.Z; + var h = this.j(f.p, e); if (h === 0) { - f.p = r; - return; + f.H = i; + return this.i; } else if (h < 0) { - f.N = new this.re(e, r); - f.N.rr = f; - t = f.N; - this.h.N = t; + f.Z = new this.re(e, i); + f.Z.sr = f; + t = f.Z; + this.u.Z = t; } else { - if (i !== undefined) { - var u = i.o; - if (u !== this.h) { - var a = this.$(u.u, e); + if (r !== undefined) { + var u = r.o; + if (u !== this.u) { + var a = this.j(u.p, e); if (a === 0) { - u.p = r; - return; + u.H = i; + return this.i; } else if (a > 0) { var o = u.L(); - var l = this.$(o.u, e); + var l = this.j(o.p, e); if (l === 0) { - o.p = r; - return; + o.H = i; + return this.i; } else if (l < 0) { - t = new this.re(e, r); - if (o.N === undefined) { - o.N = t; - t.rr = o; + t = new this.re(e, i); + if (o.Z === undefined) { + o.Z = t; + t.sr = o; } else { - u.K = t; - t.rr = u; + u.Y = t; + t.sr = u; } } } } } if (t === undefined) { - t = this.W; + t = this.rr; while (true) { - var v = this.$(t.u, e); + var v = this.j(t.p, e); if (v > 0) { - if (t.K === undefined) { - t.K = new this.re(e, r); - t.K.rr = t; - t = t.K; + if (t.Y === undefined) { + t.Y = new this.re(e, i); + t.Y.sr = t; + t = t.Y; break; } - t = t.K; + t = t.Y; } else if (v < 0) { - if (t.N === undefined) { - t.N = new this.re(e, r); - t.N.rr = t; - t = t.N; + if (t.Z === undefined) { + t.Z = new this.re(e, i); + t.Z.sr = t; + t = t.Z; break; } - t = t.N; + t = t.Z; } else { - t.p = r; - return; + t.H = i; + return this.i; } } } } } - this.M += 1; - return t; + if (this.enableIndex) { + var d = t.sr; + while (d !== this.u) { + d.hr += 1; + d = d.sr; + } + } + this.fe(t); + this.i += 1; + return this.i; }; - TreeContainer.prototype.g = function(e, r) { + TreeContainer.prototype.ar = function(e, i) { while (e) { - var i = this.$(e.u, r); - if (i < 0) { - e = e.N; - } else if (i > 0) { - e = e.K; + var r = this.j(e.p, i); + if (r < 0) { + e = e.Z; + } else if (r > 0) { + e = e.Y; } else return e; } - return e || this.h; + return e || this.u; }; TreeContainer.prototype.clear = function() { - this.M = 0; - this.W = undefined; - this.h.rr = undefined; - this.h.K = this.h.N = undefined; + this.i = 0; + this.rr = undefined; + this.u.sr = undefined; + this.u.Y = this.u.Z = undefined; }; - TreeContainer.prototype.updateKeyByIterator = function(e, r) { - var i = e.o; - if (i === this.h) { + TreeContainer.prototype.updateKeyByIterator = function(e, i) { + var r = e.o; + if (r === this.u) { throwIteratorAccessError(); } - if (this.M === 1) { - i.u = r; + if (this.i === 1) { + r.p = i; return true; } - if (i === this.h.K) { - if (this.$(i.m().u, r) > 0) { - i.u = r; + var t = r.m().p; + if (r === this.u.Y) { + if (this.j(t, i) > 0) { + r.p = i; return true; } return false; } - if (i === this.h.N) { - if (this.$(i.L().u, r) < 0) { - i.u = r; + var n = r.L().p; + if (r === this.u.Z) { + if (this.j(n, i) < 0) { + r.p = i; return true; } return false; } - var t = i.L().u; - if (this.$(t, r) >= 0) return false; - var n = i.m().u; - if (this.$(n, r) <= 0) return false; - i.u = r; + if (this.j(n, i) >= 0 || this.j(t, i) <= 0) return false; + r.p = i; return true; }; TreeContainer.prototype.eraseElementByPos = function(e) { - if (e < 0 || e > this.M - 1) { + if (e < 0 || e > this.i - 1) { throw new RangeError; } - var r = 0; - var i = this; - this.ae(this.W, (function(t) { - if (e === r) { - i.G(t); - return true; - } - r += 1; - return false; - })); - return this.M; + var i = this.ir(e); + this.U(i); + return this.i; }; TreeContainer.prototype.eraseElementByKey = function(e) { - if (this.M === 0) return false; - var r = this.g(this.W, e); - if (r === this.h) return false; - this.G(r); + if (this.i === 0) return false; + var i = this.ar(this.rr, e); + if (i === this.u) return false; + this.U(i); return true; }; TreeContainer.prototype.eraseElementByIterator = function(e) { - var r = e.o; - if (r === this.h) { + var i = e.o; + if (i === this.u) { throwIteratorAccessError(); } - var i = r.N === undefined; + var r = i.Z === undefined; var t = e.iteratorType === 0; if (t) { - if (i) e.next(); + if (r) e.next(); } else { - if (!i || r.K === undefined) e.next(); + if (!r || i.Y === undefined) e.next(); } - this.G(r); + this.U(i); return e; }; - TreeContainer.prototype.forEach = function(e) { - var r, i; - var t = 0; - try { - for (var n = __values(this), s = n.next(); !s.done; s = n.next()) { - var f = s.value; - e(f, t++, this); - } - } catch (e) { - r = { - error: e - }; - } finally { - try { - if (s && !s.done && (i = n.return)) i.call(n); - } finally { - if (r) throw r.error; - } - } - }; - TreeContainer.prototype.getElementByPos = function(e) { - var r, i; - if (e < 0 || e > this.M - 1) { - throw new RangeError; - } - var t; - var n = 0; - try { - for (var s = __values(this), f = s.next(); !f.done; f = s.next()) { - var h = f.value; - if (n === e) { - t = h; - break; - } - n += 1; - } - } catch (e) { - r = { - error: e - }; - } finally { - try { - if (f && !f.done && (i = s.return)) i.call(s); - } finally { - if (r) throw r.error; - } - } - return t; - }; TreeContainer.prototype.getHeight = function() { - if (this.M === 0) return 0; - var traversal = function(e) { + if (this.i === 0) return 0; + function traversal(e) { if (!e) return 0; - return Math.max(traversal(e.K), traversal(e.N)) + 1; - }; - return traversal(this.W); + return Math.max(traversal(e.Y), traversal(e.Z)) + 1; + } + return traversal(this.rr); }; return TreeContainer; }(Container); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedMap.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedMap.js index 90795d5119b963..e78db5c174e37c 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedMap.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedMap.js @@ -1,129 +1,114 @@ var __extends = this && this.t || function() { - var extendStatics = function(r, e) { + var extendStatics = function(r, t) { extendStatics = Object.setPrototypeOf || { __proto__: [] - } instanceof Array && function(r, e) { - r.__proto__ = e; - } || function(r, e) { - for (var t in e) if (Object.prototype.hasOwnProperty.call(e, t)) r[t] = e[t]; + } instanceof Array && function(r, t) { + r.__proto__ = t; + } || function(r, t) { + for (var e in t) if (Object.prototype.hasOwnProperty.call(t, e)) r[e] = t[e]; }; - return extendStatics(r, e); + return extendStatics(r, t); }; - return function(r, e) { - if (typeof e !== "function" && e !== null) throw new TypeError("Class extends value " + String(e) + " is not a constructor or null"); - extendStatics(r, e); + return function(r, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(r, t); function __() { this.constructor = r; } - r.prototype = e === null ? Object.create(e) : (__.prototype = e.prototype, new __); + r.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; }(); -var __generator = this && this.i || function(r, e) { - var t = { +var __generator = this && this.h || function(r, t) { + var e = { label: 0, sent: function() { - if (o[0] & 1) throw o[1]; - return o[1]; + if (a[0] & 1) throw a[1]; + return a[1]; }, trys: [], ops: [] - }, n, i, o, a; - return a = { + }, n, i, a, o; + return o = { next: verb(0), throw: verb(1), return: verb(2) - }, typeof Symbol === "function" && (a[Symbol.iterator] = function() { + }, typeof Symbol === "function" && (o[Symbol.iterator] = function() { return this; - }), a; + }), o; function verb(r) { - return function(e) { - return step([ r, e ]); + return function(t) { + return step([ r, t ]); }; } - function step(a) { + function step(o) { if (n) throw new TypeError("Generator is already executing."); - while (t) try { - if (n = 1, i && (o = a[0] & 2 ? i["return"] : a[0] ? i["throw"] || ((o = i["return"]) && o.call(i), - 0) : i.next) && !(o = o.call(i, a[1])).done) return o; - if (i = 0, o) a = [ a[0] & 2, o.value ]; - switch (a[0]) { + while (e) try { + if (n = 1, i && (a = o[0] & 2 ? i["return"] : o[0] ? i["throw"] || ((a = i["return"]) && a.call(i), + 0) : i.next) && !(a = a.call(i, o[1])).done) return a; + if (i = 0, a) o = [ o[0] & 2, a.value ]; + switch (o[0]) { case 0: case 1: - o = a; + a = o; break; case 4: - t.label++; + e.label++; return { - value: a[1], + value: o[1], done: false }; case 5: - t.label++; - i = a[1]; - a = [ 0 ]; + e.label++; + i = o[1]; + o = [ 0 ]; continue; case 7: - a = t.ops.pop(); - t.trys.pop(); + o = e.ops.pop(); + e.trys.pop(); continue; default: - if (!(o = t.trys, o = o.length > 0 && o[o.length - 1]) && (a[0] === 6 || a[0] === 2)) { - t = 0; + if (!(a = e.trys, a = a.length > 0 && a[a.length - 1]) && (o[0] === 6 || o[0] === 2)) { + e = 0; continue; } - if (a[0] === 3 && (!o || a[1] > o[0] && a[1] < o[3])) { - t.label = a[1]; + if (o[0] === 3 && (!a || o[1] > a[0] && o[1] < a[3])) { + e.label = o[1]; break; } - if (a[0] === 6 && t.label < o[1]) { - t.label = o[1]; - o = a; + if (o[0] === 6 && e.label < a[1]) { + e.label = a[1]; + a = o; break; } - if (o && t.label < o[2]) { - t.label = o[2]; - t.ops.push(a); + if (a && e.label < a[2]) { + e.label = a[2]; + e.ops.push(o); break; } - if (o[2]) t.ops.pop(); - t.trys.pop(); + if (a[2]) e.ops.pop(); + e.trys.pop(); continue; } - a = e.call(r, t); + o = t.call(r, e); } catch (r) { - a = [ 6, r ]; + o = [ 6, r ]; i = 0; } finally { - n = o = 0; + n = a = 0; } - if (a[0] & 5) throw a[1]; + if (o[0] & 5) throw o[1]; return { - value: a[0] ? a[1] : void 0, + value: o[0] ? o[1] : void 0, done: true }; } }; -var __values = this && this.V || function(r) { - var e = typeof Symbol === "function" && Symbol.iterator, t = e && r[e], n = 0; - if (t) return t.call(r); - if (r && typeof r.length === "number") return { - next: function() { - if (r && n >= r.length) r = void 0; - return { - value: r && r[n++], - done: !r - }; - } - }; - throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined."); -}; - import TreeContainer from "./Base"; import TreeIterator from "./Base/TreeIterator"; @@ -132,26 +117,26 @@ import { throwIteratorAccessError } from "../../utils/throwError"; var OrderedMapIterator = function(r) { __extends(OrderedMapIterator, r); - function OrderedMapIterator(e, t, n, i) { - var o = r.call(this, e, t, i) || this; - o.container = n; - return o; + function OrderedMapIterator(t, e, n, i) { + var a = r.call(this, t, e, i) || this; + a.container = n; + return a; } Object.defineProperty(OrderedMapIterator.prototype, "pointer", { get: function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } var r = this; return new Proxy([], { - get: function(e, t) { - if (t === "0") return r.o.u; else if (t === "1") return r.o.p; + get: function(t, e) { + if (e === "0") return r.o.p; else if (e === "1") return r.o.H; }, - set: function(e, t, n) { - if (t !== "1") { + set: function(t, e, n) { + if (e !== "1") { throw new TypeError("props must be 1"); } - r.o.p = n; + r.o.H = n; return true; } }); @@ -160,103 +145,119 @@ var OrderedMapIterator = function(r) { configurable: true }); OrderedMapIterator.prototype.copy = function() { - return new OrderedMapIterator(this.o, this.h, this.container, this.iteratorType); + return new OrderedMapIterator(this.o, this.u, this.container, this.iteratorType); }; return OrderedMapIterator; }(TreeIterator); var OrderedMap = function(r) { __extends(OrderedMap, r); - function OrderedMap(e, t, n) { - if (e === void 0) { - e = []; + function OrderedMap(t, e, n) { + if (t === void 0) { + t = []; } - var i = r.call(this, t, n) || this; - var o = i; - e.forEach((function(r) { - o.setElement(r[0], r[1]); + var i = r.call(this, e, n) || this; + var a = i; + t.forEach((function(r) { + a.setElement(r[0], r[1]); })); return i; } - OrderedMap.prototype.P = function(r) { - return __generator(this, (function(e) { - switch (e.label) { - case 0: - if (r === undefined) return [ 2 ]; - return [ 5, __values(this.P(r.K)) ]; - - case 1: - e.sent(); - return [ 4, [ r.u, r.p ] ]; - - case 2: - e.sent(); - return [ 5, __values(this.P(r.N)) ]; - - case 3: - e.sent(); - return [ 2 ]; - } - })); - }; OrderedMap.prototype.begin = function() { - return new OrderedMapIterator(this.h.K || this.h, this.h, this); + return new OrderedMapIterator(this.u.Y || this.u, this.u, this); }; OrderedMap.prototype.end = function() { - return new OrderedMapIterator(this.h, this.h, this); + return new OrderedMapIterator(this.u, this.u, this); }; OrderedMap.prototype.rBegin = function() { - return new OrderedMapIterator(this.h.N || this.h, this.h, this, 1); + return new OrderedMapIterator(this.u.Z || this.u, this.u, this, 1); }; OrderedMap.prototype.rEnd = function() { - return new OrderedMapIterator(this.h, this.h, this, 1); + return new OrderedMapIterator(this.u, this.u, this, 1); }; OrderedMap.prototype.front = function() { - if (this.M === 0) return; - var r = this.h.K; - return [ r.u, r.p ]; + if (this.i === 0) return; + var r = this.u.Y; + return [ r.p, r.H ]; }; OrderedMap.prototype.back = function() { - if (this.M === 0) return; - var r = this.h.N; - return [ r.u, r.p ]; + if (this.i === 0) return; + var r = this.u.Z; + return [ r.p, r.H ]; }; OrderedMap.prototype.lowerBound = function(r) { - var e = this.U(this.W, r); - return new OrderedMapIterator(e, this.h, this); + var t = this.$(this.rr, r); + return new OrderedMapIterator(t, this.u, this); }; OrderedMap.prototype.upperBound = function(r) { - var e = this.X(this.W, r); - return new OrderedMapIterator(e, this.h, this); + var t = this.tr(this.rr, r); + return new OrderedMapIterator(t, this.u, this); }; OrderedMap.prototype.reverseLowerBound = function(r) { - var e = this.Y(this.W, r); - return new OrderedMapIterator(e, this.h, this); + var t = this.er(this.rr, r); + return new OrderedMapIterator(t, this.u, this); }; OrderedMap.prototype.reverseUpperBound = function(r) { - var e = this.Z(this.W, r); - return new OrderedMapIterator(e, this.h, this); + var t = this.nr(this.rr, r); + return new OrderedMapIterator(t, this.u, this); }; - OrderedMap.prototype.setElement = function(r, e, t) { - return this.v(r, e, t); + OrderedMap.prototype.forEach = function(r) { + this.ir((function(t, e, n) { + r([ t.p, t.H ], e, n); + })); + }; + OrderedMap.prototype.setElement = function(r, t, e) { + return this.v(r, t, e); + }; + OrderedMap.prototype.getElementByPos = function(r) { + if (r < 0 || r > this.i - 1) { + throw new RangeError; + } + var t = this.ir(r); + return [ t.p, t.H ]; }; OrderedMap.prototype.find = function(r) { - var e = this.g(this.W, r); - return new OrderedMapIterator(e, this.h, this); + var t = this.ar(this.rr, r); + return new OrderedMapIterator(t, this.u, this); }; OrderedMap.prototype.getElementByKey = function(r) { - var e = this.g(this.W, r); - return e.p; + var t = this.ar(this.rr, r); + return t.H; }; OrderedMap.prototype.union = function(r) { - var e = this; + var t = this; r.forEach((function(r) { - e.setElement(r[0], r[1]); + t.setElement(r[0], r[1]); })); - return this.M; + return this.i; }; OrderedMap.prototype[Symbol.iterator] = function() { - return this.P(this.W); + var r, t, e, n; + return __generator(this, (function(i) { + switch (i.label) { + case 0: + r = this.i; + t = this.ir(); + e = 0; + i.label = 1; + + case 1: + if (!(e < r)) return [ 3, 4 ]; + n = t[e]; + return [ 4, [ n.p, n.H ] ]; + + case 2: + i.sent(); + i.label = 3; + + case 3: + ++e; + return [ 3, 1 ]; + + case 4: + return [ 2 ]; + } + })); }; return OrderedMap; }(TreeContainer); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js index 0bd127050f9219..f0cb9daa1f9754 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js @@ -1,26 +1,26 @@ var __extends = this && this.t || function() { - var extendStatics = function(e, t) { + var extendStatics = function(e, r) { extendStatics = Object.setPrototypeOf || { __proto__: [] - } instanceof Array && function(e, t) { - e.__proto__ = t; - } || function(e, t) { - for (var r in t) if (Object.prototype.hasOwnProperty.call(t, r)) e[r] = t[r]; + } instanceof Array && function(e, r) { + e.__proto__ = r; + } || function(e, r) { + for (var t in r) if (Object.prototype.hasOwnProperty.call(r, t)) e[t] = r[t]; }; - return extendStatics(e, t); + return extendStatics(e, r); }; - return function(e, t) { - if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); - extendStatics(e, t); + return function(e, r) { + if (typeof r !== "function" && r !== null) throw new TypeError("Class extends value " + String(r) + " is not a constructor or null"); + extendStatics(e, r); function __() { this.constructor = e; } - e.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); + e.prototype = r === null ? Object.create(r) : (__.prototype = r.prototype, new __); }; }(); -var __generator = this && this.i || function(e, t) { - var r = { +var __generator = this && this.h || function(e, r) { + var t = { label: 0, sent: function() { if (o[0] & 1) throw o[1]; @@ -28,102 +28,87 @@ var __generator = this && this.i || function(e, t) { }, trys: [], ops: [] - }, n, i, o, u; - return u = { + }, n, i, o, s; + return s = { next: verb(0), throw: verb(1), return: verb(2) - }, typeof Symbol === "function" && (u[Symbol.iterator] = function() { + }, typeof Symbol === "function" && (s[Symbol.iterator] = function() { return this; - }), u; + }), s; function verb(e) { - return function(t) { - return step([ e, t ]); + return function(r) { + return step([ e, r ]); }; } - function step(u) { + function step(s) { if (n) throw new TypeError("Generator is already executing."); - while (r) try { - if (n = 1, i && (o = u[0] & 2 ? i["return"] : u[0] ? i["throw"] || ((o = i["return"]) && o.call(i), - 0) : i.next) && !(o = o.call(i, u[1])).done) return o; - if (i = 0, o) u = [ u[0] & 2, o.value ]; - switch (u[0]) { + while (t) try { + if (n = 1, i && (o = s[0] & 2 ? i["return"] : s[0] ? i["throw"] || ((o = i["return"]) && o.call(i), + 0) : i.next) && !(o = o.call(i, s[1])).done) return o; + if (i = 0, o) s = [ s[0] & 2, o.value ]; + switch (s[0]) { case 0: case 1: - o = u; + o = s; break; case 4: - r.label++; + t.label++; return { - value: u[1], + value: s[1], done: false }; case 5: - r.label++; - i = u[1]; - u = [ 0 ]; + t.label++; + i = s[1]; + s = [ 0 ]; continue; case 7: - u = r.ops.pop(); - r.trys.pop(); + s = t.ops.pop(); + t.trys.pop(); continue; default: - if (!(o = r.trys, o = o.length > 0 && o[o.length - 1]) && (u[0] === 6 || u[0] === 2)) { - r = 0; + if (!(o = t.trys, o = o.length > 0 && o[o.length - 1]) && (s[0] === 6 || s[0] === 2)) { + t = 0; continue; } - if (u[0] === 3 && (!o || u[1] > o[0] && u[1] < o[3])) { - r.label = u[1]; + if (s[0] === 3 && (!o || s[1] > o[0] && s[1] < o[3])) { + t.label = s[1]; break; } - if (u[0] === 6 && r.label < o[1]) { - r.label = o[1]; - o = u; + if (s[0] === 6 && t.label < o[1]) { + t.label = o[1]; + o = s; break; } - if (o && r.label < o[2]) { - r.label = o[2]; - r.ops.push(u); + if (o && t.label < o[2]) { + t.label = o[2]; + t.ops.push(s); break; } - if (o[2]) r.ops.pop(); - r.trys.pop(); + if (o[2]) t.ops.pop(); + t.trys.pop(); continue; } - u = t.call(e, r); + s = r.call(e, t); } catch (e) { - u = [ 6, e ]; + s = [ 6, e ]; i = 0; } finally { n = o = 0; } - if (u[0] & 5) throw u[1]; + if (s[0] & 5) throw s[1]; return { - value: u[0] ? u[1] : void 0, + value: s[0] ? s[1] : void 0, done: true }; } }; -var __values = this && this.V || function(e) { - var t = typeof Symbol === "function" && Symbol.iterator, r = t && e[t], n = 0; - if (r) return r.call(e); - if (e && typeof e.length === "number") return { - next: function() { - if (e && n >= e.length) e = void 0; - return { - value: e && e[n++], - done: !e - }; - } - }; - throw new TypeError(t ? "Object is not iterable." : "Symbol.iterator is not defined."); -}; - import TreeContainer from "./Base"; import TreeIterator from "./Base/TreeIterator"; @@ -132,111 +117,126 @@ import { throwIteratorAccessError } from "../../utils/throwError"; var OrderedSetIterator = function(e) { __extends(OrderedSetIterator, e); - function OrderedSetIterator(t, r, n, i) { - var o = e.call(this, t, r, i) || this; + function OrderedSetIterator(r, t, n, i) { + var o = e.call(this, r, t, i) || this; o.container = n; return o; } Object.defineProperty(OrderedSetIterator.prototype, "pointer", { get: function() { - if (this.o === this.h) { + if (this.o === this.u) { throwIteratorAccessError(); } - return this.o.u; + return this.o.p; }, enumerable: false, configurable: true }); OrderedSetIterator.prototype.copy = function() { - return new OrderedSetIterator(this.o, this.h, this.container, this.iteratorType); + return new OrderedSetIterator(this.o, this.u, this.container, this.iteratorType); }; return OrderedSetIterator; }(TreeIterator); var OrderedSet = function(e) { __extends(OrderedSet, e); - function OrderedSet(t, r, n) { - if (t === void 0) { - t = []; + function OrderedSet(r, t, n) { + if (r === void 0) { + r = []; } - var i = e.call(this, r, n) || this; + var i = e.call(this, t, n) || this; var o = i; - t.forEach((function(e) { + r.forEach((function(e) { o.insert(e); })); return i; } - OrderedSet.prototype.P = function(e) { - return __generator(this, (function(t) { - switch (t.label) { - case 0: - if (e === undefined) return [ 2 ]; - return [ 5, __values(this.P(e.K)) ]; - - case 1: - t.sent(); - return [ 4, e.u ]; - - case 2: - t.sent(); - return [ 5, __values(this.P(e.N)) ]; - - case 3: - t.sent(); - return [ 2 ]; - } - })); - }; OrderedSet.prototype.begin = function() { - return new OrderedSetIterator(this.h.K || this.h, this.h, this); + return new OrderedSetIterator(this.u.Y || this.u, this.u, this); }; OrderedSet.prototype.end = function() { - return new OrderedSetIterator(this.h, this.h, this); + return new OrderedSetIterator(this.u, this.u, this); }; OrderedSet.prototype.rBegin = function() { - return new OrderedSetIterator(this.h.N || this.h, this.h, this, 1); + return new OrderedSetIterator(this.u.Z || this.u, this.u, this, 1); }; OrderedSet.prototype.rEnd = function() { - return new OrderedSetIterator(this.h, this.h, this, 1); + return new OrderedSetIterator(this.u, this.u, this, 1); }; OrderedSet.prototype.front = function() { - return this.h.K ? this.h.K.u : undefined; + return this.u.Y ? this.u.Y.p : undefined; }; OrderedSet.prototype.back = function() { - return this.h.N ? this.h.N.u : undefined; - }; - OrderedSet.prototype.insert = function(e, t) { - return this.v(e, undefined, t); - }; - OrderedSet.prototype.find = function(e) { - var t = this.g(this.W, e); - return new OrderedSetIterator(t, this.h, this); + return this.u.Z ? this.u.Z.p : undefined; }; OrderedSet.prototype.lowerBound = function(e) { - var t = this.U(this.W, e); - return new OrderedSetIterator(t, this.h, this); + var r = this.$(this.rr, e); + return new OrderedSetIterator(r, this.u, this); }; OrderedSet.prototype.upperBound = function(e) { - var t = this.X(this.W, e); - return new OrderedSetIterator(t, this.h, this); + var r = this.tr(this.rr, e); + return new OrderedSetIterator(r, this.u, this); }; OrderedSet.prototype.reverseLowerBound = function(e) { - var t = this.Y(this.W, e); - return new OrderedSetIterator(t, this.h, this); + var r = this.er(this.rr, e); + return new OrderedSetIterator(r, this.u, this); }; OrderedSet.prototype.reverseUpperBound = function(e) { - var t = this.Z(this.W, e); - return new OrderedSetIterator(t, this.h, this); + var r = this.nr(this.rr, e); + return new OrderedSetIterator(r, this.u, this); + }; + OrderedSet.prototype.forEach = function(e) { + this.ir((function(r, t, n) { + e(r.p, t, n); + })); + }; + OrderedSet.prototype.insert = function(e, r) { + return this.v(e, undefined, r); + }; + OrderedSet.prototype.getElementByPos = function(e) { + if (e < 0 || e > this.i - 1) { + throw new RangeError; + } + var r = this.ir(e); + return r.p; + }; + OrderedSet.prototype.find = function(e) { + var r = this.ar(this.rr, e); + return new OrderedSetIterator(r, this.u, this); }; OrderedSet.prototype.union = function(e) { - var t = this; + var r = this; e.forEach((function(e) { - t.insert(e); + r.insert(e); })); - return this.M; + return this.i; }; OrderedSet.prototype[Symbol.iterator] = function() { - return this.P(this.W); + var e, r, t; + return __generator(this, (function(n) { + switch (n.label) { + case 0: + e = this.i; + r = this.ir(); + t = 0; + n.label = 1; + + case 1: + if (!(t < e)) return [ 3, 4 ]; + return [ 4, r[t].p ]; + + case 2: + n.sent(); + n.label = 3; + + case 3: + ++t; + return [ 3, 1 ]; + + case 4: + return [ 2 ]; + } + })); }; return OrderedSet; }(TreeContainer); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/utils/math.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/utils/math.js new file mode 100644 index 00000000000000..4fde8a44f762aa --- /dev/null +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/utils/math.js @@ -0,0 +1,6 @@ +export function ceil(r, t) { + return Math.floor((r + t - 1) / t); +} + +export var floor = Math.floor; +//# sourceMappingURL=math.js.map diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.js index bdeca2417982b8..41ad442d49bfa7 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.js @@ -1,5 +1,5 @@ /*! - * js-sdsl v4.3.0 + * js-sdsl v4.4.0 * https://github.com/js-sdsl/js-sdsl * (c) 2021-present ZLY201 * MIT license @@ -753,6 +753,7 @@ }; Vector.prototype.reverse = function () { this._vector.reverse(); + return this; }; Vector.prototype.unique = function () { var index = 1; @@ -766,6 +767,7 @@ }; Vector.prototype.sort = function (cmp) { this._vector.sort(cmp); + return this; }; Vector.prototype.forEach = function (callback) { for (var i = 0; i < this._length; ++i) { @@ -773,18 +775,17 @@ } }; Vector.prototype[Symbol.iterator] = function () { - return function () { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - return [5 /*yield**/, __values(this._vector)]; - case 1: - _a.sent(); - return [2 /*return*/]; - } - }); - }.bind(this)(); + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + return [5 /*yield**/, __values(this._vector)]; + case 1: + _a.sent(); + return [2 /*return*/]; + } + }); }; + return Vector; }(SequentialContainer); @@ -1049,7 +1050,9 @@ return this.end(); }; LinkList.prototype.reverse = function () { - if (this._length <= 1) return; + if (this._length <= 1) { + return this; + } var pHead = this._head; var pTail = this._tail; var cnt = 0; @@ -1061,6 +1064,7 @@ pTail = pTail._pre; cnt += 1; } + return this; }; LinkList.prototype.unique = function () { if (this._length <= 1) { @@ -1080,7 +1084,9 @@ return this._length; }; LinkList.prototype.sort = function (cmp) { - if (this._length <= 1) return; + if (this._length <= 1) { + return this; + } var arr = []; this.forEach(function (el) { arr.push(el); @@ -1091,6 +1097,7 @@ curNode._value = element; curNode = curNode._next; }); + return this; }; /** * @description Merges two sorted lists. @@ -1127,30 +1134,43 @@ } }; LinkList.prototype[Symbol.iterator] = function () { - return function () { - var curNode; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (this._length === 0) return [2 /*return*/]; - curNode = this._head; - _a.label = 1; - case 1: - if (!(curNode !== this._header)) return [3 /*break*/, 3]; - return [4 /*yield*/, curNode._value]; - case 2: - _a.sent(); - curNode = curNode._next; - return [3 /*break*/, 1]; - case 3: - return [2 /*return*/]; - } - }); - }.bind(this)(); + var curNode; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + if (this._length === 0) return [2 /*return*/]; + curNode = this._head; + _a.label = 1; + case 1: + if (!(curNode !== this._header)) return [3 /*break*/, 3]; + return [4 /*yield*/, curNode._value]; + case 2: + _a.sent(); + curNode = curNode._next; + return [3 /*break*/, 1]; + case 3: + return [2 /*return*/]; + } + }); }; + return LinkList; }(SequentialContainer); + /** + * @description Same to Math.ceil(a / b). + * @param a - numerator. + * @param b - Denominator. + * @internal + */ + function ceil(a, b) { + return Math.floor((a + b - 1) / b); + } + /** + * @internal + */ + var floor = Math.floor; + var DequeIterator = /** @class */function (_super) { __extends(DequeIterator, _super); function DequeIterator(node, container, iteratorType) { @@ -1204,11 +1224,11 @@ throw new TypeError("Cannot get the length or size of the container"); }(); _this._bucketSize = _bucketSize; - _this._bucketNum = Math.max(Math.ceil(_length / _this._bucketSize), 1); + _this._bucketNum = ceil(_length, _this._bucketSize) || 1; for (var i = 0; i < _this._bucketNum; ++i) { _this._map.push(new Array(_this._bucketSize)); } - var needBucketNum = Math.ceil(_length / _this._bucketSize); + var needBucketNum = ceil(_length, _this._bucketSize); _this._first = _this._last = (_this._bucketNum >> 1) - (needBucketNum >> 1); _this._curFirst = _this._curLast = _this._bucketSize - _length % _this._bucketSize >> 1; var self = _this; @@ -1221,9 +1241,9 @@ * @description Growth the Deque. * @internal */ - Deque.prototype._reAllocate = function () { + Deque.prototype._reAllocate = function (needBucketNum) { var newMap = []; - var addBucketNum = Math.max(this._bucketNum >> 1, 1); + var addBucketNum = needBucketNum || this._bucketNum >> 1 || 1; for (var i = 0; i < addBucketNum; ++i) { newMap[i] = new Array(this._bucketSize); } @@ -1248,13 +1268,16 @@ * @internal */ Deque.prototype._getElementIndex = function (pos) { - var offset = this._curFirst + pos + 1; - var offsetRemainder = offset % this._bucketSize; - var curNodePointerIndex = offsetRemainder - 1; - var curNodeBucketIndex = this._first + (offset - offsetRemainder) / this._bucketSize; - if (offsetRemainder === 0) curNodeBucketIndex -= 1; - curNodeBucketIndex %= this._bucketNum; - if (curNodePointerIndex < 0) curNodePointerIndex += this._bucketSize; + var curNodeBucketIndex, curNodePointerIndex; + var index = this._curFirst + pos; + curNodeBucketIndex = this._first + floor(index / this._bucketSize); + if (curNodeBucketIndex >= this._bucketNum) { + curNodeBucketIndex -= this._bucketNum; + } + curNodePointerIndex = (index + 1) % this._bucketSize - 1; + if (curNodePointerIndex < 0) { + curNodePointerIndex = this._bucketSize - 1; + } return { curNodeBucketIndex: curNodeBucketIndex, curNodePointerIndex: curNodePointerIndex @@ -1387,7 +1410,8 @@ if (num === void 0) { num = 1; } - if (pos < 0 || pos > this._length) { + var length = this._length; + if (pos < 0 || pos > length) { throw new RangeError(); } if (pos === 0) { @@ -1430,29 +1454,37 @@ throw new RangeError(); } if (pos === 0) this.popFront();else if (pos === this._length - 1) this.popBack();else { - var arr = []; - for (var i = pos + 1; i < this._length; ++i) { - arr.push(this.getElementByPos(i)); + var length_1 = this._length - 1; + var _a = this._getElementIndex(pos), + curBucket = _a.curNodeBucketIndex, + curPointer = _a.curNodePointerIndex; + for (var i = pos; i < length_1; ++i) { + var _b = this._getElementIndex(pos + 1), + nextBucket = _b.curNodeBucketIndex, + nextPointer = _b.curNodePointerIndex; + this._map[curBucket][curPointer] = this._map[nextBucket][nextPointer]; + curBucket = nextBucket; + curPointer = nextPointer; } - this.cut(pos); this.popBack(); - var self_1 = this; - arr.forEach(function (el) { - self_1.pushBack(el); - }); } return this._length; }; Deque.prototype.eraseElementByValue = function (value) { - if (this._length === 0) return 0; - var arr = []; - for (var i = 0; i < this._length; ++i) { + var length = this._length; + if (length === 0) return 0; + var i = 0; + var index = 0; + while (i < length) { var element = this.getElementByPos(i); - if (element !== value) arr.push(element); + if (element !== value) { + this.setElementByPos(index, element); + index += 1; + } + i += 1; } - var _length = arr.length; - for (var i = 0; i < _length; ++i) this.setElementByPos(i, arr[i]); - return this.cut(_length - 1); + this.cut(index - 1); + return this._length; }; Deque.prototype.eraseElementByIterator = function (iter) { var _node = iter._node; @@ -1469,15 +1501,19 @@ return this.end(); }; Deque.prototype.reverse = function () { - var l = 0; - var r = this._length - 1; - while (l < r) { - var tmp = this.getElementByPos(l); - this.setElementByPos(l, this.getElementByPos(r)); - this.setElementByPos(r, tmp); - l += 1; - r -= 1; - } + this._map.reverse().forEach(function (bucket) { + bucket.reverse(); + }); + var _a = this, + _first = _a._first, + _last = _a._last, + _curFirst = _a._curFirst, + _curLast = _a._curLast; + this._first = this._bucketNum - _last - 1; + this._last = this._bucketNum - _first - 1; + this._curFirst = this._bucketSize - _curLast - 1; + this._curLast = this._bucketSize - _curFirst - 1; + return this; }; Deque.prototype.unique = function () { if (this._length <= 1) { @@ -1492,7 +1528,7 @@ this.setElementByPos(index++, cur); } } - while (this._length > index) this.popBack(); + this.cut(index - 1); return this._length; }; Deque.prototype.sort = function (cmp) { @@ -1501,24 +1537,32 @@ arr.push(this.getElementByPos(i)); } arr.sort(cmp); - for (var i = 0; i < this._length; ++i) this.setElementByPos(i, arr[i]); + for (var i = 0; i < this._length; ++i) { + this.setElementByPos(i, arr[i]); + } + return this; }; /** * @description Remove as much useless space as possible. */ Deque.prototype.shrinkToFit = function () { if (this._length === 0) return; - var arr = []; - this.forEach(function (el) { - arr.push(el); - }); - this._bucketNum = Math.max(Math.ceil(this._length / this._bucketSize), 1); - this._length = this._first = this._last = this._curFirst = this._curLast = 0; - this._map = []; - for (var i = 0; i < this._bucketNum; ++i) { - this._map.push(new Array(this._bucketSize)); + var newMap = []; + if (this._first === this._last) return;else if (this._first < this._last) { + for (var i = this._first; i <= this._last; ++i) { + newMap.push(this._map[i]); + } + } else { + for (var i = this._first; i < this._bucketNum; ++i) { + newMap.push(this._map[i]); + } + for (var i = 0; i <= this._last; ++i) { + newMap.push(this._map[i]); + } } - for (var i = 0; i < arr.length; ++i) this.pushBack(arr[i]); + this._first = 0; + this._last = newMap.length - 1; + this._map = newMap; }; Deque.prototype.forEach = function (callback) { for (var i = 0; i < this._length; ++i) { @@ -1526,41 +1570,41 @@ } }; Deque.prototype[Symbol.iterator] = function () { - return function () { - var i; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - i = 0; - _a.label = 1; - case 1: - if (!(i < this._length)) return [3 /*break*/, 4]; - return [4 /*yield*/, this.getElementByPos(i)]; - case 2: - _a.sent(); - _a.label = 3; - case 3: - ++i; - return [3 /*break*/, 1]; - case 4: - return [2 /*return*/]; - } - }); - }.bind(this)(); + var i; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + i = 0; + _a.label = 1; + case 1: + if (!(i < this._length)) return [3 /*break*/, 4]; + return [4 /*yield*/, this.getElementByPos(i)]; + case 2: + _a.sent(); + _a.label = 3; + case 3: + ++i; + return [3 /*break*/, 1]; + case 4: + return [2 /*return*/]; + } + }); }; + return Deque; }(SequentialContainer); var TreeNode = /** @class */function () { - function TreeNode(key, value) { - this._color = 1 /* TreeNodeColor.RED */; - this._key = undefined; - this._value = undefined; + function TreeNode(key, value, color) { + if (color === void 0) { + color = 1 /* TreeNodeColor.RED */; + } this._left = undefined; this._right = undefined; this._parent = undefined; this._key = key; this._value = value; + this._color = color; } /** * @description Get the pre node. @@ -1703,45 +1747,8 @@ */ _this._root = undefined; _this._cmp = cmp; - if (enableIndex) { - _this._TreeNodeClass = TreeNodeEnableIndex; - _this._set = function (key, value, hint) { - var curNode = this._preSet(key, value, hint); - if (curNode) { - var p = curNode._parent; - while (p !== this._header) { - p._subTreeSize += 1; - p = p._parent; - } - var nodeList = this._insertNodeSelfBalance(curNode); - if (nodeList) { - var _a = nodeList, - parentNode = _a.parentNode, - grandParent = _a.grandParent, - curNode_1 = _a.curNode; - parentNode._recount(); - grandParent._recount(); - curNode_1._recount(); - } - } - return this._length; - }; - _this._eraseNode = function (curNode) { - var p = this._preEraseNode(curNode); - while (p !== this._header) { - p._subTreeSize -= 1; - p = p._parent; - } - }; - } else { - _this._TreeNodeClass = TreeNode; - _this._set = function (key, value, hint) { - var curNode = this._preSet(key, value, hint); - if (curNode) this._insertNodeSelfBalance(curNode); - return this._length; - }; - _this._eraseNode = _this._preEraseNode; - } + _this.enableIndex = enableIndex; + _this._TreeNodeClass = enableIndex ? TreeNodeEnableIndex : TreeNode; _this._header = new _this._TreeNodeClass(); return _this; } @@ -1878,11 +1885,10 @@ /** * @internal */ - TreeContainer.prototype._preEraseNode = function (curNode) { - var _a, _b; + TreeContainer.prototype._eraseNode = function (curNode) { if (this._length === 1) { this.clear(); - return this._header; + return; } var swapNode = curNode; while (swapNode._left || swapNode._right) { @@ -1892,8 +1898,12 @@ } else { swapNode = swapNode._left; } - _a = __read([swapNode._key, curNode._key], 2), curNode._key = _a[0], swapNode._key = _a[1]; - _b = __read([swapNode._value, curNode._value], 2), curNode._value = _b[0], swapNode._value = _b[1]; + var key = curNode._key; + curNode._key = swapNode._key; + swapNode._key = key; + var value = curNode._value; + curNode._value = swapNode._value; + swapNode._value = value; curNode = swapNode; } if (this._header._left === swapNode) { @@ -1908,17 +1918,37 @@ } else _parent._right = undefined; this._length -= 1; this._root._color = 0 /* TreeNodeColor.BLACK */; - return _parent; + if (this.enableIndex) { + while (_parent !== this._header) { + _parent._subTreeSize -= 1; + _parent = _parent._parent; + } + } }; /** * @internal */ - TreeContainer.prototype._inOrderTraversal = function (curNode, callback) { - if (curNode === undefined) return false; - var ifReturn = this._inOrderTraversal(curNode._left, callback); - if (ifReturn) return true; - if (callback(curNode)) return true; - return this._inOrderTraversal(curNode._right, callback); + TreeContainer.prototype._inOrderTraversal = function (param) { + var pos = typeof param === 'number' ? param : undefined; + var callback = typeof param === 'function' ? param : undefined; + var nodeList = typeof param === 'undefined' ? [] : undefined; + var index = 0; + var curNode = this._root; + var stack = []; + while (stack.length || curNode) { + if (curNode) { + stack.push(curNode); + curNode = curNode._left; + } else { + curNode = stack.pop(); + if (index === pos) return curNode; + nodeList && nodeList.push(curNode); + callback && callback(curNode, index, this); + index += 1; + curNode = curNode._right; + } + } + return nodeList; }; /** * @internal @@ -1938,8 +1968,12 @@ continue; } else if (curNode === parentNode._right) { curNode._color = 0 /* TreeNodeColor.BLACK */; - if (curNode._left) curNode._left._parent = parentNode; - if (curNode._right) curNode._right._parent = grandParent; + if (curNode._left) { + curNode._left._parent = parentNode; + } + if (curNode._right) { + curNode._right._parent = grandParent; + } parentNode._right = curNode._left; grandParent._left = curNode._right; curNode._left = parentNode; @@ -1957,17 +1991,13 @@ parentNode._parent = curNode; grandParent._parent = curNode; grandParent._color = 1 /* TreeNodeColor.RED */; - return { - parentNode: parentNode, - grandParent: grandParent, - curNode: curNode - }; } else { parentNode._color = 0 /* TreeNodeColor.BLACK */; if (grandParent === this._root) { this._root = grandParent._rotateRight(); } else grandParent._rotateRight(); grandParent._color = 1 /* TreeNodeColor.RED */; + return; } } else { var uncle = grandParent._left; @@ -1979,8 +2009,12 @@ continue; } else if (curNode === parentNode._left) { curNode._color = 0 /* TreeNodeColor.BLACK */; - if (curNode._left) curNode._left._parent = grandParent; - if (curNode._right) curNode._right._parent = parentNode; + if (curNode._left) { + curNode._left._parent = grandParent; + } + if (curNode._right) { + curNode._right._parent = parentNode; + } grandParent._right = curNode._left; parentNode._left = curNode._right; curNode._left = grandParent; @@ -1998,43 +2032,40 @@ parentNode._parent = curNode; grandParent._parent = curNode; grandParent._color = 1 /* TreeNodeColor.RED */; - return { - parentNode: parentNode, - grandParent: grandParent, - curNode: curNode - }; } else { parentNode._color = 0 /* TreeNodeColor.BLACK */; if (grandParent === this._root) { this._root = grandParent._rotateLeft(); } else grandParent._rotateLeft(); grandParent._color = 1 /* TreeNodeColor.RED */; + return; } } - + if (this.enableIndex) { + parentNode._recount(); + grandParent._recount(); + curNode._recount(); + } return; } }; /** * @internal */ - TreeContainer.prototype._preSet = function (key, value, hint) { + TreeContainer.prototype._set = function (key, value, hint) { if (this._root === undefined) { this._length += 1; - this._root = new this._TreeNodeClass(key, value); - this._root._color = 0 /* TreeNodeColor.BLACK */; + this._root = new this._TreeNodeClass(key, value, 0 /* TreeNodeColor.BLACK */); this._root._parent = this._header; - this._header._parent = this._root; - this._header._left = this._root; - this._header._right = this._root; - return; + this._header._parent = this._header._left = this._header._right = this._root; + return this._length; } var curNode; var minNode = this._header._left; var compareToMin = this._cmp(minNode._key, key); if (compareToMin === 0) { minNode._value = value; - return; + return this._length; } else if (compareToMin > 0) { minNode._left = new this._TreeNodeClass(key, value); minNode._left._parent = minNode; @@ -2045,7 +2076,7 @@ var compareToMax = this._cmp(maxNode._key, key); if (compareToMax === 0) { maxNode._value = value; - return; + return this._length; } else if (compareToMax < 0) { maxNode._right = new this._TreeNodeClass(key, value); maxNode._right._parent = maxNode; @@ -2058,13 +2089,13 @@ var iterCmpRes = this._cmp(iterNode._key, key); if (iterCmpRes === 0) { iterNode._value = value; - return; + return this._length; } else /* istanbul ignore else */if (iterCmpRes > 0) { var preNode = iterNode._pre(); var preCmpRes = this._cmp(preNode._key, key); if (preCmpRes === 0) { preNode._value = value; - return; + return this._length; } else if (preCmpRes < 0) { curNode = new this._TreeNodeClass(key, value); if (preNode._right === undefined) { @@ -2100,19 +2131,27 @@ curNode = curNode._right; } else { curNode._value = value; - return; + return this._length; } } } } } + if (this.enableIndex) { + var parent_1 = curNode._parent; + while (parent_1 !== this._header) { + parent_1._subTreeSize += 1; + parent_1 = parent_1._parent; + } + } + this._insertNodeSelfBalance(curNode); this._length += 1; - return curNode; + return this._length; }; /** * @internal */ - TreeContainer.prototype._findElementNode = function (curNode, key) { + TreeContainer.prototype._getTreeNodeByKey = function (curNode, key) { while (curNode) { var cmpResult = this._cmp(curNode._key, key); if (cmpResult < 0) { @@ -2148,24 +2187,23 @@ node._key = key; return true; } + var nextKey = node._next()._key; if (node === this._header._left) { - if (this._cmp(node._next()._key, key) > 0) { + if (this._cmp(nextKey, key) > 0) { node._key = key; return true; } return false; } + var preKey = node._pre()._key; if (node === this._header._right) { - if (this._cmp(node._pre()._key, key) < 0) { + if (this._cmp(preKey, key) < 0) { node._key = key; return true; } return false; } - var preKey = node._pre()._key; - if (this._cmp(preKey, key) >= 0) return false; - var nextKey = node._next()._key; - if (this._cmp(nextKey, key) <= 0) return false; + if (this._cmp(preKey, key) >= 0 || this._cmp(nextKey, key) <= 0) return false; node._key = key; return true; }; @@ -2173,16 +2211,8 @@ if (pos < 0 || pos > this._length - 1) { throw new RangeError(); } - var index = 0; - var self = this; - this._inOrderTraversal(this._root, function (curNode) { - if (pos === index) { - self._eraseNode(curNode); - return true; - } - index += 1; - return false; - }); + var node = this._inOrderTraversal(pos); + this._eraseNode(node); return this._length; }; /** @@ -2192,7 +2222,7 @@ */ TreeContainer.prototype.eraseElementByKey = function (key) { if (this._length === 0) return false; - var curNode = this._findElementNode(this._root, key); + var curNode = this._getTreeNodeByKey(this._root, key); if (curNode === this._header) return false; this._eraseNode(curNode); return true; @@ -2216,65 +2246,16 @@ this._eraseNode(node); return iter; }; - TreeContainer.prototype.forEach = function (callback) { - var e_1, _a; - var index = 0; - try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var element = _c.value; - callback(element, index++, this); - } - } catch (e_1_1) { - e_1 = { - error: e_1_1 - }; - } finally { - try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); - } finally { - if (e_1) throw e_1.error; - } - } - }; - TreeContainer.prototype.getElementByPos = function (pos) { - var e_2, _a; - if (pos < 0 || pos > this._length - 1) { - throw new RangeError(); - } - var res; - var index = 0; - try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var element = _c.value; - if (index === pos) { - res = element; - break; - } - index += 1; - } - } catch (e_2_1) { - e_2 = { - error: e_2_1 - }; - } finally { - try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); - } finally { - if (e_2) throw e_2.error; - } - } - return res; - }; /** * @description Get the height of the tree. * @returns Number about the height of the RB-tree. */ TreeContainer.prototype.getHeight = function () { if (this._length === 0) return 0; - var traversal = function (curNode) { + function traversal(curNode) { if (!curNode) return 0; return Math.max(traversal(curNode._left), traversal(curNode._right)) + 1; - }; + } return traversal(this._root); }; return TreeContainer; @@ -2408,28 +2389,6 @@ }); return _this; } - /** - * @internal - */ - OrderedSet.prototype._iterationFunc = function (curNode) { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (curNode === undefined) return [2 /*return*/]; - return [5 /*yield**/, __values(this._iterationFunc(curNode._left))]; - case 1: - _a.sent(); - return [4 /*yield*/, curNode._key]; - case 2: - _a.sent(); - return [5 /*yield**/, __values(this._iterationFunc(curNode._right))]; - case 3: - _a.sent(); - return [2 /*return*/]; - } - }); - }; - OrderedSet.prototype.begin = function () { return new OrderedSetIterator(this._header._left || this._header, this._header, this); }; @@ -2450,6 +2409,27 @@ OrderedSet.prototype.back = function () { return this._header._right ? this._header._right._key : undefined; }; + OrderedSet.prototype.lowerBound = function (key) { + var resNode = this._lowerBound(this._root, key); + return new OrderedSetIterator(resNode, this._header, this); + }; + OrderedSet.prototype.upperBound = function (key) { + var resNode = this._upperBound(this._root, key); + return new OrderedSetIterator(resNode, this._header, this); + }; + OrderedSet.prototype.reverseLowerBound = function (key) { + var resNode = this._reverseLowerBound(this._root, key); + return new OrderedSetIterator(resNode, this._header, this); + }; + OrderedSet.prototype.reverseUpperBound = function (key) { + var resNode = this._reverseUpperBound(this._root, key); + return new OrderedSetIterator(resNode, this._header, this); + }; + OrderedSet.prototype.forEach = function (callback) { + this._inOrderTraversal(function (node, index, set) { + callback(node._key, index, set); + }); + }; /** * @description Insert element to set. * @param key - The key want to insert. @@ -2464,24 +2444,15 @@ OrderedSet.prototype.insert = function (key, hint) { return this._set(key, undefined, hint); }; - OrderedSet.prototype.find = function (element) { - var resNode = this._findElementNode(this._root, element); - return new OrderedSetIterator(resNode, this._header, this); - }; - OrderedSet.prototype.lowerBound = function (key) { - var resNode = this._lowerBound(this._root, key); - return new OrderedSetIterator(resNode, this._header, this); - }; - OrderedSet.prototype.upperBound = function (key) { - var resNode = this._upperBound(this._root, key); - return new OrderedSetIterator(resNode, this._header, this); - }; - OrderedSet.prototype.reverseLowerBound = function (key) { - var resNode = this._reverseLowerBound(this._root, key); - return new OrderedSetIterator(resNode, this._header, this); + OrderedSet.prototype.getElementByPos = function (pos) { + if (pos < 0 || pos > this._length - 1) { + throw new RangeError(); + } + var node = this._inOrderTraversal(pos); + return node._key; }; - OrderedSet.prototype.reverseUpperBound = function (key) { - var resNode = this._reverseUpperBound(this._root, key); + OrderedSet.prototype.find = function (element) { + var resNode = this._getTreeNodeByKey(this._root, element); return new OrderedSetIterator(resNode, this._header, this); }; OrderedSet.prototype.union = function (other) { @@ -2492,8 +2463,29 @@ return this._length; }; OrderedSet.prototype[Symbol.iterator] = function () { - return this._iterationFunc(this._root); + var length, nodeList, i; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + length = this._length; + nodeList = this._inOrderTraversal(); + i = 0; + _a.label = 1; + case 1: + if (!(i < length)) return [3 /*break*/, 4]; + return [4 /*yield*/, nodeList[i]._key]; + case 2: + _a.sent(); + _a.label = 3; + case 3: + ++i; + return [3 /*break*/, 1]; + case 4: + return [2 /*return*/]; + } + }); }; + return OrderedSet; }(TreeContainer); @@ -2554,28 +2546,6 @@ }); return _this; } - /** - * @internal - */ - OrderedMap.prototype._iterationFunc = function (curNode) { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (curNode === undefined) return [2 /*return*/]; - return [5 /*yield**/, __values(this._iterationFunc(curNode._left))]; - case 1: - _a.sent(); - return [4 /*yield*/, [curNode._key, curNode._value]]; - case 2: - _a.sent(); - return [5 /*yield**/, __values(this._iterationFunc(curNode._right))]; - case 3: - _a.sent(); - return [2 /*return*/]; - } - }); - }; - OrderedMap.prototype.begin = function () { return new OrderedMapIterator(this._header._left || this._header, this._header, this); }; @@ -2616,6 +2586,11 @@ var resNode = this._reverseUpperBound(this._root, key); return new OrderedMapIterator(resNode, this._header, this); }; + OrderedMap.prototype.forEach = function (callback) { + this._inOrderTraversal(function (node, index, map) { + callback([node._key, node._value], index, map); + }); + }; /** * @description Insert a key-value pair or set value by the given key. * @param key - The key want to insert. @@ -2631,8 +2606,15 @@ OrderedMap.prototype.setElement = function (key, value, hint) { return this._set(key, value, hint); }; + OrderedMap.prototype.getElementByPos = function (pos) { + if (pos < 0 || pos > this._length - 1) { + throw new RangeError(); + } + var node = this._inOrderTraversal(pos); + return [node._key, node._value]; + }; OrderedMap.prototype.find = function (key) { - var curNode = this._findElementNode(this._root, key); + var curNode = this._getTreeNodeByKey(this._root, key); return new OrderedMapIterator(curNode, this._header, this); }; /** @@ -2642,7 +2624,7 @@ * const val = container.getElementByKey(1); */ OrderedMap.prototype.getElementByKey = function (key) { - var curNode = this._findElementNode(this._root, key); + var curNode = this._getTreeNodeByKey(this._root, key); return curNode._value; }; OrderedMap.prototype.union = function (other) { @@ -2653,8 +2635,30 @@ return this._length; }; OrderedMap.prototype[Symbol.iterator] = function () { - return this._iterationFunc(this._root); + var length, nodeList, i, node; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + length = this._length; + nodeList = this._inOrderTraversal(); + i = 0; + _a.label = 1; + case 1: + if (!(i < length)) return [3 /*break*/, 4]; + node = nodeList[i]; + return [4 /*yield*/, [node._key, node._value]]; + case 2: + _a.sent(); + _a.label = 3; + case 3: + ++i; + return [3 /*break*/, 1]; + case 4: + return [2 /*return*/]; + } + }); }; + return OrderedMap; }(TreeContainer); @@ -2782,13 +2786,12 @@ node._value = value; return this._length; } - newTail = { + this._originMap[key] = newTail = { _key: key, _value: value, _pre: this._tail, _next: this._header }; - this._originMap[key] = newTail; } if (this._length === 0) { this._head = newTail; @@ -2965,26 +2968,25 @@ } }; HashSet.prototype[Symbol.iterator] = function () { - return function () { - var node; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - node = this._head; - _a.label = 1; - case 1: - if (!(node !== this._header)) return [3 /*break*/, 3]; - return [4 /*yield*/, node._key]; - case 2: - _a.sent(); - node = node._next; - return [3 /*break*/, 1]; - case 3: - return [2 /*return*/]; - } - }); - }.bind(this)(); + var node; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + node = this._head; + _a.label = 1; + case 1: + if (!(node !== this._header)) return [3 /*break*/, 3]; + return [4 /*yield*/, node._key]; + case 2: + _a.sent(); + node = node._next; + return [3 /*break*/, 1]; + case 3: + return [2 /*return*/]; + } + }); }; + return HashSet; }(HashContainer); @@ -3115,26 +3117,25 @@ } }; HashMap.prototype[Symbol.iterator] = function () { - return function () { - var node; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - node = this._head; - _a.label = 1; - case 1: - if (!(node !== this._header)) return [3 /*break*/, 3]; - return [4 /*yield*/, [node._key, node._value]]; - case 2: - _a.sent(); - node = node._next; - return [3 /*break*/, 1]; - case 3: - return [2 /*return*/]; - } - }); - }.bind(this)(); + var node; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + node = this._head; + _a.label = 1; + case 1: + if (!(node !== this._header)) return [3 /*break*/, 3]; + return [4 /*yield*/, [node._key, node._value]]; + case 2: + _a.sent(); + node = node._next; + return [3 /*break*/, 1]; + case 3: + return [2 /*return*/]; + } + }); }; + return HashMap; }(HashContainer); diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.min.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.min.js index d9e814ccfc0e50..1d205733ed9de0 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.min.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.min.js @@ -1,8 +1,8 @@ /*! - * js-sdsl v4.3.0 + * js-sdsl v4.4.0 * https://github.com/js-sdsl/js-sdsl * (c) 2021-present ZLY201 * MIT license */ -!function(t,i){"object"==typeof exports&&"undefined"!=typeof module?i(exports):"function"==typeof define&&define.amd?define(["exports"],i):i((t="undefined"!=typeof globalThis?globalThis:t||self).sdsl={})}(this,function(t){"use strict";var L=function(t,i){return(L=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(t,i){t.__proto__=i}:function(t,i){for(var r in i)Object.prototype.hasOwnProperty.call(i,r)&&(t[r]=i[r])}))(t,i)};function i(t,i){if("function"!=typeof i&&null!==i)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");function r(){this.constructor=t}L(t,i),t.prototype=null===i?Object.create(i):(r.prototype=i.prototype,new r)}function r(e,n){var o,s,h,u={label:0,sent:function(){if(1&h[0])throw h[1];return h[1]},trys:[],ops:[]},f={next:t(0),throw:t(1),return:t(2)};return"function"==typeof Symbol&&(f[Symbol.iterator]=function(){return this}),f;function t(r){return function(t){var i=[r,t];if(o)throw new TypeError("Generator is already executing.");for(;u=f&&i[f=0]?0:u;)try{if(o=1,s&&(h=2&i[0]?s.return:i[0]?s.throw||((h=s.return)&&h.call(s),0):s.next)&&!(h=h.call(s,i[1])).done)return h;switch(s=0,(i=h?[2&i[0],h.value]:i)[0]){case 0:case 1:h=i;break;case 4:return u.label++,{value:i[1],done:!1};case 5:u.label++,s=i[1],i=[0];continue;case 7:i=u.ops.pop(),u.trys.pop();continue;default:if(!(h=0<(h=u.trys).length&&h[h.length-1])&&(6===i[0]||2===i[0])){u=0;continue}if(3===i[0]&&(!h||i[1]>h[0]&&i[1]=t.length?void 0:t)&&t[e++],done:!t}}};throw new TypeError(i?"Object is not iterable.":"Symbol.iterator is not defined.")}function h(t,i){var r="function"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var e,n,o=r.call(t),s=[];try{for(;(void 0===i||0=i&&4096>1,e=this.l[r];if(this.v(e,i)<=0)break;this.l[t]=e,t=r}this.l[t]=i},p.prototype._=function(t,i){for(var r=this.l[t];t>1)),t},p.prototype.top=function(){return this.l[0]},p.prototype.find=function(t){return 0<=this.l.indexOf(t)},p.prototype.remove=function(t){t=this.l.indexOf(t);return!(t<0||(0===t?this.pop():t===this.i-1?(this.l.pop(),--this.i):(this.l.splice(t,1,this.l.pop()),--this.i,this.p(t),this._(t,this.i>>1)),0))},p.prototype.updateItem=function(t){t=this.l.indexOf(t);return!(t<0||(this.p(t),this._(t,this.i>>1),0))},p.prototype.toArray=function(){return f([],h(this.l),!1)};var U,n=p;function p(t,i,r){void 0===t&&(t=[]),void 0===i&&(i=function(t,i){return i>1),s=n.i-1>>1;0<=s;--s)n._(s,o);return n}i(Y,J=_);var J,c=Y;function Y(){return null!==J&&J.apply(this,arguments)||this}function a(){throw new RangeError("Iterator access denied!")}i(Z,z=e),Object.defineProperty(Z.prototype,"pointer",{get:function(){return this.container.getElementByPos(this.t)},set:function(t){this.container.setElementByPos(this.t,t)},enumerable:!1,configurable:!0});var z,W=Z;function Z(t,i){i=z.call(this,i)||this;return i.t=t,0===i.iteratorType?(i.pre=function(){return 0===this.t&&a(),--this.t,this},i.next=function(){return this.t===this.container.size()&&a(),this.t+=1,this}):(i.pre=function(){return this.t===this.container.size()-1&&a(),this.t+=1,this},i.next=function(){return-1===this.t&&a(),--this.t,this}),i}i(Q,$=W),Q.prototype.copy=function(){return new Q(this.t,this.container,this.iteratorType)};var $,y=Q;function Q(t,i,r){t=$.call(this,t,r)||this;return t.container=i,t}i(l,tt=c),l.prototype.clear=function(){this.i=0,this.I.length=0},l.prototype.begin=function(){return new y(0,this)},l.prototype.end=function(){return new y(this.i,this)},l.prototype.rBegin=function(){return new y(this.i-1,this,1)},l.prototype.rEnd=function(){return new y(-1,this,1)},l.prototype.front=function(){return this.I[0]},l.prototype.back=function(){return this.I[this.i-1]},l.prototype.getElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;return this.I[t]},l.prototype.eraseElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;return this.I.splice(t,1),--this.i,this.i},l.prototype.eraseElementByValue=function(t){for(var i=0,r=0;rthis.i-1)throw new RangeError;this.I[t]=i},l.prototype.insert=function(t,i,r){var e;if(void 0===r&&(r=1),t<0||t>this.i)throw new RangeError;return(e=this.I).splice.apply(e,f([t,0],h(new Array(r).fill(i)),!1)),this.i+=r,this.i},l.prototype.find=function(t){for(var i=0;ithis.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.O;return i.k},S.prototype.eraseElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.O;return this.M(i),this.i},S.prototype.eraseElementByValue=function(t){for(var i=this.H;i!==this.S;)i.k===t&&this.M(i),i=i.O;return this.i},S.prototype.eraseElementByIterator=function(t){var i=t.t;return i===this.S&&a(),t=t.next(),this.M(i),t},S.prototype.pushBack=function(t){return this.A(t,this.g),this.i},S.prototype.popBack=function(){var t;if(0!==this.i)return t=this.g.k,this.M(this.g),t},S.prototype.pushFront=function(t){return this.A(t,this.S),this.i},S.prototype.popFront=function(){var t;if(0!==this.i)return t=this.H.k,this.M(this.H),t},S.prototype.setElementByPos=function(t,i){if(t<0||t>this.i-1)throw new RangeError;for(var r=this.H;t--;)r=r.O;r.k=i},S.prototype.insert=function(t,i,r){if(void 0===r&&(r=1),t<0||t>this.i)throw new RangeError;if(!(r<=0))if(0===t)for(;r--;)this.pushFront(i);else if(t===this.i)for(;r--;)this.pushBack(i);else{for(var e=this.H,n=1;n>1,1),r=0;r>1},w.prototype.begin=function(){return new B(0,this)},w.prototype.end=function(){return new B(this.i,this)},w.prototype.rBegin=function(){return new B(this.i-1,this,1)},w.prototype.rEnd=function(){return new B(-1,this,1)},w.prototype.front=function(){if(0!==this.i)return this.m[this.u][this.T]},w.prototype.back=function(){if(0!==this.i)return this.m[this.C][this.q]},w.prototype.pushBack=function(t){return this.i&&(this.qthis.i-1)throw new RangeError;var t=this.R(t),i=t.curNodeBucketIndex,t=t.curNodePointerIndex;return this.m[i][t]},w.prototype.setElementByPos=function(t,i){if(t<0||t>this.i-1)throw new RangeError;var t=this.R(t),r=t.curNodeBucketIndex,t=t.curNodePointerIndex;this.m[r][t]=i},w.prototype.insert=function(t,i,r){if(void 0===r&&(r=1),t<0||t>this.i)throw new RangeError;if(0===t)for(;r--;)this.pushFront(i);else if(t===this.i)for(;r--;)this.pushBack(i);else{for(var e=[],n=t;nthis.i-1)throw new RangeError;if(0===t)this.popFront();else if(t===this.i-1)this.popBack();else{for(var i=[],r=t+1;rt;)this.popBack()}return this.i},w.prototype.sort=function(t){for(var i=[],r=0;r>1)-(i>>1),r.T=r.q=r.V-e%r.V>>1,r);return t.forEach(function(t){o.pushBack(t)}),r}g.prototype.L=function(){var t=this;if(1===t.N&&t.F.F===t)t=t.G;else if(t.B)for(t=t.B;t.G;)t=t.G;else{for(var i=t.F;i.B===t;)i=(t=i).F;t=i}return t},g.prototype.O=function(){var t=this;if(t.G){for(t=t.G;t.B;)t=t.B;return t}for(var i=t.F;i.G===t;)i=(t=i).F;return t.G!==i?i:t},g.prototype.J=function(){var t=this.F,i=this.G,r=i.B;return t.F===this?t.F=i:t.B===this?t.B=i:t.G=i,i.F=t,(i.B=this).F=i,(this.G=r)&&(r.F=this),i},g.prototype.K=function(){var t=this.F,i=this.B,r=i.G;return t.F===this?t.F=i:t.B===this?t.B=i:t.G=i,i.F=t,(i.G=this).F=i,(this.B=r)&&(r.F=this),i};var ut=g;function g(t,i){this.N=1,this.P=void 0,this.k=void 0,this.B=void 0,this.G=void 0,this.F=void 0,this.P=t,this.k=i}i(m,E=ut),m.prototype.J=function(){var t=E.prototype.J.call(this);return this.W(),t.W(),t},m.prototype.K=function(){var t=E.prototype.K.call(this);return this.W(),t.W(),t},m.prototype.W=function(){this.U=1,this.B&&(this.U+=this.B.U),this.G&&(this.U+=this.G.U)};var E,ft=m;function m(){var t=null!==E&&E.apply(this,arguments)||this;return t.U=1,t}i(P,pt=_),P.prototype.rt=function(t,i){for(var r=this.S;t;){var e=this.v(t.P,i);if(e<0)t=t.G;else{if(!(0this.i-1)throw new RangeError;var r=0,e=this;return this.ut(this.X,function(t){return i===r?(e.M(t),!0):(r+=1,!1)}),this.i},P.prototype.eraseElementByKey=function(t){return 0!==this.i&&(t=this.ot(this.X,t))!==this.S&&(this.M(t),!0)},P.prototype.eraseElementByIterator=function(t){var i=t.t,r=(i===this.S&&a(),void 0===i.G);return 0===t.iteratorType?r&&t.next():r&&void 0!==i.B||t.next(),this.M(i),t},P.prototype.forEach=function(t){var i,r,e=0;try{for(var n=u(this),o=n.next();!o.done;o=n.next())t(o.value,e++,this)}catch(t){i={error:t}}finally{try{o&&!o.done&&(r=n.return)&&r.call(n)}finally{if(i)throw i.error}}},P.prototype.getElementByPos=function(t){var i,r,e;if(t<0||t>this.i-1)throw new RangeError;var n=0;try{for(var o=u(this),s=o.next();!s.done;s=o.next()){var h=s.value;if(n===t){e=h;break}n+=1}}catch(t){i={error:t}}finally{try{s&&!s.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}return e},P.prototype.getHeight=function(){var i;return 0===this.i?0:(i=function(t){return t?Math.max(i(t.B),i(t.G))+1:0})(this.X)};var pt,c=P;function P(t,i){void 0===t&&(t=function(t,i){return tthis.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.O;return this.M(i),this.i};var mt,e=H;function H(){var t=mt.call(this)||this;return t.ct=[],t.vt={},t.HASH_TAG=Symbol("@@HASH_TAG"),Object.setPrototypeOf(t.vt,null),t.S={},t.S.L=t.S.O=t.H=t.g=t.S,t}i(x,Pt=c),Object.defineProperty(x.prototype,"pointer",{get:function(){return this.t===this.S&&a(),this.t.P},enumerable:!1,configurable:!0}),x.prototype.copy=function(){return new x(this.t,this.S,this.container,this.iteratorType)};var Pt,T=x;function x(t,i,r,e){t=Pt.call(this,t,i,e)||this;return t.container=r,t}i(X,bt=e),X.prototype.begin=function(){return new T(this.H,this.S,this)},X.prototype.end=function(){return new T(this.S,this.S,this)},X.prototype.rBegin=function(){return new T(this.g,this.S,this,1)},X.prototype.rEnd=function(){return new T(this.S,this.S,this,1)},X.prototype.front=function(){return this.H.P},X.prototype.back=function(){return this.g.P},X.prototype.insert=function(t,i){return this.Z(t,void 0,i)},X.prototype.getElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.O;return i.P},X.prototype.find=function(t,i){t=this.ot(t,i);return new T(t,this.S,this)},X.prototype.forEach=function(t){for(var i=0,r=this.H;r!==this.S;)t(r.P,i++,this),r=r.O},X.prototype[Symbol.iterator]=function(){return function(){var i;return r(this,function(t){switch(t.label){case 0:i=this.H,t.label=1;case 1:return i===this.S?[3,3]:[4,i.P];case 2:return t.sent(),i=i.O,[3,1];case 3:return[2]}})}.bind(this)()};var bt,_=X;function X(t){void 0===t&&(t=[]);var i=bt.call(this)||this,r=i;return t.forEach(function(t){r.insert(t)}),i}i(Gt,kt=c),Object.defineProperty(Gt.prototype,"pointer",{get:function(){this.t===this.S&&a();var e=this;return new Proxy([],{get:function(t,i){return"0"===i?e.t.P:"1"===i?e.t.k:void 0},set:function(t,i,r){if("1"!==i)throw new TypeError("props must be 1");return e.t.k=r,!0}})},enumerable:!1,configurable:!0}),Gt.prototype.copy=function(){return new Gt(this.t,this.S,this.container,this.iteratorType)};var kt,I=Gt;function Gt(t,i,r,e){t=kt.call(this,t,i,e)||this;return t.container=r,t}i(A,Ot=e),A.prototype.begin=function(){return new I(this.H,this.S,this)},A.prototype.end=function(){return new I(this.S,this.S,this)},A.prototype.rBegin=function(){return new I(this.g,this.S,this,1)},A.prototype.rEnd=function(){return new I(this.S,this.S,this,1)},A.prototype.front=function(){if(0!==this.i)return[this.H.P,this.H.k]},A.prototype.back=function(){if(0!==this.i)return[this.g.P,this.g.k]},A.prototype.setElement=function(t,i,r){return this.Z(t,i,r)},A.prototype.getElementByKey=function(t,i){return(i=void 0===i?wt(t):i)?void 0!==(i=t[this.HASH_TAG])?this.ct[i].k:void 0:(i=this.vt[t])?i.k:void 0},A.prototype.getElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.O;return[i.P,i.k]},A.prototype.find=function(t,i){t=this.ot(t,i);return new I(t,this.S,this)},A.prototype.forEach=function(t){for(var i=0,r=this.H;r!==this.S;)t([r.P,r.k],i++,this),r=r.O},A.prototype[Symbol.iterator]=function(){return function(){var i;return r(this,function(t){switch(t.label){case 0:i=this.H,t.label=1;case 1:return i===this.S?[3,3]:[4,[i.P,i.k]];case 2:return t.sent(),i=i.O,[3,1];case 3:return[2]}})}.bind(this)()};var Ot,c=A;function A(t){void 0===t&&(t=[]);var i=Ot.call(this)||this,r=i;return t.forEach(function(t){r.setElement(t[0],t[1])}),i}t.Deque=W,t.HashMap=c,t.HashSet=_,t.LinkList=nt,t.OrderedMap=at,t.OrderedSet=dt,t.PriorityQueue=n,t.Queue=K,t.Stack=C,t.Vector=it,Object.defineProperty(t,"dt",{value:!0})}); +!function(t,i){"object"==typeof exports&&"undefined"!=typeof module?i(exports):"function"==typeof define&&define.amd?define(["exports"],i):i((t="undefined"!=typeof globalThis?globalThis:t||self).sdsl={})}(this,function(t){"use strict";var A=function(t,i){return(A=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(t,i){t.__proto__=i}:function(t,i){for(var r in i)Object.prototype.hasOwnProperty.call(i,r)&&(t[r]=i[r])}))(t,i)};function i(t,i){if("function"!=typeof i&&null!==i)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");function r(){this.constructor=t}A(t,i),t.prototype=null===i?Object.create(i):(r.prototype=i.prototype,new r)}function s(e,n){var s,o,h,u={label:0,sent:function(){if(1&h[0])throw h[1];return h[1]},trys:[],ops:[]},f={next:t(0),throw:t(1),return:t(2)};return"function"==typeof Symbol&&(f[Symbol.iterator]=function(){return this}),f;function t(r){return function(t){var i=[r,t];if(s)throw new TypeError("Generator is already executing.");for(;u=f&&i[f=0]?0:u;)try{if(s=1,o&&(h=2&i[0]?o.return:i[0]?o.throw||((h=o.return)&&h.call(o),0):o.next)&&!(h=h.call(o,i[1])).done)return h;switch(o=0,(i=h?[2&i[0],h.value]:i)[0]){case 0:case 1:h=i;break;case 4:return u.label++,{value:i[1],done:!1};case 5:u.label++,o=i[1],i=[0];continue;case 7:i=u.ops.pop(),u.trys.pop();continue;default:if(!(h=0<(h=u.trys).length&&h[h.length-1])&&(6===i[0]||2===i[0])){u=0;continue}if(3===i[0]&&(!h||i[1]>h[0]&&i[1]=i&&4096>1,e=this.l[r];if(this.v(e,i)<=0)break;this.l[t]=e,t=r}this.l[t]=i},f.prototype._=function(t,i){for(var r=this.l[t];t>1)),t},f.prototype.top=function(){return this.l[0]},f.prototype.find=function(t){return 0<=this.l.indexOf(t)},f.prototype.remove=function(t){t=this.l.indexOf(t);return!(t<0||(0===t?this.pop():t===this.i-1?(this.l.pop(),--this.i):(this.l.splice(t,1,this.l.pop()),--this.i,this.p(t),this._(t,this.i>>1)),0))},f.prototype.updateItem=function(t){t=this.l.indexOf(t);return!(t<0||(this.p(t),this._(t,this.i>>1),0))},f.prototype.toArray=function(){return u([],h(this.l),!1)};var U,e=f;function f(t,i,r){void 0===t&&(t=[]),void 0===i&&(i=function(t,i){return i>1),o=n.i-1>>1;0<=o;--o)n._(o,s);return n}i(z,J=q);var J,p=z;function z(){return null!==J&&J.apply(this,arguments)||this}function c(){throw new RangeError("Iterator access denied!")}i(Z,W=r),Object.defineProperty(Z.prototype,"pointer",{get:function(){return this.container.getElementByPos(this.t)},set:function(t){this.container.setElementByPos(this.t,t)},enumerable:!1,configurable:!0});var W,Y=Z;function Z(t,i){i=W.call(this,i)||this;return i.t=t,0===i.iteratorType?(i.pre=function(){return 0===this.t&&c(),--this.t,this},i.next=function(){return this.t===this.container.size()&&c(),this.t+=1,this}):(i.pre=function(){return this.t===this.container.size()-1&&c(),this.t+=1,this},i.next=function(){return-1===this.t&&c(),--this.t,this}),i}i(Q,$=Y),Q.prototype.copy=function(){return new Q(this.t,this.container,this.iteratorType)};var $,a=Q;function Q(t,i,r){t=$.call(this,t,r)||this;return t.container=i,t}i(l,tt=p),l.prototype.clear=function(){this.i=0,this.I.length=0},l.prototype.begin=function(){return new a(0,this)},l.prototype.end=function(){return new a(this.i,this)},l.prototype.rBegin=function(){return new a(this.i-1,this,1)},l.prototype.rEnd=function(){return new a(-1,this,1)},l.prototype.front=function(){return this.I[0]},l.prototype.back=function(){return this.I[this.i-1]},l.prototype.getElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;return this.I[t]},l.prototype.eraseElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;return this.I.splice(t,1),--this.i,this.i},l.prototype.eraseElementByValue=function(t){for(var i=0,r=0;rthis.i-1)throw new RangeError;this.I[t]=i},l.prototype.insert=function(t,i,r){var e;if(void 0===r&&(r=1),t<0||t>this.i)throw new RangeError;return(e=this.I).splice.apply(e,u([t,0],h(new Array(r).fill(i)),!1)),this.i+=r,this.i},l.prototype.find=function(t){for(var i=0;i=t.length?void 0:t)&&t[e++],done:!t}}};throw new TypeError(i?"Object is not iterable.":"Symbol.iterator is not defined.")}(this.I)];case 1:return t.sent(),[2]}})};var tt,it=l;function l(t,i){void 0===t&&(t=[]),void 0===i&&(i=!0);var r,e=tt.call(this)||this;return Array.isArray(t)?(e.I=i?u([],h(t),!1):t,e.i=t.length):(e.I=[],r=e,t.forEach(function(t){r.pushBack(t)})),e}i(v,rt=r),Object.defineProperty(v.prototype,"pointer",{get:function(){return this.t===this.O&&c(),this.t.k},set:function(t){this.t===this.O&&c(),this.t.k=t},enumerable:!1,configurable:!0}),v.prototype.copy=function(){return new v(this.t,this.O,this.container,this.iteratorType)};var rt,y=v;function v(t,i,r,e){e=rt.call(this,e)||this;return e.t=t,e.O=i,e.container=r,0===e.iteratorType?(e.pre=function(){return this.t.S===this.O&&c(),this.t=this.t.S,this},e.next=function(){return this.t===this.O&&c(),this.t=this.t.L,this}):(e.pre=function(){return this.t.L===this.O&&c(),this.t=this.t.L,this},e.next=function(){return this.t===this.O&&c(),this.t=this.t.S,this}),e}i(O,et=p),O.prototype.M=function(t){var i=t.S,r=t.L;(i.L=r).S=i,t===this.H&&(this.H=r),t===this.g&&(this.g=i),--this.i},O.prototype.A=function(t,i){var r=i.L,t={k:t,S:i,L:r};i.L=t,r.S=t,i===this.O&&(this.H=t),r===this.O&&(this.g=t),this.i+=1},O.prototype.clear=function(){this.i=0,this.H=this.g=this.O.S=this.O.L=this.O},O.prototype.begin=function(){return new y(this.H,this.O,this)},O.prototype.end=function(){return new y(this.O,this.O,this)},O.prototype.rBegin=function(){return new y(this.g,this.O,this,1)},O.prototype.rEnd=function(){return new y(this.O,this.O,this,1)},O.prototype.front=function(){return this.H.k},O.prototype.back=function(){return this.g.k},O.prototype.getElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.L;return i.k},O.prototype.eraseElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.L;return this.M(i),this.i},O.prototype.eraseElementByValue=function(t){for(var i=this.H;i!==this.O;)i.k===t&&this.M(i),i=i.L;return this.i},O.prototype.eraseElementByIterator=function(t){var i=t.t;return i===this.O&&c(),t=t.next(),this.M(i),t},O.prototype.pushBack=function(t){return this.A(t,this.g),this.i},O.prototype.popBack=function(){var t;if(0!==this.i)return t=this.g.k,this.M(this.g),t},O.prototype.pushFront=function(t){return this.A(t,this.O),this.i},O.prototype.popFront=function(){var t;if(0!==this.i)return t=this.H.k,this.M(this.H),t},O.prototype.setElementByPos=function(t,i){if(t<0||t>this.i-1)throw new RangeError;for(var r=this.H;t--;)r=r.L;r.k=i},O.prototype.insert=function(t,i,r){if(void 0===r&&(r=1),t<0||t>this.i)throw new RangeError;if(!(r<=0))if(0===t)for(;r--;)this.pushFront(i);else if(t===this.i)for(;r--;)this.pushBack(i);else{for(var e=this.H,n=1;n>1||1,e=0;e=this.D&&(i-=this.D),{curNodeBucketIndex:i,curNodePointerIndex:i=(i=(t+1)%this.V-1)<0?this.V-1:i}},P.prototype.clear=function(){this.m=[new Array(this.V)],this.D=1,this.u=this.C=this.i=0,this.T=this.q=this.V>>1},P.prototype.begin=function(){return new d(0,this)},P.prototype.end=function(){return new d(this.i,this)},P.prototype.rBegin=function(){return new d(this.i-1,this,1)},P.prototype.rEnd=function(){return new d(-1,this,1)},P.prototype.front=function(){if(0!==this.i)return this.m[this.u][this.T]},P.prototype.back=function(){if(0!==this.i)return this.m[this.C][this.q]},P.prototype.pushBack=function(t){return this.i&&(this.qthis.i-1)throw new RangeError;var t=this.R(t),i=t.curNodeBucketIndex,t=t.curNodePointerIndex;return this.m[i][t]},P.prototype.setElementByPos=function(t,i){if(t<0||t>this.i-1)throw new RangeError;var t=this.R(t),r=t.curNodeBucketIndex,t=t.curNodePointerIndex;this.m[r][t]=i},P.prototype.insert=function(t,i,r){void 0===r&&(r=1);var e=this.i;if(t<0||ethis.i-1)throw new RangeError;if(0===t)this.popFront();else{if(t!==this.i-1)for(var i=this.i-1,r=this.R(t),e=r.curNodeBucketIndex,n=r.curNodePointerIndex,s=t;s>1)-(i>>1),r.T=r.q=r.V-e%r.V>>1,r);return t.forEach(function(t){s.pushBack(t)}),r}w.prototype.S=function(){var t=this;if(1===t.F&&t.B.B===t)t=t.N;else if(t.P)for(t=t.P;t.N;)t=t.N;else{for(var i=t.B;i.P===t;)i=(t=i).B;t=i}return t},w.prototype.L=function(){var t=this;if(t.N){for(t=t.N;t.P;)t=t.P;return t}for(var i=t.B;i.N===t;)i=(t=i).B;return t.N!==i?i:t},w.prototype.J=function(){var t=this.B,i=this.N,r=i.P;return t.B===this?t.B=i:t.P===this?t.P=i:t.N=i,i.B=t,(i.P=this).B=i,(this.N=r)&&(r.B=this),i},w.prototype.K=function(){var t=this.B,i=this.P,r=i.N;return t.B===this?t.B=i:t.P===this?t.P=i:t.N=i,i.B=t,(i.N=this).B=i,(this.P=r)&&(r.B=this),i};var pt=w;function w(t,i,r){void 0===r&&(r=1),this.P=void 0,this.N=void 0,this.B=void 0,this.G=t,this.k=i,this.F=r}i(g,B=pt),g.prototype.J=function(){var t=B.prototype.J.call(this);return this.W(),t.W(),t},g.prototype.K=function(){var t=B.prototype.K.call(this);return this.W(),t.W(),t},g.prototype.W=function(){this.U=1,this.P&&(this.U+=this.P.U),this.N&&(this.U+=this.N.U)};var B,ct=g;function g(){var t=null!==B&&B.apply(this,arguments)||this;return t.U=1,t}i(b,at=q),b.prototype.Z=function(t,i){for(var r=this.O;t;){var e=this.v(t.G,i);if(e<0)t=t.N;else{if(!(0this.i-1)throw new RangeError;t=this.et(t);return this.M(t),this.i},b.prototype.eraseElementByKey=function(t){return 0!==this.i&&(t=this.ht(this.X,t))!==this.O&&(this.M(t),!0)},b.prototype.eraseElementByIterator=function(t){var i=t.t,r=(i===this.O&&c(),void 0===i.N);return 0===t.iteratorType?r&&t.next():r&&void 0!==i.P||t.next(),this.M(i),t},b.prototype.getHeight=function(){return 0===this.i?0:function t(i){return i?Math.max(t(i.P),t(i.N))+1:0}(this.X)};var at,p=b;function b(t,i){void 0===t&&(t=function(t,i){return tthis.i-1)throw new RangeError;return this.et(t).G},k.prototype.find=function(t){t=this.ht(this.X,t);return new m(t,this.O,this)},k.prototype.union=function(t){var i=this;return t.forEach(function(t){i.insert(t)}),this.i},k.prototype[Symbol.iterator]=function(){var i,r,e;return s(this,function(t){switch(t.label){case 0:i=this.i,r=this.et(),e=0,t.label=1;case 1:return ethis.i-1)throw new RangeError;t=this.et(t);return[t.G,t.k]},L.prototype.find=function(t){t=this.ht(this.X,t);return new N(t,this.O,this)},L.prototype.getElementByKey=function(t){return this.ht(this.X,t).k},L.prototype.union=function(t){var i=this;return t.forEach(function(t){i.setElement(t[0],t[1])}),this.i},L.prototype[Symbol.iterator]=function(){var i,r,e,n;return s(this,function(t){switch(t.label){case 0:i=this.i,r=this.et(),e=0,t.label=1;case 1:return ethis.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.L;return this.M(i),this.i};var Et,r=S;function S(){var t=Et.call(this)||this;return t.ut=[],t.ot={},t.HASH_TAG=Symbol("@@HASH_TAG"),Object.setPrototypeOf(t.ot,null),t.O={},t.O.S=t.O.L=t.H=t.g=t.O,t}i(F,kt=p),Object.defineProperty(F.prototype,"pointer",{get:function(){return this.t===this.O&&c(),this.t.G},enumerable:!1,configurable:!0}),F.prototype.copy=function(){return new F(this.t,this.O,this.container,this.iteratorType)};var kt,G=F;function F(t,i,r,e){t=kt.call(this,t,i,e)||this;return t.container=r,t}i(I,Nt=r),I.prototype.begin=function(){return new G(this.H,this.O,this)},I.prototype.end=function(){return new G(this.O,this.O,this)},I.prototype.rBegin=function(){return new G(this.g,this.O,this,1)},I.prototype.rEnd=function(){return new G(this.O,this.O,this,1)},I.prototype.front=function(){return this.H.G},I.prototype.back=function(){return this.g.G},I.prototype.insert=function(t,i){return this.st(t,void 0,i)},I.prototype.getElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.L;return i.G},I.prototype.find=function(t,i){t=this.ft(t,i);return new G(t,this.O,this)},I.prototype.forEach=function(t){for(var i=0,r=this.H;r!==this.O;)t(r.G,i++,this),r=r.L},I.prototype[Symbol.iterator]=function(){var i;return s(this,function(t){switch(t.label){case 0:i=this.H,t.label=1;case 1:return i===this.O?[3,3]:[4,i.G];case 2:return t.sent(),i=i.L,[3,1];case 3:return[2]}})};var Nt,q=I;function I(t){void 0===t&&(t=[]);var i=Nt.call(this)||this,r=i;return t.forEach(function(t){r.insert(t)}),i}i(x,Ht=p),Object.defineProperty(x.prototype,"pointer",{get:function(){this.t===this.O&&c();var e=this;return new Proxy([],{get:function(t,i){return"0"===i?e.t.G:"1"===i?e.t.k:void 0},set:function(t,i,r){if("1"!==i)throw new TypeError("props must be 1");return e.t.k=r,!0}})},enumerable:!1,configurable:!0}),x.prototype.copy=function(){return new x(this.t,this.O,this.container,this.iteratorType)};var Ht,T=x;function x(t,i,r,e){t=Ht.call(this,t,i,e)||this;return t.container=r,t}i(X,Lt=r),X.prototype.begin=function(){return new T(this.H,this.O,this)},X.prototype.end=function(){return new T(this.O,this.O,this)},X.prototype.rBegin=function(){return new T(this.g,this.O,this,1)},X.prototype.rEnd=function(){return new T(this.O,this.O,this,1)},X.prototype.front=function(){if(0!==this.i)return[this.H.G,this.H.k]},X.prototype.back=function(){if(0!==this.i)return[this.g.G,this.g.k]},X.prototype.setElement=function(t,i,r){return this.st(t,i,r)},X.prototype.getElementByKey=function(t,i){return(i=void 0===i?gt(t):i)?void 0!==(i=t[this.HASH_TAG])?this.ut[i].k:void 0:(i=this.ot[t])?i.k:void 0},X.prototype.getElementByPos=function(t){if(t<0||t>this.i-1)throw new RangeError;for(var i=this.H;t--;)i=i.L;return[i.G,i.k]},X.prototype.find=function(t,i){t=this.ft(t,i);return new T(t,this.O,this)},X.prototype.forEach=function(t){for(var i=0,r=this.H;r!==this.O;)t([r.G,r.k],i++,this),r=r.L},X.prototype[Symbol.iterator]=function(){var i;return s(this,function(t){switch(t.label){case 0:i=this.H,t.label=1;case 1:return i===this.O?[3,3]:[4,[i.G,i.k]];case 2:return t.sent(),i=i.L,[3,1];case 3:return[2]}})};var Lt,p=X;function X(t){void 0===t&&(t=[]);var i=Lt.call(this)||this,r=i;return t.forEach(function(t){r.setElement(t[0],t[1])}),i}t.Deque=Y,t.HashMap=p,t.HashSet=q,t.LinkList=nt,t.OrderedMap=yt,t.OrderedSet=Pt,t.PriorityQueue=e,t.Queue=K,t.Stack=M,t.Vector=it,Object.defineProperty(t,"ct",{value:!0})}); //# sourceMappingURL=js-sdsl.min.js.map diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/package.json b/tools/node_modules/eslint/node_modules/js-sdsl/package.json index 1c35cd215288e7..2d3c84a4337902 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/package.json +++ b/tools/node_modules/eslint/node_modules/js-sdsl/package.json @@ -1,6 +1,6 @@ { "name": "js-sdsl", - "version": "4.3.0", + "version": "4.4.0", "description": "javascript standard data structure library which benchmark against C++ STL", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", diff --git a/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/dist/index.js b/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/dist/index.js index eb07b24d34085f..12e07535f6dd01 100644 --- a/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/dist/index.js +++ b/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/dist/index.js @@ -136,7 +136,7 @@ return null; } return { - type: type, + type, text: type }; }; @@ -209,19 +209,13 @@ makeKeyWordRule('readonly'), makeKeyWordRule('import'), makeKeyWordRule('is'), + makeKeyWordRule('in'), numberRule, identifierRule, stringValueRule ]; const breakingWhitespaceRegex = /^\s*\n\s*/; class Lexer { - constructor(text, previous, current, next) { - this.text = ''; - this.text = text; - this.previous = previous; - this.current = current; - this.next = next; - } static create(text) { const current = this.read(text); text = current.text; @@ -229,6 +223,13 @@ text = next.text; return new Lexer(text, undefined, current.token, next.token); } + constructor(text, previous, current, next) { + this.text = ''; + this.text = text; + this.previous = previous; + this.current = current; + this.next = next; + } static read(text, startOfLine = false) { startOfLine = startOfLine || breakingWhitespaceRegex.test(text); text = text.trim(); @@ -255,7 +256,10 @@ if (result === undefined) { throw new Error('Unexpected undefined'); } - if (result.type === 'JsdocTypeKeyValue' || result.type === 'JsdocTypeParameterList' || result.type === 'JsdocTypeProperty' || result.type === 'JsdocTypeReadonlyProperty') { + if (result.type === 'JsdocTypeKeyValue' || result.type === 'JsdocTypeParameterList' || + result.type === 'JsdocTypeProperty' || result.type === 'JsdocTypeReadonlyProperty' || + result.type === 'JsdocTypeObjectField' || result.type === 'JsdocTypeJsdocObjectField' || + result.type === 'JsdocTypeIndexSignature' || result.type === 'JsdocTypeMappedType') { throw new UnexpectedTypeError(result); } return result; @@ -273,13 +277,8 @@ return assertPlainKeyValueResult(result); } function assertPlainKeyValueResult(result) { - if (!isPlainKeyValue(result)) { - if (result.type === 'JsdocTypeKeyValue') { - throw new UnexpectedTypeError(result, 'Expecting no left side expression.'); - } - else { - throw new UnexpectedTypeError(result); - } + if (result.type !== 'JsdocTypeKeyValue') { + throw new UnexpectedTypeError(result); } return result; } @@ -296,8 +295,8 @@ } return result; } - function isPlainKeyValue(result) { - return result.type === 'JsdocTypeKeyValue' && !result.meta.hasLeftSideExpression; + function isSquaredProperty(result) { + return result.type === 'JsdocTypeIndexSignature' || result.type === 'JsdocTypeMappedType'; } // higher precedence = higher importance @@ -318,15 +317,15 @@ Precedence[Precedence["KEY_OF_TYPE_OF"] = 12] = "KEY_OF_TYPE_OF"; Precedence[Precedence["FUNCTION"] = 13] = "FUNCTION"; Precedence[Precedence["ARROW"] = 14] = "ARROW"; - Precedence[Precedence["GENERIC"] = 15] = "GENERIC"; - Precedence[Precedence["NAME_PATH"] = 16] = "NAME_PATH"; - Precedence[Precedence["ARRAY_BRACKETS"] = 17] = "ARRAY_BRACKETS"; + Precedence[Precedence["ARRAY_BRACKETS"] = 15] = "ARRAY_BRACKETS"; + Precedence[Precedence["GENERIC"] = 16] = "GENERIC"; + Precedence[Precedence["NAME_PATH"] = 17] = "NAME_PATH"; Precedence[Precedence["PARENTHESIS"] = 18] = "PARENTHESIS"; Precedence[Precedence["SPECIAL_TYPES"] = 19] = "SPECIAL_TYPES"; })(Precedence || (Precedence = {})); class Parser { - constructor(grammar, textOrLexer, parent) { + constructor(grammar, textOrLexer, baseParser) { this.grammar = grammar; if (typeof textOrLexer === 'string') { this._lexer = Lexer.create(textOrLexer); @@ -334,7 +333,7 @@ else { this._lexer = textOrLexer; } - this.parent = parent; + this.baseParser = baseParser; } get lexer() { return this._lexer; @@ -528,7 +527,7 @@ if (result.type === 'JsdocTypeParameterList') { return result; } - else if (result.type === 'JsdocTypeKeyValue' && isPlainKeyValue(result)) { + else if (result.type === 'JsdocTypeKeyValue') { return { type: 'JsdocTypeParameterList', elements: [result] @@ -689,7 +688,7 @@ optionalParslet ]; - function createNamePathParslet({ allowJsdocNamePaths, pathGrammar }) { + function createNamePathParslet({ allowSquareBracketsOnAnyType, allowJsdocNamePaths, pathGrammar }) { return function namePathParslet(parser, precedence, left) { if ((left == null) || precedence >= Precedence.NAME_PATH) { return null; @@ -697,7 +696,7 @@ const type = parser.lexer.current.type; const next = parser.lexer.next.type; const accept = (type === '.' && next !== '<') || - (type === '[' && left.type === 'JsdocTypeName') || + (type === '[' && (allowSquareBracketsOnAnyType || left.type === 'JsdocTypeName')) || (allowJsdocNamePaths && (type === '~' || type === '#')); if (!accept) { return null; @@ -772,7 +771,7 @@ type: 'JsdocTypeNamePath', left: assertRootResult(left), right, - pathType: pathType + pathType }; }; } @@ -864,6 +863,7 @@ stringValueParslet, numberParslet, createNamePathParslet({ + allowSquareBracketsOnAnyType: false, allowJsdocNamePaths: true, pathGrammar: null }) @@ -932,7 +932,7 @@ else { result.parameters = getParameters(value); for (const p of result.parameters) { - if (p.type === 'JsdocTypeKeyValue' && (!allowNamedParameters.includes(p.key) || p.meta.quote !== undefined)) { + if (p.type === 'JsdocTypeKeyValue' && (!allowNamedParameters.includes(p.key))) { throw new Error(`only allowed named parameters are ${allowNamedParameters.join(', ')} but got ${p.type}`); } } @@ -1054,72 +1054,6 @@ } }); - function createKeyValueParslet({ allowKeyTypes, allowReadonly, allowOptional, allowVariadic }) { - return composeParslet({ - name: 'keyValueParslet', - precedence: Precedence.KEY_VALUE, - accept: type => type === ':', - parseInfix: (parser, left) => { - var _a; - let optional = false; - let readonlyProperty = false; - let variadic = false; - if (allowOptional && left.type === 'JsdocTypeNullable') { - optional = true; - left = left.element; - } - if (allowReadonly && left.type === 'JsdocTypeReadonlyProperty') { - readonlyProperty = true; - left = left.element; - } - if (allowVariadic && left.type === 'JsdocTypeVariadic' && left.element !== undefined) { - variadic = true; - left = left.element; - } - // object parslet uses a special grammar and for the value we want to switch back to the parent - const parentParser = (_a = parser.parent) !== null && _a !== void 0 ? _a : parser; - parentParser.acceptLexerState(parser); - if (left.type === 'JsdocTypeNumber' || left.type === 'JsdocTypeName' || left.type === 'JsdocTypeStringValue') { - parentParser.consume(':'); - let quote; - if (left.type === 'JsdocTypeStringValue') { - quote = left.meta.quote; - } - const right = parentParser.parseType(Precedence.KEY_VALUE); - parser.acceptLexerState(parentParser); - return { - type: 'JsdocTypeKeyValue', - key: left.value.toString(), - right, - optional, - readonly: readonlyProperty, - variadic, - meta: { - quote, - hasLeftSideExpression: false - } - }; - } - else { - if (!allowKeyTypes) { - throw new UnexpectedTypeError(left); - } - parentParser.consume(':'); - const right = parentParser.parseType(Precedence.KEY_VALUE); - parser.acceptLexerState(parentParser); - return { - type: 'JsdocTypeKeyValue', - left: assertRootResult(left), - right: right, - meta: { - hasLeftSideExpression: true - } - }; - } - } - }); - } - function createObjectParslet({ objectFieldGrammar, allowKeyTypes }) { return composeParslet({ name: 'objectParslet', @@ -1154,19 +1088,17 @@ quote = field.meta.quote; } result.elements.push({ - type: 'JsdocTypeKeyValue', + type: 'JsdocTypeObjectField', key: field.value.toString(), right: undefined, - optional: optional, + optional, readonly: false, - variadic: false, meta: { - quote, - hasLeftSideExpression: false + quote } }); } - else if (field.type === 'JsdocTypeKeyValue') { + else if (field.type === 'JsdocTypeObjectField' || field.type === 'JsdocTypeJsdocObjectField') { result.elements.push(field); } else { @@ -1199,6 +1131,98 @@ }); } + function createObjectFieldParslet({ allowSquaredProperties, allowKeyTypes, allowReadonly, allowOptional }) { + return composeParslet({ + name: 'objectFieldParslet', + precedence: Precedence.KEY_VALUE, + accept: type => type === ':', + parseInfix: (parser, left) => { + var _a; + let optional = false; + let readonlyProperty = false; + if (allowOptional && left.type === 'JsdocTypeNullable') { + optional = true; + left = left.element; + } + if (allowReadonly && left.type === 'JsdocTypeReadonlyProperty') { + readonlyProperty = true; + left = left.element; + } + // object parslet uses a special grammar and for the value we want to switch back to the parent + const parentParser = (_a = parser.baseParser) !== null && _a !== void 0 ? _a : parser; + parentParser.acceptLexerState(parser); + if (left.type === 'JsdocTypeNumber' || left.type === 'JsdocTypeName' || left.type === 'JsdocTypeStringValue' || + isSquaredProperty(left)) { + if (isSquaredProperty(left) && !allowSquaredProperties) { + throw new UnexpectedTypeError(left); + } + parentParser.consume(':'); + let quote; + if (left.type === 'JsdocTypeStringValue') { + quote = left.meta.quote; + } + const right = parentParser.parseType(Precedence.KEY_VALUE); + parser.acceptLexerState(parentParser); + return { + type: 'JsdocTypeObjectField', + key: isSquaredProperty(left) ? left : left.value.toString(), + right, + optional, + readonly: readonlyProperty, + meta: { + quote + } + }; + } + else { + if (!allowKeyTypes) { + throw new UnexpectedTypeError(left); + } + parentParser.consume(':'); + const right = parentParser.parseType(Precedence.KEY_VALUE); + parser.acceptLexerState(parentParser); + return { + type: 'JsdocTypeJsdocObjectField', + left: assertRootResult(left), + right + }; + } + } + }); + } + + function createKeyValueParslet({ allowOptional, allowVariadic }) { + return composeParslet({ + name: 'keyValueParslet', + precedence: Precedence.KEY_VALUE, + accept: type => type === ':', + parseInfix: (parser, left) => { + let optional = false; + let variadic = false; + if (allowOptional && left.type === 'JsdocTypeNullable') { + optional = true; + left = left.element; + } + if (allowVariadic && left.type === 'JsdocTypeVariadic' && left.element !== undefined) { + variadic = true; + left = left.element; + } + if (left.type !== 'JsdocTypeName') { + throw new UnexpectedTypeError(left); + } + parser.consume(':'); + const right = parser.parseType(Precedence.KEY_VALUE); + return { + type: 'JsdocTypeKeyValue', + key: left.value, + right, + optional, + variadic + }; + } + }); + } + const jsdocBaseGrammar = [ ...baseGrammar, createFunctionParslet({ @@ -1222,14 +1246,9 @@ symbolParslet, arrayBracketsParslet, createNamePathParslet({ + allowSquareBracketsOnAnyType: false, allowJsdocNamePaths: true, pathGrammar - }), - createKeyValueParslet({ - allowKeyTypes: true, - allowOptional: false, - allowReadonly: false, - allowVariadic: false }) ]; const jsdocGrammar = [ @@ -1239,11 +1258,21 @@ // we leave out the object type deliberately objectFieldGrammar: [ createNameParslet({ - allowedAdditionalTokens: ['module'] + allowedAdditionalTokens: ['module', 'in'] + }), + createObjectFieldParslet({ + allowSquaredProperties: false, + allowKeyTypes: true, + allowOptional: false, + allowReadonly: false }), ...jsdocBaseGrammar ], allowKeyTypes: true + }), + createKeyValueParslet({ + allowOptional: true, + allowVariadic: true }) ]; @@ -1261,17 +1290,17 @@ const objectFieldGrammar$1 = [ createNameParslet({ - allowedAdditionalTokens: ['module', 'keyof', 'event', 'external'] + allowedAdditionalTokens: ['module', 'keyof', 'event', 'external', 'in'] }), nullableParslet, optionalParslet, stringValueParslet, numberParslet, - createKeyValueParslet({ + createObjectFieldParslet({ + allowSquaredProperties: false, allowKeyTypes: false, allowOptional: false, - allowReadonly: false, - allowVariadic: false + allowReadonly: false }) ]; const closureGrammar = [ @@ -1281,7 +1310,7 @@ objectFieldGrammar: objectFieldGrammar$1 }), createNameParslet({ - allowedAdditionalTokens: ['event', 'external'] + allowedAdditionalTokens: ['event', 'external', 'in'] }), typeOfParslet, createFunctionParslet({ @@ -1303,13 +1332,12 @@ pathGrammar }), createNamePathParslet({ + allowSquareBracketsOnAnyType: false, allowJsdocNamePaths: true, pathGrammar }), createKeyValueParslet({ - allowKeyTypes: false, allowOptional: false, - allowReadonly: false, allowVariadic: false }), symbolParslet @@ -1453,21 +1481,63 @@ } }); + const objectSquaredPropertyParslet = composeParslet({ + name: 'objectSquareBracketPropertyParslet', + accept: type => type === '[', + parsePrefix: parser => { + if (parser.baseParser === undefined) { + throw new Error('Only allowed inside object grammar'); + } + parser.consume('['); + const key = parser.lexer.current.text; + parser.consume('Identifier'); + let result; + if (parser.consume(':')) { + const parentParser = parser.baseParser; + parentParser.acceptLexerState(parser); + result = { + type: 'JsdocTypeIndexSignature', + key, + right: parentParser.parseType(Precedence.ARRAY_BRACKETS) + }; + parser.acceptLexerState(parentParser); + } + else if (parser.consume('in')) { + const parentParser = parser.baseParser; + parentParser.acceptLexerState(parser); + result = { + type: 'JsdocTypeMappedType', + key, + right: parentParser.parseType(Precedence.ARRAY_BRACKETS) + }; + parser.acceptLexerState(parentParser); + } + else { + throw new Error('Missing \':\' or \'in\' inside square bracketed property.'); + } + if (!parser.consume(']')) { + throw new Error('Unterminated square brackets'); + } + return result; + } + }); + const objectFieldGrammar = [ readonlyPropertyParslet, createNameParslet({ - allowedAdditionalTokens: ['module', 'event', 'keyof', 'event', 'external'] + allowedAdditionalTokens: ['module', 'event', 'keyof', 'event', 'external', 'in'] }), nullableParslet, optionalParslet, stringValueParslet, numberParslet, - createKeyValueParslet({ + createObjectFieldParslet({ + allowSquaredProperties: true, allowKeyTypes: false, allowOptional: true, - allowReadonly: true, - allowVariadic: false - }) + allowReadonly: true + }), + objectSquaredPropertyParslet ]; const typescriptGrammar = [ ...baseGrammar, @@ -1493,7 +1563,7 @@ allowPostfix: false }), createNameParslet({ - allowedAdditionalTokens: ['event', 'external'] + allowedAdditionalTokens: ['event', 'external', 'in'] }), createSpecialNamePathParslet({ allowedTypes: ['module'], @@ -1502,17 +1572,16 @@ arrayBracketsParslet, arrowFunctionParslet, createNamePathParslet({ + allowSquareBracketsOnAnyType: true, allowJsdocNamePaths: false, pathGrammar }), - createKeyValueParslet({ - allowKeyTypes: false, - allowOptional: true, - allowReadonly: true, - allowVariadic: true - }), intersectionParslet, - predicateParslet + predicateParslet, + createKeyValueParslet({ + allowVariadic: true, + allowOptional: true + }) ]; /** @@ -1565,7 +1634,7 @@ params: [] }; for (const param of source.parameters) { - if (param.type === 'JsdocTypeKeyValue' && param.meta.quote === undefined) { + if (param.type === 'JsdocTypeKeyValue') { if (param.key === 'this') { result.this = param.right; } @@ -1660,28 +1729,43 @@ } }, JsdocTypeImport: (result, transform) => `import(${transform(result.element)})`, - JsdocTypeKeyValue: (result, transform) => { - if (isPlainKeyValue(result)) { - let text = ''; - if (result.readonly) { - text += 'readonly '; - } + JsdocTypeObjectField: (result, transform) => { + let text = ''; + if (result.readonly) { + text += 'readonly '; + } + if (typeof result.key === 'string') { text += quote(result.key, result.meta.quote); - if (result.optional) { - text += '?'; - } - if (result.variadic) { - text = '...' + text; - } - if (result.right === undefined) { - return text; - } - else { - return text + `: ${transform(result.right)}`; - } } else { - return `${transform(result.left)}: ${transform(result.right)}`; + text += transform(result.key); + } + if (result.optional) { + text += '?'; + } + if (result.right === undefined) { + return text; + } + else { + return text + `: ${transform(result.right)}`; + } + }, + JsdocTypeJsdocObjectField: (result, transform) => { + return `${transform(result.left)}: ${transform(result.right)}`; + }, + JsdocTypeKeyValue: (result, transform) => { + let text = result.key; + if (result.optional) { + text += '?'; + } + if (result.variadic) { + text = '...' + text; + } + if (result.right === undefined) { + return text; + } + else { + return text + `: ${transform(result.right)}`; } }, JsdocTypeSpecialNamePath: result => `${result.specialType}:${quote(result.value, result.meta.quote)}`, @@ -1698,7 +1782,9 @@ JsdocTypeUnknown: () => '?', JsdocTypeIntersection: (result, transform) => result.elements.map(transform).join(' & '), JsdocTypeProperty: result => quote(result.value, result.meta.quote), - JsdocTypePredicate: (result, transform) => `${transform(result.left)} is ${transform(result.right)}` + JsdocTypePredicate: (result, transform) => `${transform(result.left)} is ${transform(result.right)}`, + JsdocTypeIndexSignature: (result, transform) => `[${result.key}: ${transform(result.right)}]`, + JsdocTypeMappedType: (result, transform) => `[${result.key} in ${transform(result.right)}]` }; } const storedStringifyRules = stringifyRules(); @@ -1832,7 +1918,7 @@ fields: [] }; for (const field of result.elements) { - if (field.type !== 'JsdocTypeKeyValue') { + if (field.type !== 'JsdocTypeObjectField' && field.type !== 'JsdocTypeJsdocObjectField') { transformed.fields.push({ type: 'FieldType', key: transform(field), @@ -1845,25 +1931,31 @@ } return transformed; }, + JsdocTypeObjectField: (result, transform) => { + if (typeof result.key !== 'string') { + throw new Error('Index signatures and mapped types are not supported'); + } + return { + type: 'FieldType', + key: makeName(quote(result.key, result.meta.quote)), + value: result.right === undefined ? undefined : transform(result.right) + }; + }, + JsdocTypeJsdocObjectField: (result, transform) => ({ + type: 'FieldType', + key: transform(result.left), + value: transform(result.right) + }), JsdocTypeUnion: (result, transform) => ({ type: 'TypeUnion', elements: result.elements.map(e => transform(e)) }), JsdocTypeKeyValue: (result, transform) => { - if (isPlainKeyValue(result)) { - return { - type: 'FieldType', - key: makeName(quote(result.key, result.meta.quote)), - value: result.right === undefined ? undefined : transform(result.right) - }; - } - else { - return { - type: 'FieldType', - key: transform(result.left), - value: transform(result.right) - }; - } + return { + type: 'FieldType', + key: makeName(result.key), + value: result.right === undefined ? undefined : transform(result.right) + }; }, JsdocTypeNamePath: (result, transform) => { const leftResult = transform(result.left); @@ -1902,6 +1994,8 @@ return makeName(`${result.value}(${value})`); }, JsdocTypeParenthesis: (result, transform) => transform(assertRootResult(result.element)), + JsdocTypeMappedType: notAvailableTransform, + JsdocTypeIndexSignature: notAvailableTransform, JsdocTypeImport: notAvailableTransform, JsdocTypeKeyof: notAvailableTransform, JsdocTypeTuple: notAvailableTransform, @@ -2072,14 +2166,14 @@ } return transformed; }, - JsdocTypeKeyValue: (result, transform) => { - if (!isPlainKeyValue(result)) { - throw new Error('Keys may not be typed in jsdoctypeparser.'); + JsdocTypeObjectField: (result, transform) => { + if (typeof result.key !== 'string') { + throw new Error('Index signatures and mapped types are not supported'); } if (result.right === undefined) { return { type: 'RECORD_ENTRY', - key: result.key.toString(), + key: result.key, quoteStyle: getQuoteStyle(result.meta.quote), value: null, readonly: false @@ -2103,10 +2197,41 @@ readonly: false }; }, + JsdocTypeJsdocObjectField: () => { + throw new Error('Keys may not be typed in jsdoctypeparser.'); + }, + JsdocTypeKeyValue: (result, transform) => { + if (result.right === undefined) { + return { + type: 'RECORD_ENTRY', + key: result.key, + quoteStyle: 'none', + value: null, + readonly: false + }; + } + let right = transform(result.right); + if (result.optional) { + right = { + type: 'OPTIONAL', + value: right, + meta: { + syntax: 'SUFFIX_KEY_QUESTION_MARK' + } + }; + } + return { + type: 'RECORD_ENTRY', + key: result.key, + quoteStyle: 'none', + value: right, + readonly: false + }; + }, JsdocTypeObject: (result, transform) => { const entries = []; for (const field of result.elements) { - if (field.type === 'JsdocTypeKeyValue') { + if (field.type === 'JsdocTypeObjectField' || field.type === 'JsdocTypeJsdocObjectField') { entries.push(transform(field)); } } @@ -2182,7 +2307,9 @@ }), JsdocTypeSymbol: notAvailableTransform, JsdocTypeProperty: notAvailableTransform, - JsdocTypePredicate: notAvailableTransform + JsdocTypePredicate: notAvailableTransform, + JsdocTypeMappedType: notAvailableTransform, + JsdocTypeIndexSignature: notAvailableTransform }; function jtpTransform(result) { return transform(jtpRules, result); @@ -2248,26 +2375,27 @@ } }), JsdocTypeSpecialNamePath: result => result, + JsdocTypeObjectField: (result, transform) => ({ + type: 'JsdocTypeObjectField', + key: result.key, + right: result.right === undefined ? undefined : transform(result.right), + optional: result.optional, + readonly: result.readonly, + meta: result.meta + }), + JsdocTypeJsdocObjectField: (result, transform) => ({ + type: 'JsdocTypeJsdocObjectField', + left: transform(result.left), + right: transform(result.right) + }), JsdocTypeKeyValue: (result, transform) => { - if (isPlainKeyValue(result)) { - return { - type: 'JsdocTypeKeyValue', - key: result.key, - right: result.right === undefined ? undefined : transform(result.right), - optional: result.optional, - readonly: result.readonly, - variadic: result.variadic, - meta: result.meta - }; - } - else { - return { - type: 'JsdocTypeKeyValue', - left: transform(result.left), - right: transform(result.right), - meta: result.meta - }; - } + return { + type: 'JsdocTypeKeyValue', + key: result.key, + right: result.right === undefined ? undefined : transform(result.right), + optional: result.optional, + variadic: result.variadic + }; }, JsdocTypeImport: (result, transform) => ({ type: 'JsdocTypeImport', @@ -2320,6 +2448,16 @@ type: 'JsdocTypePredicate', left: transform(result.left), right: transform(result.right) + }), + JsdocTypeIndexSignature: (result, transform) => ({ + type: 'JsdocTypeIndexSignature', + key: result.key, + right: transform(result.right) + }), + JsdocTypeMappedType: (result, transform) => ({ + type: 'JsdocTypeMappedType', + key: result.key, + right: transform(result.right) }) }; } @@ -2329,9 +2467,11 @@ JsdocTypeFunction: ['parameters', 'returnType'], JsdocTypeGeneric: ['left', 'elements'], JsdocTypeImport: [], + JsdocTypeIndexSignature: ['right'], JsdocTypeIntersection: ['elements'], JsdocTypeKeyof: ['element'], JsdocTypeKeyValue: ['right'], + JsdocTypeMappedType: ['right'], JsdocTypeName: [], JsdocTypeNamePath: ['left', 'right'], JsdocTypeNotNullable: ['element'], @@ -2339,6 +2479,8 @@ JsdocTypeNullable: ['element'], JsdocTypeNumber: [], JsdocTypeObject: ['elements'], + JsdocTypeObjectField: ['right'], + JsdocTypeJsdocObjectField: ['left', 'right'], JsdocTypeOptional: ['element'], JsdocTypeParenthesis: ['element'], JsdocTypeSpecialNamePath: [], @@ -2393,6 +2535,4 @@ exports.tryParse = tryParse; exports.visitorKeys = visitorKeys; - Object.defineProperty(exports, '__esModule', { value: true }); - })); diff --git a/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/package.json b/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/package.json index 6bab2e1197b8aa..3f508ec8242f6c 100644 --- a/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/package.json +++ b/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/package.json @@ -1,6 +1,6 @@ { "name": "jsdoc-type-pratt-parser", - "version": "3.1.0", + "version": "4.0.0", "description": "", "main": "dist/index.js", "types": "dist/src/index.d.ts", @@ -19,7 +19,8 @@ "preversion": "npm test", "prepublishOnly": "npm run build", "semantic-release": "semantic-release", - "benchmark": "npm run build && node benchmark/benchmark.js" + "benchmark": "npm run build && node benchmark/benchmark.js", + "upgrade": "npm-upgrade" }, "author": "Simon Seyock (https://github.com/simonseyock)", "contributors": [ @@ -30,32 +31,32 @@ "node": ">=12.0.0" }, "devDependencies": { - "@rollup/plugin-typescript": "^8.3.0", - "@semantic-release/changelog": "^6.0.1", + "@rollup/plugin-typescript": "^11.0.0", + "@semantic-release/changelog": "^6.0.2", "@semantic-release/git": "^10.0.1", - "@types/chai": "^4.3.0", - "@types/mocha": "^9.0.0", - "@types/node": "^17.0.5", - "@types/sinon": "^10.0.6", - "@types/sinon-chai": "^3.2.7", + "@types/chai": "^4.3.4", + "@types/mocha": "^10.0.1", + "@types/node": "^18.15.1", + "@types/sinon": "^10.0.13", + "@types/sinon-chai": "^3.2.9", "benchmark": "^2.1.4", "catharsis": "^0.9.0", - "chai": "^4.3.4", + "chai": "^4.3.7", "coveralls": "^3.1.1", - "eslint-config-standard-with-typescript": "^21.0.1", + "eslint-config-standard-with-typescript": "^34.0.0", "jsdoctypeparser": "^9.0.0", - "mocha": "^9.1.3", - "npm-upgrade": "^3.0.0", + "mocha": "^10.2.0", + "npm-upgrade": "^3.1.0", "nyc": "^15.1.0", - "rollup": "^2.62.0", - "semantic-release": "^18.0.1", - "sinon": "^12.0.1", + "rollup": "^3.19.1", + "semantic-release": "^20.1.1", + "sinon": "^15.0.2", "sinon-chai": "^3.7.0", - "ts-node": "^10.4.0", - "ts-standard": "^11.0.0", - "typedoc": "^0.22.10", - "typedoc-plugin-merge-modules": "^3.1.0", - "typescript": "^4.5.4" + "ts-node": "^10.9.1", + "ts-standard": "^12.0.2", + "typedoc": "^0.23.26", + "typedoc-plugin-merge-modules": "^4.0.1", + "typescript": "^4.9.5" }, "ts-standard": { "ignore": [ diff --git a/tools/node_modules/eslint/node_modules/spdx-license-ids/index.json b/tools/node_modules/eslint/node_modules/spdx-license-ids/index.json index fdd78fa0329faf..04c03126d98eb8 100644 --- a/tools/node_modules/eslint/node_modules/spdx-license-ids/index.json +++ b/tools/node_modules/eslint/node_modules/spdx-license-ids/index.json @@ -23,6 +23,7 @@ "APSL-1.2", "APSL-2.0", "Abstyles", + "AdaCore-doc", "Adobe-2006", "Adobe-Glyph", "Afmparse", @@ -53,6 +54,10 @@ "BSD-4-Clause", "BSD-4-Clause-Shortened", "BSD-4-Clause-UC", + "BSD-4.3RENO", + "BSD-4.3TAHOE", + "BSD-Advertising-Acknowledgement", + "BSD-Attribution-HPND-disclaimer", "BSD-Protection", "BSD-Source-Code", "BSL-1.0", @@ -63,9 +68,11 @@ "Beerware", "BitTorrent-1.0", "BitTorrent-1.1", + "Bitstream-Charter", "Bitstream-Vera", "BlueOak-1.0.0", "Borceux", + "Brian-Gladman-3-Clause", "C-UDA-1.0", "CAL-1.0", "CAL-1.0-Combined-Work-Exception", @@ -96,6 +103,7 @@ "CC-BY-NC-ND-4.0", "CC-BY-NC-SA-1.0", "CC-BY-NC-SA-2.0", + "CC-BY-NC-SA-2.0-DE", "CC-BY-NC-SA-2.0-FR", "CC-BY-NC-SA-2.0-UK", "CC-BY-NC-SA-2.5", @@ -137,6 +145,8 @@ "CERN-OHL-P-2.0", "CERN-OHL-S-2.0", "CERN-OHL-W-2.0", + "CFITSIO", + "CMU-Mach", "CNRI-Jython", "CNRI-Python", "CNRI-Python-GPL-Compatible", @@ -147,8 +157,10 @@ "CUA-OPL-1.0", "Caldera", "ClArtistic", + "Clips", "Community-Spec-1.0", "Condor-1.1", + "Cornell-Lossless-JPEG", "Crossword", "CrystalStacker", "Cube", @@ -177,6 +189,7 @@ "FSFAP", "FSFUL", "FSFULLR", + "FSFULLRWD", "FTL", "Fair", "Frameworx-1.0", @@ -212,14 +225,21 @@ "Giftware", "Glide", "Glulxe", + "Graphics-Gems", + "HP-1986", "HPND", + "HPND-Markus-Kuhn", + "HPND-export-US", "HPND-sell-variant", + "HPND-sell-variant-MIT-disclaimer", "HTMLTIDY", "HaskellReport", "Hippocratic-2.1", "IBM-pibs", "ICU", + "IEC-Code-Components-EULA", "IJG", + "IJG-short", "IPA", "IPL-1.0", "ISC", @@ -229,10 +249,13 @@ "Intel", "Intel-ACPI", "Interbase-1.0", + "JPL-image", "JPNIC", "JSON", "Jam", "JasPer-2.0", + "Kazlib", + "Knuth-CTAN", "LAL-1.2", "LAL-1.3", "LGPL-2.0-only", @@ -242,6 +265,7 @@ "LGPL-3.0-only", "LGPL-3.0-or-later", "LGPLLR", + "LOOP", "LPL-1.0", "LPL-1.02", "LPPL-1.0", @@ -263,6 +287,7 @@ "MIT-0", "MIT-CMU", "MIT-Modern-Variant", + "MIT-Wu", "MIT-advertising", "MIT-enna", "MIT-feh", @@ -277,6 +302,7 @@ "MS-RL", "MTLL", "MakeIndex", + "Martin-Birgmeier", "Minpack", "MirOS", "Motosoto", @@ -314,6 +340,7 @@ "OCLC-2.0", "ODC-By-1.0", "ODbL-1.0", + "OFFIS", "OFL-1.0", "OFL-1.0-RFN", "OFL-1.0-no-RFN", @@ -352,6 +379,7 @@ "OSL-2.0", "OSL-2.1", "OSL-3.0", + "OpenPBS-2.3", "OpenSSL", "PDDL-1.0", "PHP-3.0", @@ -366,6 +394,7 @@ "Python-2.0", "Python-2.0.1", "QPL-1.0", + "QPL-1.0-INRIA-2004", "Qhull", "RHeCos-1.1", "RPL-1.1", @@ -402,14 +431,20 @@ "Spencer-94", "Spencer-99", "SugarCRM-1.1.3", + "SunPro", + "Symlinks", "TAPR-OHL-1.0", "TCL", "TCP-wrappers", "TMate", "TORQUE-1.1", "TOSL", + "TPDL", + "TPL-1.0", + "TTWL", "TU-Berlin-1.0", "TU-Berlin-2.0", + "UCAR", "UCL-1.0", "UPL-1.0", "Unicode-DFS-2015", @@ -443,6 +478,7 @@ "Zlib", "blessing", "bzip2-1.0.6", + "checkmk", "copyleft-next-0.3.0", "copyleft-next-0.3.1", "curl", @@ -456,12 +492,16 @@ "libpng-2.0", "libselinux-1.0", "libtiff", + "libutil-David-Nugent", "mpi-permissive", "mpich2", "mplus", "psfrag", "psutils", + "snprintf", + "w3m", "xinetd", + "xlock", "xpp", "zlib-acknowledgement" ] diff --git a/tools/node_modules/eslint/node_modules/spdx-license-ids/package.json b/tools/node_modules/eslint/node_modules/spdx-license-ids/package.json index e3622fccaf7bc4..ea060776d9cf76 100644 --- a/tools/node_modules/eslint/node_modules/spdx-license-ids/package.json +++ b/tools/node_modules/eslint/node_modules/spdx-license-ids/package.json @@ -1,6 +1,6 @@ { "name": "spdx-license-ids", - "version": "3.0.12", + "version": "3.0.13", "description": "A list of SPDX license identifiers", "repository": "jslicense/spdx-license-ids", "author": "Shinnosuke Watanabe (https://github.com/shinnn)", diff --git a/tools/node_modules/eslint/package.json b/tools/node_modules/eslint/package.json index d01a0dc21509b1..ce90ab4a236753 100644 --- a/tools/node_modules/eslint/package.json +++ b/tools/node_modules/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.35.0", + "version": "8.37.0", "author": "Nicholas C. Zakas ", "description": "An AST-based pattern checker for JavaScript.", "bin": { @@ -60,8 +60,10 @@ "homepage": "https://eslint.org", "bugs": "https://github.com/eslint/eslint/issues/", "dependencies": { - "@eslint/eslintrc": "^2.0.0", - "@eslint/js": "8.35.0", + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.2", + "@eslint/js": "8.37.0", "@humanwhocodes/config-array": "^0.11.8", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -72,9 +74,8 @@ "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", + "eslint-visitor-keys": "^3.4.0", + "espree": "^9.5.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -96,7 +97,6 @@ "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.1", - "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0" diff --git a/tools/sign.bat b/tools/sign.bat index 82daaef575f3e8..fae06583b4923f 100644 --- a/tools/sign.bat +++ b/tools/sign.bat @@ -3,7 +3,7 @@ set timeservers=(http://timestamp.globalsign.com/scripts/timestamp.dll http://timestamp.comodoca.com/authenticode http://timestamp.verisign.com/scripts/timestamp.dll http://tsa.starfieldtech.com) for %%s in %timeservers% do ( - signtool sign /a /d "Node.js" /du "https://nodejs.org" /t %%s %1 + signtool sign /a /d "Node.js" /du "https://nodejs.org" /fd SHA256 /t %%s %1 if not ERRORLEVEL 1 ( echo Successfully signed %1 using timeserver %%s exit /b 0 diff --git a/tools/test.py b/tools/test.py index cdcd6c148278e2..cdec4bc8a1be69 100755 --- a/tools/test.py +++ b/tools/test.py @@ -44,6 +44,7 @@ import multiprocessing import errno import copy +import io if sys.version_info >= (3, 5): @@ -68,7 +69,7 @@ def get_module(name, path): from io import open from os.path import join, dirname, abspath, basename, isdir, exists -from datetime import datetime +from datetime import datetime, timedelta try: from queue import Queue, Empty # Python 3 except ImportError: @@ -399,16 +400,8 @@ def HasRun(self, output): duration = output.test.duration - - # total_seconds() was added in 2.7 - total_seconds = (duration.microseconds + - (duration.seconds + duration.days * 24 * 3600) * 10**6) / 10**6 - - # duration_ms is measured in seconds and is read as such by TAP parsers. - # It should read as "duration including ms" rather than "duration in ms" logger.info(' ---') - logger.info(' duration_ms: %d.%d' % - (total_seconds, duration.microseconds / 1000)) + logger.info(' duration_ms: %.5f' % (duration / timedelta(milliseconds=1))) if self.severity != 'ok' or self.traceback != '': if output.HasTimedOut(): self.traceback = 'timeout\n' + output.output.stdout + output.output.stderr @@ -1595,7 +1588,13 @@ def Main(): parser.print_help() return 1 - ch = logging.StreamHandler(sys.stdout) + stream = sys.stdout + try: + sys.stdout.reconfigure(encoding='utf8') + except AttributeError: + # Python < 3.7 does not have reconfigure + stream = io.TextIOWrapper(sys.stdout.buffer,encoding='utf8') + ch = logging.StreamHandler(stream) logger.addHandler(ch) logger.setLevel(logging.INFO) if options.logfile: diff --git a/tools/update-base64.sh b/tools/update-base64.sh deleted file mode 100755 index 50b8da7adb867c..00000000000000 --- a/tools/update-base64.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -set -e -# Shell script to update base64 in the source tree to a specific version - -BASE_DIR=$(cd "$(dirname "$0")/.." && pwd) -DEPS_DIR="$BASE_DIR/deps" -BASE64_VERSION=$1 - -if [ "$#" -le 0 ]; then - echo "Error: please provide an base64 version to update to" - echo " e.g. $0 0.4.0" - exit 1 -fi - -echo "Making temporary workspace" - -WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp') - -cleanup () { - EXIT_CODE=$? - [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE" - exit $EXIT_CODE -} - -trap cleanup INT TERM EXIT - -cd "$WORKSPACE" - -echo "Fetching base64 source archive" -curl -sL "https://api.github.com/repos/aklomp/base64/tarball/v$BASE64_VERSION" | tar xzf - -mv aklomp-base64-* base64 - -echo "Replacing existing base64" -rm -rf "$DEPS_DIR/base64/base64" -mv "$WORKSPACE/base64" "$DEPS_DIR/base64/" - -# Build configuration is handled by `deps/base64/base64.gyp`, but since `config.h` has to be present for the build -# to work, we create it and leave it empty. -echo "// Intentionally empty" >> "$DEPS_DIR/base64/base64/lib/config.h" - -echo "All done!" -echo "" -echo "Please git add base64/base64, commit the new version:" -echo "" -echo "$ git add -A deps/base64/base64" -echo "$ git commit -m \"deps: update base64 to $BASE64_VERSION\"" -echo "" diff --git a/tools/update-llhttp.sh b/tools/update-llhttp.sh deleted file mode 100755 index 12772e18e23eb9..00000000000000 --- a/tools/update-llhttp.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/sh -set -e - -# Shell script to update llhttp in the source tree to specific version - -BASE_DIR=$(cd "$(dirname "$0")/.." && pwd) -DEPS_DIR="${BASE_DIR}/deps" -LLHTTP_VERSION="$1" - -if [ "$#" -le 0 ]; then - echo "Error: Please provide an llhttp version to update to." - echo "Error: To download directly from GitHub, use the organization/repository syntax, without the .git suffix." - exit 1 -fi - -cleanup () { - EXIT_CODE=$? - [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE" - exit $EXIT_CODE -} - -echo "Making temporary workspace ..." -WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp') -trap cleanup INT TERM EXIT - -cd "$WORKSPACE" - -if echo "$LLHTTP_VERSION" | grep -qs "/" ; then # Download a release - REPO="git@github.com:$LLHTTP_VERSION.git" - BRANCH=$2 - [ -z "$BRANCH" ] && BRANCH=main - - echo "Cloning llhttp source archive $REPO ..." - git clone "$REPO" llhttp - cd llhttp - echo "Checking out branch $BRANCH ..." - git checkout "$BRANCH" - - echo "Building llhtttp ..." - npm install - make release - - echo "Copying llhtttp release ..." - rm -rf "$DEPS_DIR/llhttp" - cp -a release "$DEPS_DIR/llhttp" -else - echo "Download llhttp release $LLHTTP_VERSION ..." - curl -sL -o llhttp.tar.gz "https://github.com/nodejs/llhttp/archive/refs/tags/release/v$LLHTTP_VERSION.tar.gz" - gzip -dc llhttp.tar.gz | tar xf - - - echo "Copying llhtttp release ..." - rm -rf "$DEPS_DIR/llhttp" - cp -a "llhttp-release-v$LLHTTP_VERSION" "$DEPS_DIR/llhttp" -fi - -echo "" -echo "All done!" -echo "" -echo "Please git add llhttp, commit the new version:" -echo "" -echo "$ git add -A deps/llhttp" -echo "$ git commit -m \"deps: update llhttp to $LLHTTP_VERSION\"" -echo "" diff --git a/vcbuild.bat b/vcbuild.bat index 858b54cc23c57c..a4dd3a28d5c98b 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -259,19 +259,6 @@ echo Looking for Visual Studio 2022 if not defined target_env set "VCINSTALLDIR=" call tools\msvs\vswhere_usability_wrapper.cmd "[17.0,18.0)" %target_arch% "prerelease" if "_%VCINSTALLDIR%_" == "__" goto vs-set-2019 -set "WIXSDKDIR=%WIX%\SDK\VS2017" -if defined msi ( - echo Looking for WiX installation for Visual Studio 2022... - if not exist "%WIXSDKDIR%" ( - echo Failed to find WiX install for Visual Studio 2022 - echo VS2022 support for WiX is only present starting at version 3.XX - goto vs-set-2019 - ) - if not exist "%VCINSTALLDIR%\..\MSBuild\Microsoft\WiX" ( - echo Failed to find the WiX Toolset Visual Studio 2022 Extension - goto vs-set-2019 - ) -) @rem check if VS2022 is already setup, and for the requested arch if "_%VisualStudioVersion%_" == "_17.0_" if "_%VSCMD_ARG_TGT_ARCH%_"=="_%target_arch%_" goto found_vs2022 @rem need to clear VSINSTALLDIR for vcvarsall to work as expected @@ -299,19 +286,6 @@ echo Looking for Visual Studio 2019 if not defined target_env set "VCINSTALLDIR=" call tools\msvs\vswhere_usability_wrapper.cmd "[16.0,17.0)" %target_arch% "prerelease" if "_%VCINSTALLDIR%_" == "__" goto msbuild-not-found -set "WIXSDKDIR=%WIX%\SDK\VS2017" -if defined msi ( - echo Looking for WiX installation for Visual Studio 2019... - if not exist "%WIXSDKDIR%" ( - echo Failed to find WiX install for Visual Studio 2019 - echo VS2019 support for WiX is only present starting at version 3.11 - goto msbuild-not-found - ) - if not exist "%VCINSTALLDIR%\..\MSBuild\Microsoft\WiX" ( - echo Failed to find the WiX Toolset Visual Studio 2019 Extension - goto msbuild-not-found - ) -) @rem check if VS2019 is already setup, and for the requested arch if "_%VisualStudioVersion%_" == "_16.0_" if "_%VSCMD_ARG_TGT_ARCH%_"=="_%target_arch%_" goto found_vs2019 @rem need to clear VSINSTALLDIR for vcvarsall to work as expected @@ -532,7 +506,7 @@ if not defined msi goto install-doctools echo Building node-v%FULLVERSION%-%target_arch%.msi set "msbsdk=" if defined WindowsSDKVersion set "msbsdk=/p:WindowsTargetPlatformVersion=%WindowsSDKVersion:~0,-1%" -msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build %msbsdk% /p:PlatformToolset=%PLATFORM_TOOLSET% /p:WixSdkDir="%WIXSDKDIR%" /p:Configuration=%config% /p:Platform=%target_arch% /p:NodeVersion=%NODE_VERSION% /p:FullVersion=%FULLVERSION% /p:DistTypeDir=%DISTTYPEDIR% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo +msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Restore,Clean,Build %msbsdk% /p:PlatformToolset=%PLATFORM_TOOLSET% /p:Configuration=%config% /p:Platform=%target_arch% /p:NodeVersion=%NODE_VERSION% /p:FullVersion=%FULLVERSION% /p:DistTypeDir=%DISTTYPEDIR% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo if errorlevel 1 goto exit if not defined sign goto upload